[libmodule-build-perl] 02/02: releasing 0.421000-2 to unstable

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libmodule-build-perl.

commit a769c3717d3ee77af7bc712921c4d0dd6900327d
Author: Niko Tyni nt...@debian.org
Date:   Fri Sep 19 00:06:54 2014 +0300

releasing 0.421000-2 to unstable
---
 debian/changelog | 13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 3c9fbef..d244c13 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,12 @@
-libmodule-build-perl (0.421000-2) UNRELEASED; urgency=medium
+libmodule-build-perl (0.421000-2) unstable; urgency=medium
 
-  * debian/tests/control: add stanza for new runtime-deps-and-recommends
-tests.
-  * Drop debian/tests/control, add Testsuite field to debian/control
-instead.
+  [ gregor herrmann ]
+  * Drop debian/tests/control, add Testsuite field to debian/control instead.
+
+  [ Niko Tyni ]
+  * Slightly patch the test suite for autopkgtest support.
 
- -- gregor herrmann gre...@debian.org  Wed, 10 Sep 2014 23:15:37 +0200
+ -- Niko Tyni nt...@debian.org  Fri, 19 Sep 2014 12:02:11 +0300
 
 libmodule-build-perl (0.421000-1) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libmodule-build-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-build-perl] branch master updated (60274f6 - a769c37)

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to branch master
in repository libmodule-build-perl.

  from  60274f6   update changelog
   new  6a38a95   Slightly patch the test suite for autopkgtest support.
   new  a769c37   releasing 0.421000-2 to unstable

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   | 13 ---
 ...ng-from-system-path-when-running-under-au.patch | 44 ++
 debian/patches/series  |  1 +
 3 files changed, 52 insertions(+), 6 deletions(-)
 create mode 100644 
debian/patches/0001-Allow-loading-from-system-path-when-running-under-au.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libmodule-build-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-build-perl] 01/02: Slightly patch the test suite for autopkgtest support.

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libmodule-build-perl.

commit 6a38a9505741bceb8a06f79671213d968cd56e31
Author: Niko Tyni nt...@debian.org
Date:   Fri Sep 19 00:04:46 2014 +0300

Slightly patch the test suite for autopkgtest support.
---
 ...ng-from-system-path-when-running-under-au.patch | 44 ++
 debian/patches/series  |  1 +
 2 files changed, 45 insertions(+)

diff --git 
a/debian/patches/0001-Allow-loading-from-system-path-when-running-under-au.patch
 
b/debian/patches/0001-Allow-loading-from-system-path-when-running-under-au.patch
new file mode 100644
index 000..470a119
--- /dev/null
+++ 
b/debian/patches/0001-Allow-loading-from-system-path-when-running-under-au.patch
@@ -0,0 +1,44 @@
+From 5a72ba915915cc44d7651f185fc2f0a3e7acfecd Mon Sep 17 00:00:00 2001
+From: Niko Tyni nt...@debian.org
+Date: Fri, 19 Sep 2014 00:00:51 +0300
+Subject: [PATCH] Allow loading from system path when running under autopkgtest
+
+When re-using the build time test suite as a runtime as-installed one,
+we explicitly want to load Module::Build from the system paths. This
+situation is detected by the ADTTMP environment variable, set by the
+autopkgtest tool. See http://dep.debian.net/deps/dep8/
+
+Rewiring check_compiler() to return early is to avoid a call
+to M::B-current(), which needs a 'build_params' file remaining
+from its own build.
+
+Forwarded: not-needed
+---
+ t/lib/MBTest.pm | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/t/lib/MBTest.pm b/t/lib/MBTest.pm
+index fda7f69..86c6d1f 100644
+--- a/t/lib/MBTest.pm
 b/t/lib/MBTest.pm
+@@ -220,7 +220,7 @@ sub find_in_path {
+ }
+ 
+ sub check_compiler {
+-  if ($ENV{PERL_CORE}) {
++  if ($ENV{PERL_CORE} || $ENV{ADTTMP}) {
+ require IPC::Cmd;
+ if ( $Config{usecrosscompile}  !IPC::Cmd::can_run($Config{cc}) ) {
+   return;
+@@ -271,7 +271,7 @@ sub blib_load {
+   (my $path = $mod) =~ s{::}{/}g;
+   $path .= .pm;
+   my ($pkg, $file, $line) = caller;
+-  unless($ENV{PERL_CORE}) {
++  unless($ENV{PERL_CORE} || $ENV{ADTTMP}) {
+ unless($INC{$path} =~ m/\bblib\b/) {
+   (my $load_from = $INC{$path}) =~ s{$path$}{};
+   die $mod loaded from '$load_from'\nIt should have been loaded from 
blib.  \@INC contains:\n  ,
+-- 
+2.1.0
+
diff --git a/debian/patches/series b/debian/patches/series
index 413cab2..4218d4a 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 man-ext
+0001-Allow-loading-from-system-path-when-running-under-au.patch

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


[libdbix-class-helpers-perl] 02/02: releasing 2.023006-2 to unstable

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libdbix-class-helpers-perl.

commit b8586732a47c5d2218f3e6c310f9bf8c55776220
Author: Niko Tyni nt...@debian.org
Date:   Fri Sep 19 12:59:14 2014 +0300

releasing 2.023006-2 to unstable
---
 debian/changelog | 12 
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 158203a..10fd79b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,15 @@
-libdbix-class-helpers-perl (2.023006-2) UNRELEASED; urgency=medium
+libdbix-class-helpers-perl (2.023006-2) unstable; urgency=medium
 
-  * debian/tests/control: add stanza for new runtime-deps-and-recommends
-tests.
+  * Team upload.
+
+  [ gregor herrmann ]
   * Drop debian/tests/control, add Testsuite field to debian/control
 instead.
 
- -- gregor herrmann gre...@debian.org  Wed, 10 Sep 2014 23:15:21 +0200
+  [ Niko Tyni ]
+  * Slightly patch a deprecated module to fix a compile time error
+
+ -- Niko Tyni nt...@debian.org  Fri, 19 Sep 2014 12:58:49 +0300
 
 libdbix-class-helpers-perl (2.023006-1) unstable; urgency=medium
 

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


[libdbix-class-helpers-perl] annotated tag debian/2.023006-2 created (now e20d63d)

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to annotated tag debian/2.023006-2
in repository libdbix-class-helpers-perl.

at  e20d63d   (tag)
   tagging  b8586732a47c5d2218f3e6c310f9bf8c55776220 (commit)
  replaces  debian/2.023006-1
 tagged by  Niko Tyni
on  Fri Sep 19 13:02:07 2014 +0300

- Log -
Debian release 2.023006-2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJUG/8fAAoJEC7A/7O3MBsfwa8P/jXC/e5Dciv6tUlllQY244cG
1zG/Zc7G89TxVhPPzZKYGnU3VWz5w1yZKWJxXJMuf99FXAB12trj5z/9gdp8zzGk
H+JAC41x1jHBe9ZhpljDD1vwZ9q4mjZiQR4kwXEWxUGxOJSBlDixYbmy1SzVVXqJ
lGD9r3/chObWVS+rwWYRcvYla4DJAFDantblyaKxSMlY5OZPG9GApi9Y2+g5di3f
RpjaOW2OxXpgDpNxjc3QWNlKJlquKAL69y3l/JDtYho9tc6Iwu6e+byaGHNnyhRi
rvGdacUU/nqjmbqB1nAZpPwjSiTa2JiOUjaLEPem/7v1RWgSJUknxwpOsC8UYyeX
dVNFzm2At+wb4klh4dppOTwvNgRGUON/R4M95+wSDhPwrFN8bq8NHhXr/EK3doK2
Y3UdCqnth8cnEF3ahgzr4mQzJfzfiagfxBVFwFcJ84S0mrZtUTgAl23jb0SBmKgy
AbxmTng3evyjApibpxPovVsa83c9kJTiNrKz48uR8dc+rlL8w4W/uvrAY5mf+adt
SexzWy3V1aNMxAg28C9zM29dE6Ts6j7W3TCqXhIUaQmK5P03KYjEQCLQufVnDNtW
hpwKC5Yo3RF7PnVLFop0GpembwDkFz/KxLOsnVuKTw8HrPMHHS7KTJPuEnkjGwRL
1wzJyETNl0fgj//rHfLR
=AK3r
-END PGP SIGNATURE-

Niko Tyni (2):
  Slightly patch a deprecated module to fix a compile time error
  releasing 2.023006-2 to unstable

gregor herrmann (4):
  debian/tests/control: add stanza for new runtime-deps-and-recommends 
tests.
  update changelog
  Drop debian/tests/control, add Testsuite field to debian/control instead.
  update changelog

---

This annotated tag includes the following new commits:

   new  2c4e676   Slightly patch a deprecated module to fix a compile time 
error
   new  b858673   releasing 2.023006-2 to unstable

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.


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


[libdbix-class-helpers-perl] 01/02: Slightly patch a deprecated module to fix a compile time error

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libdbix-class-helpers-perl.

commit 2c4e676185d8df42c7aa826931a9cacca720efee
Author: Niko Tyni nt...@debian.org
Date:   Fri Sep 19 12:57:20 2014 +0300

Slightly patch a deprecated module to fix a compile time error
---
 ...a-strictness-error-in-a-deprecated-module.patch | 27 ++
 debian/patches/series  |  1 +
 2 files changed, 28 insertions(+)

diff --git 
a/debian/patches/0001-Fix-a-strictness-error-in-a-deprecated-module.patch 
b/debian/patches/0001-Fix-a-strictness-error-in-a-deprecated-module.patch
new file mode 100644
index 000..2cad8bb
--- /dev/null
+++ b/debian/patches/0001-Fix-a-strictness-error-in-a-deprecated-module.patch
@@ -0,0 +1,27 @@
+From 3502789f7aaabf4490fb060e238d69258704ee26 Mon Sep 17 00:00:00 2001
+From: Niko Tyni nt...@debian.org
+Date: Fri, 19 Sep 2014 12:54:58 +0300
+Subject: [PATCH] Fix a strictness error in a deprecated module
+
+The deprecation messages refer to $VERSION, which isn't
+declared despite 'use strict'. This causes a compile
+time error.
+---
+ lib/DBIx/Class/Helper/ResultSet/VirtualView.pm | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/lib/DBIx/Class/Helper/ResultSet/VirtualView.pm 
b/lib/DBIx/Class/Helper/ResultSet/VirtualView.pm
+index 71403b8..c17a7b7 100644
+--- a/lib/DBIx/Class/Helper/ResultSet/VirtualView.pm
 b/lib/DBIx/Class/Helper/ResultSet/VirtualView.pm
+@@ -2,6 +2,7 @@ package DBIx::Class::Helper::ResultSet::VirtualView;
+ $DBIx::Class::Helper::ResultSet::VirtualView::VERSION = '2.023006';
+ use strict;
+ use warnings;
++use vars qw($VERSION);
+ 
+ # ABSTRACT: Clean up your SQL namespace (DEPRECATED)
+ 
+-- 
+2.1.0
+
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..30ac1e7
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+0001-Fix-a-strictness-error-in-a-deprecated-module.patch

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


[libdbix-class-helpers-perl] branch master updated (f96ccd1 - b858673)

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to branch master
in repository libdbix-class-helpers-perl.

  from  f96ccd1   update changelog
   new  2c4e676   Slightly patch a deprecated module to fix a compile time 
error
   new  b858673   releasing 2.023006-2 to unstable

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   | 12 ++
 ...a-strictness-error-in-a-deprecated-module.patch | 27 ++
 debian/patches/series  |  1 +
 3 files changed, 36 insertions(+), 4 deletions(-)
 create mode 100644 
debian/patches/0001-Fix-a-strictness-error-in-a-deprecated-module.patch
 create mode 100644 debian/patches/series

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


[libmail-cclient-perl] branch master updated (7beaa3a - 1af701b)

2014-09-19 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a change to branch master
in repository libmail-cclient-perl.

  from  7beaa3a   update changelog
   new  1af701b   Drop obsolete and outdated emacs Local variables from 
debian/changelog

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 | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

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


[libmail-cclient-perl] 01/01: Drop obsolete and outdated emacs Local variables from debian/changelog

2014-09-19 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a commit to branch master
in repository libmail-cclient-perl.

commit 1af701bad3ee030d93363b59dd9117fa6d8ee572
Author: Axel Beckert a...@deuxchevaux.org
Date:   Fri Sep 19 12:09:13 2014 +0200

Drop obsolete and outdated emacs Local variables from debian/changelog
---
 debian/changelog | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 5b2297f..a6789a9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -15,6 +15,10 @@ libmail-cclient-perl (1.12-12) UNRELEASED; urgency=low
   [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
 
+  [ Axel Beckert ]
+  * Drop obsolete and outdated emacs Local variables from
+debian/changelog.
+
  -- Salvatore Bonaccorso car...@debian.org  Sun, 06 Jan 2013 22:03:19 +0100
 
 libmail-cclient-perl (1.12-11) unstable; urgency=low
@@ -429,8 +433,3 @@ libmail-cclient-perl (0.4-1) unstable; urgency=low
   * Initial Debianization.
 
  -- Michael Alan Dorman mdor...@debian.org  Thu, 19 Nov 1998 09:27:11 -0500
-
-Local variables:
-mode: debian-changelog
-user-mail-address: mdor...@debian.org
-End:

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


[libmail-cclient-perl] branch master updated (1af701b - 61f0bdc)

2014-09-19 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a change to branch master
in repository libmail-cclient-perl.

  from  1af701b   Drop obsolete and outdated emacs Local variables from 
debian/changelog
   new  61f0bdc   Bump Standards-Version to 3.9.6 (no changes needed)

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


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

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


[libmail-cclient-perl] 01/01: Bump Standards-Version to 3.9.6 (no changes needed)

2014-09-19 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a commit to branch master
in repository libmail-cclient-perl.

commit 61f0bdc71c879cdd9960f9bc1d46464a9c0965e8
Author: Axel Beckert a...@deuxchevaux.org
Date:   Fri Sep 19 12:09:49 2014 +0200

Bump Standards-Version to 3.9.6 (no changes needed)
---
 debian/changelog | 1 +
 debian/control   | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index a6789a9..a6c5651 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -18,6 +18,7 @@ libmail-cclient-perl (1.12-12) UNRELEASED; urgency=low
   [ Axel Beckert ]
   * Drop obsolete and outdated emacs Local variables from
 debian/changelog.
+  * Bump Standards-Version to 3.9.6 (no changes needed)
 
  -- Salvatore Bonaccorso car...@debian.org  Sun, 06 Jan 2013 22:03:19 +0100
 
diff --git a/debian/control b/debian/control
index 595c170..c57e041 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,7 @@ Priority: optional
 Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
 Uploaders: Jonas Smedegaard d...@jones.dk,
  Dominic Hargreaves d...@earth.li
-Standards-Version: 3.9.2
+Standards-Version: 3.9.6
 Vcs-Git: git://anonscm.debian.org/git/pkg-perl/packages/libmail-cclient-perl
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libmail-cclient-perl.git
 Build-Depends: devscripts (= 2.10.7~),

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


[libmail-cclient-perl] branch master updated (61f0bdc - 59caacc)

2014-09-19 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a change to branch master
in repository libmail-cclient-perl.

  from  61f0bdc   Bump Standards-Version to 3.9.6 (no changes needed)
   new  bcc6c99   Add patch by Nicolas Sévelin-Radiguet to fix compilation 
with clang (Closes: #742431)
   new  4857b07   Bump debhelper compatibility to 9
   new  f7635f4   Add Makefile.old to debian/clean
   new  4d16f87   Fix lintian warning vcs-field-not-canonical
   new  59caacc   Fix lintian warning arch-any-package-needs-newer-cdbs

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:
 debian/changelog   |  9 +
 debian/clean   |  1 +
 debian/compat  |  2 +-
 debian/control |  6 +++---
 debian/patches/1003_fix_clang_FTBFS_Wreturn-type.patch | 16 
 debian/patches/series  |  1 +
 6 files changed, 31 insertions(+), 4 deletions(-)
 create mode 100644 debian/clean
 create mode 100644 debian/patches/1003_fix_clang_FTBFS_Wreturn-type.patch

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

[libmail-cclient-perl] 01/05: Add patch by Nicolas Sévelin-Radiguet to fix compilation with clang (Closes: #742431)

2014-09-19 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a commit to branch master
in repository libmail-cclient-perl.

commit bcc6c9966fac14cee86cc0e492d19e9ce076db70
Author: Axel Beckert a...@deuxchevaux.org
Date:   Fri Sep 19 12:14:27 2014 +0200

Add patch by Nicolas Sévelin-Radiguet to fix compilation with clang 
(Closes: #742431)
---
 debian/changelog   |  2 ++
 debian/patches/1003_fix_clang_FTBFS_Wreturn-type.patch | 16 
 debian/patches/series  |  1 +
 3 files changed, 19 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index a6c5651..7c74ca3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -19,6 +19,8 @@ libmail-cclient-perl (1.12-12) UNRELEASED; urgency=low
   * Drop obsolete and outdated emacs Local variables from
 debian/changelog.
   * Bump Standards-Version to 3.9.6 (no changes needed)
+  * Add patch by Nicolas Sévelin-Radiguet to fix compilation with clang.
+(Closes: #742431)
 
  -- Salvatore Bonaccorso car...@debian.org  Sun, 06 Jan 2013 22:03:19 +0100
 
diff --git a/debian/patches/1003_fix_clang_FTBFS_Wreturn-type.patch 
b/debian/patches/1003_fix_clang_FTBFS_Wreturn-type.patch
new file mode 100644
index 000..09786ee
--- /dev/null
+++ b/debian/patches/1003_fix_clang_FTBFS_Wreturn-type.patch
@@ -0,0 +1,16 @@
+Description: fix FTBFS with clang instead of gcc
+Author: Nicolas Sévelin-Radiguet nic...@free.fr
+Last-Update: 2014-03-23
+Bug-Debian: https://bugs.debian.org/742431
+
+--- a/Cclient.xs
 b/Cclient.xs
+@@ -1028,7 +1028,7 @@
+ dSP;
+ SV *sv = mm_callback(diskerror);
+ if (!sv)
+-  return;
++  return -1;
+ PUSHMARK(sp);
+ XPUSHs(sv_mortalcopy(get_mailstream_sv(stream, 0)));
+ XPUSHs(sv_2mortal(newSViv(errcode)));
diff --git a/debian/patches/series b/debian/patches/series
index bf76e3f..015f09f 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1,3 @@
 1001_fix_segfault_from_truncated_pointer.patch
 1002_Don-t-use-PERL_POLLUTE-macros.patch
+1003_fix_clang_FTBFS_Wreturn-type.patch

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

[libmail-cclient-perl] 03/05: Add Makefile.old to debian/clean

2014-09-19 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a commit to branch master
in repository libmail-cclient-perl.

commit f7635f43e0b55582f7671551ba560573ac1b8fcb
Author: Axel Beckert a...@deuxchevaux.org
Date:   Fri Sep 19 12:44:19 2014 +0200

Add Makefile.old to debian/clean
---
 debian/changelog | 1 +
 debian/clean | 1 +
 2 files changed, 2 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index ff465a8..2c5d3fa 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -24,6 +24,7 @@ libmail-cclient-perl (1.12-12) UNRELEASED; urgency=low
   * Bump debhelper compatibility to 9 to be able to use debian/clean and
 get easier hardening flags.
 + Update versioned build-dependency on debhelper accordingly.
+  * Add Makefile.old to debian/clean
 
  -- Salvatore Bonaccorso car...@debian.org  Sun, 06 Jan 2013 22:03:19 +0100
 
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 000..6dc3062
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1 @@
+Makefile.old

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


[libmail-cclient-perl] 04/05: Fix lintian warning vcs-field-not-canonical

2014-09-19 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a commit to branch master
in repository libmail-cclient-perl.

commit 4d16f873407794bb17e7df87dc68a253cdf47afd
Author: Axel Beckert a...@deuxchevaux.org
Date:   Fri Sep 19 12:44:50 2014 +0200

Fix lintian warning vcs-field-not-canonical
---
 debian/changelog | 2 ++
 debian/control   | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 2c5d3fa..e1e2b5a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -25,6 +25,8 @@ libmail-cclient-perl (1.12-12) UNRELEASED; urgency=low
 get easier hardening flags.
 + Update versioned build-dependency on debhelper accordingly.
   * Add Makefile.old to debian/clean
+  * Fixes the following lintian warnings:
++ vcs-field-not-canonical
 
  -- Salvatore Bonaccorso car...@debian.org  Sun, 06 Jan 2013 22:03:19 +0100
 
diff --git a/debian/control b/debian/control
index 9d2c90e..351a3f8 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,7 @@ Maintainer: Debian Perl Group 
pkg-perl-maintain...@lists.alioth.debian.org
 Uploaders: Jonas Smedegaard d...@jones.dk,
  Dominic Hargreaves d...@earth.li
 Standards-Version: 3.9.6
-Vcs-Git: git://anonscm.debian.org/git/pkg-perl/packages/libmail-cclient-perl
+Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libmail-cclient-perl
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libmail-cclient-perl.git
 Build-Depends: devscripts (= 2.10.7~),
  cdbs (= 0.4.73~),

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


[libmail-cclient-perl] 02/05: Bump debhelper compatibility to 9

2014-09-19 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a commit to branch master
in repository libmail-cclient-perl.

commit 4857b07d7d196a36cd28ebb530f97cad30277be6
Author: Axel Beckert a...@deuxchevaux.org
Date:   Fri Sep 19 12:40:48 2014 +0200

Bump debhelper compatibility to 9

7 is needed for being able to use debian/clean and 9 will help to fix
lintian hardening warnings more easily later.

Update versioned build-dependency on debhelper accordingly.
---
 debian/changelog | 3 +++
 debian/compat| 2 +-
 debian/control   | 2 +-
 3 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 7c74ca3..ff465a8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -21,6 +21,9 @@ libmail-cclient-perl (1.12-12) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.9.6 (no changes needed)
   * Add patch by Nicolas Sévelin-Radiguet to fix compilation with clang.
 (Closes: #742431)
+  * Bump debhelper compatibility to 9 to be able to use debian/clean and
+get easier hardening flags.
++ Update versioned build-dependency on debhelper accordingly.
 
  -- Salvatore Bonaccorso car...@debian.org  Sun, 06 Jan 2013 22:03:19 +0100
 
diff --git a/debian/compat b/debian/compat
index 1e8b314..ec63514 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-6
+9
diff --git a/debian/control b/debian/control
index c57e041..9d2c90e 100644
--- a/debian/control
+++ b/debian/control
@@ -10,7 +10,7 @@ Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libmail-cclient-p
 Build-Depends: devscripts (= 2.10.7~),
  cdbs (= 0.4.73~),
  perl,
- debhelper (= 6),
+ debhelper (= 9),
  dh-buildinfo,
  libc-client-dev,
  libpam-dev,

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

[libmail-cclient-perl] 05/05: Fix lintian warning arch-any-package-needs-newer-cdbs

2014-09-19 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a commit to branch master
in repository libmail-cclient-perl.

commit 59caacc8c5fc9741e08f3431bbd40af3f5e0dc85
Author: Axel Beckert a...@deuxchevaux.org
Date:   Fri Sep 19 12:45:02 2014 +0200

Fix lintian warning arch-any-package-needs-newer-cdbs
---
 debian/changelog | 1 +
 debian/control   | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index e1e2b5a..6e5ec43 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -27,6 +27,7 @@ libmail-cclient-perl (1.12-12) UNRELEASED; urgency=low
   * Add Makefile.old to debian/clean
   * Fixes the following lintian warnings:
 + vcs-field-not-canonical
++ arch-any-package-needs-newer-cdbs
 
  -- Salvatore Bonaccorso car...@debian.org  Sun, 06 Jan 2013 22:03:19 +0100
 
diff --git a/debian/control b/debian/control
index 351a3f8..73abf59 100644
--- a/debian/control
+++ b/debian/control
@@ -8,7 +8,7 @@ Standards-Version: 3.9.6
 Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libmail-cclient-perl
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libmail-cclient-perl.git
 Build-Depends: devscripts (= 2.10.7~),
- cdbs (= 0.4.73~),
+ cdbs (= 0.4.122~),
  perl,
  debhelper (= 9),
  dh-buildinfo,

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


[libfindbin-libs-perl] 02/02: releasing 2.110-2 to unstable

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libfindbin-libs-perl.

commit 135dde777f791f3231a4fc0596294252a9488900
Author: Niko Tyni nt...@debian.org
Date:   Fri Sep 19 13:52:54 2014 +0300

releasing 2.110-2 to unstable
---
 debian/changelog | 12 
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 1e8156e..63cf91c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,15 @@
-libfindbin-libs-perl (2.110-2) UNRELEASED; urgency=medium
+libfindbin-libs-perl (2.110-2) unstable; urgency=medium
 
-  * debian/tests/control: add stanza for new runtime-deps-and-recommends
-tests.
+  * Team upload.
+
+  [ gregor herrmann ]
   * Drop debian/tests/control, add Testsuite field to debian/control
 instead.
 
- -- gregor herrmann gre...@debian.org  Wed, 10 Sep 2014 23:15:27 +0200
+  [ Niko Tyni ]
+  * skip t/06-base-subdir-subonly.t in autopkgtest tests
+
+ -- Niko Tyni nt...@debian.org  Fri, 19 Sep 2014 13:52:24 +0300
 
 libfindbin-libs-perl (2.110-1) unstable; urgency=medium
 

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


[libfindbin-libs-perl] annotated tag debian/2.110-2 created (now 0c0e19e)

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to annotated tag debian/2.110-2
in repository libfindbin-libs-perl.

at  0c0e19e   (tag)
   tagging  135dde777f791f3231a4fc0596294252a9488900 (commit)
  replaces  debian/2.110-1
 tagged by  Niko Tyni
on  Fri Sep 19 14:04:58 2014 +0300

- Log -
Debian release 2.110-2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJUHA3aAAoJEC7A/7O3MBsfBSkP/25S5Cvj1mbiscYllqO5NpNT
TGMYxtI9ivAGbqicU7aYlm8wplUhdm3+yauT/rYHSHaIJwfr8zB8O3MEhg4pGaO6
6atFwSnasnH47poAkHz4v8TrX6DawKTU8voFxQpg/1C/okxvdF5J5skRFXb7a522
II4Tq56376J8PTWcbmf2saIkgm9G2oojzIwkEqD5Eo8KM3Qtt7ZMM1SMR4Il1+Xf
6nsKtx1QFHSnaCXm6R3rCcj0hfrssr4q8BvqsoIjF4/RNZHWwvBp1iXUfbdIVn7f
ueagYG6FmXq6G7yIW9dvj1B78eVSSaauk5dtC9qnIP1zMGDykE8b/2piu9a1YTrR
PusctkuO+xbOgQyc+kbF8XHoOZpxDwFpYdnLUY7WnZdGobAdLT+iVV98Eu16HIwu
h9yDLxG44kU2auNR6JPU3f2kEGDeHBeDPlCPOE95t6kqsRHt7xcx3yH8zm9X14wi
HkPuGM7Vp2Cy+tcH3cgavh5ICKWVqchTZkZgEt2EUpJMgroF3RisU3NOWyioplU3
9D1wbHLczNAS42L87+9id102HPaPeTdNmjywciGXebweRAkXfEglzbsRK//QPqrD
utewCo9wWM4ryWZoYm6AciL+0BUMm3eaImnN4hInVV2snitnJU5eSs8ZJjbSSnFr
S9R7XE9gxcrSD3FWyYgZ
=o5ZN
-END PGP SIGNATURE-

Niko Tyni (2):
  skip t/06-base-subdir-subonly.t in autopkgtest tests
  releasing 2.110-2 to unstable

gregor herrmann (4):
  debian/tests/control: add stanza for new runtime-deps-and-recommends 
tests.
  update changelog
  Drop debian/tests/control, add Testsuite field to debian/control instead.
  update changelog

---

This annotated tag includes the following new commits:

   new  3e14377   skip t/06-base-subdir-subonly.t in autopkgtest tests
   new  135dde7   releasing 2.110-2 to unstable

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.


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


[libfindbin-libs-perl] branch master updated (3f6f6d0 - 135dde7)

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to branch master
in repository libfindbin-libs-perl.

  from  3f6f6d0   update changelog
   new  3e14377   skip t/06-base-subdir-subonly.t in autopkgtest tests
   new  135dde7   releasing 2.110-2 to unstable

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 | 12 
 debian/tests/pkg-perl/skip-smoke |  2 ++
 2 files changed, 10 insertions(+), 4 deletions(-)
 create mode 100644 debian/tests/pkg-perl/skip-smoke

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


[libfindbin-libs-perl] 01/02: skip t/06-base-subdir-subonly.t in autopkgtest tests

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libfindbin-libs-perl.

commit 3e143778f1101fed2f1e791975435a3cf29bc311
Author: Niko Tyni nt...@debian.org
Date:   Fri Sep 19 13:51:44 2014 +0300

skip t/06-base-subdir-subonly.t in autopkgtest tests
---
 debian/tests/pkg-perl/skip-smoke | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/debian/tests/pkg-perl/skip-smoke b/debian/tests/pkg-perl/skip-smoke
new file mode 100644
index 000..dd19c6f
--- /dev/null
+++ b/debian/tests/pkg-perl/skip-smoke
@@ -0,0 +1,2 @@
+# looks for lib/FindBin
+t/06-base-subdir-subonly.t

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


[libmail-cclient-perl] 03/03: Drop clean target list its files in debian/clean

2014-09-19 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a commit to branch master
in repository libmail-cclient-perl.

commit ee403d486ac936f87ed0a742f2be06c779e53ab0
Author: Axel Beckert a...@deuxchevaux.org
Date:   Fri Sep 19 13:01:43 2014 +0200

Drop clean target list its files in debian/clean
---
 debian/changelog | 1 +
 debian/clean | 2 ++
 debian/rules | 4 
 3 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 876f8b7..dbc1071 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -25,6 +25,7 @@ libmail-cclient-perl (1.12-12) UNRELEASED; urgency=low
 get easier hardening flags.
 + Update versioned build-dependency on debhelper accordingly.
   * Add Makefile.old to debian/clean
+  * Drop clean target list its files in debian/clean
   * Fixes the following lintian warnings:
 + vcs-field-not-canonical
 + arch-any-package-needs-newer-cdbs
diff --git a/debian/clean b/debian/clean
index 6dc3062..d2d0490 100644
--- a/debian/clean
+++ b/debian/clean
@@ -1 +1,3 @@
 Makefile.old
+debian/tests.txt
+Cclient.h
diff --git a/debian/rules b/debian/rules
index e010464..f1e7e6f 100755
--- a/debian/rules
+++ b/debian/rules
@@ -37,9 +37,5 @@ endif
 binary-fixup/libmail-cclient-perl::
chmod a-x $(cdbs_curdestdir)/usr/share/doc/$(cdbs_curpkg)/examples/*.txt
 
-clean::
-   rm -f debian/tests.txt
-   rm -f Cclient.h
-
 # Needed by upstream build process
 CDBS_BUILD_DEPENDS += , libc-client-dev, libpam-dev, libssl-dev, libkrb5-dev

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


[libmail-cclient-perl] 01/03: Fix lintian warning copyright-refers-to-symlink-license

2014-09-19 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a commit to branch master
in repository libmail-cclient-perl.

commit 088a258cb78340057f2f0f61fb732f2fe5f9503e
Author: Axel Beckert a...@deuxchevaux.org
Date:   Fri Sep 19 12:47:17 2014 +0200

Fix lintian warning copyright-refers-to-symlink-license
---
 debian/changelog | 1 +
 debian/copyright | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 6e5ec43..5c8cda2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -28,6 +28,7 @@ libmail-cclient-perl (1.12-12) UNRELEASED; urgency=low
   * Fixes the following lintian warnings:
 + vcs-field-not-canonical
 + arch-any-package-needs-newer-cdbs
++ copyright-refers-to-symlink-license
 
  -- Salvatore Bonaccorso car...@debian.org  Sun, 06 Jan 2013 22:03:19 +0100
 
diff --git a/debian/copyright b/debian/copyright
index 03a674d..0f917c1 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -54,7 +54,7 @@ License: GPL-1+
  any later version.
 Comment:
  On Debian systems the 'GNU General Public License' version 1 is located
- in '/usr/share/common-licenses/GPL'.
+ in '/usr/share/common-licenses/GPL-1'.
 
 License: GPL-2+
  This program is free software; you can redistribute it and/or modify it
@@ -68,7 +68,7 @@ License: GPL-2+
  General Public License for more details.
 Comment:
  On Debian systems the 'GNU General Public License' version 2 is located
- in '/usr/share/common-licenses/GPL'.
+ in '/usr/share/common-licenses/GPL-2'.
  .
  You should have received a copy of the 'GNU General Public License'
  along with this program.  If not, see http://www.gnu.org/licenses/.

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


[libmail-cclient-perl] 02/03: Fix lintian warning license-problem-undefined-license

2014-09-19 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a commit to branch master
in repository libmail-cclient-perl.

commit cd73df9551e251b9fa636f86c322b895962e76d3
Author: Axel Beckert a...@deuxchevaux.org
Date:   Fri Sep 19 12:54:25 2014 +0200

Fix lintian warning license-problem-undefined-license
---
 debian/changelog | 1 +
 debian/copyright | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 5c8cda2..876f8b7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -29,6 +29,7 @@ libmail-cclient-perl (1.12-12) UNRELEASED; urgency=low
 + vcs-field-not-canonical
 + arch-any-package-needs-newer-cdbs
 + copyright-refers-to-symlink-license
++ license-problem-undefined-license
 
  -- Salvatore Bonaccorso car...@debian.org  Sun, 06 Jan 2013 22:03:19 +0100
 
diff --git a/debian/copyright b/debian/copyright
index 0f917c1..aa737be 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -17,8 +17,8 @@ License: Artistic or GPL-1+
 
 Files: criteria.*
 Copyright: 2001, University of Washington
-License: UNKNOWN
-Comment: Apache-2.0
+License: Apache-2.0
+Comment:
  Code lacks licensing info, but refers to libc-client, part of uw-imap
  project, licensed as 'Apache-2.0'.
 

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


[libmail-cclient-perl] branch master updated (59caacc - ee403d4)

2014-09-19 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a change to branch master
in repository libmail-cclient-perl.

  from  59caacc   Fix lintian warning arch-any-package-needs-newer-cdbs
   new  088a258   Fix lintian warning copyright-refers-to-symlink-license
   new  cd73df9   Fix lintian warning license-problem-undefined-license
   new  ee403d4   Drop clean target list its files in debian/clean

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 | 3 +++
 debian/clean | 2 ++
 debian/copyright | 8 
 debian/rules | 4 
 4 files changed, 9 insertions(+), 8 deletions(-)

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


[libperl-apireference-perl] 03/05: Declare compliance with Debian Policy 3.9.6.

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 7f60f3ee732a42a07b0118e9dfcf5e2aa66a90a1
Author: gregor herrmann gre...@debian.org
Date:   Fri Sep 19 14:37:38 2014 +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 ac13577..a88ebf8 100644
--- a/debian/control
+++ b/debian/control
@@ -11,7 +11,7 @@ Build-Depends: debhelper (= 8)
 Build-Depends-Indep: perl,
  libclass-xsaccessor-perl,
  libpod-eventual-perl
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libperl-apireference-perl.git
 Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/libperl-apireference-perl.git
 Homepage: https://metacpan.org/release/Perl-APIReference

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


[libperl-apireference-perl] 01/05: Merge tag 'upstream/0.18'

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit d3189ce195aba8d47b290e535038a16ced835fa8
Merge: 4ac4f0b 9def7e6
Author: gregor herrmann gre...@debian.org
Date:   Fri Sep 19 14:34:41 2014 +0200

Merge tag 'upstream/0.18'

Upstream version 0.18

 Changes |3 +
 MANIFEST|2 +
 META.yml|2 +-
 data/perlapi.5.20.1.pod.xz  |  Bin 0 - 71808 bytes
 lib/Perl/APIReference.pm|   11 +-
 lib/Perl/APIReference/V5_020_001.pm | 5721 +++
 6 files changed, 5733 insertions(+), 6 deletions(-)

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


[libperl-apireference-perl] 04/05: Mention latest supported version in long description.

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 8daebe0af27125e4861f52dddbb891a88d44e120
Author: gregor herrmann gre...@debian.org
Date:   Fri Sep 19 14:38:14 2014 +0200

Mention latest supported version in long description.
---
 debian/control | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/debian/control b/debian/control
index a88ebf8..28f79ff 100644
--- a/debian/control
+++ b/debian/control
@@ -25,5 +25,4 @@ Depends: ${perl:Depends},
 Description: Perl module to programmatically query the perlapi
  Perl::APIReference is a Perl module that allows Perl programs to access the
  perlapi documentation for multiple releases of perl as an index (a hash). It
- supports a multitude of perl versions, from 5.6 through 5.18.
-
+ supports a multitude of perl versions, from 5.6 through 5.20.1.

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


[libperl-apireference-perl] branch master updated (4ac4f0b - a16ebd0)

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

  from  4ac4f0b   update changelog
  adds  9def7e6   Imported Upstream version 0.18
   new  d3189ce   Merge tag 'upstream/0.18'
   new  28cb750   New upstream release. Fixes Support 5.20.1 (Closes: 
#761917)
   new  7f60f3e   Declare compliance with Debian Policy 3.9.6.
   new  8daebe0   Mention latest supported version in long description.
   new  a16ebd0   releasing package libperl-apireference-perl version 0.18-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:
 Changes|   3 +
 MANIFEST   |   2 +
 META.yml   |   2 +-
 data/perlapi.5.20.1.pod.xz | Bin 0 - 71808 bytes
 debian/changelog   |  12 +-
 debian/control |   5 +-
 lib/Perl/APIReference.pm   |  11 +-
 .../APIReference/{V5_020_000.pm = V5_020_001.pm}  | 122 -
 8 files changed, 96 insertions(+), 61 deletions(-)
 create mode 100644 data/perlapi.5.20.1.pod.xz
 copy lib/Perl/APIReference/{V5_020_000.pm = V5_020_001.pm} (98%)

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


[libperl-apireference-perl] annotated tag debian/0.18-1 created (now c6dd7c9)

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to annotated tag debian/0.18-1
in repository libperl-apireference-perl.

at  c6dd7c9   (tag)
   tagging  a16ebd00a74c81718c836a58a9791c92f09327dd (commit)
  replaces  debian/0.17-1
 tagged by  gregor herrmann
on  Fri Sep 19 14:40:13 2014 +0200

- Log -
tagging package libperl-apireference-perl version debian/0.18-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAABCgBmBQJUHCQtXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoGBlgQAMX/4pn217IZjRHnJdqywcQI
QsEZGu2i3982Q1GpKNMPxMWEMSPOvHFQa3iN8T5oPp5oGQT/3hd1KSfsWJKpYTgy
TWENNYnmet4wqgjqGxmLjdRazC3/PThwK7Phk46jxk0uEBG0gG1sOAnZuZebtQz8
w0lwyFxpOz4j1b7EKsBKPdq2cR3b/Si2xeorkWcisTR4sDRRfIzE4YlERMVahNTu
tenkF+YoB//3t9nwh+7VJN9FAYWj4STwHbN4tVREYu669ycA6/Gy5x0tT5XC//ja
scVfDsogQZV7IevpVb7Rjh9FxYYqV/6ded1jmz3oGwAwYb8rFVuskecPT41gbJEp
E0mSa41HTZgCB8nyPEHj3bi9O5WFBLNi9rVpnpeePbCS3W/ByqF0S2WHcKeg6PzQ
yzdMPXrUJ7pA6VcMgefom6fe6cPWMxHSNk16DWTpz/MMK6gedWpHQ40h/MF9DRyQ
nIxLzacaLFr1qGwDcD7xl4K44Ivd28P5qxgBD/vW/oJRab0Cum3u7Ijflca4IbIg
Amr61+pEhZ9b1nqKvdjzLbYs/Msyv0doXE2WzvCvI6yrLPFN2thXh/xQgQ3cYzMO
rZ5A9t16QRCvmLJUeF5h6DUCfdCV2HIq1O+RpamyUs3sArs33T3Bw8ehxjJZnF1/
FkftxPz/FcMvGvzrZqpX
=XSHj
-END PGP SIGNATURE-

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

gregor herrmann (6):
  Imported Upstream version 0.18
  Merge tag 'upstream/0.18'
  New upstream release. Fixes Support 5.20.1 (Closes: #761917)
  Declare compliance with Debian Policy 3.9.6.
  Mention latest supported version in long description.
  releasing package libperl-apireference-perl version 0.18-1

---

This annotated tag includes the following new commits:

   new  d3189ce   Merge tag 'upstream/0.18'
   new  28cb750   New upstream release. Fixes Support 5.20.1 (Closes: 
#761917)
   new  7f60f3e   Declare compliance with Debian Policy 3.9.6.
   new  8daebe0   Mention latest supported version in long description.
   new  a16ebd0   releasing package libperl-apireference-perl version 0.18-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/libperl-apireference-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


[libperl-apireference-perl] branch pristine-tar updated (3e6cf7e - c5f1a32)

2014-09-19 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 libperl-apireference-perl.

  from  3e6cf7e   pristine-tar data for 
libperl-apireference-perl_0.17.orig.tar.gz
   new  c5f1a32   pristine-tar data for 
libperl-apireference-perl_0.18.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:
 libperl-apireference-perl_0.18.orig.tar.gz.delta | Bin 0 - 3382 bytes
 libperl-apireference-perl_0.18.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libperl-apireference-perl_0.18.orig.tar.gz.delta
 create mode 100644 libperl-apireference-perl_0.18.orig.tar.gz.id

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


[libperl-apireference-perl] annotated tag upstream/0.18 created (now 0bc32d3)

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to annotated tag upstream/0.18
in repository libperl-apireference-perl.

at  0bc32d3   (tag)
   tagging  9def7e66d313b59d04d824bc779939f723633d13 (commit)
  replaces  upstream/0.17
 tagged by  gregor herrmann
on  Fri Sep 19 14:34:41 2014 +0200

- Log -
Upstream version 0.18

gregor herrmann (1):
  Imported Upstream version 0.18

---

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/libperl-apireference-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


[libperl-apireference-perl] 01/01: pristine-tar data for libperl-apireference-perl_0.18.orig.tar.gz

2014-09-19 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 libperl-apireference-perl.

commit c5f1a3212216e5ba3dfd274886cc0f8bb5b08202
Author: gregor herrmann gre...@debian.org
Date:   Fri Sep 19 14:34:41 2014 +0200

pristine-tar data for libperl-apireference-perl_0.18.orig.tar.gz
---
 libperl-apireference-perl_0.18.orig.tar.gz.delta | Bin 0 - 3382 bytes
 libperl-apireference-perl_0.18.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libperl-apireference-perl_0.18.orig.tar.gz.delta 
b/libperl-apireference-perl_0.18.orig.tar.gz.delta
new file mode 100644
index 000..dec4773
Binary files /dev/null and b/libperl-apireference-perl_0.18.orig.tar.gz.delta 
differ
diff --git a/libperl-apireference-perl_0.18.orig.tar.gz.id 
b/libperl-apireference-perl_0.18.orig.tar.gz.id
new file mode 100644
index 000..6f822fd
--- /dev/null
+++ b/libperl-apireference-perl_0.18.orig.tar.gz.id
@@ -0,0 +1 @@
+d7d96e702ac7624cd0f064865328789ef89d0a97

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


[libperl-apireference-perl] 02/05: New upstream release. Fixes Support 5.20.1 (Closes: #761917)

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 28cb750929f1dd4518be998cf280ce34b5515cea
Author: gregor herrmann gre...@debian.org
Date:   Fri Sep 19 14:35:24 2014 +0200

New upstream release. Fixes Support 5.20.1 (Closes: #761917)
---
 debian/changelog | 10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 772b8ea..d00a594 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,14 @@
-libperl-apireference-perl (0.17-2) UNRELEASED; urgency=medium
+libperl-apireference-perl (0.18-1) UNRELEASED; urgency=medium
 
+  [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
 
- -- Salvatore Bonaccorso car...@debian.org  Sat, 16 Aug 2014 09:34:15 +0200
+  [ gregor herrmann ]
+  * New upstream release.
+Fixes Support 5.20.1
+(Closes: #761917)
+
+ -- gregor herrmann gre...@debian.org  Fri, 19 Sep 2014 14:34:41 +0200
 
 libperl-apireference-perl (0.17-1) unstable; urgency=medium
 

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


[libperl-apireference-perl] 05/05: releasing package libperl-apireference-perl version 0.18-1

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit a16ebd00a74c81718c836a58a9791c92f09327dd
Author: gregor herrmann gre...@debian.org
Date:   Fri Sep 19 14:40:13 2014 +0200

releasing package libperl-apireference-perl version 0.18-1
---
 debian/changelog | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index d00a594..674a8c3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libperl-apireference-perl (0.18-1) UNRELEASED; urgency=medium
+libperl-apireference-perl (0.18-1) unstable; urgency=medium
 
   [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
@@ -7,8 +7,10 @@ libperl-apireference-perl (0.18-1) UNRELEASED; urgency=medium
   * New upstream release.
 Fixes Support 5.20.1
 (Closes: #761917)
+  * Declare compliance with Debian Policy 3.9.6.
+  * Mention latest supported version in long description.
 
- -- gregor herrmann gre...@debian.org  Fri, 19 Sep 2014 14:34:41 +0200
+ -- gregor herrmann gre...@debian.org  Fri, 19 Sep 2014 14:38:39 +0200
 
 libperl-apireference-perl (0.17-1) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libperl-apireference-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-file-sharedir-perl] 02/02: releasing 1.000005-2 to unstable

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libtest-file-sharedir-perl.

commit f73e6ade23d68866932e774f1ee220f2f7b4196b
Author: Niko Tyni nt...@debian.org
Date:   Fri Sep 19 20:27:20 2014 +0300

releasing 1.05-2 to unstable
---
 debian/changelog | 15 +--
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index b148f7b..c054a53 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,14 @@
-libtest-file-sharedir-perl (1.05-2) UNRELEASED; urgency=medium
+libtest-file-sharedir-perl (1.05-2) unstable; urgency=medium
 
-  * debian/tests/control: add stanza for new runtime-deps-and-recommends
-tests.
-  * Drop debian/tests/control, add Testsuite field to debian/control
-instead.
+  * Team upload.
+
+  [ gregor herrmann ]
+  * Drop debian/tests/control, add Testsuite field to debian/control instead.
+
+  [ Niko Tyni ]
+  * autopkgtest: disable the 'use Module' test.
 
- -- gregor herrmann gre...@debian.org  Wed, 10 Sep 2014 23:15:59 +0200
+ -- Niko Tyni nt...@debian.org  Fri, 19 Sep 2014 20:26:08 +0300
 
 libtest-file-sharedir-perl (1.05-1) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-file-sharedir-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-file-sharedir-perl] 01/02: autopkgtest: disable the 'use Module' test

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libtest-file-sharedir-perl.

commit 87ba703856ff21406a6b9063fc0203769225b60e
Author: Niko Tyni nt...@debian.org
Date:   Fri Sep 19 20:25:16 2014 +0300

autopkgtest: disable the 'use Module' test

The module has a mandatory parameter so it exits with an
error if used without it.
---
 debian/tests/pkg-perl/SKIP | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/debian/tests/pkg-perl/SKIP b/debian/tests/pkg-perl/SKIP
new file mode 100644
index 000..3b9b0b1
--- /dev/null
+++ b/debian/tests/pkg-perl/SKIP
@@ -0,0 +1,2 @@
+# the -share parameter is mandatory
+runtime-deps.d/use.t

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-file-sharedir-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-file-sharedir-perl] annotated tag debian/1.000005-2 created (now 3777c8d)

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to annotated tag debian/1.05-2
in repository libtest-file-sharedir-perl.

at  3777c8d   (tag)
   tagging  f73e6ade23d68866932e774f1ee220f2f7b4196b (commit)
  replaces  debian/1.05-1
 tagged by  Niko Tyni
on  Fri Sep 19 20:30:42 2014 +0300

- Log -
Debian release 1.05-2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJUHGhCAAoJEC7A/7O3MBsfm50P/2t1CG0WudF2NCJQzbCGbgFh
liCXhEqb+wS0yXuG2jXUpEF4sJo+dK0FgKV2Bs7dS3UnXKLwbsUF5LBc9F+wtHwd
uOpSWcnV43j66kXhNgOV+UkdHU0WmvGCUXTIoSI5O+SwR+bNFLr3UrEPdn1HCKLs
4mfLuAsOf8VUBpf53Vv0ofsbH9lvqfMqGMr6Q4sxfv5zt9Zuo1PLBmLPFpD+1dsa
TopVfQ5U4Ta+j3xJ3p/rdSOiDSK+WwYoVEUN0KIkur2V2S3y8ZOlEcHb2gVAmFoQ
jBjoA088k090KNs3OLzl2x7WLmjrXQlhnzScB4UQ3q2NbLjnkmqIKnnCJUchCFJf
VT1ifCni3EBr0TvhZvC4f9GAEXM+ogCdcCQa5a+tbFtFDQneZnFqonPyGIlq/9sT
JWe86hbC9GtSxdPSJw23lUCdabsvWQtsQN+U9Hq7LV9RIulaaEH9XQCQaH067NhF
fQ/LRYIAWvXLE6WahSqI5WlyBOjbi9W1//BYIyEW9AaCxm5jfubawzXb8e0cWSwV
KfJIzTQqLaIqxyZWroOaKE0mmHtQrX6FvnqH351nEZCqS9YLj7sAIVZD7SFhGiBB
yjq00MuhH9WPAzJmoUHTZjgE8V+9v0fpCUuKXIhoaocXNmU9Nl1TCjz/I+IU2JJU
XL0XD+VKSJlaWlyNY/Na
=iXVx
-END PGP SIGNATURE-

Niko Tyni (2):
  autopkgtest: disable the 'use Module' test
  releasing 1.05-2 to unstable

gregor herrmann (4):
  debian/tests/control: add stanza for new runtime-deps-and-recommends 
tests.
  update changelog
  Drop debian/tests/control, add Testsuite field to debian/control instead.
  update changelog

---

This annotated tag includes the following new commits:

   new  87ba703   autopkgtest: disable the 'use Module' test
   new  f73e6ad   releasing 1.05-2 to unstable

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.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-file-sharedir-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-file-sharedir-perl] branch master updated (c36be91 - f73e6ad)

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to branch master
in repository libtest-file-sharedir-perl.

  from  c36be91   update changelog
   new  87ba703   autopkgtest: disable the 'use Module' test
   new  f73e6ad   releasing 1.05-2 to unstable

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   | 15 +--
 debian/tests/pkg-perl/SKIP |  2 ++
 2 files changed, 11 insertions(+), 6 deletions(-)
 create mode 100644 debian/tests/pkg-perl/SKIP

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-file-sharedir-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-simple-perl] branch master updated (4a39182 - abb84db)

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to branch master
in repository libtest-simple-perl.

  from  4a39182   update changelog
   new  557d43f   autopkgtest: skip t/00compile.t, which needs too many 
source files
   new  abb84db   Debian release 1.001006-2

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 | 15 +--
 debian/tests/pkg-perl/skip-smoke |  1 +
 2 files changed, 10 insertions(+), 6 deletions(-)
 create mode 100644 debian/tests/pkg-perl/skip-smoke

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-simple-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-simple-perl] 01/02: autopkgtest: skip t/00compile.t, which needs too many source files

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libtest-simple-perl.

commit 557d43fc56643125f5cade0065aaa92654fc679f
Author: Niko Tyni nt...@debian.org
Date:   Fri Sep 19 20:43:48 2014 +0300

autopkgtest: skip t/00compile.t, which needs too many source files

The test looks in MANIFEST for files in lib/Test/.
---
 debian/tests/pkg-perl/skip-smoke | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/tests/pkg-perl/skip-smoke b/debian/tests/pkg-perl/skip-smoke
new file mode 100644
index 000..ac21b00
--- /dev/null
+++ b/debian/tests/pkg-perl/skip-smoke
@@ -0,0 +1 @@
+t/00compile.t

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-simple-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-simple-perl] 02/02: Debian release 1.001006-2

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libtest-simple-perl.

commit abb84db5463ab10259043ac0d1e884f33b1cb79c
Author: Niko Tyni nt...@debian.org
Date:   Fri Sep 19 20:54:29 2014 +0300

Debian release 1.001006-2
---
 debian/changelog | 15 +--
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 4175956..13b1bca 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,14 @@
-libtest-simple-perl (1.001006-2) UNRELEASED; urgency=medium
+libtest-simple-perl (1.001006-2) unstable; urgency=medium
 
-  * debian/tests/control: add stanza for new runtime-deps-and-recommends
-tests.
-  * Drop debian/tests/control, add Testsuite field to debian/control
-instead.
+  * Team upload.
+
+  [ gregor herrmann ]
+  * Drop debian/tests/control, add Testsuite field to debian/control instead.
+
+  [ Niko Tyni ]
+  * autopkgtest: skip t/00compile.t, which needs too many source files
 
- -- gregor herrmann gre...@debian.org  Wed, 10 Sep 2014 23:16:02 +0200
+ -- Niko Tyni nt...@debian.org  Fri, 19 Sep 2014 20:54:11 +0300
 
 libtest-simple-perl (1.001006-1) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-simple-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-simple-perl] annotated tag debian/1.001006-2 created (now 809a1b1)

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to annotated tag debian/1.001006-2
in repository libtest-simple-perl.

at  809a1b1   (tag)
   tagging  abb84db5463ab10259043ac0d1e884f33b1cb79c (commit)
  replaces  debian/1.001006-1
 tagged by  Niko Tyni
on  Fri Sep 19 21:08:01 2014 +0300

- Log -
Debian release 1.001006-2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJUHHEBAAoJEC7A/7O3MBsfxzUP/RdBOF/QWwqEs1iGhyOJ4KAi
jb+gowUH0kPRlMPZ7rRBGrgDrLWryR1+UAj4MzH3XbMY4FmEqqzM8isI2KhbQKu2
i8EMfOlpAsA9RsmJhfxp4U3rBTKLLOYupalRo/tt+MG8DGiaZjbqdGbK5G2p1q83
Qt02hcf7ZC8W6uR0A3eFQKwdsxG2TJkELXy86ZbKyrP74iAQ/rwa/Nn9hII2WT8h
2eax0mPLDrAQVif+qnMFf0lPRkK/IcM9I+F3cVIMvmaoQoK5BJms1QKC0rQloLLY
yK+Kpn73zMSmb0d9CqIq1jQ6c/W0naSOaEw5b3rbGTtlvRgUZrkTlnRuB+j35kmH
Ia9FZKyv0xnSHGzlppWGUbHFYrQj0wR4/bychuNrvj8L3i+x3o1SdJrmBh493iC7
MSa2hi7HNnly/BIBEmIt6V7gdPSzrJblPBdNhXuQ+da43auHuUxY7XXKXi5U3Iwo
zpu5B03OvOmp8TIi4NaGtep5cKtfnSB7FfhYOftBhx1j0Ly71S6Ykf9CycigkqA0
bAK09d8nTqvEo9BZL4EnVt530VmK0iOl43X8kWJfpNb1Xm60TRfTnwbEsnUocmHu
qusI6VYtRiixZCb1AALxK8NV/JaMbr2w52bMPX6vytAEmhO0NYAiaoWqzZJlpYAQ
HMCBT7nGWK1PfPXKv4gs
=WB1R
-END PGP SIGNATURE-

Niko Tyni (2):
  autopkgtest: skip t/00compile.t, which needs too many source files
  Debian release 1.001006-2

gregor herrmann (4):
  debian/tests/control: add stanza for new runtime-deps-and-recommends 
tests.
  update changelog
  Drop debian/tests/control, add Testsuite field to debian/control instead.
  update changelog

---

This annotated tag includes the following new commits:

   new  557d43f   autopkgtest: skip t/00compile.t, which needs too many 
source files
   new  abb84db   Debian release 1.001006-2

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.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-simple-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-kwalitee-perl] branch master updated (732235a - 4aa5357)

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to branch master
in repository libtest-kwalitee-perl.

  from  732235a   update changelog
   new  8317394   autopkgtest: skip almost all the tests as unsuitable for 
runtime testing
   new  4aa5357   releasing libtest-kwalitee-perl version 1.22-2 to unstable

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   | 15 +--
 debian/tests/pkg-perl/SKIP |  4 
 2 files changed, 13 insertions(+), 6 deletions(-)
 create mode 100644 debian/tests/pkg-perl/SKIP

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-kwalitee-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-kwalitee-perl] 01/02: autopkgtest: skip almost all the tests as unsuitable for runtime testing

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libtest-kwalitee-perl.

commit 8317394987298ddb7d7aa6a83858aaac7890ee0b
Author: Niko Tyni nt...@debian.org
Date:   Fri Sep 19 21:19:39 2014 +0300

autopkgtest: skip almost all the tests as unsuitable for runtime testing

The build time test suite mostly uses the source tree as a baseline.

Saying 'use Test::Kwalitee' will trigger actual testing, which
generates output.
---
 debian/tests/pkg-perl/SKIP | 4 
 1 file changed, 4 insertions(+)

diff --git a/debian/tests/pkg-perl/SKIP b/debian/tests/pkg-perl/SKIP
new file mode 100644
index 000..90f1b9d
--- /dev/null
+++ b/debian/tests/pkg-perl/SKIP
@@ -0,0 +1,4 @@
+# the module is tested mostly on itself
+build-deps.d/smoke
+# 'use Test::Kwalitee' will test the whole distribution - output
+use.t

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-kwalitee-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-kwalitee-perl] annotated tag debian/1.22-2 created (now 6a88da2)

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to annotated tag debian/1.22-2
in repository libtest-kwalitee-perl.

at  6a88da2   (tag)
   tagging  4aa53576054a0b23eeea0e61fcf8eded238bad59 (commit)
  replaces  debian/1.22-1
 tagged by  Niko Tyni
on  Fri Sep 19 21:31:09 2014 +0300

- Log -
Debian release 1.22-2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJUHHZtAAoJEC7A/7O3MBsf0NkQAI+LkqVX60NMnOy0FnsyNGfn
cNzhHfMdzT8K5Vw5HdSYuzS0mGC0NpazmNqrOPtRqH6CZkmLRfiEMCHhoSKctk/b
5m7OKtnuarFgLEH8sRrXWu7c/QjeO9izDQ3XHWJgicMiSLI+nY6ZIw0REUtry9ug
WL2SAXR5bPnsZWFZvJtTfSHXJzDK8dyudUAtG/E/zKhVuk7rCS72fT2o/CpvApK9
/mBTZHlxbys8FmDeyuh51+GlT0pkadhhKcVoCBLqQqL5qOhQ3Li0khngCJmmqpTf
65Ylz/mdxkCr4eAeoCNNX50WV68tcp5USNGcnKQzgF5TsU9vamqN7IJ0Fr7QO2DL
CmGPI5GkTgm7TCpofKrtBUFTDN5gY3HlAdID7ymsIdNT4X09IMluQ8Q9SYmQ7D8V
4/1aI5IeHzej2QeD6QPfEIuTFupCghKoNZqU+KaqLMs3tjYggj1rTJT/++Kwp23L
laW93Pd3ykIzweLHKF+W94Lz12uonBD1ujxF3CQpwBlcS+7CdtYFl7O8Qx8O329e
7Yy1MPnA9ukVJU+JzovXUi9CjY+hw+jc/MPOFM0urdfa3r3KhgCxXl0ruT6zmKqt
Ug0gvzLjfDlPRG02e7hmPO0zollVbm0HWHpwIHWLJSzhFY+hjLyTKnr2RoAClfNA
m/+bgIhgddAHMBow/HGe
=HvbJ
-END PGP SIGNATURE-

Niko Tyni (2):
  autopkgtest: skip almost all the tests as unsuitable for runtime testing
  releasing libtest-kwalitee-perl version 1.22-2 to unstable

gregor herrmann (4):
  debian/tests/control: add stanza for new runtime-deps-and-recommends 
tests.
  update changelog
  Drop debian/tests/control, add Testsuite field to debian/control instead.
  update changelog

---

This annotated tag includes the following new commits:

   new  8317394   autopkgtest: skip almost all the tests as unsuitable for 
runtime testing
   new  4aa5357   releasing libtest-kwalitee-perl version 1.22-2 to unstable

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.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtest-kwalitee-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-kwalitee-perl] 02/02: releasing libtest-kwalitee-perl version 1.22-2 to unstable

2014-09-19 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libtest-kwalitee-perl.

commit 4aa53576054a0b23eeea0e61fcf8eded238bad59
Author: Niko Tyni nt...@debian.org
Date:   Fri Sep 19 21:28:49 2014 +0300

releasing libtest-kwalitee-perl version 1.22-2 to unstable
---
 debian/changelog | 15 +--
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 087c4d9..450a403 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,14 @@
-libtest-kwalitee-perl (1.22-2) UNRELEASED; urgency=medium
+libtest-kwalitee-perl (1.22-2) unstable; urgency=medium
 
-  * debian/tests/control: add stanza for new runtime-deps-and-recommends
-tests.
-  * Drop debian/tests/control, add Testsuite field to debian/control
-instead.
+  * Team upload.
+
+  [ gregor herrmann ]
+  * Drop debian/tests/control, add Testsuite field to debian/control instead.
+
+  [ Niko Tyni ]
+  * autopkgtest: skip almost all the tests as unsuitable for runtime testing
 
- -- gregor herrmann gre...@debian.org  Wed, 10 Sep 2014 23:16:00 +0200
+ -- Niko Tyni nt...@debian.org  Fri, 19 Sep 2014 21:28:41 +0300
 
 libtest-kwalitee-perl (1.22-1) unstable; urgency=medium
 

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


[libalien-wxwidgets-perl] 04/04: releasing package libalien-wxwidgets-perl version 0.65+dfsg-4

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 339aabc9d8f6646efd960349bb0736264c6658b2
Author: gregor herrmann gre...@debian.org
Date:   Sat Sep 20 02:48:38 2014 +0200

releasing package libalien-wxwidgets-perl version 0.65+dfsg-4
---
 debian/changelog | 11 +--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index d32bb9e..a9f9594 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,15 @@
-libalien-wxwidgets-perl (0.65+dfsg-4) UNRELEASED; urgency=medium
+libalien-wxwidgets-perl (0.65+dfsg-4) unstable; urgency=medium
 
+  [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
 
- -- Salvatore Bonaccorso car...@debian.org  Sat, 16 Aug 2014 09:29:26 +0200
+  [ gregor herrmann ]
+  * Drop manual generation of perlapi-* dependency, use debhelper
+9.20140809 instead.
+  * Declare compliance with Debian Policy 3.9.6.
+  * Explicitly build-depend on libmodule-build-perl.
+
+ -- gregor herrmann gre...@debian.org  Sat, 20 Sep 2014 02:47:28 +0200
 
 libalien-wxwidgets-perl (0.65+dfsg-3) unstable; urgency=medium
 

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


[libalien-wxwidgets-perl] 03/04: Explicitly build-depend on libmodule-build-perl.

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 74fb6b24d24f5003f3d7d005759e128de55e5b52
Author: gregor herrmann gre...@debian.org
Date:   Sat Sep 20 02:40:29 2014 +0200

Explicitly build-depend on libmodule-build-perl.
---
 debian/control | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/control b/debian/control
index 39b67c0..6005225 100644
--- a/debian/control
+++ b/debian/control
@@ -10,6 +10,7 @@ Section: perl
 Priority: optional
 Build-Depends: debhelper (= 9.20140809~),
perl,
+   libmodule-build-perl,
libmodule-pluggable-perl | perl ( 5.17.0),
libwxgtk3.0-dev,
libwxgtk-media3.0-dev,

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


[libalien-wxwidgets-perl] branch master updated (2e28caf - 339aabc)

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

  from  2e28caf   update changelog
   new  6ce53d8   Drop manual generation of perlapi-* dependency, use 
debhelper 9.20140809 instead.
   new  5271882   Declare compliance with Debian Policy 3.9.6.
   new  74fb6b2   Explicitly build-depend on libmodule-build-perl.
   new  339aabc   releasing package libalien-wxwidgets-perl version 
0.65+dfsg-4

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   |  6 +++---
 debian/rules |  3 ---
 3 files changed, 12 insertions(+), 8 deletions(-)

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


[libalien-wxwidgets-perl] 02/04: Declare compliance with Debian Policy 3.9.6.

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 5271882042b1a9e2446695feed74821954ba7303
Author: gregor herrmann gre...@debian.org
Date:   Sat Sep 20 02:36:37 2014 +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 6de330a..39b67c0 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,7 @@ Build-Depends: debhelper (= 9.20140809~),
libwxgtk-media3.0-dev,
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/libalien-wxwidgets-perl.git
 Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libalien-wxwidgets-perl.git
 Homepage: https://metacpan.org/release/Alien-wxWidgets

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


[libalien-wxwidgets-perl] 01/04: Drop manual generation of perlapi-* dependency, use debhelper 9.20140809 instead.

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 6ce53d8b57f2058cfc9295c84b2b2845a9979707
Author: gregor herrmann gre...@debian.org
Date:   Sat Sep 20 02:34:56 2014 +0200

Drop manual generation of perlapi-* dependency, use debhelper 9.20140809 
instead.
---
 debian/control | 3 +--
 debian/rules   | 3 ---
 2 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/debian/control b/debian/control
index 36e4136..6de330a 100644
--- a/debian/control
+++ b/debian/control
@@ -8,7 +8,7 @@ Uploaders: Damyan Ivanov d...@debian.org,
Dominique Dumont d...@debian.org
 Section: perl
 Priority: optional
-Build-Depends: debhelper (= 9.20120312~),
+Build-Depends: debhelper (= 9.20140809~),
perl,
libmodule-pluggable-perl | perl ( 5.17.0),
libwxgtk3.0-dev,
@@ -26,7 +26,6 @@ Provides: ${wxperl:Provides}
 Depends: ${perl:Depends},
  ${misc:Depends},
  ${samewx:Depends},
- ${perlapi:Depends},
  libmodule-pluggable-perl | perl ( 5.17.0)
 Breaks: libwx-perl ( 1:0.9923-2)
 Description: Perl module for locating wxWidgets binaries
diff --git a/debian/rules b/debian/rules
index 5b38589..813b41e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -8,8 +8,6 @@ VMINOR:=$(shell echo $(V) |cut -f 2 -d .)
 VPATCH:=$(shell echo $(V) |cut -f 3 -d .)
 NEXTPATCH:=$(shell expr $(VPATCH) + 1 2/dev/null || expr `echo $(VPATCH) | 
cut -f 1 -d - ` + 1)
 
-PERLAPI := $(shell perl -MConfig -e 'print ($$Config{debian_abi} || 
$$Config{version})')
-
 _DETECTION_CMD := PERL5LIB=$(CURDIR)/blib/lib:$(CURDIR)/blib/arch perl 
-MAlien::wxWidgets -e '$$key = Alien::wxWidgets-key; $$key =~ s/_/-/g; print 
$$key;'
 
 %:
@@ -21,7 +19,6 @@ get_perl_wx_version: blib
 
 override_dh_gencontrol: get_perl_wx_version
dh_gencontrol -- -V'samewx:Depends=libwxgtk$(WXVER)-dev (= 
$(VMAJOR).$(VMINOR).$(VPATCH)), libwxgtk$(WXVER)-dev ( 
$(VMAJOR).$(VMINOR).$(NEXTPATCH)~), libwxgtk-media$(WXVER)-dev (= 
$(VMAJOR).$(VMINOR).$(VPATCH)), libwxgtk-media$(WXVER)-dev ( 
$(VMAJOR).$(VMINOR).$(NEXTPATCH)~)' \
-   -V'perlapi:Depends=perlapi-$(PERLAPI)' \
-V'wxperl:Provides=wxperl-$(PERL_WX_VERSION)'
 
 .PHONY: get_perl_wx_version

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


[libalien-wxwidgets-perl] annotated tag debian/0.65+dfsg-4 created (now 2238ac6)

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to annotated tag debian/0.65+dfsg-4
in repository libalien-wxwidgets-perl.

at  2238ac6   (tag)
   tagging  339aabc9d8f6646efd960349bb0736264c6658b2 (commit)
  replaces  debian/0.65+dfsg-3
 tagged by  gregor herrmann
on  Sat Sep 20 02:48:38 2014 +0200

- Log -
tagging package libalien-wxwidgets-perl version debian/0.65+dfsg-4
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAABCgBmBQJUHM7mXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoG8ZkP/RNNJjOHrnh6C7Zg2PRXjDvG
nhUb7ZK8klcQtI9LU4Bc8Qa71RniKdD125QKfSVYETWpq8+jNoPdlBaO0aH6BW77
UDPdQcK/rUIUnuR3Vq/c7I724X+iA0I1G/OpP+pzguMTEn6PLQ2n4y8E+A/zfJa7
zBcyymTWQQHnZrEvifLmSpkf5S3gCLnXAB5WHkYhQngyNQjaFEk5bBLFoPSB8JCN
/z5WuhCiqWl3kz80idzZD+qoV4YZdASk8h/SHO2Om0GGz8b7R2VnXlzDAEm1ormQ
vJqC/wdtp9hyYK3r2uo6xM/bTq8zdwWdthWmRXl0+mWrmJHHvJOTO/hck6v24FBD
DbhE2XBGeRoiUkgBjUYU2lVq4PiAXXJXfg6anyLIKtoGTuxJCAivgFDi7fjT+KkG
LPQObebW4IorkicigBVHmqiQuw79n7+k/q65qEb+Q8erQV2nzO0feYaONvzTMtKa
dRGeqbP5/dBH0sP0bmP6keeTcng5rh0sZsH6pxF2Ymn7gzaV7K5ZS/FXLbqMKSji
RF1ocG3D2gAA5B7djYb21kPbPPpRdWotgnJw28IFO2ZiVHFdCIyjuY/xr7lGGfwW
TFyObPbj8GnL1vgvt0/FqwLvrICk2bpEmiCI+NgqE9WBMRDqXVb/Ig72dIk9ojyQ
56MjmzM5IA8vhpBhV2gl
=Hwcx
-END PGP SIGNATURE-

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

gregor herrmann (4):
  Drop manual generation of perlapi-* dependency, use debhelper 9.20140809 
instead.
  Declare compliance with Debian Policy 3.9.6.
  Explicitly build-depend on libmodule-build-perl.
  releasing package libalien-wxwidgets-perl version 0.65+dfsg-4

---

This annotated tag includes the following new commits:

   new  6ce53d8   Drop manual generation of perlapi-* dependency, use 
debhelper 9.20140809 instead.
   new  5271882   Declare compliance with Debian Policy 3.9.6.
   new  74fb6b2   Explicitly build-depend on libmodule-build-perl.
   new  339aabc   releasing package libalien-wxwidgets-perl version 
0.65+dfsg-4

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/libalien-wxwidgets-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


[libanyevent-perl] 02/05: Declare compliance with Debian Policy 3.9.6.

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 82806cb6df09e3f7f3ef5bb88c89caab72ef0c6f
Author: gregor herrmann gre...@debian.org
Date:   Sat Sep 20 02:50:00 2014 +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 e09e865..2942b00 100644
--- a/debian/control
+++ b/debian/control
@@ -21,7 +21,7 @@ Build-Depends: debhelper (= 9.20140809~),
shared-mime-info,
xauth,
xvfb
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libanyevent-perl.git
 Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libanyevent-perl.git
 Homepage: https://metacpan.org/release/AnyEvent

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


[libanyevent-perl] 04/05: Update lintian override to perl multi-arch directories.

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 92776b237c17dad463844fbe04ceac49284c52f7
Author: gregor herrmann gre...@debian.org
Date:   Sat Sep 20 02:54:12 2014 +0200

Update lintian override to perl multi-arch directories.
---
 debian/libanyevent-perl.lintian-overrides | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/libanyevent-perl.lintian-overrides 
b/debian/libanyevent-perl.lintian-overrides
index cc0b98f..97dc9c2 100644
--- a/debian/libanyevent-perl.lintian-overrides
+++ b/debian/libanyevent-perl.lintian-overrides
@@ -1,3 +1,3 @@
 # constants.pl contains architecture specific constants thus everything is
 # installed to /usr/lib
-libanyevent-perl: package-installs-nonbinary-perl-in-usr-lib-perl5 
usr/lib/perl5/*
+libanyevent-perl: package-installs-nonbinary-perl-in-usr-lib-perl5 
usr/lib/*/perl5/*

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


[libanyevent-perl] branch master updated (b26e22a - a934dd0)

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

  from  b26e22a   update changelog
   new  e2e2948   Drop manual generation of perlapi-* dependency, use 
debhelper 9.20140809 instead.
   new  82806cb   Declare compliance with Debian Policy 3.9.6.
   new  2178657   Update years of packaging copyright.
   new  92776b2   Update lintian override to perl multi-arch directories.
   new  a934dd0   releasing package libanyevent-perl version 7.070-3

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:
 debian/changelog  | 12 ++--
 debian/compat |  2 +-
 debian/control|  7 +++
 debian/copyright  |  2 +-
 debian/libanyevent-perl.lintian-overrides |  2 +-
 debian/rules  |  5 -
 6 files changed, 16 insertions(+), 14 deletions(-)

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


[libanyevent-perl] 01/05: Drop manual generation of perlapi-* dependency, use debhelper 9.20140809 instead.

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit e2e2948cf21d6d305a7b0c563c87da56053c6a1d
Author: gregor herrmann gre...@debian.org
Date:   Sat Sep 20 02:49:48 2014 +0200

Drop manual generation of perlapi-* dependency, use debhelper 9.20140809 
instead.
---
 debian/compat  | 2 +-
 debian/control | 5 ++---
 debian/rules   | 5 -
 3 files changed, 3 insertions(+), 9 deletions(-)

diff --git a/debian/compat b/debian/compat
index 45a4fb7..ec63514 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-8
+9
diff --git a/debian/control b/debian/control
index 3678267..e09e865 100644
--- a/debian/control
+++ b/debian/control
@@ -7,7 +7,7 @@ Uploaders: Jonathan Yu jaw...@cpan.org,
Xavier Guimard x.guim...@free.fr
 Section: perl
 Priority: optional
-Build-Depends: debhelper (= 8),
+Build-Depends: debhelper (= 9.20140809~),
libasync-interrupt-perl,
libev-perl,
libevent-perl,
@@ -31,8 +31,7 @@ Package: libanyevent-perl
 # cf. #596257 and #708730
 Architecture: any
 Depends: ${misc:Depends},
- ${perl:Depends},
- ${perlapi:Depends}
+ ${perl:Depends}
 Recommends: libasync-interrupt-perl,
 libev-perl | libevent-perl,
 libguard-perl
diff --git a/debian/rules b/debian/rules
index 0a5a8c4..310d8b3 100755
--- a/debian/rules
+++ b/debian/rules
@@ -3,8 +3,6 @@
 PACKAGE = $(shell dh_listpackages)
 TMP = $(CURDIR)/debian/$(PACKAGE)
 
-PERLAPI := $(shell perl -MConfig -e 'print ($$Config{debian_abi} || 
$$Config{version})')
-
 %:
 # ensure we build only arch:any packages
 # safeguard against converting the package again to arch:all
@@ -18,6 +16,3 @@ override_dh_installexamples:
dh_installexamples
sed -i '1s|^#!/opt/perl/bin/perl|#!/usr/bin/perl|' 
$(TMP)/usr/share/doc/$(PACKAGE)/examples/*
sed -i '1s|^#!/opt/bin/perl|#!/usr/bin/perl|' 
$(TMP)/usr/share/doc/$(PACKAGE)/examples/*
-
-override_dh_gencontrol:
-   dh_gencontrol -- -V'perlapi:Depends=perlapi-$(PERLAPI)'

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


[libanyevent-perl] 03/05: Update years of packaging copyright.

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 2178657512299ad2d6ce39ac5d51e83d7eaba57a
Author: gregor herrmann gre...@debian.org
Date:   Sat Sep 20 02:50:41 2014 +0200

Update years of packaging copyright.
---
 debian/copyright | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/copyright b/debian/copyright
index 3678b7d..c66cf65 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -21,7 +21,7 @@ Comment: Assuming that the license in COPYING applies for 
this files as well.
 
 Files: debian/*
 Copyright: 2009-2011, Jonathan Yu jaw...@cpan.org
- 2009-2011, gregor herrmann gre...@debian.org
+ 2009-2014, gregor herrmann gre...@debian.org
  2009-2010, Ansgar Burchardt ans...@debian.org
  2009, Maximilian Gass m...@cloudconnected.org
  2010-2012, Nicholas Bamber nicho...@periapt.co.uk

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


[libanyevent-perl] 05/05: releasing package libanyevent-perl version 7.070-3

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit a934dd02253a38f956910026a1d5988c52b87cc1
Author: gregor herrmann gre...@debian.org
Date:   Sat Sep 20 02:58:39 2014 +0200

releasing package libanyevent-perl version 7.070-3
---
 debian/changelog | 12 ++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index d3b561e..d794171 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,16 @@
-libanyevent-perl (7.070-3) UNRELEASED; urgency=medium
+libanyevent-perl (7.070-3) unstable; urgency=medium
 
+  [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
 
- -- Salvatore Bonaccorso car...@debian.org  Sat, 16 Aug 2014 09:29:28 +0200
+  [ gregor herrmann ]
+  * Drop manual generation of perlapi-* dependency, use debhelper
+9.20140809 instead.
+  * Update years of packaging copyright.
+  * Update lintian override to perl multi-arch directories.
+  * Declare compliance with Debian Policy 3.9.6.
+
+ -- gregor herrmann gre...@debian.org  Sat, 20 Sep 2014 02:57:06 +0200
 
 libanyevent-perl (7.070-2) unstable; urgency=medium
 

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


[libanyevent-perl] annotated tag debian/7.070-3 created (now c44fc04)

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to annotated tag debian/7.070-3
in repository libanyevent-perl.

at  c44fc04   (tag)
   tagging  a934dd02253a38f956910026a1d5988c52b87cc1 (commit)
  replaces  debian/7.070-2
 tagged by  gregor herrmann
on  Sat Sep 20 02:58:39 2014 +0200

- Log -
tagging package libanyevent-perl version debian/7.070-3
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAABCgBmBQJUHNE/XxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoG17QP/2vCG8tG4ReCtiFjKfh4U4FF
eqRKae86ArAHgQyWg99sqDsa29H+xmyNEo7KFCbZ/XdrTpg5Q4OEuBJoye5DcLKt
lHSbQP6Cp6uagPHwOhY91CUfUpPeJpbMCFY5he+x+JGwuCpoqoK8KHOjhHvoGc10
T4tSEBeIAI0LEzme7Oz+y0CYe5V9gYv0yvkGwShbZ2bn22ZKSTZo7AbHQTjMG80u
JncEYCRMuzh6IAM9R+PP/WT0sSJNNTeovXqxn66PqU+BEFMg/lbhmGgKWPOpZDnu
UNmMKGwCnwRXC1NRYTnCi6kuJ6gFTK9a6avdRpNZp3e8CkdyDrIexzbqFYDjYUp0
43EDYzWLTTbu32MVyhvxeShqp6UmbA/C5wIVklfM3+oFyGzaOCCLzev9Jst/g2pJ
eXtTfOiK0ejtafc8f2n8gF4BS3Q8AujxIBOMLF1Zowkp1a46BAZuIZCR+gqMTq82
dwGAXHd6hes2wd5SfDD0hHMDnKeCaUn+xAmxAsC9jLj7VIj2bDK10Csarv4iH44Q
x0hsmKnbFsWxo6GLroK1P2b1uEOLqRYwkasFe0lDfcEdTuw//rF4vwRhOnK/2A0/
6MBSj0UBpVEfqWB9gb6ixnpNInDxd3rpizHe4jcObV4pFB/FHt3606YfvBQmpbPm
vPVFGf0N6ZSkNu9zObTj
=aWwl
-END PGP SIGNATURE-

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

gregor herrmann (6):
  whitespace
  Drop manual generation of perlapi-* dependency, use debhelper 9.20140809 
instead.
  Declare compliance with Debian Policy 3.9.6.
  Update years of packaging copyright.
  Update lintian override to perl multi-arch directories.
  releasing package libanyevent-perl version 7.070-3

---

This annotated tag includes the following new commits:

   new  e2e2948   Drop manual generation of perlapi-* dependency, use 
debhelper 9.20140809 instead.
   new  82806cb   Declare compliance with Debian Policy 3.9.6.
   new  2178657   Update years of packaging copyright.
   new  92776b2   Update lintian override to perl multi-arch directories.
   new  a934dd0   releasing package libanyevent-perl version 7.070-3

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/libanyevent-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


[libcommon-sense-perl] 02/06: Declare compliance with Debian Policy 3.9.6.

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 9d7f6eede82b082c65cdb153b43a88513ae8b488
Author: gregor herrmann gre...@debian.org
Date:   Sat Sep 20 03:00:17 2014 +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 c1a752f..c900f86 100644
--- a/debian/control
+++ b/debian/control
@@ -10,7 +10,7 @@ Section: perl
 Priority: optional
 Build-Depends: debhelper (= 9.20140809~),
perl
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libcommon-sense-perl.git
 Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libcommon-sense-perl.git
 Homepage: http://search.cpan.org/dist/common-sense/

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


[libcommon-sense-perl] branch master updated (2fc2c46 - aef37be)

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

  from  2fc2c46   update changelog
   new  03b081f   Drop manual generation of perlapi-* dependency, use 
debhelper 9.20140809 instead.
   new  9d7f6ee   Declare compliance with Debian Policy 3.9.6.
   new  96f4ff0   Update lintian override to multi-arch directories.
   new  81548b8   Update years of packaging copyright.
   new  27e91e3   Add Testsuite: autopkgtest-pkg-perl to debian/control.
   new  aef37be   releasing package libcommon-sense-perl version 3.73-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  | 13 +++--
 debian/control|  8 
 debian/copyright  |  2 +-
 debian/libcommon-sense-perl.lintian-overrides |  2 +-
 debian/rules  |  3 +--
 5 files changed, 18 insertions(+), 10 deletions(-)

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


[libcommon-sense-perl] 01/06: Drop manual generation of perlapi-* dependency, use debhelper 9.20140809 instead.

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 03b081fcad241ed5441d1651f4ffadeac43683e2
Author: gregor herrmann gre...@debian.org
Date:   Sat Sep 20 03:00:07 2014 +0200

Drop manual generation of perlapi-* dependency, use debhelper 9.20140809 
instead.
---
 debian/control | 5 ++---
 debian/rules   | 3 +--
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/debian/control b/debian/control
index c099978..c1a752f 100644
--- a/debian/control
+++ b/debian/control
@@ -8,7 +8,7 @@ Uploaders: Ryan Niebur r...@debian.org,
Xavier Guimard x.guim...@free.fr
 Section: perl
 Priority: optional
-Build-Depends: debhelper (= 9.20120312~),
+Build-Depends: debhelper (= 9.20140809~),
perl
 Standards-Version: 3.9.5
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libcommon-sense-perl.git
@@ -19,8 +19,7 @@ Package: libcommon-sense-perl
 Architecture: any
 Depends: ${misc:Depends},
  ${perl:Depends},
- ${sameperl:Depends},
- ${perlapi:Depends}
+ ${sameperl:Depends}
 Description: module that implements some sane defaults for Perl programs
  common::sense implements some sane defaults for Perl programs, as defined by
  two typical (or not so typical - use your common sense) specimens of Perl
diff --git a/debian/rules b/debian/rules
index 61b41ec..f368b5a 100755
--- a/debian/rules
+++ b/debian/rules
@@ -8,7 +8,6 @@ TMP = $(CURDIR)/debian/$(PACKAGE)
 PERL_CURRENT := $(shell perl -MConfig -e 'print 
$$Config{revision}.$$Config{patchlevel}.$$Config{subversion}')
 PERL_NEXT:= $(shell perl -MConfig -e 'print 
$$Config{revision}.$$Config{patchlevel}. . ($$Config{subversion} + 1)')
 ARCHLIB  := $(shell perl -MConfig -e 'print $$Config{vendorarch}')
-PERLAPI  := $(shell perl -MConfig -e 'print ($$Config{debian_abi} || 
$$Config{version})')
 
 %:
dh $@
@@ -20,4 +19,4 @@ override_dh_auto_install:
$(TMP)/usr/share/man/man3/common::sense.3pm
 
 override_dh_gencontrol:
-   dh_gencontrol -- -V'sameperl:Depends=perl (= $(PERL_CURRENT)~), perl 
( $(PERL_NEXT)~)' -V'perlapi:Depends=perlapi-$(PERLAPI)'
+   dh_gencontrol -- -V'sameperl:Depends=perl (= $(PERL_CURRENT)~), perl 
( $(PERL_NEXT)~)'

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


[libcommon-sense-perl] 03/06: Update lintian override to multi-arch directories.

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 96f4ff04a688e3aa81cbd3923adb4f99831419c8
Author: gregor herrmann gre...@debian.org
Date:   Sat Sep 20 03:01:08 2014 +0200

Update lintian override to multi-arch directories.
---
 debian/libcommon-sense-perl.lintian-overrides | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/libcommon-sense-perl.lintian-overrides 
b/debian/libcommon-sense-perl.lintian-overrides
index 6f4dfb7..c55787d 100644
--- a/debian/libcommon-sense-perl.lintian-overrides
+++ b/debian/libcommon-sense-perl.lintian-overrides
@@ -1,2 +1,2 @@
 # the file is generated at build time and might contain arch-specific 
information
-libcommon-sense-perl: package-installs-nonbinary-perl-in-usr-lib-perl5 
usr/lib/perl5/common/sense.pm
+libcommon-sense-perl: package-installs-nonbinary-perl-in-usr-lib-perl5 
usr/lib/*/perl5/common/sense.pm

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


[libcommon-sense-perl] annotated tag debian/3.73-2 created (now a0bbd6c)

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to annotated tag debian/3.73-2
in repository libcommon-sense-perl.

at  a0bbd6c   (tag)
   tagging  aef37bef502db24e497ba05001f9516217d3d6b4 (commit)
  replaces  debian/3.73-1
 tagged by  gregor herrmann
on  Sat Sep 20 03:07:20 2014 +0200

- Log -
tagging package libcommon-sense-perl version debian/3.73-2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAABCgBmBQJUHNNIXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoGNhwQAKSwWFlBkaeDLmQDew9P6CF6
tlH3TyHKVPNz9i9z4Z+4Jqg+2VVHDP2ohsoQeWEctjuFvZ6VHLG1xEliBxGCF0oF
uXcsBasMH1nlrQd6ue2lqyxbBjE7Q5O0EzIgde5AtvXFgyG9Xoe6kzw4N1llzL7H
YqsunT5kGgBrCu0+wZv/IqizkRXAIQuIRUsjWUT8bMoDtOSY3s9hyjNraYr52aQl
6boPS1T8k6x/OnrQMZT9fdbkplCPjkzW+K4MoJzcejN8cyfW9yGUPlrrksqs0+h6
edRUqifrWmLFR99Q6ef6iehiLriurUmzDww7AMAINsC/6fXYI+tAv97BHxhEJomR
PcxGXVfBY+9V0mXmhR8pm5Is8q+1VDUAbAFSrYupWgcvUcvWoLBgqNghh21ar4b7
DdU/Yod6KHZpi9c+WQP1KvYzZCu3ybviGB720WG2uGktO3+Qbzlprn4gZsMPetdv
fDd9BDvFV+hcR1FO+Ka4NNNqzxtJbprp1txaEa0vzSxlTcP6BesedQuIDJKeDIDi
byLLgWNTTgD0bGwAJRzGtsbPI+WLGEd+CmBbZ9ainMO1c2pMLW7Y/Bg4eUtGH8ck
M9TMI7ZBz180M+ZUkzyl5m6x5pTrrDt3jEoydCVD9zuii23ZRa+z99yPzac7dFiU
G9JHe/sxqDsP+YuNjM7X
=yZ1m
-END PGP SIGNATURE-

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

gregor herrmann (6):
  Drop manual generation of perlapi-* dependency, use debhelper 9.20140809 
instead.
  Declare compliance with Debian Policy 3.9.6.
  Update lintian override to multi-arch directories.
  Update years of packaging copyright.
  Add Testsuite: autopkgtest-pkg-perl to debian/control.
  releasing package libcommon-sense-perl version 3.73-2

---

This annotated tag includes the following new commits:

   new  03b081f   Drop manual generation of perlapi-* dependency, use 
debhelper 9.20140809 instead.
   new  9d7f6ee   Declare compliance with Debian Policy 3.9.6.
   new  96f4ff0   Update lintian override to multi-arch directories.
   new  81548b8   Update years of packaging copyright.
   new  27e91e3   Add Testsuite: autopkgtest-pkg-perl to debian/control.
   new  aef37be   releasing package libcommon-sense-perl version 3.73-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/libcommon-sense-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


[libcommon-sense-perl] 04/06: Update years of packaging copyright.

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 81548b8f00318293c42535b80f50aee094e3
Author: gregor herrmann gre...@debian.org
Date:   Sat Sep 20 03:01:47 2014 +0200

Update years of packaging copyright.
---
 debian/copyright  | 2 +-
 debian/libcommon-sense-perl.lintian-overrides | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index ead6f83..08d47d6 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -83,7 +83,7 @@ Copyright: 2009, 2011, Angel Abad an...@debian.org
  2009, Jonathan Yu jaw...@cpan.org
  2009, Ryan Niebur r...@debian.org
  2010, Ansgar Burchardt ans...@debian.org
- 2010, 2013, gregor herrmann gre...@debian.org
+ 2010-2014, gregor herrmann gre...@debian.org
  2012, 2013, Salvatore Bonaccorso car...@debian.org
  2013, Xavier Guimard x.guim...@free.fr
 License: Artistic or GPL-1+
diff --git a/debian/libcommon-sense-perl.lintian-overrides 
b/debian/libcommon-sense-perl.lintian-overrides
index c55787d..34b1fc2 100644
--- a/debian/libcommon-sense-perl.lintian-overrides
+++ b/debian/libcommon-sense-perl.lintian-overrides
@@ -1,2 +1,2 @@
 # the file is generated at build time and might contain arch-specific 
information
-libcommon-sense-perl: package-installs-nonbinary-perl-in-usr-lib-perl5 
usr/lib/*/perl5/common/sense.pm
+libcommon-sense-perl: package-installs-nonbinary-perl-in-usr-lib-perl5 
usr/lib/*/common/sense.pm

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


[libcommon-sense-perl] 05/06: Add Testsuite: autopkgtest-pkg-perl to debian/control.

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit 27e91e3864baf1129299f483ac1249699fdb7087
Author: gregor herrmann gre...@debian.org
Date:   Sat Sep 20 03:05:03 2014 +0200

Add Testsuite: autopkgtest-pkg-perl to debian/control.
---
 debian/control | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/control b/debian/control
index c900f86..c95da85 100644
--- a/debian/control
+++ b/debian/control
@@ -14,6 +14,7 @@ Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libcommon-sense-perl.git
 Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libcommon-sense-perl.git
 Homepage: http://search.cpan.org/dist/common-sense/
+Testsuite: autopkgtest-pkg-perl
 
 Package: libcommon-sense-perl
 Architecture: any

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


[libcommon-sense-perl] 06/06: releasing package libcommon-sense-perl version 3.73-2

2014-09-19 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

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

commit aef37bef502db24e497ba05001f9516217d3d6b4
Author: gregor herrmann gre...@debian.org
Date:   Sat Sep 20 03:07:20 2014 +0200

releasing package libcommon-sense-perl version 3.73-2
---
 debian/changelog | 13 +++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 11fe31a..a512f5c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,17 @@
-libcommon-sense-perl (3.73-2) UNRELEASED; urgency=medium
+libcommon-sense-perl (3.73-2) unstable; urgency=medium
 
+  [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
 
- -- Salvatore Bonaccorso car...@debian.org  Sat, 16 Aug 2014 09:30:30 +0200
+  [ gregor herrmann ]
+  * Drop manual generation of perlapi-* dependency, use debhelper
+9.20140809 instead.
+  * Update lintian override to multi-arch directories.
+  * Update years of packaging copyright.
+  * Add Testsuite: autopkgtest-pkg-perl to debian/control.
+  * Declare compliance with Debian Policy 3.9.6.
+
+ -- gregor herrmann gre...@debian.org  Sat, 20 Sep 2014 03:05:16 +0200
 
 libcommon-sense-perl (3.73-1) unstable; urgency=medium
 

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