Run update-copyright.py
authorW. Trevor King <wking@tremily.us>
Thu, 20 Feb 2014 21:57:54 +0000 (13:57 -0800)
committerW. Trevor King <wking@tremily.us>
Thu, 20 Feb 2014 21:57:54 +0000 (13:57 -0800)
AUTHORS [new file with mode: 0644]
package-cache.py
package_cache/__init__.py
package_cache/main.py
package_cache/server.py
setup.py

diff --git a/AUTHORS b/AUTHORS
new file mode 100644 (file)
index 0000000..31b7dd9
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,2 @@
+package-cache was written by:
+W. Trevor King <wking@tremily.us>
index c96a34794f70c14aee8956a0fff87cdfa8e5027b..450d4769d45d36843041a5c79a14277f45d4d701 100755 (executable)
@@ -1,6 +1,21 @@
 #!/usr/bin/env python
 #
-# Copyright
+# Copyright (C) 2014 W. Trevor King <wking@tremily.us>
+#
+# This file is part of package-cache.
+#
+# package-cache 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.
+#
+# package-cache 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
+# package-cache.  If not, see <http://www.gnu.org/licenses/>.
 
 from package_cache.main import run
 
index c9abe0746ac3cd47ac22ea786b5362ad17c1519f..a4dee9373f5a4450b8b39893778d102abb3772d6 100644 (file)
@@ -1,4 +1,19 @@
-# Copyright
+# Copyright (C) 2014 W. Trevor King <wking@tremily.us>
+#
+# This file is part of package-cache.
+#
+# package-cache 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.
+#
+# package-cache 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
+# package-cache.  If not, see <http://www.gnu.org/licenses/>.
 
 "A caching proxy for package downloads"
 
index c6c814eac1e73eac28565271cbe3f8e41d54f2f1..b9a66a014407bd694f3a6a2916616d6de58088f9 100644 (file)
@@ -1,4 +1,19 @@
-# Copyright
+# Copyright (C) 2014 W. Trevor King <wking@tremily.us>
+#
+# This file is part of package-cache.
+#
+# package-cache 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.
+#
+# package-cache 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
+# package-cache.  If not, see <http://www.gnu.org/licenses/>.
 
 import argparse as _argparse
 import logging as _logging
index 21213ae34ebe852b020a5ed9c0eab9a8a1d59f13..42c2eb980b4506868bcb14c6965f201ea8b32581 100644 (file)
@@ -1,4 +1,19 @@
-# Copyright
+# Copyright (C) 2014 W. Trevor King <wking@tremily.us>
+#
+# This file is part of package-cache.
+#
+# package-cache 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.
+#
+# package-cache 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
+# package-cache.  If not, see <http://www.gnu.org/licenses/>.
 
 import calendar as _calendar
 import email.utils as _email_utils
index 76d43de0886ca2af9f3396eb29b0362f18317e2a..4086e8b810e88b6853ed748084719b77059b25f1 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,19 @@
-# Copyright
+# Copyright (C) 2014 W. Trevor King <wking@tremily.us>
+#
+# This file is part of package-cache.
+#
+# package-cache 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.
+#
+# package-cache 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
+# package-cache.  If not, see <http://www.gnu.org/licenses/>.
 
 "A caching proxy for package downloads"