[Reportbug-commits] [reportbug] 04/05: Extend packaging copyright years

Sandro Tosi morph at moszumanska.debian.org
Thu Jan 5 01:21:42 UTC 2017


This is an automated email from the git hooks/post-receive script.

morph pushed a commit to branch master
in repository reportbug.

commit 4055a6184575c0b02f9e31f3cd69d671ffc5ab52
Author: Sandro Tosi <morph at debian.org>
Date:   Wed Jan 4 20:16:38 2017 -0500

    Extend packaging copyright years
---
 bin/querybts               | 2 +-
 bin/reportbug              | 2 +-
 debian/changelog           | 3 ++-
 debian/copyright           | 2 +-
 reportbug/__init__.py      | 4 ++--
 reportbug/bugreport.py     | 2 +-
 reportbug/checkbuildd.py   | 2 +-
 reportbug/checkversions.py | 2 +-
 reportbug/debbugs.py       | 2 +-
 reportbug/exceptions.py    | 2 +-
 reportbug/hiermatch.py     | 2 +-
 reportbug/submit.py        | 2 +-
 reportbug/tempfiles.py     | 2 +-
 reportbug/ui/__init__.py   | 2 +-
 reportbug/ui/text_ui.py    | 2 +-
 reportbug/ui/urwid_ui.py   | 2 +-
 reportbug/urlutils.py      | 2 +-
 reportbug/utils.py         | 2 +-
 18 files changed, 20 insertions(+), 19 deletions(-)

diff --git a/bin/querybts b/bin/querybts
index c77619f..229dde9 100755
--- a/bin/querybts
+++ b/bin/querybts
@@ -3,7 +3,7 @@
 # querybts - Examine the state of a debbugs server
 #   Written by Chris Lawrence <lawrencc at debian.org>
 #   (C) 1999-2008 Chris Lawrence
-#   Copyright (C) 2008-2016 Sandro Tosi <morph at debian.org>
+#   Copyright (C) 2008-2017 Sandro Tosi <morph at debian.org>
 #
 # This program is freely distributable per the following license:
 #
diff --git a/bin/reportbug b/bin/reportbug
index 43e3566..78ee665 100755
--- a/bin/reportbug
+++ b/bin/reportbug
@@ -3,7 +3,7 @@
 # reportbug - Report a bug in the Debian distribution.
 #   Written by Chris Lawrence <lawrencc at debian.org>
 #   Copyright (C) 1999-2008 Chris Lawrence
-#   Copyright (C) 2008-2016 Sandro Tosi <morph at debian.org>
+#   Copyright (C) 2008-2017 Sandro Tosi <morph at debian.org>
 #
 # This program is freely distributable per the following license:
 #
diff --git a/debian/changelog b/debian/changelog
index b292d4a..7fac820 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -14,8 +14,9 @@ reportbug (7.1.2) UNRELEASED; urgency=medium
       Closes: #849749
   * reportbug/debbugs.py
     - add jenkins.debian.org pseudopackage
+  * Extend packaging copyright years
 
- -- Sandro Tosi <morph at debian.org>  Wed, 04 Jan 2017 20:04:11 -0500
+ -- Sandro Tosi <morph at debian.org>  Wed, 04 Jan 2017 20:16:30 -0500
 
 reportbug (7.1.1) unstable; urgency=medium
 
diff --git a/debian/copyright b/debian/copyright
index 554838b..16a033f 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -8,7 +8,7 @@ Packaged-Date: Fri, 14 May 1999 01:07:35 -0500
 Files: *
 Copyright:
     © 1999-2006 Chris Lawrence
-    Copyright (C) 2008-2016 Sandro Tosi <morph at debian.org>
+    Copyright (C) 2008-2017 Sandro Tosi <morph at debian.org>
 License: other
     # This program is freely distributable per the following license:
     #
diff --git a/reportbug/__init__.py b/reportbug/__init__.py
index 86878db..f1b3d02 100644
--- a/reportbug/__init__.py
+++ b/reportbug/__init__.py
@@ -3,7 +3,7 @@
 # reportbug - Report a bug in the Debian distribution.
 #   Written by Chris Lawrence <lawrencc at debian.org>
 #   Copyright (C) 1999-2008 Chris Lawrence
-#   Copyright (C) 2008-2016 Sandro Tosi <morph at debian.org>
+#   Copyright (C) 2008-2017 Sandro Tosi <morph at debian.org>
 #
 # This program is freely distributable per the following license:
 #
@@ -29,4 +29,4 @@ VERSION_NUMBER = "7.1.1"
 
 VERSION = "reportbug " + VERSION_NUMBER
 COPYRIGHT = VERSION + '\nCopyright (C) 1999-2008 Chris Lawrence <lawrencc at debian.org>' + \
-                      '\nCopyright (C) 2008-2016 Sandro Tosi <morph at debian.org>'
+                      '\nCopyright (C) 2008-2017 Sandro Tosi <morph at debian.org>'
diff --git a/reportbug/bugreport.py b/reportbug/bugreport.py
index 1657480..44a8c73 100644
--- a/reportbug/bugreport.py
+++ b/reportbug/bugreport.py
@@ -2,7 +2,7 @@
 # bugreport module - object containing bug stuff for reporting
 #   Written by Chris Lawrence <lawrencc at debian.org>
 #   Copyright (C) 1999-2008 Chris Lawrence
-#   Copyright (C) 2008-2016 Sandro Tosi <morph at debian.org>
+#   Copyright (C) 2008-2017 Sandro Tosi <morph at debian.org>
 #
 # This program is freely distributable per the following license:
 #
diff --git a/reportbug/checkbuildd.py b/reportbug/checkbuildd.py
index 18110ef..312b295 100644
--- a/reportbug/checkbuildd.py
+++ b/reportbug/checkbuildd.py
@@ -3,7 +3,7 @@
 #
 #   Written by Chris Lawrence <lawrencc at debian.org>
 #   (C) 2002-08 Chris Lawrence
-#   Copyright (C) 2008-2016 Sandro Tosi <morph at debian.org>
+#   Copyright (C) 2008-2017 Sandro Tosi <morph at debian.org>
 #
 # This program is freely distributable per the following license:
 #
diff --git a/reportbug/checkversions.py b/reportbug/checkversions.py
index 3046108..c7cf01c 100644
--- a/reportbug/checkversions.py
+++ b/reportbug/checkversions.py
@@ -3,7 +3,7 @@
 #
 #   Written by Chris Lawrence <lawrencc at debian.org>
 #   (C) 2002-08 Chris Lawrence
-#   Copyright (C) 2008-2016 Sandro Tosi <morph at debian.org>
+#   Copyright (C) 2008-2017 Sandro Tosi <morph at debian.org>
 #
 # This program is freely distributable per the following license:
 #
diff --git a/reportbug/debbugs.py b/reportbug/debbugs.py
index bf839a6..19ee02e 100644
--- a/reportbug/debbugs.py
+++ b/reportbug/debbugs.py
@@ -3,7 +3,7 @@
 #
 #   Written by Chris Lawrence <lawrencc at debian.org>
 #   (C) 1999-2008 Chris Lawrence
-#   Copyright (C) 2008-2016 Sandro Tosi <morph at debian.org>
+#   Copyright (C) 2008-2017 Sandro Tosi <morph at debian.org>
 #
 # This program is freely distributable per the following license:
 #
diff --git a/reportbug/exceptions.py b/reportbug/exceptions.py
index 0a0e467..9573236 100644
--- a/reportbug/exceptions.py
+++ b/reportbug/exceptions.py
@@ -1,7 +1,7 @@
 # Exceptions for reportbug
 #   Written by Chris Lawrence <lawrencc at debian.org>
 #   (C) 2002-04 Chris Lawrence
-#   Copyright (C) 2008-2016 Sandro Tosi <morph at debian.org>
+#   Copyright (C) 2008-2017 Sandro Tosi <morph at debian.org>
 #
 # This program is freely distributable per the following license:
 #
diff --git a/reportbug/hiermatch.py b/reportbug/hiermatch.py
index ebbec69..6a3f02c 100644
--- a/reportbug/hiermatch.py
+++ b/reportbug/hiermatch.py
@@ -1,7 +1,7 @@
 # hiermatch - Doing match on a list of string or a hierarchy.
 #   Written by Chris Lawrence <lawrencc at debian.org>
 #   Copyright (C) 1999-2008 Chris Lawrence
-#   Copyright (C) 2008-2016 Sandro Tosi <morph at debian.org>
+#   Copyright (C) 2008-2017 Sandro Tosi <morph at debian.org>
 
 import re
 from . import exceptions
diff --git a/reportbug/submit.py b/reportbug/submit.py
index 3c257ea..71bdeff 100644
--- a/reportbug/submit.py
+++ b/reportbug/submit.py
@@ -1,7 +1,7 @@
 # reportbug_submit module - email and GnuPG functions
 #   Written by Chris Lawrence <lawrencc at debian.org>
 #   Copyright (C) 1999-2006 Chris Lawrence
-#   Copyright (C) 2008-2016 Sandro Tosi <morph at debian.org>
+#   Copyright (C) 2008-2017 Sandro Tosi <morph at debian.org>
 #
 # This program is freely distributable per the following license:
 #
diff --git a/reportbug/tempfiles.py b/reportbug/tempfiles.py
index 5c436c6..bfa1208 100644
--- a/reportbug/tempfiles.py
+++ b/reportbug/tempfiles.py
@@ -2,7 +2,7 @@
 # tempfiles module - Temporary file handling for reportbug
 #   Written by Chris Lawrence <lawrencc at debian.org>
 #   (C) 1999-2008 Chris Lawrence
-#   Copyright (C) 2008-2016 Sandro Tosi <morph at debian.org>
+#   Copyright (C) 2008-2017 Sandro Tosi <morph at debian.org>
 #
 # This program is freely distributable per the following license:
 #
diff --git a/reportbug/ui/__init__.py b/reportbug/ui/__init__.py
index bee3834..ff4f7c3 100644
--- a/reportbug/ui/__init__.py
+++ b/reportbug/ui/__init__.py
@@ -3,7 +3,7 @@
 # reportbug - Report a bug in the Debian distribution.
 #   Written by Chris Lawrence <lawrencc at debian.org>
 #   Copyright (C) 1999-2008 Chris Lawrence
-#   Copyright (C) 2008-2016 Sandro Tosi <morph at debian.org>
+#   Copyright (C) 2008-2017 Sandro Tosi <morph at debian.org>
 #
 # This program is freely distributable per the following license:
 #
diff --git a/reportbug/ui/text_ui.py b/reportbug/ui/text_ui.py
index 7ea8fd5..b852b79 100644
--- a/reportbug/ui/text_ui.py
+++ b/reportbug/ui/text_ui.py
@@ -1,7 +1,7 @@
 # Text user interface for reportbug
 #   Written by Chris Lawrence <lawrencc at debian.org>
 #   (C) 2001-08 Chris Lawrence
-#   Copyright (C) 2008-2016 Sandro Tosi <morph at debian.org>
+#   Copyright (C) 2008-2017 Sandro Tosi <morph at debian.org>
 #
 # This program is freely distributable per the following license:
 #
diff --git a/reportbug/ui/urwid_ui.py b/reportbug/ui/urwid_ui.py
index ce03ff0..848414c 100644
--- a/reportbug/ui/urwid_ui.py
+++ b/reportbug/ui/urwid_ui.py
@@ -1,7 +1,7 @@
 # urwid user interface for reportbug
 #   Written by Chris Lawrence <lawrencc at debian.org>
 #   (C) 2006-08 Chris Lawrence
-#   Copyright (C) 2008-2016 Sandro Tosi <morph at debian.org>
+#   Copyright (C) 2008-2017 Sandro Tosi <morph at debian.org>
 #
 # This program is freely distributable per the following license:
 #
diff --git a/reportbug/urlutils.py b/reportbug/urlutils.py
index f8e4cfa..6951d32 100644
--- a/reportbug/urlutils.py
+++ b/reportbug/urlutils.py
@@ -3,7 +3,7 @@
 #
 #   Written by Chris Lawrence <lawrencc at debian.org>
 #   (C) 1999-2008 Chris Lawrence
-#   Copyright (C) 2008-2016 Sandro Tosi <morph at debian.org>
+#   Copyright (C) 2008-2017 Sandro Tosi <morph at debian.org>
 #
 # This program is freely distributable per the following license:
 #
diff --git a/reportbug/utils.py b/reportbug/utils.py
index 86aa51e..5c06afb 100644
--- a/reportbug/utils.py
+++ b/reportbug/utils.py
@@ -2,7 +2,7 @@
 # utils module - common functions for reportbug UIs
 #   Written by Chris Lawrence <lawrencc at debian.org>
 #   Copyright (C) 1999-2008 Chris Lawrence
-#   Copyright (C) 2008-2016 Sandro Tosi <morph at debian.org>
+#   Copyright (C) 2008-2017 Sandro Tosi <morph at debian.org>
 #
 # This program is freely distributable per the following license:
 #

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reportbug/reportbug.git



More information about the Reportbug-commits mailing list