From b15d970b0b4af1db25d729e04dd40bcef8af2a0f Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 20 Feb 2014 13:57:54 -0800 Subject: [PATCH] Run update-copyright.py --- AUTHORS | 2 ++ package-cache.py | 17 ++++++++++++++++- package_cache/__init__.py | 17 ++++++++++++++++- package_cache/main.py | 17 ++++++++++++++++- package_cache/server.py | 17 ++++++++++++++++- setup.py | 17 ++++++++++++++++- 6 files changed, 82 insertions(+), 5 deletions(-) create mode 100644 AUTHORS diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..31b7dd9 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,2 @@ +package-cache was written by: +W. Trevor King diff --git a/package-cache.py b/package-cache.py index c96a347..450d476 100755 --- a/package-cache.py +++ b/package-cache.py @@ -1,6 +1,21 @@ #!/usr/bin/env python # -# Copyright +# Copyright (C) 2014 W. Trevor King +# +# 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 . from package_cache.main import run diff --git a/package_cache/__init__.py b/package_cache/__init__.py index c9abe07..a4dee93 100644 --- a/package_cache/__init__.py +++ b/package_cache/__init__.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2014 W. Trevor King +# +# 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 . "A caching proxy for package downloads" diff --git a/package_cache/main.py b/package_cache/main.py index c6c814e..b9a66a0 100644 --- a/package_cache/main.py +++ b/package_cache/main.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2014 W. Trevor King +# +# 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 . import argparse as _argparse import logging as _logging diff --git a/package_cache/server.py b/package_cache/server.py index 21213ae..42c2eb9 100644 --- a/package_cache/server.py +++ b/package_cache/server.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2014 W. Trevor King +# +# 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 . import calendar as _calendar import email.utils as _email_utils diff --git a/setup.py b/setup.py index 76d43de..4086e8b 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2014 W. Trevor King +# +# 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 . "A caching proxy for package downloads" -- 2.26.2