[license-reconcile] 03/06: updated version
Nicholas Bamber
periapt at moszumanska.debian.org
Sat Oct 31 11:13:56 UTC 2015
This is an automated email from the git hooks/post-receive script.
periapt pushed a commit to branch master
in repository license-reconcile.
commit 645f9dec4ff8e62b89b5c706a8e4e8132f55cea9
Author: Nicholas Bamber <nicholas at leonhartsberger>
Date: Tue Oct 27 21:04:11 2015 +0000
updated version
---
debian/TODO | 2 +-
debian/changelog | 6 ++++--
debian/control | 2 +-
debian/copyright | 2 +-
lib/Debian/LicenseReconcile.pm | 6 +++---
lib/Debian/LicenseReconcile/App.pm | 6 +++---
lib/Debian/LicenseReconcile/CopyrightDatum.pm | 6 +++---
lib/Debian/LicenseReconcile/CopyrightDatum/Holder.pm | 6 +++---
lib/Debian/LicenseReconcile/CopyrightTarget.pm | 6 +++---
lib/Debian/LicenseReconcile/Errors.pm | 6 +++---
lib/Debian/LicenseReconcile/Filter.pm | 6 +++---
lib/Debian/LicenseReconcile/Filter/ChangeLog.pm | 6 +++---
lib/Debian/LicenseReconcile/Filter/Rules.pm | 6 +++---
lib/Debian/LicenseReconcile/Filter/Shebang.pm | 6 +++---
lib/Debian/LicenseReconcile/Filter/Std.pm | 6 +++---
lib/Debian/LicenseReconcile/FormatSpec.pm | 6 +++---
lib/Debian/LicenseReconcile/LicenseCheck.pm | 6 +++---
lib/Debian/LicenseReconcile/Utils.pm | 4 ++--
18 files changed, 48 insertions(+), 46 deletions(-)
diff --git a/debian/TODO b/debian/TODO
index 672f635..e906e92 100644
--- a/debian/TODO
+++ b/debian/TODO
@@ -4,9 +4,9 @@
4. Incautious exists testing of data structures
5. Should we exclude debian from licensecheck?
6. t/18-app.txt needs an example of a GPL-1 file with no copyright statement.
-7. Std des not use the documented directory argument
8. D::LR::LicenseCheck constructor has an undocumented check_copyright argument.
9. Really need to get down and document the config format.
10. List projects that have used it?
11. Perhaps incude a debhelper that fails the build if there is a mismatch
12. Roll out accross the Perl group? But overkill for packages with simple copyright
+13. Surely the last filter should be Default~Rules not Default~Std
diff --git a/debian/changelog b/debian/changelog
index 95b3bf5..b4a18cd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,17 +1,19 @@
license-reconcile (0.8) UNRELEASED; urgency=medium
- * Team upload
-
[ gregor herrmann ]
* Rename autopkgtest configuration file(s) as per new pkg-perl-
autopkgtest schema.
[ Nicholas Bamber ]
+ * Added myself as Uploader
* Fixed spelling errors
+ * Updated version number and copyright
+ * Added TODO list of isues that came up in code review
* Changes in how licensecheck is handled (Closes: #801609)
- Ignore warnings from licensecheck
- Add --text argument to licensecheck invocation
- Increased dependency on devscripts to 2.15.9~
+ - Adjusted tests
-- gregor herrmann <gregoa at debian.org> Sat, 24 Oct 2015 13:47:24 +0200
diff --git a/debian/control b/debian/control
index c730b75..9cf457a 100644
--- a/debian/control
+++ b/debian/control
@@ -1,6 +1,6 @@
Source: license-reconcile
Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: gregor herrmann <gregoa at debian.org>
+Uploaders: gregor herrmann <gregoa at debian.org>, Nicholas Bamber <nicholas at periapt.co.uk>
Section: devel
Testsuite: autopkgtest-pkg-perl
Priority: optional
diff --git a/debian/copyright b/debian/copyright
index 903e179..098aaa4 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -2,7 +2,7 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Contact: Nicholas Bamber <nicholas at periapt.co.uk>
Files: *
-Copyright: 2012, Nicholas Bamber <nicholas at periapt.co.uk>
+Copyright: 2012, 2015, Nicholas Bamber <nicholas at periapt.co.uk>
License: Artistic or GPL-1+
Files: lib/Debian/LicenseReconcile/Filter/ChangeLog.pm
diff --git a/lib/Debian/LicenseReconcile.pm b/lib/Debian/LicenseReconcile.pm
index 638bd2e..1abad88 100644
--- a/lib/Debian/LicenseReconcile.pm
+++ b/lib/Debian/LicenseReconcile.pm
@@ -50,11 +50,11 @@ Debian::LicenseReconcile - compare actual and required copyright and license
=head1 VERSION
-Version 0.7
+Version 0.8
=cut
-our $VERSION = '0.7';
+our $VERSION = '0.8';
=head1 SYNOPSIS
@@ -83,7 +83,7 @@ Nicholas Bamber, C<< <nicholas at periapt.co.uk> >>
=head1 LICENSE AND COPYRIGHT
-Copyright 2012 Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
+Copyright 2012, 2015 Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
diff --git a/lib/Debian/LicenseReconcile/App.pm b/lib/Debian/LicenseReconcile/App.pm
index ad9fcab..90e35c7 100644
--- a/lib/Debian/LicenseReconcile/App.pm
+++ b/lib/Debian/LicenseReconcile/App.pm
@@ -209,11 +209,11 @@ Debian::LicenseReconcile::App - encapsulate the application code
=head1 VERSION
-Version 0.7
+Version 0.8
=cut
-our $VERSION = '0.7';
+our $VERSION = '0.8';
=head1 SYNOPSIS
@@ -256,7 +256,7 @@ Nicholas Bamber, C<< <nicholas at periapt.co.uk> >>
=head1 LICENSE AND COPYRIGHT
-Copyright 2012 Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
+Copyright 2012, 2015, Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
diff --git a/lib/Debian/LicenseReconcile/CopyrightDatum.pm b/lib/Debian/LicenseReconcile/CopyrightDatum.pm
index 32e0c2e..4fb32b5 100644
--- a/lib/Debian/LicenseReconcile/CopyrightDatum.pm
+++ b/lib/Debian/LicenseReconcile/CopyrightDatum.pm
@@ -211,11 +211,11 @@ Debian::LicenseReconcile::CopyrightDatum - copyright data as an object
=head1 VERSION
-Version 0.7
+Version 0.8
=cut
-our $VERSION = '0.7';
+our $VERSION = '0.8';
=head1 DESCRIPTION
@@ -271,7 +271,7 @@ Nicholas Bamber, C<< <nicholas at periapt.co.uk> >>
=head1 LICENSE AND COPYRIGHT
-Copyright 2012 Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
+Copyright 2012, 2015, Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
diff --git a/lib/Debian/LicenseReconcile/CopyrightDatum/Holder.pm b/lib/Debian/LicenseReconcile/CopyrightDatum/Holder.pm
index 902b63b..514c659 100644
--- a/lib/Debian/LicenseReconcile/CopyrightDatum/Holder.pm
+++ b/lib/Debian/LicenseReconcile/CopyrightDatum/Holder.pm
@@ -61,11 +61,11 @@ Debian::LicenseReconcile::CopyrightDatum::Holder - encapsulate pair
=head1 VERSION
-Version 0.7
+Version 0.8
=cut
-our $VERSION = '0.7';
+our $VERSION = '0.8';
=head1 SYNOPSIS
@@ -108,7 +108,7 @@ Nicholas Bamber, C<< <nicholas at periapt.co.uk> >>
=head1 LICENSE AND COPYRIGHT
-Copyright 2012 Nicholas Bamber.
+Copyright 2012, 2015, Nicholas Bamber.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
diff --git a/lib/Debian/LicenseReconcile/CopyrightTarget.pm b/lib/Debian/LicenseReconcile/CopyrightTarget.pm
index edc7eca..76cad86 100644
--- a/lib/Debian/LicenseReconcile/CopyrightTarget.pm
+++ b/lib/Debian/LicenseReconcile/CopyrightTarget.pm
@@ -100,11 +100,11 @@ Debian::LicenseReconcile::CopyrightTarget - file patterns mapped to Debian copyr
=head1 VERSION
-Version 0.7
+Version 0.8
=cut
-our $VERSION = '0.7';
+our $VERSION = '0.8';
=head1 SYNOPSIS
@@ -142,7 +142,7 @@ Nicholas Bamber, C<< <nicholas at periapt.co.uk> >>
=head1 LICENSE AND COPYRIGHT
-Copyright 2012 Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
+Copyright 2012, 2015, Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
diff --git a/lib/Debian/LicenseReconcile/Errors.pm b/lib/Debian/LicenseReconcile/Errors.pm
index 27ad147..362d990 100644
--- a/lib/Debian/LicenseReconcile/Errors.pm
+++ b/lib/Debian/LicenseReconcile/Errors.pm
@@ -29,11 +29,11 @@ Debian::LicenseReconcile::Errors - list of license reconciliation errors
=head1 VERSION
-Version 0.7
+Version 0.8
=cut
-our $VERSION = '0.7';
+our $VERSION = '0.8';
=head1 SYNOPSIS
@@ -70,7 +70,7 @@ Nicholas Bamber, C<< <nicholas at periapt.co.uk> >>
=head1 LICENSE AND COPYRIGHT
-Copyright 2012 Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
+Copyright 2012, 2015, Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
diff --git a/lib/Debian/LicenseReconcile/Filter.pm b/lib/Debian/LicenseReconcile/Filter.pm
index c680fa4..b21fa72 100644
--- a/lib/Debian/LicenseReconcile/Filter.pm
+++ b/lib/Debian/LicenseReconcile/Filter.pm
@@ -91,11 +91,11 @@ Debian::LicenseReconcile::Filter - abstract interface to license info
=head1 VERSION
-Version 0.7
+Version 0.8
=cut
-our $VERSION = '0.7';
+our $VERSION = '0.8';
=head1 SYNOPSIS
@@ -179,7 +179,7 @@ Nicholas Bamber, C<< <nicholas at periapt.co.uk> >>
=head1 LICENSE AND COPYRIGHT
-Copyright 2012 Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
+Copyright 2012, 2015, Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
diff --git a/lib/Debian/LicenseReconcile/Filter/ChangeLog.pm b/lib/Debian/LicenseReconcile/Filter/ChangeLog.pm
index 3b55803..eaf6920 100644
--- a/lib/Debian/LicenseReconcile/Filter/ChangeLog.pm
+++ b/lib/Debian/LicenseReconcile/Filter/ChangeLog.pm
@@ -96,11 +96,11 @@ Debian::LicenseReconcile::Filter::ChangeLog - parses changelog
=head1 VERSION
-Version 0.7
+Version 0.8
=cut
-our $VERSION = '0.7';
+our $VERSION = '0.8';
=head1 SYNOPSIS
@@ -146,7 +146,7 @@ appropriate copyright declaration is:
=item Copyright (C) 2007-2010 Damyan Ivanov <dmn at debian.org>
-=item Copyright (C) 2011-2012, Nicholas Bamber <nicholas at periapt.co.uk>
+=item Copyright (C) 2011-2012, 2015, Nicholas Bamber <nicholas at periapt.co.uk>
=back
diff --git a/lib/Debian/LicenseReconcile/Filter/Rules.pm b/lib/Debian/LicenseReconcile/Filter/Rules.pm
index e1181fc..98c808d 100644
--- a/lib/Debian/LicenseReconcile/Filter/Rules.pm
+++ b/lib/Debian/LicenseReconcile/Filter/Rules.pm
@@ -57,11 +57,11 @@ Debian::LicenseReconcile::Filter::Rules - applies licensecheck to get data
=head1 VERSION
-Version 0.7
+Version 0.8
=cut
-our $VERSION = '0.7';
+our $VERSION = '0.8';
=head1 SYNOPSIS
@@ -112,7 +112,7 @@ Nicholas Bamber, C<< <nicholas at periapt.co.uk> >>
=head1 LICENSE AND COPYRIGHT
-Copyright 2012 Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
+Copyright 2012, 2015, Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
diff --git a/lib/Debian/LicenseReconcile/Filter/Shebang.pm b/lib/Debian/LicenseReconcile/Filter/Shebang.pm
index 2c01db4..bc5a4df 100644
--- a/lib/Debian/LicenseReconcile/Filter/Shebang.pm
+++ b/lib/Debian/LicenseReconcile/Filter/Shebang.pm
@@ -32,11 +32,11 @@ Debian::LicenseReconcile::Filter::Shebang - applies licensecheck to probable scr
=head1 VERSION
-Version 0.7
+Version 0.8
=cut
-our $VERSION = '0.7';
+our $VERSION = '0.8';
=head1 SYNOPSIS
@@ -87,7 +87,7 @@ Nicholas Bamber, C<< <nicholas at periapt.co.uk> >>
=head1 LICENSE AND COPYRIGHT
-Copyright 2012 Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
+Copyright 2012, 2015, Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
diff --git a/lib/Debian/LicenseReconcile/Filter/Std.pm b/lib/Debian/LicenseReconcile/Filter/Std.pm
index baa0475..61efdce 100644
--- a/lib/Debian/LicenseReconcile/Filter/Std.pm
+++ b/lib/Debian/LicenseReconcile/Filter/Std.pm
@@ -17,11 +17,11 @@ Debian::LicenseReconcile::Filter::Std - applies licensecheck to get data
=head1 VERSION
-Version 0.7
+Version 0.8
=cut
-our $VERSION = '0.7';
+our $VERSION = '0.8';
=head1 SYNOPSIS
@@ -49,7 +49,7 @@ Nicholas Bamber, C<< <nicholas at periapt.co.uk> >>
=head1 LICENSE AND COPYRIGHT
-Copyright 2012 Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
+Copyright 2012, 2015, Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
diff --git a/lib/Debian/LicenseReconcile/FormatSpec.pm b/lib/Debian/LicenseReconcile/FormatSpec.pm
index 18fc2a6..1d697e9 100644
--- a/lib/Debian/LicenseReconcile/FormatSpec.pm
+++ b/lib/Debian/LicenseReconcile/FormatSpec.pm
@@ -19,11 +19,11 @@ Debian::LicenseReconcile::FormatSpec - check format is recognized
=head1 VERSION
-Version 0.7
+Version 0.8
=cut
-our $VERSION = '0.7';
+our $VERSION = '0.8';
=head1 SYNOPSIS
@@ -70,7 +70,7 @@ Nicholas Bamber, C<< <nicholas at periapt.co.uk> >>
=head1 LICENSE AND COPYRIGHT
-Copyright 2012 Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
+Copyright 2012, 2015, Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
diff --git a/lib/Debian/LicenseReconcile/LicenseCheck.pm b/lib/Debian/LicenseReconcile/LicenseCheck.pm
index 9e6e1ab..cf0b1f9 100644
--- a/lib/Debian/LicenseReconcile/LicenseCheck.pm
+++ b/lib/Debian/LicenseReconcile/LicenseCheck.pm
@@ -184,11 +184,11 @@ Debian::LicenseReconcile::LicenseCheck - wrapper around licensecheck
=head1 VERSION
-Version 0.7
+Version 0.8
=cut
-our $VERSION = '0.7';
+our $VERSION = '0.8';
=head1 SYNOPSIS
@@ -238,7 +238,7 @@ Nicholas Bamber, C<< <nicholas at periapt.co.uk> >>
=head1 LICENSE AND COPYRIGHT
-Copyright 2012 Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
+Copyright 2012, 2015, Nicholas Bamber C<< <nicholas at periapt.co.uk> >>.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
diff --git a/lib/Debian/LicenseReconcile/Utils.pm b/lib/Debian/LicenseReconcile/Utils.pm
index 787a75b..c493531 100644
--- a/lib/Debian/LicenseReconcile/Utils.pm
+++ b/lib/Debian/LicenseReconcile/Utils.pm
@@ -25,11 +25,11 @@ Debian::LicenseReconcile::Utils - various just about describable utilities
=head1 VERSION
-Version 0.7
+Version 0.8
=cut
-our $VERSION = '0.7';
+our $VERSION = '0.8';
=head1 SYNOPSIS
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/license-reconcile.git
More information about the Pkg-perl-cvs-commits
mailing list