copyright statements
This commit is contained in:
parent
d47fb4c11e
commit
833d4b342e
20 changed files with 93 additions and 13 deletions
7
Annex.hs
7
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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
7
Core.hs
7
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
|
||||
|
||||
|
|
|
@ -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 (
|
||||
|
|
|
@ -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 (
|
||||
|
|
|
@ -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 (
|
||||
|
|
|
@ -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 (
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
|
|
7
Types.hs
7
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,
|
||||
|
|
3
UUID.hs
3
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 (
|
||||
|
|
|
@ -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
4
debian/changelog
vendored
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue