aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-27 16:53:54 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-27 16:53:54 -0400
commit833d4b342e7909e6770edb19fbc58d781e922205 (patch)
tree88277db084b628eeae72586bec042e3e80eaf4db
parentd47fb4c11ef75e4029c8da1f3ed2e68f86e62486 (diff)
copyright statements0.02
-rw-r--r--Annex.hs7
-rw-r--r--Backend.hs6
-rw-r--r--Backend/File.hs4
-rw-r--r--Backend/SHA1.hs6
-rw-r--r--Backend/URL.hs6
-rw-r--r--Backend/WORM.hs6
-rw-r--r--BackendList.hs6
-rw-r--r--Commands.hs7
-rw-r--r--Core.hs7
-rw-r--r--GitQueue.hs4
-rw-r--r--GitRepo.hs3
-rw-r--r--LocationLog.hs4
-rw-r--r--Locations.hs4
-rw-r--r--Remotes.hs7
-rw-r--r--TypeInternals.hs4
-rw-r--r--Types.hs7
-rw-r--r--UUID.hs3
-rw-r--r--Utility.hs4
-rw-r--r--debian/changelog4
-rw-r--r--git-annex.hs7
20 files changed, 93 insertions, 13 deletions
diff --git a/Annex.hs b/Annex.hs
index 1963d19c6..0e8ec2b7b 100644
--- a/Annex.hs
+++ b/Annex.hs
@@ -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,
diff --git a/Backend.hs b/Backend.hs
index c70b7b707..b7c52ddec 100644
--- a/Backend.hs
+++ b/Backend.hs
@@ -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,
diff --git a/Backend/File.hs b/Backend/File.hs
index 4273ba36b..4b9a3b45b 100644
--- a/Backend/File.hs
+++ b/Backend/File.hs
@@ -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
diff --git a/Backend/SHA1.hs b/Backend/SHA1.hs
index 9e8d6df6d..f6daeffec 100644
--- a/Backend/SHA1.hs
+++ b/Backend/SHA1.hs
@@ -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
diff --git a/Backend/URL.hs b/Backend/URL.hs
index c9b6ab6df..fd55ddf01 100644
--- a/Backend/URL.hs
+++ b/Backend/URL.hs
@@ -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
diff --git a/Backend/WORM.hs b/Backend/WORM.hs
index 0588ddaf8..b5ae11807 100644
--- a/Backend/WORM.hs
+++ b/Backend/WORM.hs
@@ -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
diff --git a/BackendList.hs b/BackendList.hs
index 25f3ae5ea..e628e3a61 100644
--- a/BackendList.hs
+++ b/BackendList.hs
@@ -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
diff --git a/Commands.hs b/Commands.hs
index b6bc6dfc2..6974b697c 100644
--- a/Commands.hs
+++ b/Commands.hs
@@ -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
diff --git a/Core.hs b/Core.hs
index 254bcec51..e0993a53e 100644
--- a/Core.hs
+++ b/Core.hs
@@ -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
diff --git a/GitQueue.hs b/GitQueue.hs
index 34a89f17b..6a68edb25 100644
--- a/GitQueue.hs
+++ b/GitQueue.hs
@@ -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 (
diff --git a/GitRepo.hs b/GitRepo.hs
index 941810235..229b76847 100644
--- a/GitRepo.hs
+++ b/GitRepo.hs
@@ -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 (
diff --git a/LocationLog.hs b/LocationLog.hs
index d027c4b80..10a637708 100644
--- a/LocationLog.hs
+++ b/LocationLog.hs
@@ -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 (
diff --git a/Locations.hs b/Locations.hs
index 970f89aa8..49ee878c8 100644
--- a/Locations.hs
+++ b/Locations.hs
@@ -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 (
diff --git a/Remotes.hs b/Remotes.hs
index 8f4fcf0f0..665de38ae 100644
--- a/Remotes.hs
+++ b/Remotes.hs
@@ -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,
diff --git a/TypeInternals.hs b/TypeInternals.hs
index d4404fd39..f45be4760 100644
--- a/TypeInternals.hs
+++ b/TypeInternals.hs
@@ -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
diff --git a/Types.hs b/Types.hs
index c3d6467a3..b94a4170a 100644
--- a/Types.hs
+++ b/Types.hs
@@ -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,
diff --git a/UUID.hs b/UUID.hs
index a7783d614..79b2b55fa 100644
--- a/UUID.hs
+++ b/UUID.hs
@@ -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 (
diff --git a/Utility.hs b/Utility.hs
index 8e620c64c..ab90c5160 100644
--- a/Utility.hs
+++ b/Utility.hs
@@ -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 (
diff --git a/debian/changelog b/debian/changelog
index c3255ba27..72ae91c02 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -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
diff --git a/git-annex.hs b/git-annex.hs
index d7b26cd96..e9e7ff027 100644
--- a/git-annex.hs
+++ b/git-annex.hs
@@ -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