From 14f079730dbc75057dfbc0259fae072373482c05 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 9 Jan 2013 11:25:35 -0500 Subject: [PATCH] Ran update-copyright.py Signed-off-by: W. Trevor King --- AUTHORS | 1 + rss2email/__init__.py | 2 +- rss2email/command.py | 2 +- rss2email/config.py | 3 ++- rss2email/email.py | 2 +- rss2email/error.py | 2 +- rss2email/feed.py | 3 ++- rss2email/feeds.py | 3 ++- rss2email/main.py | 16 +++++++++++++++- rss2email/util.py | 2 +- rss2email/version.py | 16 +++++++++++++++- setup.py | 2 +- 12 files changed, 43 insertions(+), 11 deletions(-) diff --git a/AUTHORS b/AUTHORS index 3d1861c..9954c6a 100644 --- a/AUTHORS +++ b/AUTHORS @@ -4,6 +4,7 @@ Brian Lalor Dean Jackson Eelis van der Weegen Erik Hetzner +Etienne Millon Joey Hess Lindsey Smith Marcel Ackermann diff --git a/rss2email/__init__.py b/rss2email/__init__.py index 37dc414..1eec581 100644 --- a/rss2email/__init__.py +++ b/rss2email/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012-2013 W. Trevor King # # This file is part of rss2email. # diff --git a/rss2email/command.py b/rss2email/command.py index 42f06c0..d404155 100644 --- a/rss2email/command.py +++ b/rss2email/command.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012-2013 W. Trevor King # # This file is part of rss2email. # diff --git a/rss2email/config.py b/rss2email/config.py index afe2725..0daa979 100644 --- a/rss2email/config.py +++ b/rss2email/config.py @@ -1,7 +1,8 @@ -# Copyright (C) 2004-2012 Aaron Swartz +# Copyright (C) 2004-2013 Aaron Swartz # Brian Lalor # Dean Jackson # Erik Hetzner +# Etienne Millon # Joey Hess # Lindsey Smith # Marcel Ackermann diff --git a/rss2email/email.py b/rss2email/email.py index 446c72a..2f6872d 100644 --- a/rss2email/email.py +++ b/rss2email/email.py @@ -1,6 +1,6 @@ # -*- encoding: utf-8 -*- # -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012-2013 W. Trevor King # # This file is part of rss2email. # diff --git a/rss2email/error.py b/rss2email/error.py index cbe5217..276fa42 100644 --- a/rss2email/error.py +++ b/rss2email/error.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012-2013 W. Trevor King # # This file is part of rss2email. # diff --git a/rss2email/feed.py b/rss2email/feed.py index ccb502a..0ff48b5 100644 --- a/rss2email/feed.py +++ b/rss2email/feed.py @@ -1,7 +1,8 @@ -# Copyright (C) 2004-2012 Aaron Swartz +# Copyright (C) 2004-2013 Aaron Swartz # Brian Lalor # Dean Jackson # Erik Hetzner +# Etienne Millon # Joey Hess # Lindsey Smith # Marcel Ackermann diff --git a/rss2email/feeds.py b/rss2email/feeds.py index 18fe242..63f1f97 100644 --- a/rss2email/feeds.py +++ b/rss2email/feeds.py @@ -1,7 +1,8 @@ -# Copyright (C) 2004-2012 Aaron Swartz +# Copyright (C) 2004-2013 Aaron Swartz # Brian Lalor # Dean Jackson # Erik Hetzner +# Etienne Millon # Joey Hess # Lindsey Smith # Marcel Ackermann diff --git a/rss2email/main.py b/rss2email/main.py index 0ad003b..8a4fb9e 100644 --- a/rss2email/main.py +++ b/rss2email/main.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2012-2013 W. Trevor King +# +# This file is part of rss2email. +# +# rss2email 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 2 of the License, or (at your option) version 3 of +# the License. +# +# rss2email 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 +# rss2email. If not, see . """Define the rss2email command line interface """ diff --git a/rss2email/util.py b/rss2email/util.py index c0aa9ad..f707dcb 100644 --- a/rss2email/util.py +++ b/rss2email/util.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012-2013 W. Trevor King # # This file is part of rss2email. # diff --git a/rss2email/version.py b/rss2email/version.py index 65e8b5d..f446347 100644 --- a/rss2email/version.py +++ b/rss2email/version.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2013 W. Trevor King +# +# This file is part of rss2email. +# +# rss2email 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 2 of the License, or (at your option) version 3 of +# the License. +# +# rss2email 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 +# rss2email. If not, see . """Calculate version numbers for this package and its dependencies diff --git a/setup.py b/setup.py index a94707e..d313ddc 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012-2013 W. Trevor King # # This file is part of rss2email. # -- 2.26.2