copyright statements

This commit is contained in:
Joey Hess 2010-10-27 16:53:54 -04:00
parent d47fb4c11e
commit 833d4b342e
20 changed files with 93 additions and 13 deletions

View file

@ -1,4 +1,9 @@
{- git-annex monad -}
{- git-annex monad
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Annex (
new,

View file

@ -11,7 +11,11 @@
-
- Multiple pluggable backends are supported, and more than one can be used
- to store different files' contents in a given repository.
- -}
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Backend (
list,

View file

@ -6,6 +6,10 @@
-
- This is an abstract backend; getKey has to be implemented to complete
- it.
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Backend.File (backend) where

View file

@ -1,5 +1,9 @@
{- git-annex "SHA1" backend
- -}
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Backend.SHA1 (backend) where

View file

@ -1,5 +1,9 @@
{- git-annex "URL" backend
- -}
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Backend.URL (backend) where

View file

@ -1,5 +1,9 @@
{- git-annex "WORM" backend -- Write Once, Read Many
- -}
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Backend.WORM (backend) where

View file

@ -1,5 +1,9 @@
{- git-annex backend list
- -}
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module BackendList (allBackends) where

View file

@ -1,4 +1,9 @@
{- git-annex command line -}
{- git-annex command line
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Commands (parseCmd) where

View file

@ -1,4 +1,9 @@
{- git-annex core functions -}
{- git-annex core functions
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Core where

View file

@ -1,4 +1,8 @@
{- git repository command queue
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module GitQueue (

View file

@ -3,6 +3,9 @@
- This is written to be completely independant of git-annex and should be
- suitable for other uses.
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module GitRepo (

View file

@ -14,6 +14,10 @@
-
- Git is configured to use a union merge for this file,
- so the lines may be in arbitrary order, but it will never conflict.
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module LocationLog (

View file

@ -1,4 +1,8 @@
{- git-annex file locations
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Locations (

View file

@ -1,4 +1,9 @@
{- git-annex remote repositories -}
{- git-annex remote repositories
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Remotes (
list,

View file

@ -1,6 +1,10 @@
{- git-annex internal data types
-
- Most things should not need this, using Types and/or Annex instead.
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module TypeInternals where

View file

@ -1,4 +1,9 @@
{- git-annex abstract data types -}
{- git-annex abstract data types
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Types (
Annex,

View file

@ -3,6 +3,9 @@
- Each git repository used by git-annex has an annex.uuid setting that
- uniquely identifies that repository.
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module UUID (

View file

@ -1,4 +1,8 @@
{- git-annex utility functions
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Utility (

4
debian/changelog vendored
View file

@ -1,4 +1,4 @@
git-annex (0.02) UNRELEASED; urgency=low
git-annex (0.02) unstable; urgency=low
* Can scp annexed files from remote hosts, and check remote hosts for
file content when dropping files.
@ -17,7 +17,7 @@ git-annex (0.02) UNRELEASED; urgency=low
* New plumbing-level dropkey and addkey subcommands.
* Lots of bug fixes.
-- Joey Hess <joeyh@debian.org> Thu, 21 Oct 2010 16:38:00 -0400
-- Joey Hess <joeyh@debian.org> Wed, 27 Oct 2010 16:39:29 -0400
git-annex (0.01) unstable; urgency=low

View file

@ -1,4 +1,9 @@
{- git-annex main program -}
{- git-annex main program
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
import IO (try)
import System.IO