[libunix-configfile-perl] 04/04: releasing package libunix-configfile-perl version 0.6-2

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 725638ff8257d2a15c52cad20dff95be01bc25c4
Author: gregor herrmann gre...@debian.org
Date:   Sun Jun 21 15:46:22 2015 +0200

releasing package libunix-configfile-perl version 0.6-2
---
 debian/changelog | 11 +--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 4eff8bc..0b671d5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,6 @@
-libunix-configfile-perl (0.6-2) UNRELEASED; urgency=low
+libunix-configfile-perl (0.6-2) unstable; urgency=low
+
+  * Team upload.
 
   [ Salvatore Bonaccorso ]
   * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
@@ -10,7 +12,12 @@ libunix-configfile-perl (0.6-2) UNRELEASED; urgency=low
   [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
 
- -- Salvatore Bonaccorso car...@debian.org  Sun, 06 Jan 2013 22:08:42 +0100
+  [ gregor herrmann ]
+  * Add patch from CPAN RT to fix defined(@array) warning/error.
+(Closes: #789470)
+  * Declare compliance with Debian Policy 3.9.6.
+
+ -- gregor herrmann gre...@debian.org  Sun, 21 Jun 2015 15:44:56 +0200
 
 libunix-configfile-perl (0.6-1) unstable; urgency=low
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libunix-configfile-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


[libunix-configfile-perl] 02/04: Reformat debian/control with cme

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 8d8a02e0755af4bf459a8d231a000144054090bd
Author: gregor herrmann gre...@debian.org
Date:   Sun Jun 21 15:25:45 2015 +0200

Reformat debian/control with cme

Gbp-Dch: ignore
---
 debian/control | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/debian/control b/debian/control
index 3f52355..d2144d7 100644
--- a/debian/control
+++ b/debian/control
@@ -1,8 +1,8 @@
 Source: libunix-configfile-perl
-Section: perl
-Priority: optional
 Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
 Uploaders: Florian Schlichting fschl...@zedat.fu-berlin.de
+Section: perl
+Priority: optional
 Build-Depends: debhelper (= 8)
 Build-Depends-Indep: perl
 Standards-Version: 3.9.4
@@ -12,7 +12,8 @@ Homepage: https://metacpan.org/release/Unix-ConfigFile
 
 Package: libunix-configfile-perl
 Architecture: all
-Depends: ${misc:Depends}, ${perl:Depends}
+Depends: ${misc:Depends},
+ ${perl:Depends}
 Description: Perl interface to various Unix configuration files
  The Unix::ConfigFile distribution is a suite of modules that provide simple
  interfaces to various Unix configuration files.  The objective is to free the

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libunix-configfile-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


[libunix-configfile-perl] 01/04: Add patch from CPAN RT to fix defined(@array) warning/error.

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit a487448a31a932ea8fa250f2b507e1516856d442
Author: gregor herrmann gre...@debian.org
Date:   Sun Jun 21 15:25:02 2015 +0200

Add patch from CPAN RT to fix defined(@array) warning/error.

Closes: #789470
---
 debian/patches/defined-array.patch | 22 ++
 debian/patches/series  |  1 +
 2 files changed, 23 insertions(+)

diff --git a/debian/patches/defined-array.patch 
b/debian/patches/defined-array.patch
new file mode 100644
index 000..29322fc
--- /dev/null
+++ b/debian/patches/defined-array.patch
@@ -0,0 +1,22 @@
+Description: fix defined(@array) error
+Origin: CPAN RT
+Bug: https://rt.cpan.org/Public/Bug/Display.html?id=103189
+Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=103189
+Bug-Debian: https://bugs.debian.org/789470
+Author: to...@cpan.org
+Reviewed-by: gregor herrmann gre...@debian.org
+Last-Update: 2015-06-21
+
+diff -ru Unix-ConfigFile-0.06-p7qUjC/AliasFile.pm 
Unix-ConfigFile-0.06-2t7dzt/AliasFile.pm
+--- Unix-ConfigFile-0.06-p7qUjC/AliasFile.pm   2000-05-03 01:50:43.0 
+1000
 Unix-ConfigFile-0.06-2t7dzt/AliasFile.pm   2015-03-30 15:20:00.0 
+1100
+@@ -213,7 +213,7 @@
+   }
+   my $name = $1;
+   my @users = $this-alias($name);
+-  next if !defined @users;
++  next if !@users;
+   print $fh $this-joinwrap(80, $name: , \t, ,, ,, @users), \n
+   or return 0;
+ }
+Only in Unix-ConfigFile-0.06-2t7dzt/: AliasFile.pm~
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..fe54ca1
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+defined-array.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libunix-configfile-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


[libunix-configfile-perl] branch master updated (cd6636c - 725638f)

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

  from  cd6636c   update changelog
   new  a487448   Add patch from CPAN RT to fix defined(@array) 
warning/error.
   new  8d8a02e   Reformat debian/control with cme
   new  b33fcee   Declare compliance with Debian Policy 3.9.6.
   new  725638f   releasing package libunix-configfile-perl version 0.6-2

The 4 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   | 11 +--
 debian/control |  9 +
 debian/patches/defined-array.patch | 22 ++
 debian/patches/series  |  1 +
 4 files changed, 37 insertions(+), 6 deletions(-)
 create mode 100644 debian/patches/defined-array.patch
 create mode 100644 debian/patches/series

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libunix-configfile-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


[libunix-configfile-perl] 03/04: Declare compliance with Debian Policy 3.9.6.

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit b33fcee6728e959266fb7d80d5cf933153242129
Author: gregor herrmann gre...@debian.org
Date:   Sun Jun 21 15:25:47 2015 +0200

Declare compliance with Debian Policy 3.9.6.
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index d2144d7..766a423 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,7 @@ Section: perl
 Priority: optional
 Build-Depends: debhelper (= 8)
 Build-Depends-Indep: perl
-Standards-Version: 3.9.4
+Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libunix-configfile-perl.git
 Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libunix-configfile-perl.git
 Homepage: https://metacpan.org/release/Unix-ConfigFile

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libunix-configfile-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


[libunix-configfile-perl] annotated tag debian/0.6-2 created (now bcf16f8)

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to annotated tag debian/0.6-2
in repository libunix-configfile-perl.

at  bcf16f8   (tag)
   tagging  725638ff8257d2a15c52cad20dff95be01bc25c4 (commit)
  replaces  debian/0.6-1
 tagged by  gregor herrmann
on  Sun Jun 21 15:46:22 2015 +0200

- Log -
tagging package libunix-configfile-perl version debian/0.6-2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAABCgBmBQJVhsAuXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoGVRoQAKqGxS2Y9hLULcsJ3G47V4YM
MYVYDsFnAODS2fGf1BdoEQSi6sQK6cyLZmNGhHeOW3iIvgbVz0ko6oDgnCAiVm5q
Ope/mN0vj6Ti6AYOFY38D/VZbWWOtgZ6zyS7YgH/BCQkPBlQ0JXyUPOydCHSiboe
7hJbCB5mVvpiiNFtNU/yIeh10YLa114kOtOhhxsA7yaTHKwFaPeJievq5Rt734EP
ihxCAw1RLAn3iKwt+Y9QgbYRWzi5rnJqTjLOdnUf1Qfy007Nh/zHEU7YQN+86wX6
JE884dxv0MB6ryHU0HjXP9dJyyiX8/b5BqaAadhxKIcVXJ15BdY1iS+LtP470fS5
yof7ZNmFd0xw44czKAmnTl5CO0WD07eRir11lrcZ38+RjmBfljNQFskjrKLR8etG
z1cz45X9LFAiFYTljMRNrJIHmhhWD20TqL0Ss9pUXc55MTPYQ+pi0IEvQCwGdU+7
KYZbAaA8hioGewLwe3jTay8EEsHerCOgYf9I1Wj5OGPydkLXOXMsZn+f5f3/+INf
/JvDNCukHdMSSzLbyiNL4Z6+J3NzOi7ABVIA0yolSVKlE6IUgzSXdPAIhz6gLCMW
kfusRCFGPO5ef+NgALSSXopx3BU992119cRy5WgAm8GxOz1knrauxO/OAyQy0Hzd
N0acFO3M8bdOOO1/IzdY
=wCEX
-END PGP SIGNATURE-

Salvatore Bonaccorso (6):
  Change Vcs-Git to canonical URI (git://anonscm.debian.org)
  update changelog
  Change search.cpan.org based URIs to metacpan.org based URIs
  update changelog
  Update Vcs-Browser URL to cgit web frontend
  update changelog

gregor herrmann (6):
  Strip trailing slash from metacpan URLs.
  update changelog
  Add patch from CPAN RT to fix defined(@array) warning/error.
  Reformat debian/control with cme
  Declare compliance with Debian Policy 3.9.6.
  releasing package libunix-configfile-perl version 0.6-2

---

This annotated tag includes the following new commits:

   new  a487448   Add patch from CPAN RT to fix defined(@array) 
warning/error.
   new  8d8a02e   Reformat debian/control with cme
   new  b33fcee   Declare compliance with Debian Policy 3.9.6.
   new  725638f   releasing package libunix-configfile-perl version 0.6-2

The 4 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.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libunix-configfile-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


[libcrypt-openssl-bignum-perl] 01/01: pristine-tar data for libcrypt-openssl-bignum-perl_0.06.orig.tar.gz

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch pristine-tar
in repository libcrypt-openssl-bignum-perl.

commit 07798c375a6a84d38600a7996a6ad53ac2a51d54
Author: Damyan Ivanov d...@debian.org
Date:   Sun Jun 21 15:38:55 2015 +

pristine-tar data for libcrypt-openssl-bignum-perl_0.06.orig.tar.gz
---
 libcrypt-openssl-bignum-perl_0.06.orig.tar.gz.delta | Bin 0 - 1224 bytes
 libcrypt-openssl-bignum-perl_0.06.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libcrypt-openssl-bignum-perl_0.06.orig.tar.gz.delta 
b/libcrypt-openssl-bignum-perl_0.06.orig.tar.gz.delta
new file mode 100644
index 000..17b5c0e
Binary files /dev/null and 
b/libcrypt-openssl-bignum-perl_0.06.orig.tar.gz.delta differ
diff --git a/libcrypt-openssl-bignum-perl_0.06.orig.tar.gz.id 
b/libcrypt-openssl-bignum-perl_0.06.orig.tar.gz.id
new file mode 100644
index 000..41492a8
--- /dev/null
+++ b/libcrypt-openssl-bignum-perl_0.06.orig.tar.gz.id
@@ -0,0 +1 @@
+eac75cb73326346746408d8859ec15cca1ea36f3

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcrypt-openssl-bignum-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


[libcrypt-openssl-bignum-perl] 03/05: Mark package as autopkgtest-able

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libcrypt-openssl-bignum-perl.

commit f5b783bed799bc85bc4c9e66f53ddc40a2b911c0
Author: Damyan Ivanov d...@debian.org
Date:   Sun Jun 21 15:42:38 2015 +

Mark package as autopkgtest-able
---
 debian/control | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/control b/debian/control
index d5d7741..b9db634 100644
--- a/debian/control
+++ b/debian/control
@@ -3,6 +3,7 @@ Maintainer: Debian Perl Group 
pkg-perl-maintain...@lists.alioth.debian.org
 Uploaders: Damyan Ivanov d...@debian.org,
Xavier Guimard x.guim...@free.fr
 Section: perl
+Testsuite: autopkgtest-pkg-perl
 Priority: optional
 Build-Depends: debhelper (= 9.20120312),
libssl-dev,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcrypt-openssl-bignum-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


[libcrypt-openssl-bignum-perl] 05/05: releasing package libcrypt-openssl-bignum-perl version 0.06-1

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libcrypt-openssl-bignum-perl.

commit 4ebb341d24d0d2b48dacb16b2ca598b54ca1ab46
Author: Damyan Ivanov d...@debian.org
Date:   Sun Jun 21 15:48:16 2015 +

releasing package libcrypt-openssl-bignum-perl version 0.06-1
---
 debian/changelog | 10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 657b9d4..787e369 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libcrypt-openssl-bignum-perl (0.04-5) UNRELEASED; urgency=medium
+libcrypt-openssl-bignum-perl (0.06-1) unstable; urgency=medium
 
   [ gregor herrmann ]
   * Strip trailing slash from metacpan URLs.
@@ -6,7 +6,13 @@ libcrypt-openssl-bignum-perl (0.04-5) UNRELEASED; 
urgency=medium
   [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
 
- -- gregor herrmann gre...@debian.org  Thu, 27 Feb 2014 22:34:04 +0100
+  [ Damyan Ivanov ]
+  * Imported Upstream version 0.06
+Closes: #687712 -- to_bin method returns garbage when value is zero
+  * Mark package as autopkgtest-able
+  * Declare compliance with Debian Policy 3.9.6
+
+ -- Damyan Ivanov d...@debian.org  Sun, 21 Jun 2015 15:43:48 +
 
 libcrypt-openssl-bignum-perl (0.04-4) unstable; urgency=low
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcrypt-openssl-bignum-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


[libcrypt-openssl-bignum-perl] annotated tag debian/0.06-1 created (now 4f1bb34)

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag debian/0.06-1
in repository libcrypt-openssl-bignum-perl.

at  4f1bb34   (tag)
   tagging  4ebb341d24d0d2b48dacb16b2ca598b54ca1ab46 (commit)
  replaces  debian/0.04-4
 tagged by  Damyan Ivanov
on  Sun Jun 21 15:48:16 2015 +

- Log -
tagging package libcrypt-openssl-bignum-perl version debian/0.06-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJVhtzAAAoJENu+nU2Z0qAEx+YQAKqqdqHlNz7xSMQ3GjuC4jtL
grMa+NE+OUcSWzsBOZ6MSIpri2xdvNmeIRMpgtQUk0ZsePHlNP50O4j71O6fNlTB
FNmybv8flWOe0n9vZl443mMG4PnQNHTN7tP78wAnzqDyAOZ7YrhTgP8W8s0aNmka
BhL41BQTxwDtPRMY+5wtF7WcHGxHLcw/H+znd3vxZlFJcFNNJuOycw5DlR0wXo+G
F03PoYSmch3SHTX35vVCX5hDd8om8dd3LjiZU2iv1El8A/P5EU8+tfinccWKFmRV
A1UqxPU9ZSG0NsX4JC+h10+d9i4ENnQc9XEN+BGW9U//T0UFhV2U6s6jHqt8e82p
qc03HRd6YtmZNVNln95koSfMF+YDutkJiDlmt4x1w9eCfRu8HfgTEyteMTPGWQ4g
Kbd22n5ES7J0tCz75UQQLP06VFk6S1+Z9MTcaSyU8Y3W/wE130MR1xkcWUIzj9/U
nFemobRHhg35jqLyEy4+8hjxHOZ9rEyge2w+mU5pF4INdCbjrA3qvICQx/Judtcd
cccx7O21CqU392E6oLVlyYs0vAsw65oY41/xJ25ZL2FJJ0N4VMTALQjFwi/+cCDi
AkTOhKjcgFRAlN+nQX1RnEb+SAI86DINYpVw2vQ/lEBvtPE+lDq17gofA4mUzmJR
x1oS/BY1CxacvcgMYil8
=iPEs
-END PGP SIGNATURE-

Damyan Ivanov (6):
  Imported Upstream version 0.06
  Merge tag 'upstream/0.06'
  Reformat debian/control with cme
  Mark package as autopkgtest-able
  Declare compliance with Debian Policy 3.9.6
  releasing package libcrypt-openssl-bignum-perl version 0.06-1

Salvatore Bonaccorso (2):
  Update Vcs-Browser URL to cgit web frontend
  update changelog

gregor herrmann (2):
  Strip trailing slash from metacpan URLs.
  update changelog

---

This annotated tag includes the following new commits:

   new  007aaa1   Merge tag 'upstream/0.06'
   new  07e25bd   Reformat debian/control with cme
   new  f5b783b   Mark package as autopkgtest-able
   new  735a00f   Declare compliance with Debian Policy 3.9.6
   new  4ebb341   releasing package libcrypt-openssl-bignum-perl version 
0.06-1

The 5 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.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcrypt-openssl-bignum-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


[libcrypt-openssl-bignum-perl] 01/05: Merge tag 'upstream/0.06'

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libcrypt-openssl-bignum-perl.

commit 007aaa12adf24ddf95fa496871a8d557c23fe378
Merge: 8f8faf3 ecd36c3
Author: Damyan Ivanov d...@debian.org
Date:   Sun Jun 21 15:38:56 2015 +

Merge tag 'upstream/0.06'

Upstream version 0.06

 Bignum.pm| 269 +++--
 Bignum.xs| 394 +++
 Bignum/CTX.pm|   5 -
 Changes  |  22 +++-
 LICENSE  |   0
 MANIFEST |   6 +-
 META.json|  46 +++
 META.yml |  32 +++--
 Makefile.PL  |   7 +
 README   |  12 --
 hints/MSWin32.pl |   3 +
 test.pl  |  29 +++-
 typemap  |  13 +-
 13 files changed, 581 insertions(+), 257 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcrypt-openssl-bignum-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


[libcrypt-openssl-bignum-perl] branch master updated (8f8faf3 - 4ebb341)

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to branch master
in repository libcrypt-openssl-bignum-perl.

  from  8f8faf3   update changelog
  adds  ecd36c3   Imported Upstream version 0.06
   new  007aaa1   Merge tag 'upstream/0.06'
   new  07e25bd   Reformat debian/control with cme
   new  f5b783b   Mark package as autopkgtest-able
   new  735a00f   Declare compliance with Debian Policy 3.9.6
   new  4ebb341   releasing package libcrypt-openssl-bignum-perl version 
0.06-1

The 5 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:
 Bignum.pm| 269 +++--
 Bignum.xs| 394 +++
 Bignum/CTX.pm|   5 -
 Changes  |  22 +++-
 LICENSE  |   0
 MANIFEST |   6 +-
 META.json|  46 +++
 META.yml |  32 +++--
 Makefile.PL  |   7 +
 README   |  12 --
 debian/changelog |  10 +-
 debian/control   |   4 +-
 hints/MSWin32.pl |   3 +
 test.pl  |  29 +++-
 typemap  |  13 +-
 15 files changed, 591 insertions(+), 261 deletions(-)
 mode change 100644 = 100755 Bignum.pm
 mode change 100644 = 100755 Bignum.xs
 mode change 100644 = 100755 Bignum/CTX.pm
 mode change 100644 = 100755 Changes
 mode change 100644 = 100755 LICENSE
 create mode 100644 META.json
 mode change 100644 = 100755 Makefile.PL
 mode change 100644 = 100755 README
 create mode 100755 hints/MSWin32.pl
 mode change 100644 = 100755 test.pl
 mode change 100644 = 100755 typemap

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcrypt-openssl-bignum-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


[libcrypt-openssl-bignum-perl] branch pristine-tar updated (f1fde53 - 07798c3)

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to branch pristine-tar
in repository libcrypt-openssl-bignum-perl.

  from  f1fde53   pristine-tar data for 
libcrypt-openssl-bignum-perl_0.04.orig.tar.gz
   new  07798c3   pristine-tar data for 
libcrypt-openssl-bignum-perl_0.06.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:
 libcrypt-openssl-bignum-perl_0.06.orig.tar.gz.delta | Bin 0 - 1224 bytes
 libcrypt-openssl-bignum-perl_0.06.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libcrypt-openssl-bignum-perl_0.06.orig.tar.gz.delta
 create mode 100644 libcrypt-openssl-bignum-perl_0.06.orig.tar.gz.id

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcrypt-openssl-bignum-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


[libdata-stag-perl] 04/06: Skip Data/Stag/JSONWriter.pm in syntax smoke autopktgests

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libdata-stag-perl.

commit 379b43da91ddc5d68d61a297224902dcae299568
Author: Damyan Ivanov d...@debian.org
Date:   Sun Jun 21 16:06:44 2015 +

Skip Data/Stag/JSONWriter.pm in syntax smoke autopktgests

it requires JSON dependency, which is not warranted for the package,
and the loading (e.g. syntax) is already tested in the runtime tests
---
 debian/tests/pkg-perl/skip-syntax | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/tests/pkg-perl/skip-syntax 
b/debian/tests/pkg-perl/skip-syntax
new file mode 100644
index 000..7ce4ed4
--- /dev/null
+++ b/debian/tests/pkg-perl/skip-syntax
@@ -0,0 +1 @@
+Data/Stag/JSONWriter.pm

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdata-stag-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


[libdata-stag-perl] 01/06: Reformat debian/control with cme

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libdata-stag-perl.

commit 94381a8bd618869ac5f80c86ec75746ee58b9f83
Author: Damyan Ivanov d...@debian.org
Date:   Sun Jun 21 15:57:09 2015 +

Reformat debian/control with cme

Gbp-Dch: ignore
---
 debian/control | 27 ++-
 1 file changed, 18 insertions(+), 9 deletions(-)

diff --git a/debian/control b/debian/control
index 2e9b9f8..70e76c7 100644
--- a/debian/control
+++ b/debian/control
@@ -1,21 +1,30 @@
 Source: libdata-stag-perl
+Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
+Uploaders: Charles Plessy ple...@debian.org,
+   Damyan Ivanov d...@debian.org,
+   Florian Schlichting f...@debian.org
 Section: perl
 Priority: optional
 Build-Depends: debhelper (= 8)
-Build-Depends-Indep: perl, libio-string-perl, libxml-perl
-Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
-Uploaders: Charles Plessy ple...@debian.org, Damyan Ivanov d...@debian.org,
- Florian Schlichting f...@debian.org
+Build-Depends-Indep: perl,
+ libio-string-perl,
+ libxml-perl
 Standards-Version: 3.9.4
-Homepage: http://stag.sourceforge.net/
-Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libdata-stag-perl.git
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libdata-stag-perl.git
+Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libdata-stag-perl.git
+Homepage: http://stag.sourceforge.net/
 
 Package: libdata-stag-perl
 Architecture: all
-Depends: ${perl:Depends}, ${misc:Depends}, libio-string-perl
-Recommends: perl-tk, libgd-gd2-perl | libgd-gd2-noxpm-perl,
- libxml-libxslt-perl, libmldbm-perl, libgraph-perl, libxml-perl
+Depends: ${perl:Depends},
+ ${misc:Depends},
+ libio-string-perl
+Recommends: perl-tk,
+libgd-gd2-perl | libgd-gd2-noxpm-perl,
+libxml-libxslt-perl,
+libmldbm-perl,
+libgraph-perl,
+libxml-perl
 Description: module to manipulate Structured Tags datastructures
  Data::Stag is for manipulating data as hierarchical tag/value
  pairs (Structured TAGs or Simple Tree AGgreggates). These

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdata-stag-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


[libdata-stag-perl] 06/06: releasing package libdata-stag-perl version 0.14-1

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libdata-stag-perl.

commit f89b98d08688ff3fdb3e8481378495c8815d8a6d
Author: Damyan Ivanov d...@debian.org
Date:   Sun Jun 21 16:19:29 2015 +

releasing package libdata-stag-perl version 0.14-1
---
 debian/changelog | 15 ++-
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index ecc1bc6..b019963 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,9 @@
-libdata-stag-perl (0.14-1) UNRELEASED; urgency=low
+libdata-stag-perl (0.14-1) unstable; urgency=low
 
   [ Florian Schlichting ]
-  IGNORE-VERSION: 0.14-1
-  # only applies (one of) our patches
-
   * Import Upstream version 0.14
+Closes: #488614 -- Divergence with upstream: missing manpages and WHATIS
+entries, added by a Debian patch.
 
   [ gregor herrmann ]
   * Strip trailing slash from metacpan URLs.
@@ -15,7 +14,13 @@ libdata-stag-perl (0.14-1) UNRELEASED; urgency=low
   [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
 
- -- Florian Schlichting f...@debian.org  Thu, 19 Sep 2013 23:56:18 +0200
+  [ Damyan Ivanov ]
+  * Mark package as autopkgtest-able
+  * Declare compliance with Debian Policy 3.9.6
+  * Skip Data/Stag/JSONWriter.pm in syntax smoke autopktgests
+  * Patch away loading of SF.net logo, avoiding possible privacy breach
+
+ -- Damyan Ivanov d...@debian.org  Sun, 21 Jun 2015 16:11:38 +
 
 libdata-stag-perl (0.13-1) unstable; urgency=low
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdata-stag-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


[libdata-stag-perl] annotated tag debian/0.14-1 created (now 5a126c7)

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag debian/0.14-1
in repository libdata-stag-perl.

at  5a126c7   (tag)
   tagging  f89b98d08688ff3fdb3e8481378495c8815d8a6d (commit)
  replaces  debian/0.13-1
 tagged by  Damyan Ivanov
on  Sun Jun 21 16:19:29 2015 +

- Log -
tagging package libdata-stag-perl version debian/0.14-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJVhuQRAAoJENu+nU2Z0qAEPScP/146HnGIxpdwCRSnASGddCqC
8hrJ5kWVQE8Ur3O8qXQTg5J4osblVWOFjaIlkrAOQjzLQnW0/iDHVKI1gc8goMoL
f+uqcwwjKb8SGNCVIYyI1p70GcziuVcdFxnMoSzCbSCC8NiaOG4/FHmtKyLZyvZ/
wI5JpfNRBeqdvIhyaigOLKTi3Y9JzVl8tRWuU9VCVVVpys9Tox8zZetah8I1AW6Z
V0hMBBHS32wwzY8R5fhJ7WJSjByCu3vcqqmgH7uNJeS5vL4QM9vsEdTR9V4UImLi
QOmNd5CHreL0j7w+92VJkS3i2svUHRge9hKixRAQnD8mGKylg0gTlHXbB7DUPFX8
1fZrVMrZdpK7rh3UPDemHKibkBXLaybQokdrKecgifrO3NG/vdMwST7UQ1DCca1I
QAt/Ng2JnuTgc9XBYX698v2Ktqz02R04ZN2EBi+YvNb1l5wS7DwU04JzYRCIhWgy
wOjijHgSlQhJI/a79c6l1H3zg8ecH0/TrWzJU6Ks4lGTNhjNTtDYonJx/K1j+kGL
fFOTMUTOuFZ9aw4OUKkFvSIEypNQDm221q479o6LB611rHKPR8VLWg3eTAgDKNar
/JdC+UlU+Ka8a7npRihcUikq8j+9ZLSobNplOPQh/5pNv4B/ZI1M6FQGTJkKc8bH
XrhIIU5Zzb3mKCpLAXED
=RdYp
-END PGP SIGNATURE-

Axel Beckert (1):
  Rename debian/upstream-metadata.yaml to debian/upstream/metadata

Damyan Ivanov (6):
  Reformat debian/control with cme
  Mark package as autopkgtest-able
  Declare compliance with Debian Policy 3.9.6
  Skip Data/Stag/JSONWriter.pm in syntax smoke autopktgests
  Patch away loading of SF.net logo, avoiding possible privacy breach
  releasing package libdata-stag-perl version 0.14-1

Florian Schlichting (4):
  Imported Upstream version 0.14
  Merge tag 'upstream/0.14'
  Import Upstream version 0.14 / IGNORE only applies our patch
  Drop missing-manpages.patch, applied upstream

Salvatore Bonaccorso (2):
  Update Vcs-Browser URL to cgit web frontend
  update changelog

gregor herrmann (2):
  Strip trailing slash from metacpan URLs.
  update changelog

---

This annotated tag includes the following new commits:

   new  94381a8   Reformat debian/control with cme
   new  cde0a35   Mark package as autopkgtest-able
   new  c38ed3e   Declare compliance with Debian Policy 3.9.6
   new  379b43d   Skip Data/Stag/JSONWriter.pm in syntax smoke autopktgests
   new  732a71a   Patch away loading of SF.net logo, avoiding possible 
privacy breach
   new  f89b98d   releasing package libdata-stag-perl version 0.14-1

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.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdata-stag-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


[libdata-stag-perl] 02/06: Mark package as autopkgtest-able

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libdata-stag-perl.

commit cde0a353f76a05439e32c5d2c5e8e3714b1481e1
Author: Damyan Ivanov d...@debian.org
Date:   Sun Jun 21 15:57:10 2015 +

Mark package as autopkgtest-able
---
 debian/control | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/control b/debian/control
index 70e76c7..c9f68a2 100644
--- a/debian/control
+++ b/debian/control
@@ -4,6 +4,7 @@ Uploaders: Charles Plessy ple...@debian.org,
Damyan Ivanov d...@debian.org,
Florian Schlichting f...@debian.org
 Section: perl
+Testsuite: autopkgtest-pkg-perl
 Priority: optional
 Build-Depends: debhelper (= 8)
 Build-Depends-Indep: perl,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdata-stag-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


[libdata-stag-perl] 03/06: Declare compliance with Debian Policy 3.9.6

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libdata-stag-perl.

commit c38ed3e5921da75664a77fd60cc57c016a5b83b3
Author: Damyan Ivanov d...@debian.org
Date:   Sun Jun 21 15:57:11 2015 +

Declare compliance with Debian Policy 3.9.6
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index c9f68a2..2052559 100644
--- a/debian/control
+++ b/debian/control
@@ -10,7 +10,7 @@ Build-Depends: debhelper (= 8)
 Build-Depends-Indep: perl,
  libio-string-perl,
  libxml-perl
-Standards-Version: 3.9.4
+Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libdata-stag-perl.git
 Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libdata-stag-perl.git
 Homepage: http://stag.sourceforge.net/

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdata-stag-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


[libdata-stag-perl] branch master updated (bb781b1 - f89b98d)

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to branch master
in repository libdata-stag-perl.

  from  bb781b1   update changelog
   new  94381a8   Reformat debian/control with cme
   new  cde0a35   Mark package as autopkgtest-able
   new  c38ed3e   Declare compliance with Debian Policy 3.9.6
   new  379b43d   Skip Data/Stag/JSONWriter.pm in syntax smoke autopktgests
   new  732a71a   Patch away loading of SF.net logo, avoiding possible 
privacy breach
   new  f89b98d   releasing package libdata-stag-perl version 0.14-1

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:
 debian/changelog  | 15 ++-
 debian/control| 30 --
 debian/patches/no-sf-logo.patch   | 19 +++
 debian/patches/series |  1 +
 debian/tests/pkg-perl/skip-syntax |  1 +
 5 files changed, 51 insertions(+), 15 deletions(-)
 create mode 100644 debian/patches/no-sf-logo.patch
 create mode 100644 debian/tests/pkg-perl/skip-syntax

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdata-stag-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


[libcgi-psgi-perl] 02/02: Update debian/changelog

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit c3f5df89fa4fd2a13c3cb93b708610bd074dffe9
Author: gregor herrmann gre...@debian.org
Date:   Sun Jun 21 18:31:08 2015 +0200

Update debian/changelog

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

diff --git a/debian/changelog b/debian/changelog
index d1f0423..9c346f4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libcgi-psgi-perl (0.15-3) UNRELEASED; urgency=medium
+
+  * Add debian/upstream/metadata
+
+ -- gregor herrmann gre...@debian.org  Sun, 21 Jun 2015 18:31:08 +0200
+
 libcgi-psgi-perl (0.15-2) unstable; urgency=medium
 
   * Team upload

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcgi-psgi-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


[libcgi-psgi-perl] branch master updated (17a4250 - c3f5df8)

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

  from  17a4250   releasing package libcgi-psgi-perl version 0.15-2
   new  13fe72a   Add debian/upstream/metadata
   new  c3f5df8   Update debian/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/upstream/metadata | 5 +
 2 files changed, 11 insertions(+)
 create mode 100644 debian/upstream/metadata

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcgi-psgi-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


[libcgi-psgi-perl] 01/02: Add debian/upstream/metadata

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 13fe72aa464c4ea6a4dad1ba6be6e887e1d23d6c
Author: gregor herrmann gre...@debian.org
Date:   Sun Jun 21 18:31:07 2015 +0200

Add debian/upstream/metadata
---
 debian/upstream/metadata | 5 +
 1 file changed, 5 insertions(+)

diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 000..e791ca9
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,5 @@
+---
+Archive: CPAN
+Contact: Tatsuhiko Miyagawa miyag...@bulknews.net
+Name: CGI-PSGI
+Repository: git://github.com/miyagawa/CGI-PSGI.git

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcgi-psgi-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


[libcatalyst-plugin-i18n-perl] 01/03: Mark package as autopkgtest-able

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libcatalyst-plugin-i18n-perl.

commit c1232cf588fe1a67fe653968d639e3673eb43cff
Author: Damyan Ivanov d...@debian.org
Date:   Sun Jun 21 15:34:00 2015 +

Mark package as autopkgtest-able
---
 debian/control | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/control b/debian/control
index 1df47b0..abe85a5 100644
--- a/debian/control
+++ b/debian/control
@@ -12,6 +12,7 @@ Standards-Version: 3.9.5
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libcatalyst-plugin-i18n-perl.git
 Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/libcatalyst-plugin-i18n-perl.git
 Homepage: https://metacpan.org/release/Catalyst-Plugin-I18N
+Testsuite: autopkgtest-pkg-perl
 
 Package: libcatalyst-plugin-i18n-perl
 Architecture: all

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcatalyst-plugin-i18n-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


[libcatalyst-plugin-i18n-perl] 02/03: Declare conformance to Policy 3.9.6

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libcatalyst-plugin-i18n-perl.

commit a609a9f6719f5f15ae9a4ad7ce0b3ab012b34ef0
Author: Damyan Ivanov d...@debian.org
Date:   Sun Jun 21 15:36:22 2015 +

Declare conformance to Policy 3.9.6
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index abe85a5..8e82f75 100644
--- a/debian/control
+++ b/debian/control
@@ -8,7 +8,7 @@ Build-Depends-Indep: libcatalyst-perl,
  liblocale-maketext-lexicon-perl,
  libmro-compat-perl (= 0.10),
  perl (= 5.11.0)
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libcatalyst-plugin-i18n-perl.git
 Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/libcatalyst-plugin-i18n-perl.git
 Homepage: https://metacpan.org/release/Catalyst-Plugin-I18N

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcatalyst-plugin-i18n-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


[libcatalyst-plugin-i18n-perl] annotated tag debian/0.10-3 created (now 28ad6a0)

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag debian/0.10-3
in repository libcatalyst-plugin-i18n-perl.

at  28ad6a0   (tag)
   tagging  70970101818f8449a4c8a8838ce7516e23ff932b (commit)
  replaces  debian/0.10-2
 tagged by  Damyan Ivanov
on  Sun Jun 21 15:38:03 2015 +

- Log -
tagging package libcatalyst-plugin-i18n-perl version debian/0.10-3
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJVhtpbAAoJENu+nU2Z0qAEpt0QAI6onPCi9fSFx5UMVk15HfjG
3C4pBwggwInyn3CiX9+W0D+tsinFb5MbHhqpriti3eVv/EyKAMMT74R0dgYzl//x
Da0sn0pAUqrtfjwiU7fD6QfN/ujHE8HWjhaTcuWqhOIRZpMvkl5wWkJ8WjZH4KIH
HFQEocp0JQN9yQmD3R03tsOSBhyh+ong1vtsQ0MZtWKdAa0NpAFGNKjB1/gzu+/Z
grKFbwpvL8B/sVXbnbg79OExYrb3ca/5SoODPej+kQbhOR+AnhDHCQ/pO4Cly6V6
ZqH8wm42VUf7u46P0ERwmxhgerWlwSuD5Rr+UttkIvcJ5CI9TIUimUKUCAOD50tK
kSZYYmjbc4HCqFpAGQYxUnH6AdrVCaZ7vUipgaxAha1RCw2wsN2Wq1kJGzSmuHel
roK4Btm/n/WcpmShXft//vJR8ejVtIEKCZhIphmEVsr4EIRnVYX/9skhtvfFCO5b
ZlM44h3bPhkdiO09neKLrdSFCL23+uI4OkH030o+USovVy1cwLKx84jwXX9DpFOj
iQ+aQXHA3LqrmtH/vrQTxSqh6e/Qha444dJGHjP0P5RIZmHDTIwtkjb44uXVBB5u
GzCfujBcnClCXPi4WPO4aLxIkeIOblFbX/6OEgkqF+w38k4qJvUG0MB88P5A1lZ1
h9ybeRbIZFzErzfcHVQv
=N+jg
-END PGP SIGNATURE-

Damyan Ivanov (3):
  Mark package as autopkgtest-able
  Declare conformance to Policy 3.9.6
  releasing package libcatalyst-plugin-i18n-perl version 0.10-3

Salvatore Bonaccorso (2):
  Update Vcs-Browser URL to cgit web frontend
  update changelog

gregor herrmann (2):
  debian/control: fix long description.
  update changelog

---

This annotated tag includes the following new commits:

   new  c1232cf   Mark package as autopkgtest-able
   new  a609a9f   Declare conformance to Policy 3.9.6
   new  7097010   releasing package libcatalyst-plugin-i18n-perl version 
0.10-3

The 3 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.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcatalyst-plugin-i18n-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


[libcatalyst-plugin-i18n-perl] 03/03: releasing package libcatalyst-plugin-i18n-perl version 0.10-3

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libcatalyst-plugin-i18n-perl.

commit 70970101818f8449a4c8a8838ce7516e23ff932b
Author: Damyan Ivanov d...@debian.org
Date:   Sun Jun 21 15:38:03 2015 +

releasing package libcatalyst-plugin-i18n-perl version 0.10-3
---
 debian/changelog | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index f24a02a..04cbb81 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libcatalyst-plugin-i18n-perl (0.10-3) UNRELEASED; urgency=medium
+libcatalyst-plugin-i18n-perl (0.10-3) unstable; urgency=medium
 
   [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
@@ -8,7 +8,11 @@ libcatalyst-plugin-i18n-perl (0.10-3) UNRELEASED; 
urgency=medium
 Thanks to Beatrice Torracca for the bug report and the proposed fix.
 (Closes: #770494)
 
- -- Salvatore Bonaccorso car...@debian.org  Sat, 16 Aug 2014 09:30:02 +0200
+  [ Damyan Ivanov ]
+  * Mark package as autopkgtest-able
+  * Declare conformance to Policy 3.9.6
+
+ -- Damyan Ivanov d...@debian.org  Sun, 21 Jun 2015 15:36:40 +
 
 libcatalyst-plugin-i18n-perl (0.10-2) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcatalyst-plugin-i18n-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


[libcatalyst-plugin-i18n-perl] branch master updated (2f0fcaf - 7097010)

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to branch master
in repository libcatalyst-plugin-i18n-perl.

  from  2f0fcaf   update changelog
   new  c1232cf   Mark package as autopkgtest-able
   new  a609a9f   Declare conformance to Policy 3.9.6
   new  7097010   releasing package libcatalyst-plugin-i18n-perl version 
0.10-3

The 3 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 | 8 ++--
 debian/control   | 3 ++-
 2 files changed, 8 insertions(+), 3 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcatalyst-plugin-i18n-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


[libdata-stag-perl] 05/06: Patch away loading of SF.net logo, avoiding possible privacy breach

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libdata-stag-perl.

commit 732a71aff52d3348a7efdac5e421fed6a1e959ec
Author: Damyan Ivanov d...@debian.org
Date:   Sun Jun 21 16:11:29 2015 +

Patch away loading of SF.net logo, avoiding possible privacy breach
---
 debian/patches/no-sf-logo.patch | 19 +++
 debian/patches/series   |  1 +
 2 files changed, 20 insertions(+)

diff --git a/debian/patches/no-sf-logo.patch b/debian/patches/no-sf-logo.patch
new file mode 100644
index 000..bb72504
--- /dev/null
+++ b/debian/patches/no-sf-logo.patch
@@ -0,0 +1,19 @@
+Description: docs: drop remote loading of SF.net logo
+ This poses a privacy breach when the documentation is viewed locally
+ .
+ This is the homepage which is probably published via SF.net anyway, so
+ not something the author needs to fix per se.
+Author: Damyan Ivanov d...@debian.org
+Forwarded: non-teeded
+
+--- a/homepage/index.html
 b/homepage/index.html
+@@ -185,7 +185,7 @@
+ 
+   hr
+   a href=http://sourceforge.net; 
+-img 
src=http://sourceforge.net/sflogo.php?group_id=68482amp;type=1; width=88 
height=31 border=0 alt=SourceForge.net Logo/a
++sourceforge/a
+   
+   hr
+ addressa href=mailto:c...@fruitfly.org;chris 
mungall/a/address
diff --git a/debian/patches/series b/debian/patches/series
index 9ad6f1a..daafca3 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,4 @@
 fix_manpage_names.patch
+no-sf-logo.patch
 fix_pod_errors.patch
 more_pod_errors.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdata-stag-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


[libtest-prereq-perl] annotated tag debian/1.038-2 created (now 12e5e58)

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to annotated tag debian/1.038-2
in repository libtest-prereq-perl.

at  12e5e58   (tag)
   tagging  3c0477c38af09f3067165bb68bc532ac10e4d868 (commit)
  replaces  debian/1.038-1
 tagged by  gregor herrmann
on  Sun Jun 21 15:15:48 2015 +0200

- Log -
tagging package libtest-prereq-perl version debian/1.038-2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAABCgBmBQJVhrkEXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoGYwgQAMNMue4MmPz4WpC7qY1KJIOm
OMIjxA2KIaXMJ7oFEcAXpTU2nV8ai69PRg99ArLDGnccNZN7UahJSrvzq7r0oibu
0ADMGvV7Fkr0zeTMjCwDDIKh1j8wKzpbKy6HlTaCTfKW2AYHX9Q4X0YCsfjLOor4
ZFz1cvy3LxHYH7zouAohaw0XZfiGmxshUf2/Tlu8VagoufaH6/m2uXMzB+4dwCEt
HPVn6LnvsiJu17BNYJ98L1MkWq45GC24sO9VfE3sD28f7/oi3xOfMJIaoEJtx+gO
iF/9PCasxgxq4OMJsgzandrNcJupzzJ3+w85yU8SaFedO5oF3AKNNtG2Fk55ftA+
vpoZkkBSz0RNVmOZGc/yAVFteni2E9NZ26wcJ6AxpEFdYndexIBfEtiPozZL/Zkz
Z+mV9ji+rGSVpTrek4Pob03gXLJaPHpEmpUA7+T4Y39Uw8L/mXu4EsTZFjwGPkUM
KEq9ssS01dTVyN4oPrw1VF1+ycFickeY+Jb/vTHc4FW4ELzO8f3pJ/SOEv/mViRM
JIr1PiE/0F008PxfwIDcH+nXnSpO7qfWyK2ll7411ircfOb+sitOEidJOhdgrEwI
FyOUu6xHGoE2JSimxfCh8vCw6sFnv5mQ4AgJmCZS7M9xFjC/D8kI73VLk1Mrz26g
e8cpj7PpLE7MxsWfM+Ma
=QXlf
-END PGP SIGNATURE-

Salvatore Bonaccorso (2):
  Update Vcs-Browser URL to cgit web frontend
  update changelog

gregor herrmann (8):
  Strip trailing slash from metacpan URLs.
  update changelog
  Add (build) dependency on libmodule-build-perl.
  Add debian/upstream/metadata
  Declare compliance with Debian Policy 3.9.6.
  Add lintian override for pkg-perl specific check.
  fix typo in long descriptipn
  releasing package libtest-prereq-perl version 1.038-2

---

This annotated tag includes the following new commits:

   new  be8b533   Add (build) dependency on libmodule-build-perl.
   new  b082975   Add debian/upstream/metadata
   new  656a492   Declare compliance with Debian Policy 3.9.6.
   new  b55d642   Add lintian override for pkg-perl specific check.
   new  12ff4f9   fix typo in long descriptipn
   new  3c0477c   releasing package libtest-prereq-perl version 1.038-2

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.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-prereq-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


[libtest-prereq-perl] 01/06: Add (build) dependency on libmodule-build-perl.

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit be8b5335bd8f92afca9f5e95d3d1ffc858153231
Author: gregor herrmann gre...@debian.org
Date:   Sun Jun 21 14:27:48 2015 +0200

Add (build) dependency on libmodule-build-perl.

Closes: #789466
---
 debian/control | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/debian/control b/debian/control
index 68057c8..dacd5ac 100644
--- a/debian/control
+++ b/debian/control
@@ -7,6 +7,7 @@ Section: perl
 Priority: optional
 Build-Depends: debhelper (= 8)
 Build-Depends-Indep: perl,
+ libmodule-build-perl,
  libmodule-info-perl,
  libtest-pod-perl,
  libtest-pod-coverage-perl
@@ -19,6 +20,7 @@ Package: libtest-prereq-perl
 Architecture: all
 Depends: ${perl:Depends},
  ${misc:Depends},
+ libmodule-build-perl,
  libmodule-info-perl
 Description: Perl module to check if Makefile.PL has the right pre-requisites
  Test::Prerq examines the modules looking on blib/lib/,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-prereq-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


[libtest-prereq-perl] 03/06: Declare compliance with Debian Policy 3.9.6.

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 656a49259be75daf90eb1750ef924ff0ca58b4e2
Author: gregor herrmann gre...@debian.org
Date:   Sun Jun 21 14:30:33 2015 +0200

Declare compliance with Debian Policy 3.9.6.
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index dacd5ac..1947002 100644
--- a/debian/control
+++ b/debian/control
@@ -11,7 +11,7 @@ Build-Depends-Indep: perl,
  libmodule-info-perl,
  libtest-pod-perl,
  libtest-pod-coverage-perl
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libtest-prereq-perl.git
 Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libtest-prereq-perl.git
 Homepage: https://metacpan.org/release/Test-Prereq

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-prereq-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


[libtest-prereq-perl] 06/06: releasing package libtest-prereq-perl version 1.038-2

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 3c0477c38af09f3067165bb68bc532ac10e4d868
Author: gregor herrmann gre...@debian.org
Date:   Sun Jun 21 15:15:48 2015 +0200

releasing package libtest-prereq-perl version 1.038-2
---
 debian/changelog | 10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 4b7607f..0b6e2bd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libtest-prereq-perl (1.038-2) UNRELEASED; urgency=medium
+libtest-prereq-perl (1.038-2) unstable; urgency=medium
 
   [ gregor herrmann ]
   * Strip trailing slash from metacpan URLs.
@@ -6,7 +6,13 @@ libtest-prereq-perl (1.038-2) UNRELEASED; urgency=medium
   [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
 
- -- gregor herrmann gre...@debian.org  Thu, 27 Feb 2014 22:41:41 +0100
+  [ gregor herrmann ]
+  * Add (build) dependency on libmodule-build-perl. (Closes: #789466)
+  * Add debian/upstream/metadata.
+  * Declare compliance with Debian Policy 3.9.6.
+  * Add lintian override for pkg-perl specific check.
+
+ -- gregor herrmann gre...@debian.org  Sun, 21 Jun 2015 15:14:27 +0200
 
 libtest-prereq-perl (1.038-1) unstable; urgency=low
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-prereq-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


[libtest-prereq-perl] 04/06: Add lintian override for pkg-perl specific check.

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit b55d64244d69ae9f520246417cca3e4c4e5f0a38
Author: gregor herrmann gre...@debian.org
Date:   Sun Jun 21 14:35:01 2015 +0200

Add lintian override for pkg-perl specific check.
---
 debian/source.lintian-overrides | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/debian/source.lintian-overrides b/debian/source.lintian-overrides
new file mode 100644
index 000..81428e4
--- /dev/null
+++ b/debian/source.lintian-overrides
@@ -0,0 +1,2 @@
+# not in this case; M::B is not used to build, only via the module/in tests
+libtest-prereq-perl source: libmodule-build-perl-needs-to-be-in-build-depends

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-prereq-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


[libtest-prereq-perl] 05/06: fix typo in long descriptipn

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 12ff4f9826aeecbe5b62bcfb85fd71b262b5357f
Author: gregor herrmann gre...@debian.org
Date:   Sun Jun 21 14:35:26 2015 +0200

fix typo in long descriptipn

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

diff --git a/debian/control b/debian/control
index 1947002..9011c93 100644
--- a/debian/control
+++ b/debian/control
@@ -23,7 +23,7 @@ Depends: ${perl:Depends},
  libmodule-build-perl,
  libmodule-info-perl
 Description: Perl module to check if Makefile.PL has the right pre-requisites
- Test::Prerq examines the modules looking on blib/lib/,
+ Test::Prereq examines the modules looking on blib/lib/,
  blib/script, and the test files t/*  (and test.pl). 
  then figures out which modules they use, skips the modules that are
  in the Perl core, and compares the remaining list of modules to those

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-prereq-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


[libtest-prereq-perl] branch master updated (f3e8f0b - 3c0477c)

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

  from  f3e8f0b   update changelog
   new  be8b533   Add (build) dependency on libmodule-build-perl.
   new  b082975   Add debian/upstream/metadata
   new  656a492   Declare compliance with Debian Policy 3.9.6.
   new  b55d642   Add lintian override for pkg-perl specific check.
   new  12ff4f9   fix typo in long descriptipn
   new  3c0477c   releasing package libtest-prereq-perl version 1.038-2

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:
 debian/changelog| 10 --
 debian/control  |  6 --
 debian/source.lintian-overrides |  2 ++
 debian/upstream/metadata|  5 +
 4 files changed, 19 insertions(+), 4 deletions(-)
 create mode 100644 debian/source.lintian-overrides
 create mode 100644 debian/upstream/metadata

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-prereq-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


[libtest-prereq-perl] 02/06: Add debian/upstream/metadata

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit b082975400688da2599fff338b420abdb6b4293e
Author: gregor herrmann gre...@debian.org
Date:   Sun Jun 21 14:28:02 2015 +0200

Add debian/upstream/metadata
---
 debian/upstream/metadata | 5 +
 1 file changed, 5 insertions(+)

diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 000..5b58c66
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,5 @@
+---
+Archive: CPAN
+Contact: brian d foy bd...@cpan.org
+Name: Test-Prereq
+Repository: https://github.com/briandfoy/test-prereq

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-prereq-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


[libcrypt-openssl-bignum-perl] 02/05: Reformat debian/control with cme

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libcrypt-openssl-bignum-perl.

commit 07e25bd01457da516463004449f71ff4c406eba7
Author: Damyan Ivanov d...@debian.org
Date:   Sun Jun 21 15:42:37 2015 +

Reformat debian/control with cme

Gbp-Dch: ignore
---
 debian/control | 1 -
 1 file changed, 1 deletion(-)

diff --git a/debian/control b/debian/control
index 6fe5010..d5d7741 100644
--- a/debian/control
+++ b/debian/control
@@ -22,4 +22,3 @@ Description: Perl module to access OpenSSL multiprecision 
integer arithmetic lib
  provides are exposed to Perl via Crypt::OpenSSL::Bignum. In addition, this
  module can be used to provide access to bignum values produced by other
  OpenSSL modules, such as key parameters from Crypt::OpenSSL::RSA.
-

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcrypt-openssl-bignum-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


[libcrypt-openssl-bignum-perl] 04/05: Declare compliance with Debian Policy 3.9.6

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libcrypt-openssl-bignum-perl.

commit 735a00f472594398525c2df9f680e30ef022b556
Author: Damyan Ivanov d...@debian.org
Date:   Sun Jun 21 15:42:39 2015 +

Declare compliance with Debian Policy 3.9.6
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index b9db634..c77411d 100644
--- a/debian/control
+++ b/debian/control
@@ -8,7 +8,7 @@ Priority: optional
 Build-Depends: debhelper (= 9.20120312),
libssl-dev,
perl
-Standards-Version: 3.9.4
+Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libcrypt-openssl-bignum-perl.git
 Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/libcrypt-openssl-bignum-perl.git
 Homepage: http://perl-openssl.sourceforge.net/

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcrypt-openssl-bignum-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


[libcrypt-openssl-bignum-perl] annotated tag upstream/0.06 created (now 4adcf85)

2015-06-21 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag upstream/0.06
in repository libcrypt-openssl-bignum-perl.

at  4adcf85   (tag)
   tagging  ecd36c302f3accd5671cc8170b60fbe4eab5d818 (commit)
 tagged by  Damyan Ivanov
on  Sun Jun 21 15:38:55 2015 +

- Log -
Upstream version 0.06

Damyan Ivanov (3):
  [svn-inject] Installing original source of libcrypt-openssl-bignum-perl
  [svn-upgrade] Integrating new upstream version, 
libcrypt-openssl-bignum-perl (0.04)
  Imported Upstream version 0.06

---

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/libcrypt-openssl-bignum-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


[libmodule-corelist-perl] branch master updated (e2a1815 - b2bcf38)

2015-06-21 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to branch master
in repository libmodule-corelist-perl.

  from  e2a1815   Merge tag 'upstream/5.20150620'
   new  b2bcf38   Prepare changelog for release

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 | 6 ++
 1 file changed, 6 insertions(+)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libmodule-corelist-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


[libmodule-corelist-perl] annotated tag debian/5.20150620-1 created (now e0e0a41)

2015-06-21 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to annotated tag debian/5.20150620-1
in repository libmodule-corelist-perl.

at  e0e0a41   (tag)
   tagging  b2bcf38c4ad3e85c98ca8fec6a18993563e982d5 (commit)
  replaces  debian/5.20150520-1
 tagged by  Salvatore Bonaccorso
on  Sun Jun 21 20:51:12 2015 +0200

- Log -
tagging package libmodule-corelist-perl version debian/5.20150620-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCgAGBQJVhwegAAoJEAVMuPMTQ89Ex3QP/2Cba2Tu2tW415L+OPwHusPy
CtYUnzcyvCYjsFHxLiJDxBd6h8CQ18tx0scLMFi0vgG7ea1rbOHSoxJLrclXzOj6
UhFsjVjw7HmWxO4umhzSSVwkaknQ7jQYzB2VlIiWYuNEnxM5hmyPIeiCfiMPzvJ0
S/kuy3gwjpFdo7eZ/C3frGf1oeA08fCyxP6J7BvMbAEpEvcvURW/Jmtz4n+yNhb8
+dYmFOkD5sRkIThSgT7jeLvsFaWnBfipusfJZznfXOKs+qySsLdM5i1TQRw/i8VV
BM9MIM1qqTwFTjrrK29tVlq+wKTfgJywswLKC2G4/jos1ZWBUS9wSyjnxxvZg797
6g0E94OhcQGmlfqcpzDddWCH0N541m5ysxJEIfBzV4Tzno4zBa6teP2gDuXPOI4c
nZUzjgdm0o0LVQ5bBFbj2fTfIG91aEfyrRlNSWm6JUVEyyP/wKcMg4+5+2MFoHSc
+lprYsx/RSIwOUCASBNVWgXHhTo23K/h+GlEgf2JOAMsTLVYtY8LE9hfjAdQKGJz
CAy7g6LIgRyDVzcAo5K297/mUmq9ZH413hGCRfngVDHtg9Eke2ZFlFZon+7xGro8
etTKukqpcTXyoFZyylM6V9+IJSKZJo0T16jUV+RoODRC1JAJ04QLKL8e5kLy6KY/
XlaAZYPU416+gYeG33s8
=Dcxf
-END PGP SIGNATURE-

Salvatore Bonaccorso (3):
  Imported Upstream version 5.20150620
  Merge tag 'upstream/5.20150620'
  Prepare changelog for release

---

This annotated tag includes the following new commits:

   new  b2bcf38   Prepare changelog for release

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.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libmodule-corelist-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


[libmodule-corelist-perl] 01/01: Prepare changelog for release

2015-06-21 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libmodule-corelist-perl.

commit b2bcf38c4ad3e85c98ca8fec6a18993563e982d5
Author: Salvatore Bonaccorso car...@debian.org
Date:   Sun Jun 21 20:50:59 2015 +0200

Prepare changelog for release

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

diff --git a/debian/changelog b/debian/changelog
index c687589..c474d38 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libmodule-corelist-perl (5.20150620-1) unstable; urgency=medium
+
+  * Imported Upstream version 5.20150620
+
+ -- Salvatore Bonaccorso car...@debian.org  Sun, 21 Jun 2015 20:50:51 +0200
+
 libmodule-corelist-perl (5.20150520-1) unstable; urgency=medium
 
   * Imported Upstream version 5.20150520

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libmodule-corelist-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


[libmodule-corelist-perl] branch pristine-tar updated (861fd8d - 4cd5f2f)

2015-06-21 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to branch pristine-tar
in repository libmodule-corelist-perl.

  from  861fd8d   pristine-tar data for 
libmodule-corelist-perl_5.20150520.orig.tar.gz
   new  4cd5f2f   pristine-tar data for 
libmodule-corelist-perl_5.20150620.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:
 libmodule-corelist-perl_5.20150620.orig.tar.gz.delta | Bin 0 - 1454 bytes
 libmodule-corelist-perl_5.20150620.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libmodule-corelist-perl_5.20150620.orig.tar.gz.delta
 create mode 100644 libmodule-corelist-perl_5.20150620.orig.tar.gz.id

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libmodule-corelist-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


[libmodule-corelist-perl] 01/01: Merge tag 'upstream/5.20150620'

2015-06-21 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libmodule-corelist-perl.

commit e2a1815f123a6652d4f877b3bb19f2ebf0e14ed1
Merge: 9897d64 11adba4
Author: Salvatore Bonaccorso car...@debian.org
Date:   Sun Jun 21 20:50:08 2015 +0200

Merge tag 'upstream/5.20150620'

Upstream version 5.20150620

 Changes |   3 +
 META.json   |   2 +-
 META.yml|   2 +-
 lib/Module/CoreList.pm  | 155 +++-
 lib/Module/CoreList/TieHashDelta.pm |   2 +-
 lib/Module/CoreList/Utils.pm|   9 ++-
 6 files changed, 165 insertions(+), 8 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libmodule-corelist-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


[libmodule-corelist-perl] annotated tag upstream/5.20150620 created (now 70eb0bb)

2015-06-21 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to annotated tag upstream/5.20150620
in repository libmodule-corelist-perl.

at  70eb0bb   (tag)
   tagging  11adba4a802d3a759b554c45018251b9c3a5b83e (commit)
  replaces  upstream/5.20150520
 tagged by  Salvatore Bonaccorso
on  Sun Jun 21 20:50:07 2015 +0200

- Log -
Upstream version 5.20150620

Salvatore Bonaccorso (1):
  Imported Upstream version 5.20150620

---

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/libmodule-corelist-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


[libmodule-corelist-perl] branch master updated (9897d64 - e2a1815)

2015-06-21 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to branch master
in repository libmodule-corelist-perl.

  from  9897d64   Prepare changelog for release
  adds  11adba4   Imported Upstream version 5.20150620
   new  e2a1815   Merge tag 'upstream/5.20150620'

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:
 Changes |   3 +
 META.json   |   2 +-
 META.yml|   2 +-
 lib/Module/CoreList.pm  | 155 +++-
 lib/Module/CoreList/TieHashDelta.pm |   2 +-
 lib/Module/CoreList/Utils.pm|   9 ++-
 6 files changed, 165 insertions(+), 8 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libmodule-corelist-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


[libmodule-corelist-perl] 01/01: pristine-tar data for libmodule-corelist-perl_5.20150620.orig.tar.gz

2015-06-21 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch pristine-tar
in repository libmodule-corelist-perl.

commit 4cd5f2f45dcc95b38402651c3b277c2272edb7e3
Author: Salvatore Bonaccorso car...@debian.org
Date:   Sun Jun 21 20:50:07 2015 +0200

pristine-tar data for libmodule-corelist-perl_5.20150620.orig.tar.gz
---
 libmodule-corelist-perl_5.20150620.orig.tar.gz.delta | Bin 0 - 1454 bytes
 libmodule-corelist-perl_5.20150620.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libmodule-corelist-perl_5.20150620.orig.tar.gz.delta 
b/libmodule-corelist-perl_5.20150620.orig.tar.gz.delta
new file mode 100644
index 000..2cc3545
Binary files /dev/null and 
b/libmodule-corelist-perl_5.20150620.orig.tar.gz.delta differ
diff --git a/libmodule-corelist-perl_5.20150620.orig.tar.gz.id 
b/libmodule-corelist-perl_5.20150620.orig.tar.gz.id
new file mode 100644
index 000..6251bc1
--- /dev/null
+++ b/libmodule-corelist-perl_5.20150620.orig.tar.gz.id
@@ -0,0 +1 @@
+cef06ba3832690bd1692cd50d3021ccd56866528

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libmodule-corelist-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


[libcpan-perl-releases-perl] annotated tag debian/2.24-1 created (now c40cb95)

2015-06-21 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to annotated tag debian/2.24-1
in repository libcpan-perl-releases-perl.

at  c40cb95   (tag)
   tagging  ef6fe1cb29edf1df18ecf9a17c54a43a6a30d735 (commit)
  replaces  debian/2.22-1
 tagged by  Salvatore Bonaccorso
on  Sun Jun 21 20:55:39 2015 +0200

- Log -
tagging package libcpan-perl-releases-perl version debian/2.24-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCgAGBQJVhwirAAoJEAVMuPMTQ89EsMAQAIpQrdMe4cM+S1A630JSU+NX
ftIJYMqmXUj8cm7rylCnQKDr5zZ4K64wc9D8EnAx2eiBEJL9KrJrvwpoFY3vbAPE
mWvTiKq9R8vCToT6pKEg2XKYqpVQXl/l4F93fB2iB+WPSJyteUafOoF4DWPVxt4A
T7q8p8Q+gTYbAy6jYSAc7AJqA7ynpThTD235e9voi5g6qUFf472++TPWwfPA1zp4
bAh7kiusYsFtR4NgxRKrPzjHJ0XX52aWoTnVBLSjlsn7MonFgF7BKb7xB2/PzYB6
a8xxiPCVS5N9dBHtw9IPMs3abgeX5ZlROeerbAR6lOcla5y7KupD+AV12pBssn4q
1jOjJO50oYiEZpUVF6wMbTPtN11KRJL6n00AL2UiZ+B9+E/UhYm3fQm+UPTJbfE+
0dvyErddgwxy+4w1Ebd0Su5rMWUwZGNjlejAKiTip5alaKlCvQEk9dmPLL4B3KNX
UIb6IluZgPRT2GQ93uMiLJQgiDPxeiCEDi7SPGzpEWJn02WzEduVuLtELtMUv5pJ
4Gd9RanTo3Kzd8krXNZ27W0IQYEuyQKCeYhO7kDX939ac2NNtRbtgIBifZAeHApn
oGBIAn9fHSkEzzh5lQuP7vPOk2j0cN9/8OWG6pHBU9Y8uYzh3ccU4TuHxFeTJRHi
F+XxhYP1kQNSWN9DIAzU
=aDnF
-END PGP SIGNATURE-

Chris 'BinGOs' Williams (1):
  Updated for v5.23.0

Salvatore Bonaccorso (4):
  Imported Upstream version 2.24
  Merge tag 'upstream/2.24'
  Update debian/changelog
  Prepare changelog for release

---

This annotated tag includes the following new commits:

   new  cd3fa8d   Merge tag 'upstream/2.24'
   new  86cc460   Update debian/changelog
   new  ef6fe1c   Prepare changelog for release

The 3 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.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcpan-perl-releases-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


[libcpan-perl-releases-perl] 01/03: Merge tag 'upstream/2.24'

2015-06-21 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libcpan-perl-releases-perl.

commit cd3fa8d38791d629cf8afc5cc1a4be241127563e
Merge: 0adfd6c c4629df
Author: Salvatore Bonaccorso car...@debian.org
Date:   Sun Jun 21 20:54:39 2015 +0200

Merge tag 'upstream/2.24'

Upstream version 2.24

 Changes   | 12 +++-
 MANIFEST  |  2 +-
 META.json |  4 ++--
 META.yml  |  4 ++--
 Makefile.PL   |  4 ++--
 dist.ini  |  2 +-
 lib/CPAN/Perl/Releases.pm |  5 +++--
 t/00-compile.t|  5 -
 8 files changed, 26 insertions(+), 12 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcpan-perl-releases-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


[libcpan-perl-releases-perl] annotated tag upstream/2.24 created (now d33b4f8)

2015-06-21 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to annotated tag upstream/2.24
in repository libcpan-perl-releases-perl.

at  d33b4f8   (tag)
   tagging  c4629df5b28455477d02728bc51c8af5feabf0c5 (commit)
  replaces  upstream/2.22
 tagged by  Salvatore Bonaccorso
on  Sun Jun 21 20:54:39 2015 +0200

- Log -
Upstream version 2.24

Chris 'BinGOs' Williams (1):
  Updated for v5.23.0

Salvatore Bonaccorso (1):
  Imported Upstream version 2.24

---

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/libcpan-perl-releases-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


[libcpan-perl-releases-perl] 03/03: Prepare changelog for release

2015-06-21 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libcpan-perl-releases-perl.

commit ef6fe1cb29edf1df18ecf9a17c54a43a6a30d735
Author: Salvatore Bonaccorso car...@debian.org
Date:   Sun Jun 21 20:55:26 2015 +0200

Prepare changelog for release

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

diff --git a/debian/changelog b/debian/changelog
index edae2c2..450f55e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-libcpan-perl-releases-perl (2.24-1) UNRELEASED; urgency=medium
+libcpan-perl-releases-perl (2.24-1) unstable; urgency=medium
 
   * Import upstream version 2.24
 
- -- Salvatore Bonaccorso car...@debian.org  Sun, 21 Jun 2015 20:54:40 +0200
+ -- Salvatore Bonaccorso car...@debian.org  Sun, 21 Jun 2015 20:55:18 +0200
 
 libcpan-perl-releases-perl (2.22-1) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcpan-perl-releases-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


[libcpan-perl-releases-perl] 01/01: pristine-tar data for libcpan-perl-releases-perl_2.24.orig.tar.gz

2015-06-21 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch pristine-tar
in repository libcpan-perl-releases-perl.

commit 3d3b7b9e74e709970a2d4075bccf0d1365de9ef4
Author: Salvatore Bonaccorso car...@debian.org
Date:   Sun Jun 21 20:54:39 2015 +0200

pristine-tar data for libcpan-perl-releases-perl_2.24.orig.tar.gz
---
 libcpan-perl-releases-perl_2.24.orig.tar.gz.delta | Bin 0 - 1476 bytes
 libcpan-perl-releases-perl_2.24.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libcpan-perl-releases-perl_2.24.orig.tar.gz.delta 
b/libcpan-perl-releases-perl_2.24.orig.tar.gz.delta
new file mode 100644
index 000..9b9c813
Binary files /dev/null and b/libcpan-perl-releases-perl_2.24.orig.tar.gz.delta 
differ
diff --git a/libcpan-perl-releases-perl_2.24.orig.tar.gz.id 
b/libcpan-perl-releases-perl_2.24.orig.tar.gz.id
new file mode 100644
index 000..1e80eb6
--- /dev/null
+++ b/libcpan-perl-releases-perl_2.24.orig.tar.gz.id
@@ -0,0 +1 @@
+2e06489fc7282c1a35a5390efd45991f5acabef5

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcpan-perl-releases-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


[libcpan-perl-releases-perl] 02/03: Update debian/changelog

2015-06-21 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libcpan-perl-releases-perl.

commit 86cc460e805237cfcedc5d5d88e1035ca4c6d800
Author: Salvatore Bonaccorso car...@debian.org
Date:   Sun Jun 21 20:54:40 2015 +0200

Update debian/changelog

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

diff --git a/debian/changelog b/debian/changelog
index 3c5a50b..edae2c2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libcpan-perl-releases-perl (2.24-1) UNRELEASED; urgency=medium
+
+  * Import upstream version 2.24
+
+ -- Salvatore Bonaccorso car...@debian.org  Sun, 21 Jun 2015 20:54:40 +0200
+
 libcpan-perl-releases-perl (2.22-1) unstable; urgency=medium
 
   * Import upstream version 2.22

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcpan-perl-releases-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


[libcpan-perl-releases-perl] branch pristine-tar updated (67481b4 - 3d3b7b9)

2015-06-21 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to branch pristine-tar
in repository libcpan-perl-releases-perl.

  from  67481b4   pristine-tar data for 
libcpan-perl-releases-perl_2.22.orig.tar.gz
   new  3d3b7b9   pristine-tar data for 
libcpan-perl-releases-perl_2.24.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:
 libcpan-perl-releases-perl_2.24.orig.tar.gz.delta | Bin 0 - 1476 bytes
 libcpan-perl-releases-perl_2.24.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libcpan-perl-releases-perl_2.24.orig.tar.gz.delta
 create mode 100644 libcpan-perl-releases-perl_2.24.orig.tar.gz.id

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libcpan-perl-releases-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


[libtest-prereq-perl] annotated tag upstream/1.038.05 created (now 6df9ca8)

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to annotated tag upstream/1.038.05
in repository libtest-prereq-perl.

at  6df9ca8   (tag)
   tagging  5b814285c1e531ebcd19238df3f17ef4e2d2268a (commit)
  replaces  upstream/1.038
 tagged by  gregor herrmann
on  Sun Jun 21 23:40:32 2015 +0200

- Log -
Upstream version 1.038.05

gregor herrmann (1):
  Imported Upstream version 1.038.05

---

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/libtest-prereq-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


[libtest-prereq-perl] 05/06: Add patch to handle Module::Build in tests differently for new perls.

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit a2ca1482ebc8cd80e46f717267c9c23fa96b29fe
Author: gregor herrmann gre...@debian.org
Date:   Sun Jun 21 23:58:42 2015 +0200

Add patch to handle Module::Build in tests differently for new perls.

Closes: #789479
---
 debian/patches/module-build.patch | 40 +++
 debian/patches/series |  1 +
 2 files changed, 41 insertions(+)

diff --git a/debian/patches/module-build.patch 
b/debian/patches/module-build.patch
new file mode 100644
index 000..2a9ab38
--- /dev/null
+++ b/debian/patches/module-build.patch
@@ -0,0 +1,40 @@
+Description: special case Module::Build in tests for newer perls
+ Module::Build was removed from core after 5.20.2
+Origin: vendor
+Bug-Debian: https://bugs.debian.org/789479
+Author: gregor herrmann gre...@debian.org
+Last-Update: 2015-06-21
+Forwarded: https://rt.cpan.org/Ticket/Display.html?id=105398
+Bug: https://rt.cpan.org/Ticket/Display.html?id=105398
+
+--- a/t/get_loaded_modules.t
 b/t/get_loaded_modules.t
+@@ -8,7 +8,7 @@
+   my $keys = [ grep ! /^CPANPLUS/, sort keys %$modules ];
+ 
+   my @expected = qw( Module::Info Test::Prereq Test::Prereq::Build );
+-  unshift @expected, qw(Module::Build) if $] =~ m/\A5.008/;
++  unshift @expected, qw(Module::Build) if $] =~ m/\A5.008/ or $]  
5.020002;
+ 
+   @expected = sort @expected;
+ 
+--- a/t/prereq_ok.t
 b/t/prereq_ok.t
+@@ -7,7 +7,7 @@
+   unless exists $Module::CoreList::version{ $] };
+ 
+ my @ignore = qw(CPANPLUS::Internals::System);
+-push @ignore, qw(Module::Build) if $] =~ /\A5\.008/;
++push @ignore, qw(Module::Build) if $] =~ /\A5\.008/ or $]  5.020002;
+ 
+ my $rc = prereq_ok( undef, undef, \@ignore );
+ 
+--- a/t/prior_plan.t
 b/t/prior_plan.t
+@@ -5,5 +5,5 @@
+ use Test::Prereq;
+ 
+ my @ignore = qw(CPANPLUS::Internals::System);
+-push @ignore, qw(Module::Build) if $] =~ /\A5\.008/;
++push @ignore, qw(Module::Build) if $] =~ /\A5\.008/ or $]  5.020002;
+ prereq_ok( undef, undef, \@ignore );
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..1a34dff
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+module-build.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-prereq-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


[libtest-prereq-perl] annotated tag debian/1.038.05-1 created (now e50cec8)

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to annotated tag debian/1.038.05-1
in repository libtest-prereq-perl.

at  e50cec8   (tag)
   tagging  7d1b60a598e9adb6d39e30bfbcb2a65f27046a38 (commit)
  replaces  debian/1.038-2
 tagged by  gregor herrmann
on  Mon Jun 22 00:02:22 2015 +0200

- Log -
tagging package libtest-prereq-perl version debian/1.038.05-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAABCgBmBQJVhzRuXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoG2xQQAIKT1qRcL6XuCucO97Se2dMB
dgo8dcq3dkE28FmXy5s3Yj3cETo1CD8i8jk0/GPF3sgVdIXWNHW/Tb+ZXtbKB7UH
pqhBMtcp2JePYFbUOpzPdZjJd+N9BAtspyXeRWtnlJLm0XxXlIfgWMSZREm5S1Sr
WxjPk2D+3fdaYtwn69QJsAqmQGjA0EEY4wkhSMA2WI5mL8gEBZR/K84Bgk3O+nG8
Oy8osCahGB4U/pGjBeu+elWvvpdAg2AmdW8YQ4xGGfJ6tm2bohNimOuStOQHMxJS
s/kHxtdQ5ZZ1KwMAWP59sWQ3jsGlK2DyJP0HIkSqN4r5HZhyZKLKf8B+pSQAsmvh
E3uf+plMlysLgACK8mh21DB9lRPKiWEN1Os4UnctMm3P3fxHLR+00JXIflCF40im
8+vH8Qao+pRVGrRiOH/DCL6gwYbWEkZrBBzSYfsHIVCC1TJ9ppEh7/ztK1tg8Rzv
/rfcpCcoMwOA/HqfTXYq49/dNIkvXbL/2spNZUpeORW67OTpUgO5ZXm9yISshQek
hFABjkztOXgO3Gi/hrdKXBEl1Ixbirbl200zaUM8UEUAqMkvHpOsZxa/JklQ2uLB
bLXlB/3ifJlLvrjY2jQC6yxNVBBFsU/9XaPHX9+AteE1xUHtLWca55BHxIyD1LP9
xOgym0Jq+/WWaDF0Iy1+
=LhAZ
-END PGP SIGNATURE-

gregor herrmann (7):
  Imported Upstream version 1.038.05
  Merge tag 'upstream/1.038.05'
  New upstream development release 1.38_05.
  Update Test::More build dependency.
  Drop no_cpan_shell.patch.
  Add patch to handle Module::Build in tests differently for new perls.
  releasing package libtest-prereq-perl version 1.038.05-1

---

This annotated tag includes the following new commits:

   new  e9e621d   Merge tag 'upstream/1.038.05'
   new  fb62277   New upstream development release 1.38_05.
   new  4cb1af9   Update Test::More build dependency.
   new  3a8eb73   Drop no_cpan_shell.patch.
   new  a2ca148   Add patch to handle Module::Build in tests differently 
for new perls.
   new  7d1b60a   releasing package libtest-prereq-perl version 1.038.05-1

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.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-prereq-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


[libtest-prereq-perl] 02/06: New upstream development release 1.38_05.

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit fb62277c4779073286d459826fb01ed1b7457091
Author: gregor herrmann gre...@debian.org
Date:   Sun Jun 21 23:41:05 2015 +0200

New upstream development release 1.38_05.
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 0b6e2bd..06bdfab 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libtest-prereq-perl (1.038.05-1) UNRELEASED; urgency=medium
+
+  * New upstream development release 1.38_05.
+
+ -- gregor herrmann gre...@debian.org  Sun, 21 Jun 2015 23:40:44 +0200
+
 libtest-prereq-perl (1.038-2) unstable; urgency=medium
 
   [ gregor herrmann ]

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-prereq-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


[libtest-prereq-perl] branch pristine-tar updated (e1a3316 - 12a9010)

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to branch pristine-tar
in repository libtest-prereq-perl.

  from  e1a3316   pristine-tar data for 
libtest-prereq-perl_1.038.orig.tar.gz
   new  12a9010   pristine-tar data for 
libtest-prereq-perl_1.038.05.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:
 libtest-prereq-perl_1.038.05.orig.tar.gz.delta | Bin 0 - 1746 bytes
 libtest-prereq-perl_1.038.05.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libtest-prereq-perl_1.038.05.orig.tar.gz.delta
 create mode 100644 libtest-prereq-perl_1.038.05.orig.tar.gz.id

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-prereq-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


[libtest-prereq-perl] 04/06: Drop no_cpan_shell.patch.

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 3a8eb739b9c759eb77dc64cca708ed1c1aed5607
Author: gregor herrmann gre...@debian.org
Date:   Sun Jun 21 23:49:00 2015 +0200

Drop no_cpan_shell.patch.

Using CPAN is not the default anymore.
---
 debian/patches/no_cpan_shell.patch | 23 ---
 debian/patches/series  |  1 -
 debian/rules   |  3 ---
 3 files changed, 27 deletions(-)

diff --git a/debian/patches/no_cpan_shell.patch 
b/debian/patches/no_cpan_shell.patch
deleted file mode 100644
index 7a88ef5..000
--- a/debian/patches/no_cpan_shell.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-Description: skip t/get_from_prereqs.t, since this test might require
- CPAN shell and network access.
-Forwarded: not-needed
-Author: Rene Mayorga rmayo...@debian.org
-Reviewed-by: gregor herrmann gre...@debian.org
-Last-Update: 2014-01-10
-
 a/t/get_from_prereqs.t
-+++ b/t/get_from_prereqs.t
-@@ -1,7 +1,12 @@
- use strict;
- 
- use Test::Prereq;
--use Test::More tests = 1;
-+use Test::More;
-+
-+if ($ENV{CPANSHELL}) {
-+plan skip_all = please un-set CPANSHELL var to enable this tests;
-+}
-+plan tests = 1;
- 
- use lib qw(.);
- 
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 2cc0e43..000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-no_cpan_shell.patch
diff --git a/debian/rules b/debian/rules
index 1de2f52..2d33f6a 100755
--- a/debian/rules
+++ b/debian/rules
@@ -2,6 +2,3 @@
 
 %:
dh $@
-
-override_dh_auto_test:
-   CPANSHELL=1 dh_auto_test

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-prereq-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


[libtest-prereq-perl] 01/01: pristine-tar data for libtest-prereq-perl_1.038.05.orig.tar.gz

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch pristine-tar
in repository libtest-prereq-perl.

commit 12a901088cbdaeeb459b98cb3b549949f5bca899
Author: gregor herrmann gre...@debian.org
Date:   Sun Jun 21 23:40:32 2015 +0200

pristine-tar data for libtest-prereq-perl_1.038.05.orig.tar.gz
---
 libtest-prereq-perl_1.038.05.orig.tar.gz.delta | Bin 0 - 1746 bytes
 libtest-prereq-perl_1.038.05.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libtest-prereq-perl_1.038.05.orig.tar.gz.delta 
b/libtest-prereq-perl_1.038.05.orig.tar.gz.delta
new file mode 100644
index 000..10fa64f
Binary files /dev/null and b/libtest-prereq-perl_1.038.05.orig.tar.gz.delta 
differ
diff --git a/libtest-prereq-perl_1.038.05.orig.tar.gz.id 
b/libtest-prereq-perl_1.038.05.orig.tar.gz.id
new file mode 100644
index 000..a639008
--- /dev/null
+++ b/libtest-prereq-perl_1.038.05.orig.tar.gz.id
@@ -0,0 +1 @@
+04fc6622afd7c30d803b6cf3d40143f135b75579

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-prereq-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


[libtest-prereq-perl] 01/06: Merge tag 'upstream/1.038.05'

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit e9e621dc4c68ffea7cf752974de6d0077c761230
Merge: 3c0477c 5b81428
Author: gregor herrmann gre...@debian.org
Date:   Sun Jun 21 23:40:32 2015 +0200

Merge tag 'upstream/1.038.05'

Upstream version 1.038.05

 Changes  | 25 ++---
 META.json| 31 ---
 META.yml | 15 ---
 Makefile.PL  |  6 +++---
 lib/Test/Prereq.pm   |  4 ++--
 lib/Test/Prereq/Build.pm |  2 +-
 t/get_from_file.t| 48 
 t/get_loaded_modules.t   | 30 --
 t/prereq_ok.t| 14 +-
 t/prior_plan.t   |  9 ++---
 10 files changed, 131 insertions(+), 53 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-prereq-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


[libtest-prereq-perl] 06/06: releasing package libtest-prereq-perl version 1.038.05-1

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 7d1b60a598e9adb6d39e30bfbcb2a65f27046a38
Author: gregor herrmann gre...@debian.org
Date:   Mon Jun 22 00:02:22 2015 +0200

releasing package libtest-prereq-perl version 1.038.05-1
---
 debian/changelog | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 06bdfab..49187e2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,12 @@
-libtest-prereq-perl (1.038.05-1) UNRELEASED; urgency=medium
+libtest-prereq-perl (1.038.05-1) unstable; urgency=medium
 
   * New upstream development release 1.38_05.
+  * Update Test::More build dependency.
+  * Drop no_cpan_shell.patch. Using CPAN is not the default anymore.
+  * Add patch to handle Module::Build in tests differently for new perls.
+(Closes: #789479)
 
- -- gregor herrmann gre...@debian.org  Sun, 21 Jun 2015 23:40:44 +0200
+ -- gregor herrmann gre...@debian.org  Sun, 21 Jun 2015 23:59:29 +0200
 
 libtest-prereq-perl (1.038-2) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-prereq-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


[libtest-prereq-perl] 03/06: Update Test::More build dependency.

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 4cb1af99fcdc1dea2828559feb327685784e331e
Author: gregor herrmann gre...@debian.org
Date:   Sun Jun 21 23:45:08 2015 +0200

Update Test::More build dependency.
---
 debian/control | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 9011c93..0ba44b3 100644
--- a/debian/control
+++ b/debian/control
@@ -10,7 +10,8 @@ Build-Depends-Indep: perl,
  libmodule-build-perl,
  libmodule-info-perl,
  libtest-pod-perl,
- libtest-pod-coverage-perl
+ libtest-pod-coverage-perl,
+ perl (= 5.13.4) | libtest-simple-perl (= 0.95)
 Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libtest-prereq-perl.git
 Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libtest-prereq-perl.git

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-prereq-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


[libtest-prereq-perl] branch master updated (3c0477c - 7d1b60a)

2015-06-21 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

  from  3c0477c   releasing package libtest-prereq-perl version 1.038-2
  adds  5b81428   Imported Upstream version 1.038.05
   new  e9e621d   Merge tag 'upstream/1.038.05'
   new  fb62277   New upstream development release 1.38_05.
   new  4cb1af9   Update Test::More build dependency.
   new  3a8eb73   Drop no_cpan_shell.patch.
   new  a2ca148   Add patch to handle Module::Build in tests differently 
for new perls.
   new  7d1b60a   releasing package libtest-prereq-perl version 1.038.05-1

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 +---
 META.json  | 31 +---
 META.yml   | 15 +---
 Makefile.PL|  6 ++---
 debian/changelog   | 10 
 debian/control |  3 ++-
 debian/patches/module-build.patch  | 40 +++
 debian/patches/no_cpan_shell.patch | 23 --
 debian/patches/series  |  2 +-
 debian/rules   |  3 ---
 lib/Test/Prereq.pm |  4 ++--
 lib/Test/Prereq/Build.pm   |  2 +-
 t/get_from_file.t  | 48 ++
 t/get_loaded_modules.t | 30 +---
 t/prereq_ok.t  | 14 ++-
 t/prior_plan.t |  9 ---
 16 files changed, 184 insertions(+), 81 deletions(-)
 create mode 100644 debian/patches/module-build.patch
 delete mode 100644 debian/patches/no_cpan_shell.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-prereq-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