diff --git a/bin/querybts b/bin/querybts index 013dc58..e52e8c4 100755 --- a/bin/querybts +++ b/bin/querybts @@ -3,6 +3,7 @@ # querybts - Examine the state of a debbugs server # Written by Chris Lawrence # (C) 1999-2008 Chris Lawrence +# Copyright (C) 2008-2009 Sandro Tosi # # This program is freely distributable per the following license: # diff --git a/bin/reportbug b/bin/reportbug index afa2215..b7c6f51 100755 --- a/bin/reportbug +++ b/bin/reportbug @@ -3,6 +3,7 @@ # reportbug - Report a bug in the Debian distribution. # Written by Chris Lawrence # Copyright (C) 1999-2008 Chris Lawrence +# Copyright (C) 2008-2009 Sandro Tosi # # This program is freely distributable per the following license: # diff --git a/checks/compare_pseudo-pkgs_lists.py b/checks/compare_pseudo-pkgs_lists.py index 3428c82..c5a4075 100644 --- a/checks/compare_pseudo-pkgs_lists.py +++ b/checks/compare_pseudo-pkgs_lists.py @@ -1,4 +1,4 @@ -# Author: Sandro Tosi +# Author: Sandro Tosi # Date: 2008-05-16 # License: Public domain # diff --git a/debian/changelog b/debian/changelog index 2295650..d927a86 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,8 +10,10 @@ reportbug (3.99.2) UNRELEASED; urgency=low * reportbug/test_hiermatch.py, test/test_hiermatch.py - removed reportbug/test_hiermatch.py, partially merget into test/test_hiermatch.py + * bin/*, reportbug/*, reportbug/ui/*, debian/copyright + - updated copyright information, in particular adding me - -- Sandro Tosi Fri, 16 Jan 2009 10:01:29 +0100 + -- Sandro Tosi Fri, 16 Jan 2009 10:40:29 +0100 reportbug (3.99.1) experimental; urgency=low diff --git a/debian/copyright b/debian/copyright index 27b764a..ce1fbab 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,11 +1,14 @@ Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat Upstream-Author: Chris Lawrence +Upstream-Author: Sandro Tosi Packaged-By: Chris Lawrence +Packaged-By: Sandro Tosi Packaged-Date: Fri, 14 May 1999 01:07:35 -0500 Files: * Copyright: © 1999-2006 Chris Lawrence + Copyright (C) 2008-2009 Sandro Tosi License: other # This program is freely distributable per the following license: # @@ -59,10 +62,10 @@ License: GPL-2+ Files: checks/compare_pseudo-pkgs_lists.py Copyright: - © 2008 Sandro Tosi + © 2008 Sandro Tosi License: PD checks/compare_pseudo-pkgs_lists.py was placed in public domain by Sandro - Tosi + Tosi Files: reportbug/ui/gtk2_ui.py Copyright: diff --git a/reportbug/__init__.py b/reportbug/__init__.py index 6d29236..2c1b947 100644 --- a/reportbug/__init__.py +++ b/reportbug/__init__.py @@ -3,6 +3,7 @@ # reportbug - Report a bug in the Debian distribution. # Written by Chris Lawrence # Copyright (C) 1999-2008 Chris Lawrence +# Copyright (C) 2008-2009 Sandro Tosi # # This program is freely distributable per the following license: # @@ -27,4 +28,5 @@ __all__ = ['bugreport', 'utils', 'urlutils', 'checkbuildd', 'checkversions', VERSION_NUMBER = "3.99.2" VERSION = "reportbug "+VERSION_NUMBER -COPYRIGHT = VERSION + '\nCopyright (C) 1999-2008 Chris Lawrence ' +COPYRIGHT = VERSION + '\nCopyright (C) 1999-2008 Chris Lawrence ' + + '\nCopyright (C) 2008-2009 Sandro Tosi ' diff --git a/reportbug/bugreport.py b/reportbug/bugreport.py index b2a1c33..09d5287 100644 --- a/reportbug/bugreport.py +++ b/reportbug/bugreport.py @@ -2,6 +2,7 @@ # bugreport module - object containing bug stuff for reporting # Written by Chris Lawrence # Copyright (C) 1999-2008 Chris Lawrence +# Copyright (C) 2008-2009 Sandro Tosi # # This program is freely distributable per the following license: # diff --git a/reportbug/checkbuildd.py b/reportbug/checkbuildd.py index 705d4da..9e7df00 100644 --- a/reportbug/checkbuildd.py +++ b/reportbug/checkbuildd.py @@ -3,6 +3,7 @@ # # Written by Chris Lawrence # (C) 2002-08 Chris Lawrence +# Copyright (C) 2008-2009 Sandro Tosi # # This program is freely distributable per the following license: # diff --git a/reportbug/checkversions.py b/reportbug/checkversions.py index 7276dd3..19f3267 100644 --- a/reportbug/checkversions.py +++ b/reportbug/checkversions.py @@ -3,6 +3,7 @@ # # Written by Chris Lawrence # (C) 2002-08 Chris Lawrence +# Copyright (C) 2008-2009 Sandro Tosi # # This program is freely distributable per the following license: # diff --git a/reportbug/debianbts.py b/reportbug/debianbts.py index 61b7e3d..fee38e1 100644 --- a/reportbug/debianbts.py +++ b/reportbug/debianbts.py @@ -3,6 +3,7 @@ # # Written by Chris Lawrence # (C) 1999-2008 Chris Lawrence +# Copyright (C) 2008-2009 Sandro Tosi # # This program is freely distributable per the following license: # diff --git a/reportbug/exceptions.py b/reportbug/exceptions.py index 21da179..0d0d2ed 100644 --- a/reportbug/exceptions.py +++ b/reportbug/exceptions.py @@ -1,6 +1,7 @@ # Exceptions for reportbug # Written by Chris Lawrence # (C) 2002-04 Chris Lawrence +# Copyright (C) 2008-2009 Sandro Tosi # # This program is freely distributable per the following license: # diff --git a/reportbug/hiermatch.py b/reportbug/hiermatch.py index 9d07b49..a2b6433 100644 --- a/reportbug/hiermatch.py +++ b/reportbug/hiermatch.py @@ -1,4 +1,7 @@ -# Doing match on a list of string or a hierarchy. +# hiermatch - Doing match on a list of string or a hierarchy. +# Written by Chris Lawrence +# Copyright (C) 1999-2008 Chris Lawrence +# Copyright (C) 2008-2009 Sandro Tosi import re import exceptions diff --git a/reportbug/submit.py b/reportbug/submit.py index c428825..2b22431 100644 --- a/reportbug/submit.py +++ b/reportbug/submit.py @@ -1,6 +1,7 @@ # reportbug_submit module - email and GnuPG functions # Written by Chris Lawrence # Copyright (C) 1999-2006 Chris Lawrence +# Copyright (C) 2008-2009 Sandro Tosi # # This program is freely distributable per the following license: # diff --git a/reportbug/tempfiles.py b/reportbug/tempfiles.py index dcaa847..314cab6 100644 --- a/reportbug/tempfiles.py +++ b/reportbug/tempfiles.py @@ -2,6 +2,7 @@ # tempfiles module - Temporary file handling for reportbug # Written by Chris Lawrence # (C) 1999-2008 Chris Lawrence +# Copyright (C) 2008-2009 Sandro Tosi # # This program is freely distributable per the following license: # diff --git a/reportbug/ui/__init__.py b/reportbug/ui/__init__.py index 5913d9d..ddf532b 100644 --- a/reportbug/ui/__init__.py +++ b/reportbug/ui/__init__.py @@ -3,6 +3,7 @@ # reportbug - Report a bug in the Debian distribution. # Written by Chris Lawrence # Copyright (C) 1999-2008 Chris Lawrence +# Copyright (C) 2008-2009 Sandro Tosi # # This program is freely distributable per the following license: # diff --git a/reportbug/ui/text_ui.py b/reportbug/ui/text_ui.py index 602bd21..4df59a7 100644 --- a/reportbug/ui/text_ui.py +++ b/reportbug/ui/text_ui.py @@ -1,6 +1,7 @@ # Text user interface for reportbug # Written by Chris Lawrence # (C) 2001-08 Chris Lawrence +# Copyright (C) 2008-2009 Sandro Tosi # # This program is freely distributable per the following license: # diff --git a/reportbug/ui/urwid_ui.py b/reportbug/ui/urwid_ui.py index 900d92b..3c2dd3a 100644 --- a/reportbug/ui/urwid_ui.py +++ b/reportbug/ui/urwid_ui.py @@ -1,6 +1,7 @@ # urwid user interface for reportbug # Written by Chris Lawrence # (C) 2006-08 Chris Lawrence +# Copyright (C) 2008-2009 Sandro Tosi # # This program is freely distributable per the following license: # diff --git a/reportbug/urlutils.py b/reportbug/urlutils.py index d9697e0..5e395b5 100644 --- a/reportbug/urlutils.py +++ b/reportbug/urlutils.py @@ -3,6 +3,7 @@ # # Written by Chris Lawrence # (C) 1999-2008 Chris Lawrence +# Copyright (C) 2008-2009 Sandro Tosi # # This program is freely distributable per the following license: # diff --git a/reportbug/utils.py b/reportbug/utils.py index 15853ae..ce7e79d 100644 --- a/reportbug/utils.py +++ b/reportbug/utils.py @@ -2,6 +2,7 @@ # utils module - common functions for reportbug UIs # Written by Chris Lawrence # Copyright (C) 1999-2008 Chris Lawrence +# Copyright (C) 2008-2009 Sandro Tosi # # This program is freely distributable per the following license: #