summaryrefslogtreecommitdiff
path: root/pym
diff options
context:
space:
mode:
authorfuzzyray <fuzzyray@gentoo.org>2010-01-07 22:28:36 +0000
committerfuzzyray <fuzzyray@gentoo.org>2010-01-07 22:28:36 +0000
commitdc9f7175ec7ca6afc524e76786d2f46fb2c82229 (patch)
tree99ab72af91a40dd96dfff6d0c262d11a67e774e5 /pym
parent2212da8d45f122c17fce56ed0c1bc57d4387f95c (diff)
downloadgentoolkit-dc9f7175ec7ca6afc524e76786d2f46fb2c82229.tar.gz
Update Copyright date headers
svn path=/trunk/gentoolkit/; revision=731
Diffstat (limited to 'pym')
-rw-r--r--pym/gentoolkit/__init__.py2
-rw-r--r--pym/gentoolkit/atom.py2
-rw-r--r--pym/gentoolkit/cpv.py2
-rw-r--r--pym/gentoolkit/dbapi.py2
-rw-r--r--pym/gentoolkit/dependencies.py2
-rw-r--r--pym/gentoolkit/deprecated/helpers.py2
-rw-r--r--pym/gentoolkit/equery/__init__.py2
-rw-r--r--pym/gentoolkit/equery/belongs.py2
-rw-r--r--pym/gentoolkit/equery/changes.py2
-rw-r--r--pym/gentoolkit/equery/check.py2
-rw-r--r--pym/gentoolkit/equery/depends.py2
-rw-r--r--pym/gentoolkit/equery/depgraph.py2
-rw-r--r--pym/gentoolkit/equery/files.py2
-rw-r--r--pym/gentoolkit/equery/hasuse.py2
-rw-r--r--pym/gentoolkit/equery/list_.py2
-rw-r--r--pym/gentoolkit/equery/meta.py2
-rw-r--r--pym/gentoolkit/equery/size.py2
-rw-r--r--pym/gentoolkit/equery/uses.py2
-rw-r--r--pym/gentoolkit/equery/which.py2
-rw-r--r--pym/gentoolkit/errors.py2
-rw-r--r--pym/gentoolkit/helpers.py2
-rw-r--r--pym/gentoolkit/metadata.py2
-rw-r--r--pym/gentoolkit/package.py2
-rw-r--r--pym/gentoolkit/pprinter.py2
-rw-r--r--pym/gentoolkit/query.py2
-rw-r--r--pym/gentoolkit/test/__init__.py2
-rw-r--r--pym/gentoolkit/test/equery/__init__.py2
-rw-r--r--pym/gentoolkit/test/test_atom.py2
-rw-r--r--pym/gentoolkit/test/test_cpv.py2
-rw-r--r--pym/gentoolkit/versionmatch.py4
30 files changed, 31 insertions, 31 deletions
diff --git a/pym/gentoolkit/__init__.py b/pym/gentoolkit/__init__.py
index 03382b7..37d609b 100644
--- a/pym/gentoolkit/__init__.py
+++ b/pym/gentoolkit/__init__.py
@@ -1,7 +1,7 @@
#!/usr/bin/python
#
# Copyright 2003-2004 Karl Trygve Kalleberg
-# Copyright 2003-2009 Gentoo Foundation
+# Copyright 2003-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
#
# $Header$
diff --git a/pym/gentoolkit/atom.py b/pym/gentoolkit/atom.py
index 3523d60..8c29960 100644
--- a/pym/gentoolkit/atom.py
+++ b/pym/gentoolkit/atom.py
@@ -1,6 +1,6 @@
#!/usr/bin/python
#
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2
#
diff --git a/pym/gentoolkit/cpv.py b/pym/gentoolkit/cpv.py
index 9b3c2d7..31a9a9f 100644
--- a/pym/gentoolkit/cpv.py
+++ b/pym/gentoolkit/cpv.py
@@ -1,6 +1,6 @@
#!/usr/bin/python
#
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2
#
diff --git a/pym/gentoolkit/dbapi.py b/pym/gentoolkit/dbapi.py
index 2866214..fae1b6f 100644
--- a/pym/gentoolkit/dbapi.py
+++ b/pym/gentoolkit/dbapi.py
@@ -1,6 +1,6 @@
#!/usr/bin/python
#
-# Copyright 2009 Gentoo Foundation
+# Copyright 2009-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
#
# $Header$
diff --git a/pym/gentoolkit/dependencies.py b/pym/gentoolkit/dependencies.py
index 9ff7f90..001483e 100644
--- a/pym/gentoolkit/dependencies.py
+++ b/pym/gentoolkit/dependencies.py
@@ -1,4 +1,4 @@
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2
#
diff --git a/pym/gentoolkit/deprecated/helpers.py b/pym/gentoolkit/deprecated/helpers.py
index d0fb993..68514d6 100644
--- a/pym/gentoolkit/deprecated/helpers.py
+++ b/pym/gentoolkit/deprecated/helpers.py
@@ -1,7 +1,7 @@
#!/usr/bin/python2
#
# Copyright(c) 2004, Karl Trygve Kalleberg <karltk@gentoo.org>
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2
#
diff --git a/pym/gentoolkit/equery/__init__.py b/pym/gentoolkit/equery/__init__.py
index 84e8ced..5833f29 100644
--- a/pym/gentoolkit/equery/__init__.py
+++ b/pym/gentoolkit/equery/__init__.py
@@ -1,4 +1,4 @@
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2
#
diff --git a/pym/gentoolkit/equery/belongs.py b/pym/gentoolkit/equery/belongs.py
index fcf58ab..3845b9d 100644
--- a/pym/gentoolkit/equery/belongs.py
+++ b/pym/gentoolkit/equery/belongs.py
@@ -1,4 +1,4 @@
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2
#
diff --git a/pym/gentoolkit/equery/changes.py b/pym/gentoolkit/equery/changes.py
index 28611f9..8adf246 100644
--- a/pym/gentoolkit/equery/changes.py
+++ b/pym/gentoolkit/equery/changes.py
@@ -1,4 +1,4 @@
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2 or higher
#
diff --git a/pym/gentoolkit/equery/check.py b/pym/gentoolkit/equery/check.py
index 6ce288c..5969804 100644
--- a/pym/gentoolkit/equery/check.py
+++ b/pym/gentoolkit/equery/check.py
@@ -1,4 +1,4 @@
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2
#
diff --git a/pym/gentoolkit/equery/depends.py b/pym/gentoolkit/equery/depends.py
index 759ecba..a1061fc 100644
--- a/pym/gentoolkit/equery/depends.py
+++ b/pym/gentoolkit/equery/depends.py
@@ -1,4 +1,4 @@
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2
#
diff --git a/pym/gentoolkit/equery/depgraph.py b/pym/gentoolkit/equery/depgraph.py
index 18d19ba..9c7e346 100644
--- a/pym/gentoolkit/equery/depgraph.py
+++ b/pym/gentoolkit/equery/depgraph.py
@@ -1,4 +1,4 @@
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2
#
diff --git a/pym/gentoolkit/equery/files.py b/pym/gentoolkit/equery/files.py
index 400e4b1..f0c40ee 100644
--- a/pym/gentoolkit/equery/files.py
+++ b/pym/gentoolkit/equery/files.py
@@ -1,4 +1,4 @@
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2
#
diff --git a/pym/gentoolkit/equery/hasuse.py b/pym/gentoolkit/equery/hasuse.py
index bc4bb63..8d51013 100644
--- a/pym/gentoolkit/equery/hasuse.py
+++ b/pym/gentoolkit/equery/hasuse.py
@@ -1,4 +1,4 @@
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2 or higher
#
diff --git a/pym/gentoolkit/equery/list_.py b/pym/gentoolkit/equery/list_.py
index c727590..3de8355 100644
--- a/pym/gentoolkit/equery/list_.py
+++ b/pym/gentoolkit/equery/list_.py
@@ -1,4 +1,4 @@
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2 or higher
#
diff --git a/pym/gentoolkit/equery/meta.py b/pym/gentoolkit/equery/meta.py
index 1fc8964..c0a6c4c 100644
--- a/pym/gentoolkit/equery/meta.py
+++ b/pym/gentoolkit/equery/meta.py
@@ -1,4 +1,4 @@
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2 or higher
#
diff --git a/pym/gentoolkit/equery/size.py b/pym/gentoolkit/equery/size.py
index f7b8888..4d2a686 100644
--- a/pym/gentoolkit/equery/size.py
+++ b/pym/gentoolkit/equery/size.py
@@ -1,4 +1,4 @@
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2
#
diff --git a/pym/gentoolkit/equery/uses.py b/pym/gentoolkit/equery/uses.py
index d38dfe5..8358d49 100644
--- a/pym/gentoolkit/equery/uses.py
+++ b/pym/gentoolkit/equery/uses.py
@@ -1,4 +1,4 @@
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2
#
diff --git a/pym/gentoolkit/equery/which.py b/pym/gentoolkit/equery/which.py
index 38a8c6b..be4f5e8 100644
--- a/pym/gentoolkit/equery/which.py
+++ b/pym/gentoolkit/equery/which.py
@@ -1,4 +1,4 @@
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2
#
diff --git a/pym/gentoolkit/errors.py b/pym/gentoolkit/errors.py
index 988d91c..9bcc5f9 100644
--- a/pym/gentoolkit/errors.py
+++ b/pym/gentoolkit/errors.py
@@ -1,4 +1,4 @@
-# Copyright(c) 2004-2009, Gentoo Foundation
+# Copyright(c) 2004-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2 or later
diff --git a/pym/gentoolkit/helpers.py b/pym/gentoolkit/helpers.py
index 6956f97..ee3e5bf 100644
--- a/pym/gentoolkit/helpers.py
+++ b/pym/gentoolkit/helpers.py
@@ -1,4 +1,4 @@
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2 or higher
#
diff --git a/pym/gentoolkit/metadata.py b/pym/gentoolkit/metadata.py
index 792e65f..02fe03f 100644
--- a/pym/gentoolkit/metadata.py
+++ b/pym/gentoolkit/metadata.py
@@ -1,6 +1,6 @@
#!/usr/bin/python
#
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2
#
diff --git a/pym/gentoolkit/package.py b/pym/gentoolkit/package.py
index c020f63..7054470 100644
--- a/pym/gentoolkit/package.py
+++ b/pym/gentoolkit/package.py
@@ -1,7 +1,7 @@
#!/usr/bin/python
#
# Copyright(c) 2004, Karl Trygve Kalleberg <karltk@gentoo.org>
-# Copyright(c) 2004-2009, Gentoo Foundation
+# Copyright(c) 2004-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2
#
diff --git a/pym/gentoolkit/pprinter.py b/pym/gentoolkit/pprinter.py
index bd5e6cb..c070a0f 100644
--- a/pym/gentoolkit/pprinter.py
+++ b/pym/gentoolkit/pprinter.py
@@ -1,7 +1,7 @@
#!/usr/bin/python
#
# Copyright 2004 Karl Trygve Kalleberg <karltk@gentoo.org>
-# Copyright 2004-2009 Gentoo Foundation
+# Copyright 2004-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
#
# $Header$
diff --git a/pym/gentoolkit/query.py b/pym/gentoolkit/query.py
index 24f8c18..4802bc1 100644
--- a/pym/gentoolkit/query.py
+++ b/pym/gentoolkit/query.py
@@ -1,6 +1,6 @@
#!/usr/bin/python
#
-# Copyright(c) 2004-2009, Gentoo Foundation
+# Copyright 2004-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2
#
diff --git a/pym/gentoolkit/test/__init__.py b/pym/gentoolkit/test/__init__.py
index 94423e9..901e478 100644
--- a/pym/gentoolkit/test/__init__.py
+++ b/pym/gentoolkit/test/__init__.py
@@ -1,5 +1,5 @@
#!/usr/bin/python
-# Copyright 2009 Gentoo Foundation
+# Copyright 2009-2010 Gentoo Foundation
#
# Distributed under the terms of the GNU General Public License v2
#
diff --git a/pym/gentoolkit/test/equery/__init__.py b/pym/gentoolkit/test/equery/__init__.py
index 94423e9..901e478 100644
--- a/pym/gentoolkit/test/equery/__init__.py
+++ b/pym/gentoolkit/test/equery/__init__.py
@@ -1,5 +1,5 @@
#!/usr/bin/python
-# Copyright 2009 Gentoo Foundation
+# Copyright 2009-2010 Gentoo Foundation
#
# Distributed under the terms of the GNU General Public License v2
#
diff --git a/pym/gentoolkit/test/test_atom.py b/pym/gentoolkit/test/test_atom.py
index 4a1568b..0c5a786 100644
--- a/pym/gentoolkit/test/test_atom.py
+++ b/pym/gentoolkit/test/test_atom.py
@@ -1,4 +1,4 @@
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation, Inc.
# Copyright: 2006-2008 Brian Harring <ferringb@gmail.com>
#
# License: GPL2/BSD
diff --git a/pym/gentoolkit/test/test_cpv.py b/pym/gentoolkit/test/test_cpv.py
index 9b36cc3..833fd49 100644
--- a/pym/gentoolkit/test/test_cpv.py
+++ b/pym/gentoolkit/test/test_cpv.py
@@ -1,6 +1,6 @@
#!/usr/bin/python
#
-# Copyright(c) 2009, Gentoo Foundation
+# Copyright(c) 2009-2010, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2
#
diff --git a/pym/gentoolkit/versionmatch.py b/pym/gentoolkit/versionmatch.py
index a11cc9a..e3afe69 100644
--- a/pym/gentoolkit/versionmatch.py
+++ b/pym/gentoolkit/versionmatch.py
@@ -1,9 +1,9 @@
#! /usr/bin/python
#
-# Copyright(c) 2009 Gentoo Foundation
+# Copyright(c) 2009-2010 Gentoo Foundation
# Licensed under the GNU General Public License, v2
#
-# Copyright: 2005-2007 Brian Harring <ferringb@gmail.com>
+# Copyright(c): 2005-2007 Brian Harring <ferringb@gmail.com>
# License: GPL2/BSD
#
# $Header$