diff options
author | Gunnar Wrobel <p@rdus.de> | 2008-11-15 09:50:40 +0000 |
---|---|---|
committer | Gunnar Wrobel <p@rdus.de> | 2008-11-15 09:50:40 +0000 |
commit | 54ab0549b77759ecd84dee2c82e3ba54a0f407f0 (patch) | |
tree | 087d31a6eda50bde4f8a01467d728a26defb8320 | |
parent | Document the 1.2.1 release. (diff) | |
download | layman-54ab0549b77759ecd84dee2c82e3ba54a0f407f0.tar.gz layman-54ab0549b77759ecd84dee2c82e3ba54a0f407f0.tar.bz2 layman-54ab0549b77759ecd84dee2c82e3ba54a0f407f0.zip |
Copyright.v1.2.1
-rw-r--r-- | doc/layman.8.xml | 4 | ||||
-rw-r--r-- | layman/action.py | 2 | ||||
-rw-r--r-- | layman/config.py | 2 | ||||
-rw-r--r-- | layman/db.py | 2 | ||||
-rw-r--r-- | layman/debug.py | 2 | ||||
-rw-r--r-- | layman/overlay.py | 2 | ||||
-rw-r--r-- | layman/overlays/bzr.py | 2 | ||||
-rw-r--r-- | layman/overlays/cvs.py | 2 | ||||
-rw-r--r-- | layman/overlays/darcs.py | 2 | ||||
-rw-r--r-- | layman/overlays/git.py | 2 | ||||
-rw-r--r-- | layman/overlays/mercurial.py | 2 | ||||
-rw-r--r-- | layman/overlays/overlay.py | 2 | ||||
-rw-r--r-- | layman/overlays/rsync.py | 2 | ||||
-rw-r--r-- | layman/overlays/svn.py | 2 | ||||
-rw-r--r-- | layman/overlays/tar.py | 2 | ||||
-rw-r--r-- | layman/tests/dtest.py | 2 | ||||
-rw-r--r-- | layman/utils.py | 2 | ||||
-rw-r--r-- | layman/version.py | 2 |
18 files changed, 19 insertions, 19 deletions
diff --git a/doc/layman.8.xml b/doc/layman.8.xml index 62485bb..c62c905 100644 --- a/doc/layman.8.xml +++ b/doc/layman.8.xml @@ -22,7 +22,7 @@ </authorgroup> <copyright> - <year>2006-2007</year> + <year>2005-2008</year> <holder>Gunnar Wrobel</holder> </copyright> </articleinfo> @@ -199,7 +199,7 @@ <productname>layman</productname> <productnumber>1.1</productnumber> <copyright> - <year>2006-2007</year> + <year>2005-2008</year> <holder>Gunnar Wrobel</holder> </copyright> <legalnotice> diff --git a/layman/action.py b/layman/action.py index ece35ab..a54e4a5 100644 --- a/layman/action.py +++ b/layman/action.py @@ -8,7 +8,7 @@ # Handles layman actions. # # Copyright: -# (c) 2005 - 2006 Gunnar Wrobel +# (c) 2005 - 2008 Gunnar Wrobel # Distributed under the terms of the GNU General Public License v2 # # Author(s): diff --git a/layman/config.py b/layman/config.py index ff610e8..3af852a 100644 --- a/layman/config.py +++ b/layman/config.py @@ -8,7 +8,7 @@ # Handles layman configuration # # Copyright: -# (c) 2005 - 2006 Gunnar Wrobel +# (c) 2005 - 2008 Gunnar Wrobel # Distributed under the terms of the GNU General Public License v2 # # Author(s): diff --git a/layman/db.py b/layman/db.py index 8b469cc..1baeabf 100644 --- a/layman/db.py +++ b/layman/db.py @@ -8,7 +8,7 @@ # Access to the db of overlays # # Copyright: -# (c) 2005 - 2006 Gunnar Wrobel +# (c) 2005 - 2008 Gunnar Wrobel # Distributed under the terms of the GNU General Public License v2 # # Author(s): diff --git a/layman/debug.py b/layman/debug.py index 04682dc..c5cf3a0 100644 --- a/layman/debug.py +++ b/layman/debug.py @@ -2,7 +2,7 @@ # LAYMAN - DEBUGGING FUNCTIONS ################################################################################# # debug.py -- Utility function for debugging -# Copyright 2005 - 2006 Gunnar Wrobel +# Copyright 2005 - 2008 Gunnar Wrobel # Distributed under the terms of the GNU General Public License v2 __version__ = "$Id: debug.py 153 2006-06-05 06:03:16Z wrobel $" diff --git a/layman/overlay.py b/layman/overlay.py index ffbf32f..702fe81 100644 --- a/layman/overlay.py +++ b/layman/overlay.py @@ -8,7 +8,7 @@ # Access to an xml list of overlays # # Copyright: -# (c) 2005 - 2006 Gunnar Wrobel +# (c) 2005 - 2008 Gunnar Wrobel # Distributed under the terms of the GNU General Public License v2 # # Author(s): diff --git a/layman/overlays/bzr.py b/layman/overlays/bzr.py index 6bb6d2f..4c14278 100644 --- a/layman/overlays/bzr.py +++ b/layman/overlays/bzr.py @@ -8,7 +8,7 @@ # Handles bzr overlays # # Copyright: -# (c) 2005 - 2006 Adrian Perez, Gunnar Wrobel +# (c) 2005 - 2008 Adrian Perez, Gunnar Wrobel # Distributed under the terms of the GNU General Public License v2 # # Author(s): diff --git a/layman/overlays/cvs.py b/layman/overlays/cvs.py index e36f758..096dfea 100644 --- a/layman/overlays/cvs.py +++ b/layman/overlays/cvs.py @@ -8,7 +8,7 @@ # Handles cvs overlays # # Copyright: -# (c) 2005 - 2006 Gunnar Wrobel +# (c) 2005 - 2008 Gunnar Wrobel # Distributed under the terms of the GNU General Public License v2 # # Author(s): diff --git a/layman/overlays/darcs.py b/layman/overlays/darcs.py index 82054af..0d27d5e 100644 --- a/layman/overlays/darcs.py +++ b/layman/overlays/darcs.py @@ -8,7 +8,7 @@ # Handles darcs overlays # # Copyright: -# (c) 2005 - 2006 Gunnar Wrobel, Andres Loeh +# (c) 2005 - 2008 Gunnar Wrobel, Andres Loeh # Distributed under the terms of the GNU General Public License v2 # # Author(s): diff --git a/layman/overlays/git.py b/layman/overlays/git.py index 1aa6739..d0c8a5a 100644 --- a/layman/overlays/git.py +++ b/layman/overlays/git.py @@ -8,7 +8,7 @@ # Handles git overlays # # Copyright: -# (c) 2005 - 2006 Gunnar Wrobel, Stefan Schweizer +# (c) 2005 - 2008 Gunnar Wrobel, Stefan Schweizer # Distributed under the terms of the GNU General Public License v2 # # Author(s): diff --git a/layman/overlays/mercurial.py b/layman/overlays/mercurial.py index d31b5e5..b010c8b 100644 --- a/layman/overlays/mercurial.py +++ b/layman/overlays/mercurial.py @@ -8,7 +8,7 @@ # Handles darcs overlays # # Copyright: -# (c) 2005 - 2006 Gunnar Wrobel, Andres Loeh +# (c) 2005 - 2008 Gunnar Wrobel, Andres Loeh # Distributed under the terms of the GNU General Public License v2 # # Author(s): diff --git a/layman/overlays/overlay.py b/layman/overlays/overlay.py index d870afa..7a86a1b 100644 --- a/layman/overlays/overlay.py +++ b/layman/overlays/overlay.py @@ -8,7 +8,7 @@ # Base class for the different overlay types. # # Copyright: -# (c) 2005 - 2006 Gunnar Wrobel +# (c) 2005 - 2008 Gunnar Wrobel # Distributed under the terms of the GNU General Public License v2 # # Author(s): diff --git a/layman/overlays/rsync.py b/layman/overlays/rsync.py index 0f6c5f5..6052bd0 100644 --- a/layman/overlays/rsync.py +++ b/layman/overlays/rsync.py @@ -8,7 +8,7 @@ # Handles rsync overlays # # Copyright: -# (c) 2005 - 2006 Gunnar Wrobel +# (c) 2005 - 2008 Gunnar Wrobel # Distributed under the terms of the GNU General Public License v2 # # Author(s): diff --git a/layman/overlays/svn.py b/layman/overlays/svn.py index 421f8f1..4ff3da4 100644 --- a/layman/overlays/svn.py +++ b/layman/overlays/svn.py @@ -8,7 +8,7 @@ # Handles subversion overlays # # Copyright: -# (c) 2005 - 2006 Gunnar Wrobel +# (c) 2005 - 2008 Gunnar Wrobel # Distributed under the terms of the GNU General Public License v2 # # Author(s): diff --git a/layman/overlays/tar.py b/layman/overlays/tar.py index 9ce488e..5786931 100644 --- a/layman/overlays/tar.py +++ b/layman/overlays/tar.py @@ -8,7 +8,7 @@ # Handles tar overlays # # Copyright: -# (c) 2005 - 2006 Gunnar Wrobel +# (c) 2005 - 2008 Gunnar Wrobel # Distributed under the terms of the GNU General Public License v2 # # Author(s): diff --git a/layman/tests/dtest.py b/layman/tests/dtest.py index 8f65af1..ed5cac1 100644 --- a/layman/tests/dtest.py +++ b/layman/tests/dtest.py @@ -8,7 +8,7 @@ # Combines the doctests that are available for the different modules # # Copyright: -# (c) 2005 - 2006 Gunnar Wrobel +# (c) 2005 - 2008 Gunnar Wrobel # Distributed under the terms of the GNU General Public License v2 # # Author(s): diff --git a/layman/utils.py b/layman/utils.py index 239f1b3..178ad11 100644 --- a/layman/utils.py +++ b/layman/utils.py @@ -8,7 +8,7 @@ # Utilities to deal with xml nodes. # # Copyright: -# (c) 2005 - 2006 Gunnar Wrobel +# (c) 2005 - 2008 Gunnar Wrobel # Distributed under the terms of the GNU General Public License v2 # # Author(s): diff --git a/layman/version.py b/layman/version.py index 7f935f8..cf95349 100644 --- a/layman/version.py +++ b/layman/version.py @@ -8,7 +8,7 @@ # Current version number # # Copyright: -# (c) 2005 - 2006 Gunnar Wrobel +# (c) 2005 - 2008 Gunnar Wrobel # Distributed under the terms of the GNU General Public License v2 # # Author(s): |