summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2014-04-13 16:29:44 +0100
committerLars Wirzenius <liw@liw.fi>2014-04-13 16:29:44 +0100
commit2d0ad362cceba8d919a93013948279de44a205d4 (patch)
treee9b1fde1e9686c8f7fba7cb49f8d5d3be2793c26
parent359c41c8a8fbfb4714a1a122becd43da9dc93929 (diff)
downloadobnam-2d0ad362cceba8d919a93013948279de44a205d4.tar.gz
Add missing copyright statements, years
-rw-r--r--obnamlib/hooks.py2
-rw-r--r--obnamlib/hooks_tests.py2
-rw-r--r--obnamlib/lockmgr.py2
-rw-r--r--obnamlib/lockmgr_tests.py2
-rw-r--r--obnamlib/metadata.py2
-rw-r--r--obnamlib/metadata_tests.py2
-rw-r--r--obnamlib/pluginbase.py2
-rw-r--r--obnamlib/plugins/__init__.py22
-rw-r--r--obnamlib/plugins/backup_plugin.py2
-rw-r--r--obnamlib/plugins/compression_plugin.py2
-rw-r--r--obnamlib/plugins/encryption_plugin.py2
-rw-r--r--obnamlib/plugins/force_lock_plugin.py2
-rw-r--r--obnamlib/plugins/forget_plugin.py2
-rw-r--r--obnamlib/plugins/fsck_plugin.py2
-rw-r--r--obnamlib/plugins/fuse_plugin.py2
-rw-r--r--obnamlib/plugins/restore_plugin.py2
-rw-r--r--obnamlib/plugins/sftp_plugin.py2
-rw-r--r--obnamlib/plugins/show_plugin.py2
-rw-r--r--obnamlib/plugins/verify_plugin.py2
-rw-r--r--obnamlib/plugins/vfs_local_plugin.py2
-rw-r--r--obnamlib/repo_dummy.py2
-rw-r--r--obnamlib/repo_factory.py2
-rw-r--r--obnamlib/repo_interface.py2
-rw-r--r--obnamlib/sizeparse.py2
-rw-r--r--obnamlib/sizeparse_tests.py2
-rw-r--r--obnamlib/vfs.py2
-rw-r--r--obnamlib/vfs_local.py2
-rw-r--r--obnamlib/vfs_local_tests.py2
-rwxr-xr-xpublish17
-rw-r--r--setup.py3
-rwxr-xr-xtest-lock-files2
-rwxr-xr-xtest-locking2
-rwxr-xr-xtest-many-generations2
-rwxr-xr-xtest-sftpfs2
-rwxr-xr-xverification-test2
35 files changed, 73 insertions, 33 deletions
diff --git a/obnamlib/hooks.py b/obnamlib/hooks.py
index a8a98a00..6865aeba 100644
--- a/obnamlib/hooks.py
+++ b/obnamlib/hooks.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 Lars Wirzenius
+# Copyright (C) 2009-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/hooks_tests.py b/obnamlib/hooks_tests.py
index 79360ac3..99af37af 100644
--- a/obnamlib/hooks_tests.py
+++ b/obnamlib/hooks_tests.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 Lars Wirzenius
+# Copyright (C) 2009-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/lockmgr.py b/obnamlib/lockmgr.py
index c5095c59..3159020e 100644
--- a/obnamlib/lockmgr.py
+++ b/obnamlib/lockmgr.py
@@ -1,4 +1,4 @@
-# Copyright 2012 Lars Wirzenius
+# Copyright 2012-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/lockmgr_tests.py b/obnamlib/lockmgr_tests.py
index b5d6307f..a6bf64e7 100644
--- a/obnamlib/lockmgr_tests.py
+++ b/obnamlib/lockmgr_tests.py
@@ -1,4 +1,4 @@
-# Copyright 2012 Lars Wirzenius
+# Copyright 2012-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/metadata.py b/obnamlib/metadata.py
index f1c7084f..9060acc0 100644
--- a/obnamlib/metadata.py
+++ b/obnamlib/metadata.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 Lars Wirzenius
+# Copyright (C) 2009-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/metadata_tests.py b/obnamlib/metadata_tests.py
index 9ee15f41..c3d1929d 100644
--- a/obnamlib/metadata_tests.py
+++ b/obnamlib/metadata_tests.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 Lars Wirzenius
+# Copyright (C) 2009-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/pluginbase.py b/obnamlib/pluginbase.py
index abf05c03..d1a75fb4 100644
--- a/obnamlib/pluginbase.py
+++ b/obnamlib/pluginbase.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 Lars Wirzenius
+# Copyright (C) 2009-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/plugins/__init__.py b/obnamlib/plugins/__init__.py
index e69de29b..725fe3ff 100644
--- a/obnamlib/plugins/__init__.py
+++ b/obnamlib/plugins/__init__.py
@@ -0,0 +1,22 @@
+# Copyright 2014 Lars Wirzenius
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+# =*= License: GPL-3+ =*=
+
+# So as to not to claim copyright on an empty file, this file contains
+# a joke.
+#
+# Weekends are when other people take two days to reply to e-mail.
+# Vacations are when other people take two weeks to reply to e-mail.
diff --git a/obnamlib/plugins/backup_plugin.py b/obnamlib/plugins/backup_plugin.py
index da24c14e..3685c05b 100644
--- a/obnamlib/plugins/backup_plugin.py
+++ b/obnamlib/plugins/backup_plugin.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2009, 2010, 2011, 2012 Lars Wirzenius
+# Copyright (C) 2009-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/plugins/compression_plugin.py b/obnamlib/plugins/compression_plugin.py
index 20eed384..ee29c29c 100644
--- a/obnamlib/plugins/compression_plugin.py
+++ b/obnamlib/plugins/compression_plugin.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2011 Lars Wirzenius
+# Copyright (C) 2011-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/plugins/encryption_plugin.py b/obnamlib/plugins/encryption_plugin.py
index 3c20de25..62bdebb9 100644
--- a/obnamlib/plugins/encryption_plugin.py
+++ b/obnamlib/plugins/encryption_plugin.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2011 Lars Wirzenius
+# Copyright (C) 2011-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/plugins/force_lock_plugin.py b/obnamlib/plugins/force_lock_plugin.py
index 4a4881c2..fad8a240 100644
--- a/obnamlib/plugins/force_lock_plugin.py
+++ b/obnamlib/plugins/force_lock_plugin.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2009, 2010, 2011 Lars Wirzenius
+# Copyright (C) 2009-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/plugins/forget_plugin.py b/obnamlib/plugins/forget_plugin.py
index 128c7fa7..a17124ec 100644
--- a/obnamlib/plugins/forget_plugin.py
+++ b/obnamlib/plugins/forget_plugin.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2010 Lars Wirzenius
+# Copyright (C) 2010-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/plugins/fsck_plugin.py b/obnamlib/plugins/fsck_plugin.py
index 64b4eca4..6f5f19e3 100644
--- a/obnamlib/plugins/fsck_plugin.py
+++ b/obnamlib/plugins/fsck_plugin.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2010 Lars Wirzenius
+# Copyright (C) 2010-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/plugins/fuse_plugin.py b/obnamlib/plugins/fuse_plugin.py
index 0e9b12bc..30531295 100644
--- a/obnamlib/plugins/fuse_plugin.py
+++ b/obnamlib/plugins/fuse_plugin.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2013 Valery Yundin
+# Copyright (C) 2013-2014 Valery Yundin
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/plugins/restore_plugin.py b/obnamlib/plugins/restore_plugin.py
index 9de1e8bd..12031db3 100644
--- a/obnamlib/plugins/restore_plugin.py
+++ b/obnamlib/plugins/restore_plugin.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2009, 2010 Lars Wirzenius
+# Copyright (C) 2009-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/plugins/sftp_plugin.py b/obnamlib/plugins/sftp_plugin.py
index cdbd1cc7..4806521a 100644
--- a/obnamlib/plugins/sftp_plugin.py
+++ b/obnamlib/plugins/sftp_plugin.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 Lars Wirzenius <liw@liw.fi>
+# Copyright (C) 2009-2014 Lars Wirzenius <liw@liw.fi>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/plugins/show_plugin.py b/obnamlib/plugins/show_plugin.py
index ab1f4be9..91817c36 100644
--- a/obnamlib/plugins/show_plugin.py
+++ b/obnamlib/plugins/show_plugin.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2009, 2010 Lars Wirzenius
+# Copyright (C) 2009-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/plugins/verify_plugin.py b/obnamlib/plugins/verify_plugin.py
index 096aee68..b24c6fa1 100644
--- a/obnamlib/plugins/verify_plugin.py
+++ b/obnamlib/plugins/verify_plugin.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2010 Lars Wirzenius
+# Copyright (C) 2010-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/plugins/vfs_local_plugin.py b/obnamlib/plugins/vfs_local_plugin.py
index 2ebb3c40..2851c5d6 100644
--- a/obnamlib/plugins/vfs_local_plugin.py
+++ b/obnamlib/plugins/vfs_local_plugin.py
@@ -1,4 +1,4 @@
-# Copyright 2010 Lars Wirzenius
+# Copyright 2010-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/repo_dummy.py b/obnamlib/repo_dummy.py
index c0d6e3fa..e00b52e2 100644
--- a/obnamlib/repo_dummy.py
+++ b/obnamlib/repo_dummy.py
@@ -1,4 +1,4 @@
-# Copyright 2013 Lars Wirzenius
+# Copyright 2013-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/repo_factory.py b/obnamlib/repo_factory.py
index 9a2d8c76..44d95b0c 100644
--- a/obnamlib/repo_factory.py
+++ b/obnamlib/repo_factory.py
@@ -1,4 +1,4 @@
-# Copyright 2013 Lars Wirzenius
+# Copyright 2013-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/repo_interface.py b/obnamlib/repo_interface.py
index 477e68ba..0b16016c 100644
--- a/obnamlib/repo_interface.py
+++ b/obnamlib/repo_interface.py
@@ -1,6 +1,6 @@
# repo_interface.py -- interface class for repository access
#
-# Copyright 2013 Lars Wirzenius
+# Copyright 2013-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/sizeparse.py b/obnamlib/sizeparse.py
index 3fed6a73..5cfd8e0e 100644
--- a/obnamlib/sizeparse.py
+++ b/obnamlib/sizeparse.py
@@ -1,4 +1,4 @@
-# Copyright 2010 Lars Wirzenius
+# Copyright 2010-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/sizeparse_tests.py b/obnamlib/sizeparse_tests.py
index 3a4dce8f..2ba8a25f 100644
--- a/obnamlib/sizeparse_tests.py
+++ b/obnamlib/sizeparse_tests.py
@@ -1,4 +1,4 @@
-# Copyright 2010 Lars Wirzenius
+# Copyright 2010-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/vfs.py b/obnamlib/vfs.py
index 18f6fd0c..ede58fbd 100644
--- a/obnamlib/vfs.py
+++ b/obnamlib/vfs.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2008, 2010 Lars Wirzenius <liw@liw.fi>
+# Copyright (C) 2008-2014 Lars Wirzenius <liw@liw.fi>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/vfs_local.py b/obnamlib/vfs_local.py
index e549d069..9cb2da14 100644
--- a/obnamlib/vfs_local.py
+++ b/obnamlib/vfs_local.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2008 Lars Wirzenius <liw@liw.fi>
+# Copyright (C) 2008-2014 Lars Wirzenius <liw@liw.fi>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/obnamlib/vfs_local_tests.py b/obnamlib/vfs_local_tests.py
index d106cb12..e1c1d8ce 100644
--- a/obnamlib/vfs_local_tests.py
+++ b/obnamlib/vfs_local_tests.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2008 Lars Wirzenius <liw@liw.fi>
+# Copyright (C) 2008-2014 Lars Wirzenius <liw@liw.fi>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/publish b/publish
index 7b1957dc..494b6f08 100755
--- a/publish
+++ b/publish
@@ -6,6 +6,23 @@
#
# It is assumed that the docs have been built already.
+# Copyright 2014 Lars Wirzenius
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+# =*= License: GPL-3+ =*=
+
host="pieni.net"
path="code.liw.fi/obnam"
diff --git a/setup.py b/setup.py
index b6606565..40415dd5 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright (C) 2008-2012 Lars Wirzenius <liw@liw.fi>
+# Copyright (C) 2008-2014 Lars Wirzenius <liw@liw.fi>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -217,6 +217,7 @@ class Check(Command):
r'\.xz$',
r'\.yarn$',
r'^without-tests$',
+ r'^test-plugins/.*\.py$',
]
pats = [re.compile(x) for x in exclude]
diff --git a/test-lock-files b/test-lock-files
index e56385d0..fb16d400 100755
--- a/test-lock-files
+++ b/test-lock-files
@@ -2,7 +2,7 @@
#
# Obnam test: test lock files.
#
-# Copyright 2012 Lars Wirzenius
+# Copyright 2012-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/test-locking b/test-locking
index c5b46b69..b8e736cb 100755
--- a/test-locking
+++ b/test-locking
@@ -2,7 +2,7 @@
#
# Obnam test: test locking with multiple clients accessing the same repo.
#
-# Copyright 2012 Lars Wirzenius
+# Copyright 2012-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/test-many-generations b/test-many-generations
index c311f412..5a43d65f 100755
--- a/test-many-generations
+++ b/test-many-generations
@@ -2,7 +2,7 @@
#
# Obnam test: backup and verify many generations of data.
#
-# Copyright 2012 Lars Wirzenius
+# Copyright 2012-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/test-sftpfs b/test-sftpfs
index dfd1b1b0..f79cb871 100755
--- a/test-sftpfs
+++ b/test-sftpfs
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2010 Lars Wirzenius
+# Copyright 2010-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/verification-test b/verification-test
index f5f9957a..04a475d6 100755
--- a/verification-test
+++ b/verification-test
@@ -34,7 +34,7 @@
# fail even though Obnam was working ine: it's just that some file changed
# between Obnam backing it up and summain including it in the manifest.
#
-# Copyright 2011 Lars Wirzenius
+# Copyright 2011-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by