[libconfig-model-dpkg-perl] 01/01: Add support for autopkgtest-pkg-go and others.

2017-08-27 Thread Martín Ferrari
This is an automated email from the git hooks/post-receive script.

tincho pushed a commit to branch master
in repository libconfig-model-dpkg-perl.

commit 13b6b512592f67e2607ed4cf0cd8a7701c1dcaf8
Author: Martín Ferrari 
Date:   Mon Aug 28 03:41:14 2017 +0200

Add support for autopkgtest-pkg-go and others.

This commit adds full support for pkg-go autopkgtest, including matching 
with
maintainer name.

It also stops considering invalid other teams supported by autodep8.

I added tests for all this, but I am doubtful of their quality.
---
 lib/Config/Model/models/Dpkg/Control/Source.pl | 12 ++--
 t/dpkg.t   | 25 +++--
 2 files changed, 25 insertions(+), 12 deletions(-)

diff --git a/lib/Config/Model/models/Dpkg/Control/Source.pl 
b/lib/Config/Model/models/Dpkg/Control/Source.pl
index 7739dfa..4bdc3d3 100644
--- a/lib/Config/Model/models/Dpkg/Control/Source.pl
+++ b/lib/Config/Model/models/Dpkg/Control/Source.pl
@@ -128,27 +128,27 @@ area/section if the package is in the contrib or non-free 
archive areas.
 'warn_unless' => {
   'defined-test' => {
 'code' => 'my $m = $self->grab_value(\'- Maintainer\');
-my ($team) = ( $m =~ /(pkg-(?:perl|ruby))/ );
+my ($team) = ( $m =~ /(pkg-(?:perl|ruby|go))/ );
 not defined $team or defined $_;',
 'fix' => 'my $m = $self->grab_value(\'- Maintainer\');
-my ($str) = ($m =~ /pkg-(perl|ruby)/);
+my ($str) = ($m =~ /pkg-(perl|ruby|go)/);
 $_ = $str ? \'autopkgtest-pkg-\'.$str : undef;',
 'msg' => 'Undefined while packaging team supports test suite'
   },
   'team-test' => {
 'code' => 'my $m = $self->grab_value(\'- Maintainer\');
-my ($team) = ( $m =~ /(pkg-(?:perl|ruby))/ );
+my ($team) = ( $m =~ /(pkg-(?:perl|ruby|go))/ );
 not defined $_ or not defined $team or $_ eq \'autopkgtest-\'.$team ;',
 'fix' => 'my $m = $self->grab_value(\'- Maintainer\');
-my ($str) = ($m =~ /pkg-(perl|ruby)/);
+my ($str) = ($m =~ /pkg-(perl|ruby|go)/);
 $_ = $str ? \'autopkgtest-pkg-\'.$str : undef;',
 'msg' => 'value does not match maintainer team'
   }
 },
 'warn_unless_match' => {
-  '^autopkgtest(-pkg-(perl|ruby))?$' => {
+  '^autopkgtest(-pkg-(dkms|elpa|go|nodejs|perl|python|r|ruby))?$' => {
 'fix' => 'my $m = $self->grab_value(\'- Maintainer\');
-my ($str) = ($m =~ /pkg-(perl|ruby)/);
+my ($str) = ($m =~ /pkg-(perl|ruby|go)/);
 $_ = $str ? \'autopkgtest-pkg-\'.$str : undef;',
 'msg' => 'Unknown value'
   }
diff --git a/t/dpkg.t b/t/dpkg.t
index ca7cc8f..0dd78af 100644
--- a/t/dpkg.t
+++ b/t/dpkg.t
@@ -20,7 +20,7 @@ if ( $@ ) {
 plan skip_all => "AptPkg::Config is not installed";
 }
 elsif ( -r '/etc/debian_version' ) {
-plan tests => 24;
+plan tests => 43;
 }
 else {
 plan skip_all => "Not a Debian system";
@@ -102,7 +102,16 @@ foreach my $t (@test) {
 
 warning_is {
 my $ts = $root->grab_value("control source Testsuite");
-}  undef, 'check that Testsuite does not warn for random maintainer ';
+} undef, 'check that Testsuite does not warn for random maintainer ';
+
+foreach my $target (qw(dkms elpa go nodejs perl python r ruby)) {
+warning_is {
+$root->load("control source Testsuite=autopkgtest-pkg-$target");
+} undef, "check that Testsuite is accepted for autopkgtest-pkg-$target";
+$root->grab('control source Testsuite')->apply_fixes;
+is($root->grab_value("control source Testsuite"),
+"autopkgtest-pkg-$target", 'check Testsuite value');
+}
 
 warning_like {
 $root->load('control source Testsuite=autopkgtest-foobar');
@@ -110,6 +119,7 @@ warning_like {
 
 my @teams = (
 'Debian Perl Group ',
+'Debian Go Packaging Team ',
 'Debian Ruby Extras Maintainers 
',
 );
 
@@ -117,21 +127,24 @@ foreach my $team (@teams) {
 # reset testsuite values, maintainer cannot be null, so use John Doe 
instead
 # of a packaging team that triggers a special behavior
 $root->load('control source Maintainer="John Doe " 
Testsuite~') ;
-my ($str) = ($team =~ /pkg-(perl|ruby)/);
+my ($str) = ($team =~ /pkg-(perl|ruby|go)/);
 my $target =  "autopkgtest-pkg-$str";
 
 $root->load(qq!control source Maintainer="$team"!);
-is($root->grab_value("control source Testsuite"), undef,'check Testsuite 
default value');
+is($root->grab_value("control source Testsuite"), undef, 'check Testsuite 
default value');
 $root->grab('control source Testsuite')->apply_fixes;
 
-is($root->grab_value("control source Testsuite"), $target,"check Testsuite 
$str output");
+is($root->grab_value("control source Testsuite"), $target, "check 
Testsuite $str output");
 }
 
 # perl vs ruby, 

[libconfig-model-dpkg-perl] branch master updated (07dbc77 -> 13b6b51)

2017-08-27 Thread Martín Ferrari
This is an automated email from the git hooks/post-receive script.

tincho pushed a change to branch master
in repository libconfig-model-dpkg-perl.

  from  07dbc77   test pack_copyright for multi line debfmt data
   new  13b6b51   Add support for autopkgtest-pkg-go and others.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 lib/Config/Model/models/Dpkg/Control/Source.pl | 12 ++--
 t/dpkg.t   | 25 +++--
 2 files changed, 25 insertions(+), 12 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libconfig-model-dpkg-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libnet-ph-perl] 02/02: update changelog

2017-08-27 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libnet-ph-perl.

commit 4b1c3b9f05ae0c23756dd8d5d17850a824a57d26
Author: gregor herrmann 
Date:   Sun Aug 27 14:12:03 2017 +0200

update changelog

Gbp-Dch: Ignore
---
 debian/changelog | 4 
 1 file changed, 4 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 26361d5..6851086 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,11 @@
 libnet-ph-perl (2.21-9) UNRELEASED; urgency=medium
 
+  [ Salvatore Bonaccorso ]
   * debian/control: Use HTTPS transport protocol for Vcs-Git URI
 
+  [ gregor herrmann ]
+  * Remove Marc 'HE' Brockschmidt from Uploaders. (Closes: #873354)
+
  -- Salvatore Bonaccorso   Sat, 30 Jan 2016 20:05:45 +0100
 
 libnet-ph-perl (2.21-8) unstable; urgency=low

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libnet-ph-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libnet-ph-perl] branch master updated (3bc5dab -> 4b1c3b9)

2017-08-27 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to branch master
in repository libnet-ph-perl.

  from  3bc5dab   update changelog
   new  01dbe60   Remove Marc 'HE' Brockschmidt from Uploaders.
   new  4b1c3b9   update changelog

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 4 
 debian/control   | 9 -
 2 files changed, 8 insertions(+), 5 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libnet-ph-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libnet-ph-perl] 01/02: Remove Marc 'HE' Brockschmidt from Uploaders.

2017-08-27 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libnet-ph-perl.

commit 01dbe60c247bd314f1bdd59ff507dcbb030b04c2
Author: gregor herrmann 
Date:   Sun Aug 27 14:12:03 2017 +0200

Remove Marc 'HE' Brockschmidt from Uploaders.

Closes: #873354
---
 debian/control | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/debian/control b/debian/control
index e78d396..5a05087 100644
--- a/debian/control
+++ b/debian/control
@@ -1,15 +1,14 @@
 Source: libnet-ph-perl
+Maintainer: Debian Perl Group 
 Section: perl
+Testsuite: autopkgtest-pkg-perl
 Priority: optional
 Build-Depends: debhelper (>= 8),
perl
-Maintainer: Debian Perl Group 
-Uploaders: Marc 'HE' Brockschmidt 
 Standards-Version: 3.9.6
-Homepage: https://metacpan.org/release/Net-PH
-Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libnet-ph-perl.git
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libnet-ph-perl.git
-Testsuite: autopkgtest-pkg-perl
+Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libnet-ph-perl.git
+Homepage: https://metacpan.org/release/Net-PH
 
 Package: libnet-ph-perl
 Architecture: all

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libnet-ph-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[liblocale-subcountry-perl] 02/02: update changelog

2017-08-27 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository liblocale-subcountry-perl.

commit e362479ad9aaff4a81b6a1ace7c7598058eb9c41
Author: gregor herrmann 
Date:   Sun Aug 27 14:11:35 2017 +0200

update changelog

Gbp-Dch: Ignore
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index f416484..2b56169 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+liblocale-subcountry-perl (2.01-2) UNRELEASED; urgency=medium
+
+  * Remove Marc 'HE' Brockschmidt from Uploaders. (Closes: #873353)
+
+ -- gregor herrmann   Sun, 27 Aug 2017 14:11:34 +0200
+
 liblocale-subcountry-perl (2.01-1) unstable; urgency=medium
 
   * Team upload.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/liblocale-subcountry-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libi18n-charset-perl] 01/02: Remove Marc 'HE' Brockschmidt from Uploaders.

2017-08-27 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libi18n-charset-perl.

commit 26558fb62777af7f0b6ed9019769022a8492d844
Author: gregor herrmann 
Date:   Sun Aug 27 14:11:00 2017 +0200

Remove Marc 'HE' Brockschmidt from Uploaders.

Closes: #873352
---
 debian/control | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/debian/control b/debian/control
index 0c4dd85..7bf25c4 100644
--- a/debian/control
+++ b/debian/control
@@ -1,7 +1,6 @@
 Source: libi18n-charset-perl
 Maintainer: Debian Perl Group 
-Uploaders: Marc 'HE' Brockschmidt ,
-   Krzysztof Krzyzaniak (eloy) ,
+Uploaders: Krzysztof Krzyzaniak (eloy) ,
gregor herrmann ,
Niko Tyni 
 Section: perl

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libi18n-charset-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[liblocale-subcountry-perl] 01/02: Remove Marc 'HE' Brockschmidt from Uploaders.

2017-08-27 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository liblocale-subcountry-perl.

commit 54aac45d1531bcf5cb02ba3d3bc6bdd14f2568b7
Author: gregor herrmann 
Date:   Sun Aug 27 14:11:34 2017 +0200

Remove Marc 'HE' Brockschmidt from Uploaders.

Closes: #873353
---
 debian/control | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/debian/control b/debian/control
index dc1041d..d6e88dd 100644
--- a/debian/control
+++ b/debian/control
@@ -1,7 +1,6 @@
 Source: liblocale-subcountry-perl
 Maintainer: Debian Perl Group 
-Uploaders: Marc 'HE' Brockschmidt ,
-   Niko Tyni ,
+Uploaders: Niko Tyni ,
Krzysztof Krzyzaniak (eloy) ,
gregor herrmann 
 Section: perl

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/liblocale-subcountry-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libi18n-charset-perl] branch master updated (7d385a7 -> 5a65b9a)

2017-08-27 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to branch master
in repository libi18n-charset-perl.

  from  7d385a7   releasing package libi18n-charset-perl version 1.415-1
   new  26558fb   Remove Marc 'HE' Brockschmidt from Uploaders.
   new  5a65b9a   update changelog

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 6 ++
 debian/control   | 3 +--
 2 files changed, 7 insertions(+), 2 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libi18n-charset-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libi18n-charset-perl] 02/02: update changelog

2017-08-27 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libi18n-charset-perl.

commit 5a65b9acda249da27e66441d7d638ea997974a7d
Author: gregor herrmann 
Date:   Sun Aug 27 14:11:01 2017 +0200

update changelog

Gbp-Dch: Ignore
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 892208d..fd5a609 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libi18n-charset-perl (1.415-2) UNRELEASED; urgency=medium
+
+  * Remove Marc 'HE' Brockschmidt from Uploaders. (Closes: #873352)
+
+ -- gregor herrmann   Sun, 27 Aug 2017 14:11:01 +0200
+
 libi18n-charset-perl (1.415-1) unstable; urgency=medium
 
   * Add gbp.conf to filter out upstream .git on import.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libi18n-charset-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[liblocale-subcountry-perl] branch master updated (3ca5a53 -> e362479)

2017-08-27 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to branch master
in repository liblocale-subcountry-perl.

  from  3ca5a53   update changelog
   new  54aac45   Remove Marc 'HE' Brockschmidt from Uploaders.
   new  e362479   update changelog

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 6 ++
 debian/control   | 3 +--
 2 files changed, 7 insertions(+), 2 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/liblocale-subcountry-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libconfigreader-perl] branch master updated (dc22fac -> cd67222)

2017-08-27 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to branch master
in repository libconfigreader-perl.

  from  dc22fac   update changelog
   new  cd67222   add bug closer

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 1 +
 1 file changed, 1 insertion(+)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libconfigreader-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libconfigreader-perl] 01/01: add bug closer

2017-08-27 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libconfigreader-perl.

commit cd672226d5991e2ed599fde6b9c579e1131d0aa2
Author: gregor herrmann 
Date:   Sun Aug 27 14:10:25 2017 +0200

add bug closer

Gbp-Dch: Ignore
---
 debian/changelog | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/changelog b/debian/changelog
index fb3f43c..36f182c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,7 @@ libconfigreader-perl (0.5-6) UNRELEASED; urgency=medium
 
   [ gregor herrmann ]
   * Remove Marc Brockschmidt from Uploaders. Thanks for your work!
+Closes: #873350
 
  -- Salvatore Bonaccorso   Sat, 16 Aug 2014 09:30:37 +0200
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libconfigreader-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libconfig-auto-perl] 01/02: Remove Marc 'HE' Brockschmidt from Uploaders.

2017-08-27 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libconfig-auto-perl.

commit 50154a867bc560f8644ebc3ec671702415b624a9
Author: gregor herrmann 
Date:   Sun Aug 27 14:08:54 2017 +0200

Remove Marc 'HE' Brockschmidt from Uploaders.

Closes: #873349
---
 debian/control | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/debian/control b/debian/control
index f32176b..502019f 100644
--- a/debian/control
+++ b/debian/control
@@ -1,7 +1,6 @@
 Source: libconfig-auto-perl
 Maintainer: Debian Perl Group 
-Uploaders: Marc 'HE' Brockschmidt ,
-   Niko Tyni ,
+Uploaders: Niko Tyni ,
Krzysztof Krzyzaniak (eloy) ,
gregor herrmann ,
Alessandro Ghedini ,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libconfig-auto-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libconfig-auto-perl] branch master updated (39241aa -> 43b98d4)

2017-08-27 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to branch master
in repository libconfig-auto-perl.

  from  39241aa   update changelog
   new  50154a8   Remove Marc 'HE' Brockschmidt from Uploaders.
   new  43b98d4   update changelog

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 1 +
 debian/control   | 3 +--
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libconfig-auto-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libconfig-auto-perl] 02/02: update changelog

2017-08-27 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libconfig-auto-perl.

commit 43b98d44eceae654e455ade12a5aae808d6fe166
Author: gregor herrmann 
Date:   Sun Aug 27 14:08:54 2017 +0200

update changelog

Gbp-Dch: Ignore
---
 debian/changelog | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/changelog b/debian/changelog
index 3e37d69..d201e78 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ libconfig-auto-perl (0.44-2) UNRELEASED; urgency=medium
   [ gregor herrmann ]
   * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
   * Remove Rene Mayorga from Uploaders. Thanks for your work!
+  * Remove Marc 'HE' Brockschmidt from Uploaders. (Closes: #873349)
 
  -- Salvatore Bonaccorso   Sat, 16 Aug 2014 09:30:31 +0200
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libconfig-auto-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libastro-fits-cfitsio-perl] branch master updated (a218291 -> 1f2821f)

2017-08-27 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to branch master
in repository libastro-fits-cfitsio-perl.

  from  a218291   releasing package libastro-fits-cfitsio-perl version 
1.11-2
   new  1f6086c   Remove Marc 'HE' Brockschmidt from Uploaders.
   new  1f2821f   update changelog

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 6 ++
 debian/control   | 3 +--
 2 files changed, 7 insertions(+), 2 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libastro-fits-cfitsio-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libastro-fits-cfitsio-perl] 01/02: Remove Marc 'HE' Brockschmidt from Uploaders.

2017-08-27 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libastro-fits-cfitsio-perl.

commit 1f6086c6b01e18207c75748f8656797812f65c2f
Author: gregor herrmann 
Date:   Sun Aug 27 14:08:00 2017 +0200

Remove Marc 'HE' Brockschmidt from Uploaders.

Closes: #873348
---
 debian/control | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/debian/control b/debian/control
index db83bb9..b569815 100644
--- a/debian/control
+++ b/debian/control
@@ -1,7 +1,6 @@
 Source: libastro-fits-cfitsio-perl
 Maintainer: Debian Perl Group 
-Uploaders: Marc 'HE' Brockschmidt ,
-   Krzysztof Krzyzaniak (eloy) ,
+Uploaders: Krzysztof Krzyzaniak (eloy) ,
Niko Tyni ,
Damyan Ivanov ,
gregor herrmann ,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libastro-fits-cfitsio-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libastro-fits-cfitsio-perl] 02/02: update changelog

2017-08-27 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libastro-fits-cfitsio-perl.

commit 1f2821fb3216128927cfa57431ee75c241c87a89
Author: gregor herrmann 
Date:   Sun Aug 27 14:08:01 2017 +0200

update changelog

Gbp-Dch: Ignore
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 0117964..04d22a7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libastro-fits-cfitsio-perl (1.11-3) UNRELEASED; urgency=medium
+
+  * Remove Marc 'HE' Brockschmidt from Uploaders. (Closes: #873348)
+
+ -- gregor herrmann   Sun, 27 Aug 2017 14:08:00 +0200
+
 libastro-fits-cfitsio-perl (1.11-2) unstable; urgency=medium
 
   * Fix autopkgtest.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libastro-fits-cfitsio-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libdancer2-perl] annotated tag upstream/0.205001+dfsg created (now daa2612)

2017-08-27 Thread Nuno Carvalho
This is an automated email from the git hooks/post-receive script.

mestre-guest pushed a change to annotated tag upstream/0.205001+dfsg
in repository libdancer2-perl.

at  daa2612   (tag)
   tagging  5771979b2aaabf8d89748020b6cfb040b58f0f34 (commit)
  replaces  upstream/0.205000+dfsg
 tagged by  Nuno Carvalho
on  Sun Aug 27 12:01:02 2017 +0100

- Log -
Upstream version 0.205001+dfsg

Nuno Carvalho (1):
  New upstream version 0.205001+dfsg

---

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdancer2-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libdancer2-perl] 01/01: pristine-tar data for libdancer2-perl_0.205001+dfsg.orig.tar.gz

2017-08-27 Thread Nuno Carvalho
This is an automated email from the git hooks/post-receive script.

mestre-guest pushed a commit to branch pristine-tar
in repository libdancer2-perl.

commit fa3a4f91fdb932946023f6a3104c38d08b1b50ff
Author: Nuno Carvalho 
Date:   Sun Aug 27 12:01:02 2017 +0100

pristine-tar data for libdancer2-perl_0.205001+dfsg.orig.tar.gz
---
 libdancer2-perl_0.205001+dfsg.orig.tar.gz.delta | Bin 0 -> 17119 bytes
 libdancer2-perl_0.205001+dfsg.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libdancer2-perl_0.205001+dfsg.orig.tar.gz.delta 
b/libdancer2-perl_0.205001+dfsg.orig.tar.gz.delta
new file mode 100644
index 000..472dfcc
Binary files /dev/null and b/libdancer2-perl_0.205001+dfsg.orig.tar.gz.delta 
differ
diff --git a/libdancer2-perl_0.205001+dfsg.orig.tar.gz.id 
b/libdancer2-perl_0.205001+dfsg.orig.tar.gz.id
new file mode 100644
index 000..994f50d
--- /dev/null
+++ b/libdancer2-perl_0.205001+dfsg.orig.tar.gz.id
@@ -0,0 +1 @@
+b1f22e1adfd61280e25c5b2b282d89b9acefc377

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdancer2-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libdancer2-perl] 01/06: Updated version 0.205001+dfsg from 'upstream/0.205001+dfsg'

2017-08-27 Thread Nuno Carvalho
This is an automated email from the git hooks/post-receive script.

mestre-guest pushed a commit to branch master
in repository libdancer2-perl.

commit 4396b3ff657a65ae9b6689fd45c017e80622c0e0
Merge: 4a80114 5771979
Author: Nuno Carvalho 
Date:   Sun Aug 27 12:01:02 2017 +0100

Updated version 0.205001+dfsg from 'upstream/0.205001+dfsg'

with Debian dir e64be42bd397d0200dc433d59a6be1eb7e46aaf9

 Changes   |  25 +
 LICENSE   |   6 +-
 MANIFEST  |   2 +-
 META.json | 122 +++---
 META.yml  | 122 +++---
 Makefile.PL   |   8 +-
 cpanfile  |   3 +
 lib/Dancer2.pm|  10 +-
 lib/Dancer2/CLI.pm|   6 +-
 lib/Dancer2/CLI/Command/gen.pm|  13 ++-
 lib/Dancer2/CLI/Command/version.pm|   6 +-
 lib/Dancer2/Config.pod|   4 +-
 lib/Dancer2/Cookbook.pod  |   6 +-
 lib/Dancer2/Core.pm   |   6 +-
 lib/Dancer2/Core/App.pm   |  27 ++---
 lib/Dancer2/Core/Cookie.pm|  13 +--
 lib/Dancer2/Core/DSL.pm   |   9 +-
 lib/Dancer2/Core/Dispatcher.pm|   6 +-
 lib/Dancer2/Core/Error.pm |  15 ++-
 lib/Dancer2/Core/Factory.pm   |   6 +-
 lib/Dancer2/Core/HTTP.pm  |   6 +-
 lib/Dancer2/Core/Hook.pm  |   6 +-
 lib/Dancer2/Core/MIME.pm  |   6 +-
 lib/Dancer2/Core/Request.pm   |  35 ---
 lib/Dancer2/Core/Request/Upload.pm|   6 +-
 lib/Dancer2/Core/Response.pm  |   6 +-
 lib/Dancer2/Core/Response/Delayed.pm  |   8 +-
 lib/Dancer2/Core/Role/ConfigReader.pm |   6 +-
 lib/Dancer2/Core/Role/DSL.pm  |   6 +-
 lib/Dancer2/Core/Role/Engine.pm   |   6 +-
 lib/Dancer2/Core/Role/Handler.pm  |   6 +-
 lib/Dancer2/Core/Role/HasLocation.pm  |   6 +-
 lib/Dancer2/Core/Role/Hookable.pm |   6 +-
 lib/Dancer2/Core/Role/Logger.pm   |   6 +-
 lib/Dancer2/Core/Role/Serializer.pm   |   6 +-
 lib/Dancer2/Core/Role/SessionFactory.pm   |  13 +--
 lib/Dancer2/Core/Role/SessionFactory/File.pm  |   6 +-
 lib/Dancer2/Core/Role/StandardResponses.pm|   6 +-
 lib/Dancer2/Core/Role/Template.pm |   9 +-
 lib/Dancer2/Core/Route.pm |  13 +--
 lib/Dancer2/Core/Runner.pm|  11 +-
 lib/Dancer2/Core/Session.pm   |   6 +-
 lib/Dancer2/Core/Time.pm  |   6 +-
 lib/Dancer2/Core/Types.pm |   8 +-
 lib/Dancer2/FileUtils.pm  |   6 +-
 lib/Dancer2/Handler/AutoPage.pm   |   6 +-
 lib/Dancer2/Handler/File.pm   |   6 +-
 lib/Dancer2/Logger/Capture.pm |   6 +-
 lib/Dancer2/Logger/Capture/Trap.pm|   6 +-
 lib/Dancer2/Logger/Console.pm |   6 +-
 lib/Dancer2/Logger/Diag.pm|   6 +-
 lib/Dancer2/Logger/File.pm|   6 +-
 lib/Dancer2/Logger/Note.pm|   6 +-
 lib/Dancer2/Logger/Null.pm|   6 +-
 lib/Dancer2/Manual.pod|   4 +-
 lib/Dancer2/Manual/Deployment.pod |   4 +-
 lib/Dancer2/Manual/Migration.pod  |   4 +-
 lib/Dancer2/Manual/Testing.pod|   4 +-
 lib/Dancer2/Plugin.pm |   8 +-
 lib/Dancer2/Plugins.pod   |   4 +-
 lib/Dancer2/Policy.pod|   4 +-
 lib/Dancer2/Serializer/Dumper.pm  |   6 +-
 lib/Dancer2/Serializer/JSON.pm|   6 +-
 lib/Dancer2/Serializer/Mutable.pm |   6 +-
 lib/Dancer2/Serializer/YAML.pm|   6 +-
 lib/Dancer2/Session/Simple.pm |   6 +-
 lib/Dancer2/Session/YAML.pm   |   6 +-
 lib/Dancer2/Template/Implementation/ForkedTiny.pm |   6 +-
 lib/Dancer2/Template/Simple.pm|   6 +-
 lib/Dancer2/Template/TemplateToolkit.pm   |   6 +-
 lib/Dancer2/Template/Tiny.pm  |   6 +-
 lib/Dancer2/Test.pm   |   6 +-
 lib/Dancer2/Tutorial.pod  |   6 +-
 script/dancer2|   4 +-
 t/00-report-prereqs.dd|   2 +
 

[libdancer2-perl] branch pristine-tar updated (c6144c1 -> fa3a4f9)

2017-08-27 Thread Nuno Carvalho
This is an automated email from the git hooks/post-receive script.

mestre-guest pushed a change to branch pristine-tar
in repository libdancer2-perl.

  from  c6144c1   pristine-tar data for 
libdancer2-perl_0.205000+dfsg.orig.tar.gz
   new  fa3a4f9   pristine-tar data for 
libdancer2-perl_0.205001+dfsg.orig.tar.gz

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 libdancer2-perl_0.205001+dfsg.orig.tar.gz.delta | Bin 0 -> 17119 bytes
 libdancer2-perl_0.205001+dfsg.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libdancer2-perl_0.205001+dfsg.orig.tar.gz.delta
 create mode 100644 libdancer2-perl_0.205001+dfsg.orig.tar.gz.id

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdancer2-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libdancer2-perl] 03/06: Update package dependencies

2017-08-27 Thread Nuno Carvalho
This is an automated email from the git hooks/post-receive script.

mestre-guest pushed a commit to branch master
in repository libdancer2-perl.

commit 2ce3dddb83c7fd591e6862fcc4938c828cfb5fac
Author: Nuno Carvalho 
Date:   Sun Aug 27 12:24:09 2017 +0100

Update package dependencies
---
 debian/changelog | 2 ++
 debian/control   | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 6f2d272..3e60aed 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,8 @@ libdancer2-perl (0.205001+dfsg-1) UNRELEASED; urgency=medium
 
   [ Nuno Carvalho ]
   * Drop spelling.patch, merged upstream.
+  * debian/control:
++ add new dependency libref-util-perl.
 
  -- Nuno Carvalho   Sun, 27 Aug 2017 12:08:40 +0100
 
diff --git a/debian/control b/debian/control
index d0f9777..46a89ee 100644
--- a/debian/control
+++ b/debian/control
@@ -28,6 +28,7 @@ Build-Depends-Indep: libapp-cmd-perl,
  libplack-middleware-fixmissingbodyinredirect-perl,
  libplack-middleware-removeredundantbody-perl,
  libreturn-multilevel-perl,
+ libref-util-perl,
  librole-tiny-perl (>= 2.00),
  libsafe-isa-perl,
  libscope-upper-perl,
@@ -70,6 +71,7 @@ Depends: ${misc:Depends},
  libmoo-perl (>= 2.003000),
  libplack-perl (>= 1.0035),
  libplack-middleware-fixmissingbodyinredirect-perl,
+ libref-util-perl,
  libreturn-multilevel-perl,
  librole-tiny-perl (>= 2.00),
  libsafe-isa-perl,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdancer2-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libdancer2-perl] 06/06: New upstream release, ready for review

2017-08-27 Thread Nuno Carvalho
This is an automated email from the git hooks/post-receive script.

mestre-guest pushed a commit to branch master
in repository libdancer2-perl.

commit d09b3f1449ede94523e38b40f749c30c767720a1
Author: Nuno Carvalho 
Date:   Sun Aug 27 12:56:36 2017 +0100

New upstream release, ready for review
---
 debian/changelog | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 4de5150..d0597a7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,6 @@
-libdancer2-perl (0.205001+dfsg-1) UNRELEASED; urgency=medium
+libdancer2-perl (0.205001+dfsg-1) unstable; urgency=medium
+
+  * Team upload.
 
   [ gregor herrmann ]
   * Drop debian/tests/pkg-perl/smoke-tests, handled by pkg-perl-
@@ -12,7 +14,7 @@ libdancer2-perl (0.205001+dfsg-1) UNRELEASED; urgency=medium
   * d/copyright:
 + update copyright years.
 
- -- Nuno Carvalho   Sun, 27 Aug 2017 12:08:40 +0100
+ -- Nuno Carvalho   Sun, 27 Aug 2017 12:55:46 +0100
 
 libdancer2-perl (0.205000+dfsg-1) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdancer2-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libdancer2-perl] 04/06: Declare compliance with Debian Policy 4.1.0

2017-08-27 Thread Nuno Carvalho
This is an automated email from the git hooks/post-receive script.

mestre-guest pushed a commit to branch master
in repository libdancer2-perl.

commit 83c37e46519c33083b6d87b24f48bd3b4bb74728
Author: Nuno Carvalho 
Date:   Sun Aug 27 12:40:41 2017 +0100

Declare compliance with Debian Policy 4.1.0
---
 debian/changelog | 1 +
 debian/control   | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 3e60aed..b94554d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ libdancer2-perl (0.205001+dfsg-1) UNRELEASED; urgency=medium
   * Drop spelling.patch, merged upstream.
   * debian/control:
 + add new dependency libref-util-perl.
++ Declare compliance with Debian Policy 4.1.0.
 
  -- Nuno Carvalho   Sun, 27 Aug 2017 12:08:40 +0100
 
diff --git a/debian/control b/debian/control
index 46a89ee..1347063 100644
--- a/debian/control
+++ b/debian/control
@@ -43,7 +43,7 @@ Build-Depends-Indep: libapp-cmd-perl,
  libyaml-perl (>= 0.86),
  perl,
  perl (>= 5.19.3) | libscalar-list-utils-perl (>= 1:1.29)
-Standards-Version: 3.9.8
+Standards-Version: 4.1.0
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libdancer2-perl.git
 Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libdancer2-perl.git
 Homepage: https://metacpan.org/release/Dancer2

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdancer2-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libdancer2-perl] branch master updated (4a80114 -> d09b3f1)

2017-08-27 Thread Nuno Carvalho
This is an automated email from the git hooks/post-receive script.

mestre-guest pushed a change to branch master
in repository libdancer2-perl.

  from  4a80114   update changelog
  adds  5771979   New upstream version 0.205001+dfsg
   new  4396b3f   Updated version 0.205001+dfsg from 
'upstream/0.205001+dfsg'
   new  0ef5697   Drop spelling patch
   new  2ce3ddd   Update package dependencies
   new  83c37e4   Declare compliance with Debian Policy 4.1.0
   new  7ccef83   Update copyright years
   new  d09b3f1   New upstream release, ready for review

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Changes   |  25 +
 LICENSE   |   6 +-
 MANIFEST  |   2 +-
 META.json | 122 +++---
 META.yml  | 122 +++---
 Makefile.PL   |   8 +-
 cpanfile  |   3 +
 debian/changelog  |  15 ++-
 debian/control|   4 +-
 debian/copyright  |   4 +-
 debian/patches/series |   1 -
 debian/patches/spelling.patch |  19 
 lib/Dancer2.pm|  10 +-
 lib/Dancer2/CLI.pm|   6 +-
 lib/Dancer2/CLI/Command/gen.pm|  13 ++-
 lib/Dancer2/CLI/Command/version.pm|   6 +-
 lib/Dancer2/Config.pod|   4 +-
 lib/Dancer2/Cookbook.pod  |   6 +-
 lib/Dancer2/Core.pm   |   6 +-
 lib/Dancer2/Core/App.pm   |  27 ++---
 lib/Dancer2/Core/Cookie.pm|  13 +--
 lib/Dancer2/Core/DSL.pm   |   9 +-
 lib/Dancer2/Core/Dispatcher.pm|   6 +-
 lib/Dancer2/Core/Error.pm |  15 ++-
 lib/Dancer2/Core/Factory.pm   |   6 +-
 lib/Dancer2/Core/HTTP.pm  |   6 +-
 lib/Dancer2/Core/Hook.pm  |   6 +-
 lib/Dancer2/Core/MIME.pm  |   6 +-
 lib/Dancer2/Core/Request.pm   |  35 ---
 lib/Dancer2/Core/Request/Upload.pm|   6 +-
 lib/Dancer2/Core/Response.pm  |   6 +-
 lib/Dancer2/Core/Response/Delayed.pm  |   8 +-
 lib/Dancer2/Core/Role/ConfigReader.pm |   6 +-
 lib/Dancer2/Core/Role/DSL.pm  |   6 +-
 lib/Dancer2/Core/Role/Engine.pm   |   6 +-
 lib/Dancer2/Core/Role/Handler.pm  |   6 +-
 lib/Dancer2/Core/Role/HasLocation.pm  |   6 +-
 lib/Dancer2/Core/Role/Hookable.pm |   6 +-
 lib/Dancer2/Core/Role/Logger.pm   |   6 +-
 lib/Dancer2/Core/Role/Serializer.pm   |   6 +-
 lib/Dancer2/Core/Role/SessionFactory.pm   |  13 +--
 lib/Dancer2/Core/Role/SessionFactory/File.pm  |   6 +-
 lib/Dancer2/Core/Role/StandardResponses.pm|   6 +-
 lib/Dancer2/Core/Role/Template.pm |   9 +-
 lib/Dancer2/Core/Route.pm |  13 +--
 lib/Dancer2/Core/Runner.pm|  11 +-
 lib/Dancer2/Core/Session.pm   |   6 +-
 lib/Dancer2/Core/Time.pm  |   6 +-
 lib/Dancer2/Core/Types.pm |   8 +-
 lib/Dancer2/FileUtils.pm  |   6 +-
 lib/Dancer2/Handler/AutoPage.pm   |   6 +-
 lib/Dancer2/Handler/File.pm   |   6 +-
 lib/Dancer2/Logger/Capture.pm |   6 +-
 lib/Dancer2/Logger/Capture/Trap.pm|   6 +-
 lib/Dancer2/Logger/Console.pm |   6 +-
 lib/Dancer2/Logger/Diag.pm|   6 +-
 lib/Dancer2/Logger/File.pm|   6 +-
 lib/Dancer2/Logger/Note.pm|   6 +-
 lib/Dancer2/Logger/Null.pm|   6 +-
 lib/Dancer2/Manual.pod|   4 +-
 lib/Dancer2/Manual/Deployment.pod |   4 +-
 lib/Dancer2/Manual/Migration.pod  |   4 +-
 lib/Dancer2/Manual/Testing.pod|   4 +-
 lib/Dancer2/Plugin.pm |   8 +-
 lib/Dancer2/Plugins.pod   |   4 +-
 lib/Dancer2/Policy.pod|   4 +-
 lib/Dancer2/Serializer/Dumper.pm  |   6 +-
 lib/Dancer2/Serializer/JSON.pm|   6 +-
 

[libdancer2-perl] 05/06: Update copyright years

2017-08-27 Thread Nuno Carvalho
This is an automated email from the git hooks/post-receive script.

mestre-guest pushed a commit to branch master
in repository libdancer2-perl.

commit 7ccef8398e73908c5d949fa693fdbeef219e7e76
Author: Nuno Carvalho 
Date:   Sun Aug 27 12:52:24 2017 +0100

Update copyright years
---
 debian/changelog | 2 ++
 debian/copyright | 4 ++--
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index b94554d..4de5150 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,8 @@ libdancer2-perl (0.205001+dfsg-1) UNRELEASED; urgency=medium
   * debian/control:
 + add new dependency libref-util-perl.
 + Declare compliance with Debian Policy 4.1.0.
+  * d/copyright:
++ update copyright years.
 
  -- Nuno Carvalho   Sun, 27 Aug 2017 12:08:40 +0100
 
diff --git a/debian/copyright b/debian/copyright
index 73a81c6..5b55320 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -7,7 +7,7 @@ Comment: The upstream sources were repackaged in order to:
  drop the minified jQuery convenience copy
 
 Files: *
-Copyright: 2016, Alexis Sukrieh 
+Copyright: 2017, Alexis Sukrieh 
 License: Artistic or GPL-1+
 
 Files: lib/Dancer2/Template/Implementation/ForkedTiny.pm
@@ -17,7 +17,7 @@ Copyright: 2009-2011, Adam Kennedy
 License: Artistic or GPL-1+
 
 Files: lib/Dancer2/Tutorial.pod
-Copyright: 2016, Alexis Sukrieh 
+Copyright: 2017, Alexis Sukrieh 
 License: Artistic-2.0 or GPL-2
 Comment: the css file mentioned there doesn't exist
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdancer2-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libdancer2-perl] 02/06: Drop spelling patch

2017-08-27 Thread Nuno Carvalho
This is an automated email from the git hooks/post-receive script.

mestre-guest pushed a commit to branch master
in repository libdancer2-perl.

commit 0ef5697b161ab1f36ffb41fbaf933d1fda5dfbd8
Author: Nuno Carvalho 
Date:   Sun Aug 27 12:15:15 2017 +0100

Drop spelling patch
---
 debian/changelog  |  8 ++--
 debian/patches/series |  1 -
 debian/patches/spelling.patch | 19 ---
 3 files changed, 6 insertions(+), 22 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 70e776f..6f2d272 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,13 @@
-libdancer2-perl (0.205000+dfsg-2) UNRELEASED; urgency=medium
+libdancer2-perl (0.205001+dfsg-1) UNRELEASED; urgency=medium
 
+  [ gregor herrmann ]
   * Drop debian/tests/pkg-perl/smoke-tests, handled by pkg-perl-
 autopkgtest now.
 
- -- gregor herrmann   Wed, 02 Aug 2017 18:33:32 -0400
+  [ Nuno Carvalho ]
+  * Drop spelling.patch, merged upstream.
+
+ -- Nuno Carvalho   Sun, 27 Aug 2017 12:08:40 +0100
 
 libdancer2-perl (0.205000+dfsg-1) unstable; urgency=medium
 
diff --git a/debian/patches/series b/debian/patches/series
index d6593ef..284c926 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1 @@
 remove-eumm-version-req.patch
-spelling.patch
diff --git a/debian/patches/spelling.patch b/debian/patches/spelling.patch
deleted file mode 100644
index 67389ec..000
--- a/debian/patches/spelling.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Description: fix a typo
-Origin: vendor
-Author: gregor herrmann 
-Last-Update: 2017-06-18
-Forwarded: https://github.com/PerlDancer/Dancer2/pull/1355
-Bug: https://github.com/PerlDancer/Dancer2/pull/1355
-Applied-Upstream: 
https://github.com/PerlDancer/Dancer2/pull/1355#issuecomment-313875908
-
 a/lib/Dancer2/Core/Response/Delayed.pm
-+++ b/lib/Dancer2/Core/Response/Delayed.pm
-@@ -102,7 +102,7 @@
- It can be used via the C keyword.
- 
- It keeps references to a request and a response in order to avoid
--keeping a reference ot the application.
-+keeping a reference to the application.
- 
- =head1 ATTRIBUTES
- 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdancer2-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits