[libnet-server-perl] 04/07: Remove patches now included in upstream

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libnet-server-perl.

commit 7b311f9b8bc6334851e5f08f8d0125809f3c2465
Author: Xavier Guimard 
Date:   Thu Oct 26 07:06:45 2017 +0200

Remove patches now included in upstream
---
 ...Temp::tempdir_in_UNIX_socket_test_example.patch | 83 --
 ...le_instead_of_POSIX::tmpnam_for_lock_file.patch | 60 
 debian/patches/debug-output.patch  | 17 -
 3 files changed, 160 deletions(-)

diff --git 
a/debian/patches/Use_File::Temp::tempdir_in_UNIX_socket_test_example.patch 
b/debian/patches/Use_File::Temp::tempdir_in_UNIX_socket_test_example.patch
deleted file mode 100644
index ea9fcdd..000
--- a/debian/patches/Use_File::Temp::tempdir_in_UNIX_socket_test_example.patch
+++ /dev/null
@@ -1,83 +0,0 @@
-From f21a67a2169cdee15bb46c7e08f4581bcf090d36 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Dagfinn=20Ilmari=20Manns=C3=A5ker?= 
-Date: Mon, 22 May 2017 18:04:28 +0100
-Subject: [PATCH] Use File::Temp::tempdir in UNIX socket test/example
-
-POSIX::tmpnam is insecure, and has been removed in Perl 5.26.
-Instead, use File::Temp::tempdir() to create a secure tmporary
-directory that the server can create its UNIX sockets in.

- examples/connection_test.pl | 14 --
- t/UNIX_test.t   |  6 --
- 2 files changed, 12 insertions(+), 8 deletions(-)
-
-diff --git a/examples/connection_test.pl b/examples/connection_test.pl
-index 1ec49a1..ee4a534 100644
 a/examples/connection_test.pl
-+++ b/examples/connection_test.pl
-@@ -20,11 +20,11 @@ =head1 CLIENT SYNOPSIS
- 
- # or
- 
--perl connection_test.pl UNIX
-+perl connection_test.pl UNIX 
- 
- # or
- 
--perl connection_test.pl UNIX_DGRAM
-+perl connection_test.pl UNIX_DGRAM 
- 
- =cut
- 
-@@ -34,7 +34,8 @@ package MyPack;
- use warnings;
- use base qw(Net::Server);
- use IO::Socket ();
--use POSIX qw(tmpnam);
-+use File::Temp qw(tempdir);
-+use File::Spec::Functions qw(catdir);
- use Socket qw(SOCK_DGRAM SOCK_STREAM);
- 
- sub post_bind_hook {
-@@ -44,13 +45,14 @@ sub post_bind_hook {
-   }
- }
- 
--my $socket_file  = tmpnam();
--$socket_file =~ s|/[^/]+$|/mysocket.file|;
--my $socket_file2 = $socket_file ."2";
-+my $socket_dir  = $ARGV[1] || tempdir(CLEANUP => 1);
-+my $socket_file = catdir($socket_dir, 'mysocket.file');
-+my $socket_file2 = catdir($socket_dir, 'mysocket.file2');
- my $udp_port= 20204;
- my $tcp_port= 20204;
- 
- print "\$Net::Server::VERSION = $Net::Server::VERSION\n";
-+print "UNIX socket directory = $socket_dir\n";
- 
- if( @ARGV ){
-   if( uc($ARGV[0]) eq 'UDP' ){
-diff --git a/t/UNIX_test.t b/t/UNIX_test.t
-index b41f2fa..66a5f17 100644
 a/t/UNIX_test.t
-+++ b/t/UNIX_test.t
-@@ -2,7 +2,8 @@
- 
- package Net::Server::Test;
- use strict;
--use POSIX qw(tmpnam);
-+use File::Temp qw(tempdir);
-+use File::Spec::Functions qw(catfile);
- use English qw($UID $GID);
- use FindBin qw($Bin);
- use lib $Bin;
-@@ -22,7 +23,8 @@ sub accept {
- return shift->SUPER::accept(@_);
- }
- 
--my $socket_file = tmpnam; # must do before fork
-+my $socket_dir = tempdir(CLEANUP => 1);
-+my $socket_file = catfile($socket_dir, 'socket'); # must do before fork
- my $ok = eval {
- local $SIG{'ALRM'} = sub { die "Timeout\n" };
- alarm $env->{'timeout'};
diff --git 
a/debian/patches/Use_File::Temp::tempfile_instead_of_POSIX::tmpnam_for_lock_file.patch
 
b/debian/patches/Use_File::Temp::tempfile_instead_of_POSIX::tmpnam_for_lock_file.patch
deleted file mode 100644
index f83d649..000
--- 
a/debian/patches/Use_File::Temp::tempfile_instead_of_POSIX::tmpnam_for_lock_file.patch
+++ /dev/null
@@ -1,60 +0,0 @@
-From 0fcb590fb8692e70c8bb2e4769662eb936f33421 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Dagfinn=20Ilmari=20Manns=C3=A5ker?= 
-Date: Mon, 22 May 2017 18:05:58 +0100
-Subject: [PATCH] Use File::Temp::tempfile instead of POSIX::tmpnam for lock
- file
-
-POSIX::tmpnam is insecure, and has been removed in Perl 5.26.
-Instead, use File::Temp::tempfile to create the lock file.

- Makefile.PL | 1 +
- lib/Net/Server/PreFork.pm   | 2 +-
- lib/Net/Server/PreForkSimple.pm | 8 ++--
- 3 files changed, 8 insertions(+), 3 deletions(-)
-
-diff --git a/lib/Net/Server/PreFork.pm b/lib/Net/Server/PreFork.pm
-index d986f1a..40b2dfa 100644
 a/lib/Net/Server/PreFork.pm
-+++ b/lib/Net/Server/PreFork.pm
-@@ -512,7 +512,7 @@ You really should also see L.
- serialize   (flock|semaphore
-  |pipe|none)undef
- # serialize defaults to flock on multi_port or on Solaris
--lock_file   "filename"  File::Temp::tempfile or 
POSIX::tmpnam
-+lock_file   "filename"  File::Temp->new
- 
- check_for_dead  \d+ 30
- check_for_waiting   \d+ 10
-diff 

[libnet-server-perl] 01/07: Update upstream source from tag 'upstream/2.009'

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libnet-server-perl.

commit 43c868d7dfda8c7a683c9834f590841ff0a89ea3
Merge: 09fb748 bac5ea3
Author: Xavier Guimard 
Date:   Thu Oct 26 06:53:40 2017 +0200

Update upstream source from tag 'upstream/2.009'

Update to upstream version '2.009'
with Debian dir 7d328f7865b6849d0219f8858a3e8b11ea872424

 Changes|9 +
 INSTALL|   44 +
 LICENSE|  379 
 MANIFEST   |   97 +-
 MANIFEST.SKIP  |   15 +
 META.json  |   16 +-
 META.yml   |   25 +-
 Makefile.PL|   95 +-
 README | 1702 +++-
 bin/net-server |2 +-
 dist.ini   |   53 ++
 examples/connection_test.pl|   14 +-
 lib/Net/Server.pm  |   15 +-
 lib/Net/Server.pod |3 +
 lib/Net/Server/Daemonize.pm|8 +-
 lib/Net/Server/Fork.pm |8 +-
 lib/Net/Server/HTTP.pm |8 +-
 lib/Net/Server/INET.pm |8 +-
 lib/Net/Server/Log/Log/Log4perl.pm |7 +-
 lib/Net/Server/Log/Sys/Syslog.pm   |7 +-
 lib/Net/Server/MultiType.pm|8 +-
 lib/Net/Server/Multiplex.pm|8 +-
 lib/Net/Server/PSGI.pm |8 +-
 lib/Net/Server/PreFork.pm  |   61 +-
 lib/Net/Server/PreForkSimple.pm|   16 +-
 lib/Net/Server/Proto.pm|8 +-
 lib/Net/Server/Proto/SSL.pm|8 +-
 lib/Net/Server/Proto/SSLEAY.pm |8 +-
 lib/Net/Server/Proto/TCP.pm|8 +-
 lib/Net/Server/Proto/UDP.pm|8 +-
 lib/Net/Server/Proto/UNIX.pm   |   28 +-
 lib/Net/Server/Proto/UNIXDGRAM.pm  |8 +-
 lib/Net/Server/SIG.pm  |8 +-
 lib/Net/Server/Single.pm   |8 +-
 t/NetServerTest.pm |   27 +-
 t/Options.t|2 +-
 t/SSLEAY_test.t|2 +-
 t/SSL_test.t   |2 +-
 t/Server_BASE.t|2 +-
 t/Server_Fork.t|2 +-
 t/Server_INET.t|2 +-
 t/Server_MultiType.t   |2 +-
 t/Server_Multiplex.t   |2 +-
 t/Server_PreFork.t |2 +-
 t/Server_PreForkSimple.t   |2 +-
 t/Server_Single.t  |2 +-
 t/Server_http.t|2 +-
 t/{Server_http.t => Server_psgi.t} |8 +-
 t/UDP_test.t   |2 +-
 t/UNIX_test.t  |8 +-
 50 files changed, 2497 insertions(+), 280 deletions(-)

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

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


[libnet-server-perl] 01/01: pristine-tar data for libnet-server-perl_2.009.orig.tar.gz

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch pristine-tar
in repository libnet-server-perl.

commit a19e60137db0612461e9ede9cb49f4ad45e7f72b
Author: Xavier Guimard 
Date:   Thu Oct 26 06:53:40 2017 +0200

pristine-tar data for libnet-server-perl_2.009.orig.tar.gz
---
 libnet-server-perl_2.009.orig.tar.gz.delta | Bin 0 -> 2940 bytes
 libnet-server-perl_2.009.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libnet-server-perl_2.009.orig.tar.gz.delta 
b/libnet-server-perl_2.009.orig.tar.gz.delta
new file mode 100644
index 000..8497e09
Binary files /dev/null and b/libnet-server-perl_2.009.orig.tar.gz.delta differ
diff --git a/libnet-server-perl_2.009.orig.tar.gz.id 
b/libnet-server-perl_2.009.orig.tar.gz.id
new file mode 100644
index 000..3e5e402
--- /dev/null
+++ b/libnet-server-perl_2.009.orig.tar.gz.id
@@ -0,0 +1 @@
+a02b6d0ed2a2ac48df51fc3a3c6aa5d3deb6fac8

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

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


[libnet-server-perl] 03/07: Update d/copy years

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libnet-server-perl.

commit ed307f18a54d228db2392838fb281ebc50ba7d33
Author: Xavier Guimard 
Date:   Thu Oct 26 06:58:10 2017 +0200

Update d/copy years
---
 debian/copyright | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index c163afd..ac6162d 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,13 +4,13 @@ Upstream-Contact: Paul Seamons (p...@seamons.com) and Rob 
Brown (b...@cpan.org)
 Source: https://metacpan.org/release/Net-Server
 
 Files: *
-Copyright: 2001-2014, Paul T Seamons 
- 2001-2012, Rob Brown 
+Copyright: 2001-2017, Paul T Seamons 
+ 2001-2017, Rob Brown 
 License: Artistic or GPL-1+
 
 Files: lib/Net/Server/Daemonize.pm
-Copyright: 2001-2012, Paul T Seamons 
- 2001-2012, Jeremy Howard 
+Copyright: 2001-2017, Paul T Seamons 
+ 2001-2017, Jeremy Howard 
 License: Artistic or GPL-1+
 
 Files: debian/*
@@ -19,7 +19,7 @@ Copyright: 2002-2003, Luca Filipozzi 
  2011-2017, gregor herrmann 
  2012, Daniel Kahn Gillmor 
  2012, intrigeri 
- 2013, Xavier Guimard 
+ 2013-2017, Xavier Guimard 
 License: Artistic or GPL-1+
 
 License: Artistic

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

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


[libnet-server-perl] annotated tag upstream/2.009 created (now edc9942)

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a change to annotated tag upstream/2.009
in repository libnet-server-perl.

at  edc9942   (tag)
   tagging  bac5ea36f807267c6ab42c5ba1ac077de3f17a22 (commit)
  replaces  upstream/2.008
 tagged by  Xavier Guimard
on  Thu Oct 26 06:53:40 2017 +0200

- Log -
Upstream version 2.009

Xavier Guimard (1):
  New upstream version 2.009

---

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/libnet-server-perl.git

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


[libnet-server-perl] 06/07: Another POD error patch

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libnet-server-perl.

commit ceb6b15422d068ec78a746ab94b1948b37272319
Author: Xavier Guimard 
Date:   Thu Oct 26 07:20:32 2017 +0200

Another POD error patch
---
 debian/patches/another-manpage-error.patch | 15 +++
 debian/patches/series  |  1 +
 2 files changed, 16 insertions(+)

diff --git a/debian/patches/another-manpage-error.patch 
b/debian/patches/another-manpage-error.patch
new file mode 100644
index 000..92a5e93
--- /dev/null
+++ b/debian/patches/another-manpage-error.patch
@@ -0,0 +1,15 @@
+Description: Missing blank line in POD
+Author: Xavier Guimard 
+Forwarded: https://github.com/rhandom/perl-net-server/pull/11
+Last-Update: 2017-10-26
+
+--- libnet-server-perl-2.009.orig/lib/Net/Server/PreFork.pm
 libnet-server-perl-2.009/lib/Net/Server/PreFork.pm
+@@ -678,6 +678,7 @@ This hook is called when a dead child is
+ A child is considered dead when the pid does no longer exist.
+ This hook could be used to cleanup possible temporary files
+ or locks left over by a dead child.
++
+ =back
+ 
+ =head1 HOT DEPLOY
diff --git a/debian/patches/series b/debian/patches/series
index c09b261..5cbfc82 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,4 @@
 spelling-error.patch
 correct-SIG-confusion.patch
 fix-manpage-has-errors-from-pod2man.patch
+another-manpage-error.patch

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

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


[libnet-server-perl] branch pristine-tar updated (0860f0b -> a19e601)

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a change to branch pristine-tar
in repository libnet-server-perl.

  from  0860f0b   pristine-tar data for libnet-server-perl_2.008.orig.tar.gz
   new  a19e601   pristine-tar data for libnet-server-perl_2.009.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:
 libnet-server-perl_2.009.orig.tar.gz.delta | Bin 0 -> 2940 bytes
 libnet-server-perl_2.009.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libnet-server-perl_2.009.orig.tar.gz.delta
 create mode 100644 libnet-server-perl_2.009.orig.tar.gz.id

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

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


[libnet-server-perl] 02/07: Declare compliance with Debian Policy 4.1.1

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libnet-server-perl.

commit eb8f8363bbb9e4e3fe0c828435be2f130d61a092
Author: Xavier Guimard 
Date:   Thu Oct 26 06:54:30 2017 +0200

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

diff --git a/debian/control b/debian/control
index e0c1431..924 100644
--- a/debian/control
+++ b/debian/control
@@ -10,7 +10,7 @@ Priority: optional
 Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: libcgi-pm-perl | perl (<< 5.19),
  perl
-Standards-Version: 4.0.0
+Standards-Version: 4.1.1
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libnet-server-perl.git
 Vcs-Git: 
https://anonscm.debian.org/git/pkg-perl/packages/libnet-server-perl.git
 Homepage: https://metacpan.org/release/Net-Server

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

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


[libnet-server-perl] branch master updated (09fb748 -> 53e5aea)

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a change to branch master
in repository libnet-server-perl.

  from  09fb748   releasing package libnet-server-perl version 2.008-4
  adds  bac5ea3   New upstream version 2.009
   new  43c868d   Update upstream source from tag 'upstream/2.009'
   new  eb8f836   Declare compliance with Debian Policy 4.1.1
   new  ed307f1   Update d/copy years
   new  7b311f9   Remove patches now included in upstream
   new  88430cc   Refresh patch offsets
   new  ceb6b15   Another POD error patch
   new  53e5aea   Update d/ch

The 7 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|9 +
 INSTALL|   44 +
 LICENSE|  379 +
 MANIFEST   |   97 +-
 MANIFEST.SKIP  |   15 +
 META.json  |   16 +-
 META.yml   |   25 +-
 Makefile.PL|   95 +-
 README | 1702 +++-
 bin/net-server |2 +-
 debian/changelog   |   12 +
 debian/control |2 +-
 debian/copyright   |   10 +-
 ...Temp::tempdir_in_UNIX_socket_test_example.patch |   83 -
 ...le_instead_of_POSIX::tmpnam_for_lock_file.patch |   60 -
 debian/patches/another-manpage-error.patch |   15 +
 debian/patches/correct-SIG-confusion.patch |6 +-
 debian/patches/debug-output.patch  |   17 -
 debian/patches/series  |4 +-
 debian/patches/spelling-error.patch|   74 +-
 dist.ini   |   53 +
 examples/connection_test.pl|   14 +-
 lib/Net/Server.pm  |   15 +-
 lib/Net/Server.pod |3 +
 lib/Net/Server/Daemonize.pm|8 +-
 lib/Net/Server/Fork.pm |8 +-
 lib/Net/Server/HTTP.pm |8 +-
 lib/Net/Server/INET.pm |8 +-
 lib/Net/Server/Log/Log/Log4perl.pm |7 +-
 lib/Net/Server/Log/Sys/Syslog.pm   |7 +-
 lib/Net/Server/MultiType.pm|8 +-
 lib/Net/Server/Multiplex.pm|8 +-
 lib/Net/Server/PSGI.pm |8 +-
 lib/Net/Server/PreFork.pm  |   61 +-
 lib/Net/Server/PreForkSimple.pm|   16 +-
 lib/Net/Server/Proto.pm|8 +-
 lib/Net/Server/Proto/SSL.pm|8 +-
 lib/Net/Server/Proto/SSLEAY.pm |8 +-
 lib/Net/Server/Proto/TCP.pm|8 +-
 lib/Net/Server/Proto/UDP.pm|8 +-
 lib/Net/Server/Proto/UNIX.pm   |   28 +-
 lib/Net/Server/Proto/UNIXDGRAM.pm  |8 +-
 lib/Net/Server/SIG.pm  |8 +-
 lib/Net/Server/Single.pm   |8 +-
 t/NetServerTest.pm |   27 +-
 t/Options.t|2 +-
 t/SSLEAY_test.t|2 +-
 t/SSL_test.t   |2 +-
 t/Server_BASE.t|2 +-
 t/Server_Fork.t|2 +-
 t/Server_INET.t|2 +-
 t/Server_MultiType.t   |2 +-
 t/Server_Multiplex.t   |2 +-
 t/Server_PreFork.t |2 +-
 t/Server_PreForkSimple.t   |2 +-
 t/Server_Single.t  |2 +-
 t/Server_http.t|2 +-
 t/{Server_http.t => Server_psgi.t} |8 +-
 t/UDP_test.t   |2 +-
 t/UNIX_test.t  |8 +-
 60 files changed, 2571 insertions(+), 489 deletions(-)
 create mode 100644 INSTALL
 create mode 100644 LICENSE
 create mode 100644 MANIFEST.SKIP
 delete mode 100644 
debian/patches/Use_File::Temp::tempdir_in_UNIX_socket_test_example.patch
 delete mode 100644 
debian/patches/Use_File::Temp::tempfile_instead_of_POSIX::tmpnam_for_lock_file.patch
 create mode 100644 

[libnet-server-perl] 07/07: Update d/ch

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libnet-server-perl.

commit 53e5aeae149e2f9f53526213e6ad74f9f72a287f
Author: Xavier Guimard 
Date:   Thu Oct 26 07:21:49 2017 +0200

Update d/ch
---
 debian/changelog | 12 
 1 file changed, 12 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index e936625..afd826d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+libnet-server-perl (2.009-1) UNRELEASED; urgency=medium
+
+  * New upstream version
+  * Declare compliance with Debian Policy 4.1.1
+  * Update debian/copyright years
+  * Remove debug-output.patch, now included in upstream
+  * Remove File::Temp patches related to #826437, now included in upstream
+  * Refresh patch offsets
+  * Add another patch for a POD error
+
+ -- Xavier Guimard   Thu, 26 Oct 2017 06:53:48 +0200
+
 libnet-server-perl (2.008-4) unstable; urgency=medium
 
   * Change bugtracker URL(s) to HTTPS.

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

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


[libnet-server-perl] 05/07: Refresh patch offsets

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libnet-server-perl.

commit 88430cc41f28c1ae88cb62b6bbbc14d1c29bf38d
Author: Xavier Guimard 
Date:   Thu Oct 26 07:08:40 2017 +0200

Refresh patch offsets
---
 debian/patches/correct-SIG-confusion.patch |  6 +--
 debian/patches/series  |  3 --
 debian/patches/spelling-error.patch| 74 +++---
 3 files changed, 40 insertions(+), 43 deletions(-)

diff --git a/debian/patches/correct-SIG-confusion.patch 
b/debian/patches/correct-SIG-confusion.patch
index e4d8a21..9a6ceb3 100644
--- a/debian/patches/correct-SIG-confusion.patch
+++ b/debian/patches/correct-SIG-confusion.patch
@@ -7,7 +7,7 @@ Last-Update: 2013-06-20
 
 --- a/lib/Net/Server/SIG.pm
 +++ b/lib/Net/Server/SIG.pm
-@@ -40,6 +40,9 @@ sub register_sig {
+@@ -36,6 +36,9 @@
  my $code_ref = shift;
  my $ref = ref($code_ref);
  
@@ -17,7 +17,7 @@ Last-Update: 2013-06-20
  if (! $ref) {
  if ($code_ref eq 'DEFAULT') {
  delete $_SIG{$sig};
-@@ -66,6 +69,10 @@ sub unregister_sig { register_sig(shift(
+@@ -62,6 +65,10 @@
  sub check_sigs {
  my @found;
  foreach my $sig (keys %_SIG){
@@ -28,7 +28,7 @@ Last-Update: 2013-06-20
  next if ! $_SIG{$sig};
  $_SIG{$sig} = 0;
  push @found, $sig;
-@@ -76,6 +83,10 @@ sub check_sigs {
+@@ -72,6 +79,10 @@
  
  sub sig_is_registered {
  my $sig = shift;
diff --git a/debian/patches/series b/debian/patches/series
index 01ad569..c09b261 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,6 +1,3 @@
 spelling-error.patch
 correct-SIG-confusion.patch
 fix-manpage-has-errors-from-pod2man.patch
-debug-output.patch
-Use_File::Temp::tempdir_in_UNIX_socket_test_example.patch
-Use_File::Temp::tempfile_instead_of_POSIX::tmpnam_for_lock_file.patch
diff --git a/debian/patches/spelling-error.patch 
b/debian/patches/spelling-error.patch
index 94ffc28..c6d0ce4 100644
--- a/debian/patches/spelling-error.patch
+++ b/debian/patches/spelling-error.patch
@@ -8,7 +8,7 @@ Last-Update: 2016-03-14
 
 --- a/lib/Net/Server.pod
 +++ b/lib/Net/Server.pod
-@@ -194,7 +194,7 @@ Once started, the Net::Server will take
+@@ -194,7 +194,7 @@
  waiting for connections.  Once a connection is received, the
  Net::Server will accept on the socket and will store the result (the
  client connection) in $self-E{server}-E{client}.  This
@@ -17,7 +17,7 @@ Last-Update: 2016-03-14
  servers are slightly different in that they will perform a B
  instead of an B.
  
-@@ -374,7 +374,7 @@ been parsed.  The post_configure_hook is
+@@ -374,7 +374,7 @@
  validation.
  
  Some emails have asked why we use this "template" method.  The idea is
@@ -26,7 +26,7 @@ Last-Update: 2016-03-14
  and you are also creating a way to get the values into the data
  structure.  The template is the way to get the values to the servers
  data structure.  One of the possibilities (that probably isn't used
-@@ -633,7 +633,7 @@ if the C argument omits a host spe
+@@ -633,7 +633,7 @@
  L. See L.  Configuration passed to new
  or run may be either a scalar containing a single host or an arrayref
  of hosts - if the hosts array is shorter than the ports array, the
@@ -35,7 +35,7 @@ Last-Update: 2016-03-14
  of the ports array.
  
  If an IPv4 address is passed, an IPv4 socket will be created.  If an
-@@ -664,7 +664,7 @@ specification can be passed as part of t
+@@ -664,7 +664,7 @@
  host => '*/IPv*', # same (any IPv6 or IPv4)
  
  ipv  => 4,
@@ -44,7 +44,7 @@ Last-Update: 2016-03-14
  
  
  =item proto
-@@ -677,7 +677,7 @@ extending the Net::Server::Proto class m
+@@ -677,7 +677,7 @@
  passed to new or run may be either a scalar containing a single proto
  or an arrayref of protos - if the protos array is shorter than the
  ports array, the last proto entry will be used to augment the protos
@@ -53,7 +53,7 @@ Last-Update: 2016-03-14
  
  Additionally the proto may also contain the ipv specification.
  
-@@ -845,13 +845,13 @@ server is still running as root.  Defaul
+@@ -845,13 +845,13 @@
  
  =item user
  
@@ -69,7 +69,7 @@ Last-Update: 2016-03-14
  Defaults to "nobody."  If you would like the server to run as root,
  you will have to specify C equal to "root".
  
-@@ -894,7 +894,7 @@ property that is tied to the already ope
+@@ -894,7 +894,7 @@
  
  Boolean.  Default undef (not set).  If set, the parent will not
  attempt to close child processes if the parent receives a SIG HUP.
@@ -78,7 +78,7 @@ Last-Update: 2016-03-14
  set of children.
  
  Children of a Fork server will exit after their current request.
-@@ -1158,12 +1158,12 @@ the server.
+@@ -1158,12 +1158,12 @@
  
  =item C<$self-Ebind>
  
@@ -93,7 +93,7 @@ Last-Update: 2016-03-14
  signals are set to run server_close.  Sig PIPE is set to IGNORE.  Sig
  CHLD is set to sig_chld.  And sig HUP is set to call sig_hup.
  
-@@ -1323,11 +1323,11 @@ the process will still be 

[libsql-abstract-perl] branch master updated (f54edfd -> b59e43f)

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

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

  from  f54edfd   Update d/copy years
   new  85d98d1   Update debian/upstream/metadata.
   new  f97f957   debian/rules: drop unneeded override_dh_auto_test.
   new  035c613   we need libsub-quote-perl at runtime too
   new  148dfbf   add debian/tests/pkg-perl/syntax-skip to finish 
introduction of autopkgtests
   new  b59e43f   releasing package libsql-abstract-perl version 1.84-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:
 debian/changelog  | 4 
 debian/control| 3 ++-
 debian/rules  | 4 
 debian/tests/pkg-perl/syntax-skip | 4 
 debian/upstream/metadata  | 6 --
 5 files changed, 14 insertions(+), 7 deletions(-)
 create mode 100644 debian/tests/pkg-perl/syntax-skip

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


[libsql-abstract-perl] 05/05: releasing package libsql-abstract-perl version 1.84-1

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

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

commit b59e43f77630a1114c81f2e3629c5d00c15d7df4
Author: gregor herrmann 
Date:   Thu Oct 26 00:57:07 2017 +0200

releasing package libsql-abstract-perl version 1.84-1
---
 debian/changelog | 4 
 1 file changed, 4 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index d80b002..25c9f88 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -22,6 +22,10 @@ libsql-abstract-perl (1.84-1) unstable; urgency=medium
   * Bump debian/compat to 9
   * Update debian/copyright years
 
+  [ gregor herrmann ]
+  * Update debian/upstream/metadata.
+  * debian/rules: drop unneeded override_dh_auto_test.
+
  -- Xavier Guimard   Wed, 25 Oct 2017 22:42:39 +0200
 
 libsql-abstract-perl (1.81-1) unstable; urgency=medium

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


[libsql-abstract-perl] 02/05: debian/rules: drop unneeded override_dh_auto_test.

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

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

commit f97f9572923533e0127fbc9389432b1e72c85373
Author: gregor herrmann 
Date:   Thu Oct 26 00:43:27 2017 +0200

debian/rules: drop unneeded override_dh_auto_test.
---
 debian/rules | 4 
 1 file changed, 4 deletions(-)

diff --git a/debian/rules b/debian/rules
index f504f53..e8f52cf 100755
--- a/debian/rules
+++ b/debian/rules
@@ -6,10 +6,6 @@ TMP = $(CURDIR)/debian/$(PACKAGE)
 %:
dh $@
 
-override_dh_auto_test:
-   AUTOMATED_TESTING=1 \
-   dh_auto_test
-
 override_dh_installexamples:
dh_installexamples
sed -i -e '1s|^#!/sur/bin/env perl|#!/usr/bin/perl|' -e 
'1s|^#!/usr/bin/env perl|#!/usr/bin/perl|' \

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


[libsql-abstract-perl] annotated tag debian/1.84-1 created (now 80db2f4)

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

gregoa pushed a change to annotated tag debian/1.84-1
in repository libsql-abstract-perl.

at  80db2f4   (tag)
   tagging  b59e43f77630a1114c81f2e3629c5d00c15d7df4 (commit)
  replaces  debian/1.81-1
 tagged by  gregor herrmann
on  Thu Oct 26 00:57:07 2017 +0200

- Log -
tagging package libsql-abstract-perl version debian/1.84-1
-BEGIN PGP SIGNATURE-

iQKTBAABCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlnxFsNfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgYXYg//YICCk1UIGaBc6v+UL/Jme/V8HMdRfmTNCTES4nHkZydwV/vi2mX4jnTU
OedbIAADJBU5qP+bW/8Os2SCosxZ9ODlkKbGxHvc5YenJQsTcUidg6EGoWPgdFOQ
hv51bot1vMWnRunwWYYRotzpf0nQOsIRnehkIytVwm+DaJ4nqaewkEyI480Q68+o
YZ4Hfr7Oc/riFcE2d5GlgxP+srf+xcH6iLwAyzt1W62LPbo5v8Isy0P4djNuMeoG
WrNQNOQ2/7o/sf3SnDcMcLdT6AgpQ3KpJxSGVB8gpoEW3pbTUPC/fCPfGJ3gk96u
ez8G2eXUSzH3jsJpBTtH7WrDRMy/G17yFiSu+V+3XW1RonsrbrExSHPw1B3PyFC7
99KfhqSNLKaRpKp0fsV9GGqhHlDByUgonrjlNVkHiWbbCjhmOYtTR8fPiG79ARYJ
HGpcMqmuQEtG0nyEdRXkx/snNzOBFpS0WaxuhtJPj+suBVSeyplJTRCM/TWozjFF
dM9/4TOQdpEzBlXZp0H6aHkrdTT9fGkc34tHT3HjXltxH/BwzOFWfJUgRKwRsUrK
Q/GXKstn4c63nXfit9xdRAnhwtY8oP9gwHXIJYrJDMzOQ5yqk6Amnyjk29LQKK+p
+DGajpIXS9owI0KD960+sMa3nJ5J3D3JQqXV4ws8lz7pow4hpcA=
=HvV9
-END PGP SIGNATURE-

Alex Muntada (2):
  Remove inactive pkg-perl members from Uploaders.
  update changelog

Salvatore Bonaccorso (2):
  debian/control: Use HTTPS transport protocol for Vcs-Git URI
  update changelog

Xavier Guimard (11):
  New upstream version 1.84
  Update upstream source from tag 'upstream/1.84'
  Add Sub::Quote in deps
  Declare compliance with Debian Policy 4.1.1
  Remove minimal version for libtest-exception-perl
  Update debhelper version
  Remove Module::Install entry
  Add spelling errors patch (reported)
  Bump debian/compat to 9
  Update d/ch
  Update d/copy years

gregor herrmann (11):
  debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
  update changelog
  debian/upstream/metadata: change GitHub/CPAN URL(s) to HTTPS.
  update changelog
  Remove Jonathan Yu from Uploaders. Thanks for your work!
  update changelog
  Update debian/upstream/metadata.
  debian/rules: drop unneeded override_dh_auto_test.
  we need libsub-quote-perl at runtime too
  add debian/tests/pkg-perl/syntax-skip to finish introduction of 
autopkgtests
  releasing package libsql-abstract-perl version 1.84-1

---

This annotated tag includes the following new commits:

   new  85d98d1   Update debian/upstream/metadata.
   new  f97f957   debian/rules: drop unneeded override_dh_auto_test.
   new  035c613   we need libsub-quote-perl at runtime too
   new  148dfbf   add debian/tests/pkg-perl/syntax-skip to finish 
introduction of autopkgtests
   new  b59e43f   releasing package libsql-abstract-perl version 1.84-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/libsql-abstract-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


[libsql-abstract-perl] 01/05: Update debian/upstream/metadata.

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

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

commit 85d98d1b4f92b1bee4e0593542b10e8c2d67d842
Author: gregor herrmann 
Date:   Thu Oct 26 00:40:57 2017 +0200

Update debian/upstream/metadata.
---
 debian/upstream/metadata | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/debian/upstream/metadata b/debian/upstream/metadata
index 9bfbe94..4585c88 100644
--- a/debian/upstream/metadata
+++ b/debian/upstream/metadata
@@ -1,6 +1,8 @@
 ---
 Archive: CPAN
-Bug-Database: https://rt.cpan.org/NoAuth/Bugs.html?Dist=SQL-Abstract
+Bug-Database: https://rt.cpan.org/Public/Dist/Display.html?Name=SQL-Abstract
+Bug-Submit: bug-sql-abstr...@rt.cpan.org
 Contact: irc://irc.perl.org/#dbic-cabal
 Name: SQL-Abstract
-Repository: git://git.shadowcat.co.uk/dbsrgits/SQL-Abstract.git
+Repository: https://github.com/dbsrgits/sql-abstract.git
+Repository-Browse: https://github.com/dbsrgits/sql-abstract

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


[libsql-abstract-perl] 03/05: we need libsub-quote-perl at runtime too

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

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

commit 035c613801230558bd0ebfeca2ee92989f8bb1fa
Author: gregor herrmann 
Date:   Thu Oct 26 00:45:04 2017 +0200

we need libsub-quote-perl at runtime too

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

diff --git a/debian/control b/debian/control
index 48d5f6c..ded6360 100644
--- a/debian/control
+++ b/debian/control
@@ -24,7 +24,8 @@ Architecture: all
 Depends: ${misc:Depends},
  ${perl:Depends},
  libhash-merge-perl,
- libmoo-perl (>= 1.004002)
+ libmoo-perl (>= 1.004002),
+ libsub-quote-perl
 Description: module to generate SQL from Perl data structures
  SQL::Abstract is a Perl module that allows developers to generate SQL from
  Perl data strutures, inspired by DBIx::Abstract. The intent of this module

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


[libsql-abstract-perl] 04/05: add debian/tests/pkg-perl/syntax-skip to finish introduction of autopkgtests

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

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

commit 148dfbfcea3358ca40b180b45fddb425bf310c12
Author: gregor herrmann 
Date:   Thu Oct 26 00:55:19 2017 +0200

add debian/tests/pkg-perl/syntax-skip to finish introduction of autopkgtests

Gbp-Dch: Ignore
---
 debian/tests/pkg-perl/syntax-skip | 4 
 1 file changed, 4 insertions(+)

diff --git a/debian/tests/pkg-perl/syntax-skip 
b/debian/tests/pkg-perl/syntax-skip
new file mode 100644
index 000..0b541c0
--- /dev/null
+++ b/debian/tests/pkg-perl/syntax-skip
@@ -0,0 +1,4 @@
+# needs DBIx::Class::Storage::Statistics but this leads to some circular 
dependency
+DBIx/Class/Storage/Debug/PrettyPrint.pm
+# needs Test::Deep but it probably makes no sense to Depends/Recommends it
+SQL/Abstract/Test.pm

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


[libsql-statement-perl] branch master updated (8d992aa -> ae9df14)

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

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

  from  8d992aa   Update d/ch
   new  ae9df14   removing the "<< $version" for Breaks means that this 
package breaks all versions of the other packages. that's not what we want.

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 | 3 +--
 debian/control   | 3 ---
 2 files changed, 1 insertion(+), 5 deletions(-)

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


[libsql-statement-perl] 01/01: removing the "<< $version" for Breaks means that this package breaks all versions of the other packages. that's not what we want.

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

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

commit ae9df140ca835b61fb91675383fa19a5d4b6dbeb
Author: gregor herrmann 
Date:   Thu Oct 26 01:01:48 2017 +0200

removing the "<< $version" for Breaks means that this package breaks all
versions of the other packages. that's not what we want.

indeed the broken versions are older than what's in oldoldstable, so we can
just drop the Breaks

Gbp-Dch: Ignore
---
 debian/changelog | 3 +--
 debian/control   | 3 ---
 2 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 37322e7..3e5f0b9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -15,8 +15,7 @@ libsql-statement-perl (1.412-1) unstable; urgency=medium
   * New upstream release
   * Declare compliance with Debian Policy 4.1.1
   * Update libtext-soundex-perl dependency
-  * Remove useless minimal dependency for libdbd-anydata-perl, libdbd-csv-perl
-and libdbi-perl
+  * Remove Breaks for libdbd-anydata-perl, libdbd-csv-perl, and libdbi-perl
   * Remove spelling errors patch
   * Update debian/copyright years
 
diff --git a/debian/control b/debian/control
index 39327e0..29a96b2 100644
--- a/debian/control
+++ b/debian/control
@@ -32,9 +32,6 @@ Depends: ${misc:Depends},
 Recommends: libdbi-perl,
 libmath-base-convert-perl,
 libtext-soundex-perl | perl (<< 5.17.9),
-Breaks: libdbd-anydata-perl,
-libdbd-csv-perl,
-libdbi-perl
 Description: module for parsing and processing SQL statements
  SQL::Statement is a Perl module that implements a small, abstract SQL engine.
  This module is not useful itself, but as a base class for deriving concrete

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


[libsql-statement-perl] annotated tag debian/1.412-1 created (now 534e550)

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

gregoa pushed a change to annotated tag debian/1.412-1
in repository libsql-statement-perl.

at  534e550   (tag)
   tagging  ae9df140ca835b61fb91675383fa19a5d4b6dbeb (commit)
  replaces  upstream/1.412
 tagged by  gregor herrmann
on  Thu Oct 26 01:07:19 2017 +0200

- Log -
tagging package libsql-statement-perl version debian/1.412-1
-BEGIN PGP SIGNATURE-

iQKTBAABCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlnxGSdfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgadXxAAuPhtxYmQ1OBx+NbY+kQ5g+rCtxytBXiU3AxxSnHBkRA8RH4NZ4/Y9jmR
qahEoXB0ejryv7cHo/4cpwH2JH3u6FWHVtFcFVSTza03W6Qjt0XpEVtfdFd6UHUv
tNTZSzF7mXvx1F74hdIsBnYp09LmIlzY0vqySpJ0jCBvWRJ51VLGTJFq7zKWRUNI
xMhtr1OdyWtUERcrhxajOCBy+1V57UrvlNypjQU6f3evJG864lVvXCLiIn0jPfq0
sRmuafAOHQSn2gpPxZWj/FN2suK4/ljW4x3SAhyTsP5QbIZwInVOwbFzBQ0TBxL0
/1U1Sik9jm5wXesJVS2YwwLGexzwMTGSX7ApuUb3JBwPZrMCTTfBWcnRv9WBuPaY
O4VQtmqgXYJ3Hi6wGq6ifGyUff69+Qx6jn0eUdBTvKHL8E26mXq+I9nBtSSmJXOS
g6nCMxmHdvvUALW24oTeCuSNESewSyV3tCncTC3L97+pXvDNBxCuULZTWW8WLNXJ
nfOpUXVPkcRIT/VzkiBKLYBrivvI06LLw5A5TZp+iw17+flj2x+kZ47xUdE+HJ1V
K62vSMyMX6XFteoysOYcJ0CYCcd+pXCnFId6TJsYuIsT9VBkT60Md7/hcKcYr9AJ
O14+Z3VOm/ugPI7xnIQR/7VmMWmHBU/EuQ2IBKqrlOfTPLuB1aQ=
=acSP
-END PGP SIGNATURE-

Alex Muntada (2):
  Remove inactive pkg-perl members from Uploaders.
  update changelog

Ansgar Burchardt (6):
  * New upstream release.
  * New upstream release.
  * New upstream release.
  Update my email address.
  * New upstream release.
  debian/control: Convert Vcs-* fields to Git.

Damyan Ivanov (1):
  refresh all patches with no index and timestamps and using -pab

Gregor Herrmann (29):
  * Use $(CURDIR) [make] instead of $(PWD) [sh] to fix issues with sudo.
  add missing XS-Vcs-Browser field to debian/control
  Add missing XS-Vcs-(Svn|Browser)/Homepage field(s) to debian/control.
  Change XS-Vcs-* to Vcs-* in all trunk/*/debian/control files
  mass-change: rmdir /usr/{lib,share}/perl5 only if they exist as a 
preparation for perl5.10
  add bug number to changelog
  debian/watch: use dist-based URL.
  debian/copyright: add upstream source location; update years of
  debian/rules: minor updates inspired by dh-make-perl's templates.
  * Add debian/compat.
  Remove build-dependency on perl-doc.
  Split patch for #311788 out; add quilt framework.
  s/UNRELEASED/unstable/
  [mass-commit] add debian/README.source (pointing to quilt's 
README.source) to all packages which use quilt (and don't have the file 
already), as per Policy 3.8.0
  [mass commit] switch Vcs-Browser from from WebSVN to ViewSVN
  [mass-commit] add ${misc:Depends} to Depends field in debian/control if 
it's missing
  [mass-commit] change my email address
  New upstream release 1.22.
  + update dependencies
  * Rename debian/README.update.Debian to debian/README.Debian, add
  WAITS-FOR: libparams-util-perl 1.00 # #537296
  releasing version 1.22-1
  Add "Things that may break your code" note from upstream Changes to
  Remove README.Debian that talked about an upgrade over 5 years ago.
  debian/control: add build dependency on Test::Simple 0.86.
  debian/rules: replace override_dh_installman with
  extend comment in d/rules
  debian/copyright: update license stanzas and list of copyright holders for
  releasing version 1.31-1

Gunnar Wolf (14):
  Load libsql-statement-perl-1.09 into
  Updated copyright to reflect new upstream author
  Added watch files to many packages which lacked them
  Upstream version 1.11
  Fixed POD formatting
  Registered latest changes in changelog
  New upstream version
  New upstream version
  Reconsidering - No reason for it not to be urgency: low
  Allows for updates based on previous values of the field
  Beautified/sanitized rules
  Adding the XS-Vcs-Svn field to all of our modules'
  Corrected wrong URL in the XS-Vcs-Svn field :-/ Thanks, Raphael
  Removing myself as an uploader from all packages which have other human 
uploaders

Joey Hess (1):
  update Vcs-Svn lines for new locations

Jonathan Yu (11):
  New upstream release
  TODO: fix a bunch of messed up whatis entries
  Remove manpages with missing whatis entries; these are part of a
  Add Test::Pod{,::Coverage} to B-D-I for build
  builds clean, dch -r
  mark as WIP
  * Standards-Version 3.8.4 (no changes)
  * Use new 3.0 (quilt) source format
  looks good, dch -r
  * New upstream release
  looks good, dch -r

Krzysztof Krzyzaniak (3):
  eloy: new upstream version
  eloy: polishing package
  updated watch file

Nathan Handler (6):
  [mass-commit] debian/watch: 

[libfile-fcntllock-perl] 08/08: update changelog

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch fcntl-any
in repository libfile-fcntllock-perl.

commit 80dafc6dd56f4b9a3ec1686ce2130bd42220df08
Author: Damyan Ivanov 
Date:   Wed Oct 25 21:14:34 2017 +

update changelog
---
 debian/changelog | 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index ed3bcba..bb3e9cf 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -13,7 +13,16 @@ libfile-fcntllock-perl (0.22-4) UNRELEASED; urgency=medium
   [ Alex Muntada ]
   * Remove inactive pkg-perl members from Uploaders.
 
- -- gregor herrmann   Sat, 24 Oct 2015 13:45:20 +0200
+  [ Damyan Ivanov ]
+  * add small patch fixing a spelling error in POD
+  * add File::FcntlLock::Any module, trying ::XS, ::Pure and ::Inline
+  * add myself to Uploaders
+  * put symlinks to ::Any, ::Pure and ::Inline in vendorlib (arch-indep)
+  * enable bindnow hardening build flags
+  * denote ${perl:Depends} to Recommends
+  * declare conformance with Policy 4.1.1
+
+ -- Damyan Ivanov   Thu, 26 Oct 2017 00:13:29 +0300
 
 libfile-fcntllock-perl (0.22-3) unstable; urgency=medium
 

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


[libfile-fcntllock-perl] 06/08: denote ${perl:Depends} to Recommends

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch fcntl-any
in repository libfile-fcntllock-perl.

commit 20f3bb457e54e594cb1964fd83c11a03841c060a
Author: Damyan Ivanov 
Date:   Wed Oct 25 21:13:00 2017 +

denote ${perl:Depends} to Recommends

now that we have an arch-indep implementation(s) available,
perlapi-x.y is not a strict requirement
---
 debian/control | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/debian/control b/debian/control
index da06307..fed3ee7 100644
--- a/debian/control
+++ b/debian/control
@@ -13,9 +13,10 @@ Homepage: https://metacpan.org/release/File-FcntlLock
 
 Package: libfile-fcntllock-perl
 Architecture: any
-Depends: ${perl:Depends},
- ${shlibs:Depends},
- ${misc:Depends}
+Depends: ${shlibs:Depends},
+ ${misc:Depends},
+ perl
+Recommends: ${perl:Depends}
 Suggests: gcc | c-compiler
 Description: Perl module for file locking with fcntl(2)
  File::FcntlLock is a Perl module to do file locking in an object oriented

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


[libfile-fcntllock-perl] 07/08: declare conformance with Policy 4.1.1

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch fcntl-any
in repository libfile-fcntllock-perl.

commit 9b52d7a09d04131f7234f935924fd0c6a2687ab7
Author: Damyan Ivanov 
Date:   Wed Oct 25 21:13:12 2017 +

declare conformance with Policy 4.1.1
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index fed3ee7..31ee01a 100644
--- a/debian/control
+++ b/debian/control
@@ -6,7 +6,7 @@ Testsuite: autopkgtest-pkg-perl
 Priority: optional
 Build-Depends: debhelper (>= 9.20120312~),
perl
-Standards-Version: 3.9.6
+Standards-Version: 4.1.1
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libfile-fcntllock-perl.git
 Vcs-Git: 
https://anonscm.debian.org/git/pkg-perl/packages/libfile-fcntllock-perl.git
 Homepage: https://metacpan.org/release/File-FcntlLock

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


[libfile-fcntllock-perl] 01/08: add small patch fixing a spelling error in POD

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch fcntl-any
in repository libfile-fcntllock-perl.

commit be80dd83a340f4366361eee72f6cb5f127f7d451
Author: Damyan Ivanov 
Date:   Wed Oct 25 21:02:37 2017 +

add small patch fixing a spelling error in POD
---
 debian/patches/series |  1 +
 debian/patches/spelling.patch | 15 +++
 2 files changed, 16 insertions(+)

diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..5299247
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+spelling.patch
diff --git a/debian/patches/spelling.patch b/debian/patches/spelling.patch
new file mode 100644
index 000..9076683
--- /dev/null
+++ b/debian/patches/spelling.patch
@@ -0,0 +1,15 @@
+Description: small spelling fix
+ allow to → allow one to
+Author: Damyan Ivanov 
+
+--- a/lib/File/FcntlLock.pod
 b/lib/File/FcntlLock.pod
+@@ -97,7 +97,7 @@ if you intend to obtain a write lock for
+ =head2 Object properties
+ 
+ Once the object simulating the flock structure has been created
+-the following methods allow to query and, in most cases, to also
++the following methods allow one to query and, in most cases, to also
+ modify its properties.
+ 
+ =over 4

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

[libfile-fcntllock-perl] 02/08: add File::FcntlLock::Any module, trying ::XS, ::Pure and ::Inline

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch fcntl-any
in repository libfile-fcntllock-perl.

commit 043044fd33aacf913cda69b4d64c6e757580925a
Author: Damyan Ivanov 
Date:   Wed Oct 25 21:03:16 2017 +

add File::FcntlLock::Any module, trying ::XS, ::Pure and ::Inline
---
 debian/patches/fcntllock-any.patch | 39 ++
 debian/patches/series  |  1 +
 2 files changed, 40 insertions(+)

diff --git a/debian/patches/fcntllock-any.patch 
b/debian/patches/fcntllock-any.patch
new file mode 100644
index 000..c2e35e0
--- /dev/null
+++ b/debian/patches/fcntllock-any.patch
@@ -0,0 +1,39 @@
+Description: Add File::FcntlLock::Any
+ As discussed in https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=677865,
+ an ::Any module is supposed to be archirecture-independent and try to
+ load ::XS, ::Pure and ::Inline, in that order.
+Author: Damyan Ivanov 
+
+--- /dev/null
 b/lib/File/FcntlLock/Any.pm
+@@ -0,0 +1,30 @@
++package File::FcntlLock::Any;
++
++use strict;
++use warnings;
++
++use Config;
++use lib "$Config{libsdirs}/libfile-fcntllock-perl";
++
++my $implementation;
++
++BEGIN {
++my $impl;
++for ( qw(XS Pure Inline) ) {
++if ( eval "use File::FcntlLock::$_; 1" ) {
++$impl = $_;
++last;
++}
++else {
++warn "Loading File::FcntlLock::$_: $@" if 0;
++}
++}
++
++die "Unable to find usable implementation" unless $impl;
++
++$implementation = "File::FcntlLock::$impl";
++our @ISA = $implementation;
++warn "Using $implementation" if 0;
++}
++
++1;
diff --git a/debian/patches/series b/debian/patches/series
index 5299247..d19db46 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 spelling.patch
+fcntllock-any.patch

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


[libfile-fcntllock-perl] 04/08: put symlinks to ::Any, ::Pure and ::Inline in vendorlib (arch-indep)

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch fcntl-any
in repository libfile-fcntllock-perl.

commit a541fc41c7db84a728978314b5b69f2f25485bb8
Author: Damyan Ivanov 
Date:   Wed Oct 25 21:11:39 2017 +

put symlinks to ::Any, ::Pure and ::Inline in vendorlib (arch-indep)

this makes the three available during major perl upgrades
---
 debian/rules | 16 
 1 file changed, 16 insertions(+)

diff --git a/debian/rules b/debian/rules
index 2d33f6a..0efb77b 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,4 +1,20 @@
 #!/usr/bin/make -f
 
+TRIPLET:=$(shell dpkg-architecture -q DEB_BUILD_MULTIARCH)
+VENDOR_ARCH:=$(shell perl -MConfig -E'say $$Config{vendorarch}')
+VENDOR_LIB :=$(shell perl -MConfig -E'say $$Config{vendorlib}')
+
 %:
dh $@
+
+override_dh_install:
+   dh_link \
+   $(VENDOR_ARCH)/File/FcntlLock/Pure.pm \
+   /usr/lib/$(TRIPLET)/libfile-fcntllock-perl/File/FcntlLock/Pure.pm
+   dh_link \
+   $(VENDOR_ARCH)/File/FcntlLock/Inline.pm \
+   /usr/lib/$(TRIPLET)/libfile-fcntllock-perl/File/FcntlLock/Inline.pm
+   dh_link \
+   $(VENDOR_ARCH)/File/FcntlLock/Any.pm \
+   $(VENDOR_LIB)/File/FcntlLock/Any.pm
+   dh_install

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


[libfile-fcntllock-perl] 05/08: enable bindnow hardening build flags

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch fcntl-any
in repository libfile-fcntllock-perl.

commit 02ce30fbe6a78df277039eb8ccb49d47b1434831
Author: Damyan Ivanov 
Date:   Wed Oct 25 21:11:52 2017 +

enable bindnow hardening build flags
---
 debian/rules | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/debian/rules b/debian/rules
index 0efb77b..04ffc7a 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,5 +1,7 @@
 #!/usr/bin/make -f
 
+export DEB_BUILD_MAINT_OPTIONS = hardening=+bindnow
+
 TRIPLET:=$(shell dpkg-architecture -q DEB_BUILD_MULTIARCH)
 VENDOR_ARCH:=$(shell perl -MConfig -E'say $$Config{vendorarch}')
 VENDOR_LIB :=$(shell perl -MConfig -E'say $$Config{vendorlib}')

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


[libfile-fcntllock-perl] 03/08: add myself to Uploaders

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch fcntl-any
in repository libfile-fcntllock-perl.

commit fbc164e792c90002d1e8d773dc955abce342e30e
Author: Damyan Ivanov 
Date:   Wed Oct 25 21:10:14 2017 +

add myself to Uploaders
---
 debian/control | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/control b/debian/control
index b744be0..da06307 100644
--- a/debian/control
+++ b/debian/control
@@ -1,5 +1,6 @@
 Source: libfile-fcntllock-perl
 Maintainer: Debian Perl Group 
+Uploaders: Damyan Ivanov 
 Section: perl
 Testsuite: autopkgtest-pkg-perl
 Priority: optional

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


[libfile-fcntllock-perl] branch fcntl-any created (now 80dafc6)

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to branch fcntl-any
in repository libfile-fcntllock-perl.

at  80dafc6   update changelog

This branch includes the following new commits:

   new  be80dd8   add small patch fixing a spelling error in POD
   new  043044f   add File::FcntlLock::Any module, trying ::XS, ::Pure and 
::Inline
   new  fbc164e   add myself to Uploaders
   new  a541fc4   put symlinks to ::Any, ::Pure and ::Inline in vendorlib 
(arch-indep)
   new  02ce30f   enable bindnow hardening build flags
   new  20f3bb4   denote ${perl:Depends} to Recommends
   new  9b52d7a   declare conformance with Policy 4.1.1
   new  80dafc6   update changelog

The 8 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/libfile-fcntllock-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


[libsql-statement-perl] branch pristine-tar updated (8ece944 -> 9d67039)

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a change to branch pristine-tar
in repository libsql-statement-perl.

  from  8ece944   pristine-tar data for 
libsql-statement-perl_1.410.orig.tar.gz
   new  9d67039   pristine-tar data for 
libsql-statement-perl_1.412.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:
 libsql-statement-perl_1.412.orig.tar.gz.delta | Bin 0 -> 2529 bytes
 libsql-statement-perl_1.412.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libsql-statement-perl_1.412.orig.tar.gz.delta
 create mode 100644 libsql-statement-perl_1.412.orig.tar.gz.id

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


[libsql-statement-perl] 01/01: pristine-tar data for libsql-statement-perl_1.412.orig.tar.gz

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch pristine-tar
in repository libsql-statement-perl.

commit 9d670395aed0ecbbadc3b7042bebc4970d9c8fbd
Author: Xavier Guimard 
Date:   Wed Oct 25 22:49:28 2017 +0200

pristine-tar data for libsql-statement-perl_1.412.orig.tar.gz
---
 libsql-statement-perl_1.412.orig.tar.gz.delta | Bin 0 -> 2529 bytes
 libsql-statement-perl_1.412.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libsql-statement-perl_1.412.orig.tar.gz.delta 
b/libsql-statement-perl_1.412.orig.tar.gz.delta
new file mode 100644
index 000..d461241
Binary files /dev/null and b/libsql-statement-perl_1.412.orig.tar.gz.delta 
differ
diff --git a/libsql-statement-perl_1.412.orig.tar.gz.id 
b/libsql-statement-perl_1.412.orig.tar.gz.id
new file mode 100644
index 000..47c922e
--- /dev/null
+++ b/libsql-statement-perl_1.412.orig.tar.gz.id
@@ -0,0 +1 @@
+9380f9e369d93af2980eb3b228ff40ec5f6a2412

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


[libsql-statement-perl] annotated tag upstream/1.412 created (now 3388b67)

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a change to annotated tag upstream/1.412
in repository libsql-statement-perl.

at  3388b67   (tag)
   tagging  8a1f9de26c94ca677b605a009a537259c39f61f2 (commit)
  replaces  upstream/1.410
 tagged by  Xavier Guimard
on  Wed Oct 25 22:49:28 2017 +0200

- Log -
Upstream version 1.412

Xavier Guimard (1):
  New upstream version 1.412

---

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/libsql-statement-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


[libsql-statement-perl] 08/08: Update d/ch

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libsql-statement-perl.

commit 8d992aa1d4ece4df517eed4d7e11198160443856
Author: Xavier Guimard 
Date:   Wed Oct 25 23:05:49 2017 +0200

Update d/ch
---
 debian/changelog | 13 +++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 7c72f77..37322e7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libsql-statement-perl (1.410-2) UNRELEASED; urgency=medium
+libsql-statement-perl (1.412-1) unstable; urgency=medium
 
   [ gregor herrmann ]
   * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
@@ -11,7 +11,16 @@ libsql-statement-perl (1.410-2) UNRELEASED; urgency=medium
   [ Alex Muntada ]
   * Remove inactive pkg-perl members from Uploaders.
 
- -- gregor herrmann   Fri, 20 May 2016 12:09:16 +0200
+  [ Xavier Guimard ]
+  * New upstream release
+  * Declare compliance with Debian Policy 4.1.1
+  * Update libtext-soundex-perl dependency
+  * Remove useless minimal dependency for libdbd-anydata-perl, libdbd-csv-perl
+and libdbi-perl
+  * Remove spelling errors patch
+  * Update debian/copyright years
+
+ -- Xavier Guimard   Wed, 25 Oct 2017 23:04:27 +0200
 
 libsql-statement-perl (1.410-1) unstable; urgency=medium
 

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


[libsql-statement-perl] 04/08: Remove minimal dependency for libdbd-csv-perl

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libsql-statement-perl.

commit b9b2a839cec031142d5bbe5c94f92f9f99b16b96
Author: Xavier Guimard 
Date:   Wed Oct 25 22:57:18 2017 +0200

Remove minimal dependency for libdbd-csv-perl
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index a6797bb..69ecb03 100644
--- a/debian/control
+++ b/debian/control
@@ -33,7 +33,7 @@ Recommends: libdbi-perl,
 libmath-base-convert-perl,
 libtext-soundex-perl | perl (<< 5.17.9),
 Breaks: libdbd-anydata-perl,
-libdbd-csv-perl (<< 0.3000),
+libdbd-csv-perl,
 libdbi-perl (<< 1.612)
 Description: module for parsing and processing SQL statements
  SQL::Statement is a Perl module that implements a small, abstract SQL engine.

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


[libsql-statement-perl] 07/08: Update d/copy years

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libsql-statement-perl.

commit 24f7402bbfdcbc5672510b571abbf44c1ed2e03a
Author: Xavier Guimard 
Date:   Wed Oct 25 23:01:52 2017 +0200

Update d/copy years
---
 debian/copyright | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index c34c2ec..edb77af 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -5,7 +5,7 @@ Upstream-Contact: Jens Rehsack 
 
 Files: *
 Copyright: 2001-2005, Jeff Zucker 
- 2007-2016, Jens Rehsack 
+ 2007-2017, Jens Rehsack 
  Portions Copyright 1998, Jochen Wiedmann 
 License: Artistic or GPL-1+
 
@@ -22,7 +22,7 @@ Copyright: 1998, Craig Sanders 
  2009-2010, Jonathan Yu 
  2010, Ansgar Burchardt 
  2010, Nathan Handler 
- 2013-2015, Xavier Guimard 
+ 2013-2017, Xavier Guimard 
 License: Artistic or GPL-1+
 
 License: Artistic

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


[libsql-statement-perl] 06/08: Remove spelling patch

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libsql-statement-perl.

commit 65c12cf091d54a2232d57cca5d4510307689fc15
Author: Xavier Guimard 
Date:   Wed Oct 25 23:00:56 2017 +0200

Remove spelling patch
---
 debian/patches/series |  1 -
 debian/patches/spelling.patch | 18 --
 2 files changed, 19 deletions(-)

diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 5299247..000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-spelling.patch
diff --git a/debian/patches/spelling.patch b/debian/patches/spelling.patch
deleted file mode 100644
index f0343c1..000
--- a/debian/patches/spelling.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Description: fix a spelling mistake in the POD
-Origin: vendor
-Author: gregor herrmann 
-Last-Update: 2016-05-06
-Forwarded: https://rt.cpan.org/Ticket/Display.html?id=114216
-Bug: https://rt.cpan.org/Ticket/Display.html?id=114216
-
 a/lib/SQL/Statement/Functions.pm
-+++ b/lib/SQL/Statement/Functions.pm
-@@ -479,7 +479,7 @@
- =head3 DECODE
- 
-  # purpose   : compare the first argument against
-- # succeding arguments at position 1 + 2N
-+ # succeeding arguments at position 1 + 2N
-  # (N = 0 to (# of arguments - 2)/2), and if equal,
-  #return the value of the argument at 1 + 2N + 1; 
if no
-  # arguments are equal, the last argument value is returned

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


[libsql-statement-perl] branch master updated (5c19276 -> 8d992aa)

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a change to branch master
in repository libsql-statement-perl.

  from  5c19276   update changelog
  adds  8a1f9de   New upstream version 1.412
   new  3913e4e   Update upstream source from tag 'upstream/1.412'
   new  ccf9c6c   Declare compliance with Debian Policy 4.1.1
   new  b2e8758   Remove minimal dependency for libdbd-anydata-perl
   new  b9b2a83   Remove minimal dependency for libdbd-csv-perl
   new  09d9a3f   Remove minimal dependency for libdbd-csv-perl
   new  65c12cf   Remove spelling patch
   new  24f7402   Update d/copy years
   new  8d992aa   Update d/ch

The 8 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  | 17 +++-
 MANIFEST |  3 ++
 META.json| 10 ++---
 META.yml |  6 +--
 Makefile.PL  |  4 +-
 debian/changelog | 13 ++-
 debian/control   | 12 +++---
 debian/copyright |  4 +-
 debian/patches/series|  1 -
 debian/patches/spelling.patch| 18 -
 lib/SQL/Dialects/ANSI.pm |  6 +--
 lib/SQL/Dialects/AnyData.pm  |  6 +--
 lib/SQL/Dialects/CSV.pm  |  6 +--
 lib/SQL/Dialects/Role.pm |  6 +--
 lib/SQL/Eval.pm  |  6 +--
 lib/SQL/Parser.pm| 84 
 lib/SQL/Statement.pm |  6 +--
 lib/SQL/Statement/Function.pm| 10 ++---
 lib/SQL/Statement/Functions.pm   |  8 ++--
 lib/SQL/Statement/GetInfo.pm |  6 +--
 lib/SQL/Statement/Operation.pm   |  6 +--
 lib/SQL/Statement/Placeholder.pm |  6 +--
 lib/SQL/Statement/RAM.pm |  6 +--
 lib/SQL/Statement/Term.pm|  6 +--
 lib/SQL/Statement/TermFactory.pm |  6 +--
 lib/SQL/Statement/Util.pm|  6 +--
 t/02execute.t|  4 +-
 t/{14parse.t => 15parse.t}   |  9 +
 t/16parse.t  | 53 +
 t/99backtick.t   | 74 +++
 30 files changed, 270 insertions(+), 138 deletions(-)
 delete mode 100644 debian/patches/series
 delete mode 100644 debian/patches/spelling.patch
 copy t/{14parse.t => 15parse.t} (72%)
 create mode 100644 t/16parse.t
 create mode 100644 t/99backtick.t

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


[libsql-statement-perl] 02/08: Declare compliance with Debian Policy 4.1.1

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libsql-statement-perl.

commit ccf9c6c3eefbe610492e0623612ee9b4a5c22461
Author: Xavier Guimard 
Date:   Wed Oct 25 22:52:15 2017 +0200

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

diff --git a/debian/control b/debian/control
index 0c19c4e..bdfa3b5 100644
--- a/debian/control
+++ b/debian/control
@@ -17,7 +17,7 @@ Build-Depends-Indep: libclone-perl,
  libtest-pod-perl,
  libtext-soundex-perl | perl (<< 5.17.0),
  perl
-Standards-Version: 3.9.8
+Standards-Version: 4.1.1
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libsql-statement-perl.git
 Vcs-Git: 
https://anonscm.debian.org/git/pkg-perl/packages/libsql-statement-perl.git
 Homepage: https://metacpan.org/release/SQL-Statement

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


[libsql-statement-perl] 01/08: Update upstream source from tag 'upstream/1.412'

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libsql-statement-perl.

commit 3913e4eb4eefbe3744d960e3bcd8d022e82998e8
Merge: 5c19276 8a1f9de
Author: Xavier Guimard 
Date:   Wed Oct 25 22:49:28 2017 +0200

Update upstream source from tag 'upstream/1.412'

Update to upstream version '1.412'
with Debian dir 2901db0b71498c7fa0a2bdc4432425585ab32b76

 Changes  | 17 +++-
 MANIFEST |  3 ++
 META.json| 10 ++---
 META.yml |  6 +--
 Makefile.PL  |  4 +-
 lib/SQL/Dialects/ANSI.pm |  6 +--
 lib/SQL/Dialects/AnyData.pm  |  6 +--
 lib/SQL/Dialects/CSV.pm  |  6 +--
 lib/SQL/Dialects/Role.pm |  6 +--
 lib/SQL/Eval.pm  |  6 +--
 lib/SQL/Parser.pm| 84 
 lib/SQL/Statement.pm |  6 +--
 lib/SQL/Statement/Function.pm| 10 ++---
 lib/SQL/Statement/Functions.pm   |  8 ++--
 lib/SQL/Statement/GetInfo.pm |  6 +--
 lib/SQL/Statement/Operation.pm   |  6 +--
 lib/SQL/Statement/Placeholder.pm |  6 +--
 lib/SQL/Statement/RAM.pm |  6 +--
 lib/SQL/Statement/Term.pm|  6 +--
 lib/SQL/Statement/TermFactory.pm |  6 +--
 lib/SQL/Statement/Util.pm|  6 +--
 t/02execute.t|  4 +-
 t/15parse.t  | 41 
 t/16parse.t  | 53 +
 t/99backtick.t   | 74 +++
 25 files changed, 291 insertions(+), 101 deletions(-)

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


[libsql-statement-perl] 03/08: Remove minimal dependency for libdbd-anydata-perl

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libsql-statement-perl.

commit b2e875888349fd1dc242b1a39d8ee5c6dde329b3
Author: Xavier Guimard 
Date:   Wed Oct 25 22:56:26 2017 +0200

Remove minimal dependency for libdbd-anydata-perl
---
 debian/control | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/debian/control b/debian/control
index bdfa3b5..a6797bb 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,7 @@ Build-Depends-Indep: libclone-perl,
  libtest-deep-perl,
  libtest-pod-coverage-perl,
  libtest-pod-perl,
- libtext-soundex-perl | perl (<< 5.17.0),
+ libtext-soundex-perl | perl (<< 5.17.9),
  perl
 Standards-Version: 4.1.1
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libsql-statement-perl.git
@@ -31,8 +31,8 @@ Depends: ${misc:Depends},
  libparams-util-perl
 Recommends: libdbi-perl,
 libmath-base-convert-perl,
-libtext-soundex-perl | perl (<< 5.17.0)
-Breaks: libdbd-anydata-perl (<< 0.10),
+libtext-soundex-perl | perl (<< 5.17.9),
+Breaks: libdbd-anydata-perl,
 libdbd-csv-perl (<< 0.3000),
 libdbi-perl (<< 1.612)
 Description: module for parsing and processing SQL statements

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


[libsql-statement-perl] 05/08: Remove minimal dependency for libdbd-csv-perl

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libsql-statement-perl.

commit 09d9a3f271f05ccf7a2d2112d74689943125c4cd
Author: Xavier Guimard 
Date:   Wed Oct 25 22:58:07 2017 +0200

Remove minimal dependency for libdbd-csv-perl
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 69ecb03..39327e0 100644
--- a/debian/control
+++ b/debian/control
@@ -34,7 +34,7 @@ Recommends: libdbi-perl,
 libtext-soundex-perl | perl (<< 5.17.9),
 Breaks: libdbd-anydata-perl,
 libdbd-csv-perl,
-libdbi-perl (<< 1.612)
+libdbi-perl
 Description: module for parsing and processing SQL statements
  SQL::Statement is a Perl module that implements a small, abstract SQL engine.
  This module is not useful itself, but as a base class for deriving concrete

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


[libsql-abstract-perl] branch master updated (e1e019a -> f54edfd)

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a change to branch master
in repository libsql-abstract-perl.

  from  e1e019a   Update d/ch
   new  f54edfd   Update d/copy years

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/copyright | 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/libsql-abstract-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


[libsql-abstract-perl] 01/01: Update d/copy years

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libsql-abstract-perl.

commit f54edfd9f9edee5c848ca5624d5e1b821d834094
Author: Xavier Guimard 
Date:   Wed Oct 25 22:48:01 2017 +0200

Update d/copy years
---
 debian/changelog | 1 +
 debian/copyright | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 86334d2..d80b002 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -20,6 +20,7 @@ libsql-abstract-perl (1.84-1) unstable; urgency=medium
   * Remove Module::Install entry in debian/copyright
   * Add spelling errors patch (reported)
   * Bump debian/compat to 9
+  * Update debian/copyright years
 
  -- Xavier Guimard   Wed, 25 Oct 2017 22:42:39 +0200
 
diff --git a/debian/copyright b/debian/copyright
index f698da7..8e89e2a 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -24,7 +24,7 @@ Copyright:
  2009, Krzysztof Krzyżaniak (eloy) 
  2009-2014, gregor herrmann 
  2010, Nicholas Bamber 
- 2012-2013, Xavier Guimard 
+ 2012-2017, Xavier Guimard 
 License: Artistic or GPL-1+
 
 License: Artistic

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

[libsql-abstract-perl] 01/09: Update upstream source from tag 'upstream/1.84'

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libsql-abstract-perl.

commit 34c91d2375cfb300caa02f0f270803f0ad517666
Merge: 78d6202 e19c77d
Author: Xavier Guimard 
Date:   Wed Oct 25 22:19:55 2017 +0200

Update upstream source from tag 'upstream/1.84'

Update to upstream version '1.84'
with Debian dir 88c34a6eea2adf50841e00797bc7436748938a55

 Changes   |   20 +
 MANIFEST  |   19 +-
 META.json |   78 ++
 META.yml  |   44 +-
 Makefile.PL   |  125 +++-
 README| 1433 +
 inc/Module/AutoInstall.pm |  930 
 inc/Module/Install.pm |  470 
 inc/Module/Install/AutoInstall.pm |   93 ---
 inc/Module/Install/Base.pm|   83 ---
 inc/Module/Install/Can.pm |  154 
 inc/Module/Install/Fetch.pm   |   93 ---
 inc/Module/Install/Include.pm |   34 -
 inc/Module/Install/Makefile.pm|  418 ---
 inc/Module/Install/Metadata.pm|  722 ---
 inc/Module/Install/Win32.pm   |   64 --
 inc/Module/Install/WriteAll.pm|   63 --
 lib/SQL/Abstract.pm   |  274 ---
 lib/SQL/Abstract/Tree.pm  |   28 +-
 maint/Makefile.PL.include |   10 +
 t/01generate.t|   50 +-
 t/06order_by.t|4 +-
 t/14roundtrippin.t|2 +
 xt/90pod.t|9 +
 xt/91podcoverage.t|   54 ++
 xt/92whitespace.t |   54 ++
 26 files changed, 2005 insertions(+), 3323 deletions(-)

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


[libsql-abstract-perl] 05/09: Update debhelper version

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libsql-abstract-perl.

commit eca6590219e29210d0fc23133d57d14ca820e03b
Author: Xavier Guimard 
Date:   Wed Oct 25 22:30:38 2017 +0200

Update debhelper version
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index c759e5c..48d5f6c 100644
--- a/debian/control
+++ b/debian/control
@@ -6,7 +6,7 @@ Uploaders: gregor herrmann ,
 Section: perl
 Testsuite: autopkgtest-pkg-perl
 Priority: optional
-Build-Depends: debhelper (>= 8)
+Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: libhash-merge-perl,
  libmoo-perl (>= 1.004002),
  libsub-quote-perl,

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


[libsql-abstract-perl] branch master updated (78d6202 -> e1e019a)

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a change to branch master
in repository libsql-abstract-perl.

  from  78d6202   update changelog
  adds  e19c77d   New upstream version 1.84
   new  34c91d2   Update upstream source from tag 'upstream/1.84'
   new  d9e9917   Add Sub::Quote in deps
   new  9c51d1a   Declare compliance with Debian Policy 4.1.1
   new  1489d55   Remove minimal version for libtest-exception-perl
   new  eca6590   Update debhelper version
   new  8cb1434   Remove Module::Install entry
   new  494995c   Add spelling errors patch (reported)
   new  e30ef54   Bump debian/compat to 9
   new  e1e019a   Update d/ch

The 9 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  |   20 +
 MANIFEST |   19 +-
 META.json|   78 ++
 META.yml |   44 +-
 Makefile.PL  |  125 ++-
 README   | 1433 ++
 debian/changelog |   14 +-
 debian/compat|2 +-
 debian/control   |7 +-
 debian/copyright |6 -
 debian/patches/series|1 +
 debian/patches/spelling-errors.patch |   34 +
 inc/Module/AutoInstall.pm|  930 --
 inc/Module/Install.pm|  470 ---
 inc/Module/Install/AutoInstall.pm|   93 ---
 inc/Module/Install/Base.pm   |   83 --
 inc/Module/Install/Can.pm|  154 
 inc/Module/Install/Fetch.pm  |   93 ---
 inc/Module/Install/Include.pm|   34 -
 inc/Module/Install/Makefile.pm   |  418 --
 inc/Module/Install/Metadata.pm   |  722 -
 inc/Module/Install/Win32.pm  |   64 --
 inc/Module/Install/WriteAll.pm   |   63 --
 lib/SQL/Abstract.pm  |  274 ---
 lib/SQL/Abstract/Tree.pm |   28 +-
 maint/Makefile.PL.include|   10 +
 t/01generate.t   |   50 +-
 t/06order_by.t   |4 +-
 t/14roundtrippin.t   |2 +
 xt/90pod.t   |9 +
 xt/91podcoverage.t   |   54 ++
 xt/92whitespace.t|   54 ++
 32 files changed, 2057 insertions(+), 3335 deletions(-)
 create mode 100644 META.json
 create mode 100644 README
 create mode 100644 debian/patches/series
 create mode 100644 debian/patches/spelling-errors.patch
 delete mode 100644 inc/Module/AutoInstall.pm
 delete mode 100644 inc/Module/Install.pm
 delete mode 100644 inc/Module/Install/AutoInstall.pm
 delete mode 100644 inc/Module/Install/Base.pm
 delete mode 100644 inc/Module/Install/Can.pm
 delete mode 100644 inc/Module/Install/Fetch.pm
 delete mode 100644 inc/Module/Install/Include.pm
 delete mode 100644 inc/Module/Install/Makefile.pm
 delete mode 100644 inc/Module/Install/Metadata.pm
 delete mode 100644 inc/Module/Install/Win32.pm
 delete mode 100644 inc/Module/Install/WriteAll.pm
 create mode 100644 maint/Makefile.PL.include
 create mode 100644 xt/90pod.t
 create mode 100644 xt/91podcoverage.t
 create mode 100644 xt/92whitespace.t

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


[libsql-abstract-perl] 01/01: pristine-tar data for libsql-abstract-perl_1.84.orig.tar.gz

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch pristine-tar
in repository libsql-abstract-perl.

commit ef63adfd73aaed3f71103bf8cada6834c4c1d4bd
Author: Xavier Guimard 
Date:   Wed Oct 25 22:19:55 2017 +0200

pristine-tar data for libsql-abstract-perl_1.84.orig.tar.gz
---
 libsql-abstract-perl_1.84.orig.tar.gz.delta | Bin 0 -> 2644 bytes
 libsql-abstract-perl_1.84.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libsql-abstract-perl_1.84.orig.tar.gz.delta 
b/libsql-abstract-perl_1.84.orig.tar.gz.delta
new file mode 100644
index 000..f933eab
Binary files /dev/null and b/libsql-abstract-perl_1.84.orig.tar.gz.delta differ
diff --git a/libsql-abstract-perl_1.84.orig.tar.gz.id 
b/libsql-abstract-perl_1.84.orig.tar.gz.id
new file mode 100644
index 000..9fc9032
--- /dev/null
+++ b/libsql-abstract-perl_1.84.orig.tar.gz.id
@@ -0,0 +1 @@
+0bf4418480b136a435a90a4d8b0e5f76e72f60eb

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


[libsql-abstract-perl] annotated tag upstream/1.84 created (now a496e67)

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a change to annotated tag upstream/1.84
in repository libsql-abstract-perl.

at  a496e67   (tag)
   tagging  e19c77d24f30e4c4b8d3fa9be650a5e86a1d76ab (commit)
  replaces  upstream/1.81
 tagged by  Xavier Guimard
on  Wed Oct 25 22:19:55 2017 +0200

- Log -
Upstream version 1.84

Xavier Guimard (1):
  New upstream version 1.84

---

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/libsql-abstract-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


[libsql-abstract-perl] 02/09: Add Sub::Quote in deps

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libsql-abstract-perl.

commit d9e9917b29a58ced8b605065d8952cdc024520f7
Author: Xavier Guimard 
Date:   Wed Oct 25 22:22:35 2017 +0200

Add Sub::Quote in deps
---
 debian/control | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/control b/debian/control
index 4341d20..4de5099 100644
--- a/debian/control
+++ b/debian/control
@@ -9,6 +9,7 @@ Priority: optional
 Build-Depends: debhelper (>= 8)
 Build-Depends-Indep: libhash-merge-perl,
  libmoo-perl (>= 1.004002),
+ libsub-quote-perl,
  libtest-deep-perl,
  libtest-exception-perl (>= 0.31),
  libtest-warn-perl,

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


[libsql-abstract-perl] 08/09: Bump debian/compat to 9

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libsql-abstract-perl.

commit e30ef5488f2a91cd6ceb0faf66100f99fe7b0cb5
Author: Xavier Guimard 
Date:   Wed Oct 25 22:42:18 2017 +0200

Bump debian/compat to 9
---
 debian/compat | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/compat b/debian/compat
index 45a4fb7..ec63514 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-8
+9

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


[libsql-abstract-perl] 07/09: Add spelling errors patch (reported)

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libsql-abstract-perl.

commit 494995c0e7e65ede7648e4ad622ba42c39e4e9f8
Author: Xavier Guimard 
Date:   Wed Oct 25 22:41:09 2017 +0200

Add spelling errors patch (reported)
---
 debian/patches/series|  1 +
 debian/patches/spelling-errors.patch | 34 ++
 2 files changed, 35 insertions(+)

diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..38edaa7
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+spelling-errors.patch
diff --git a/debian/patches/spelling-errors.patch 
b/debian/patches/spelling-errors.patch
new file mode 100644
index 000..89e70f2
--- /dev/null
+++ b/debian/patches/spelling-errors.patch
@@ -0,0 +1,34 @@
+Description: Spelling errors
+Author: Xavier Guimard 
+Forwarded: https://github.com/dbsrgits/sql-abstract/pull/11
+Last-Update: 2017-10-25
+
+--- a/lib/SQL/Abstract.pm
 b/lib/SQL/Abstract.pm
+@@ -2017,7 +2017,7 @@
+ character itself.
+ 
+ When opening-closing-style quoting is used (L is an arrayref)
+-this parameter defaults to the B L. Occurences
++this parameter defaults to the B L. Occurrences
+ of the B L within the identifier are currently 
left
+ untouched. The default for opening-closing-style quotes may change in future
+ versions, thus you are B to specify the escape character
+@@ -2250,7 +2250,7 @@
+ 
+ =back
+ 
+-On failure returns C, on sucess returns a B reference
++On failure returns C, on success returns a B reference
+ to the original supplied argument.
+ 
+ =over
+@@ -2308,7 +2308,7 @@
+ 
+ =back
+ 
+-On failure returns C, on sucess returns an B reference
++On failure returns C, on success returns an B reference
+ containing the unpacked version of the supplied literal SQL and bind values.
+ 
+ =head1 WHERE CLAUSES

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


[libsql-abstract-perl] 06/09: Remove Module::Install entry

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libsql-abstract-perl.

commit 8cb1434cbeb5332184b27af4db5f3646b738a198
Author: Xavier Guimard 
Date:   Wed Oct 25 22:32:17 2017 +0200

Remove Module::Install entry
---
 debian/copyright | 6 --
 1 file changed, 6 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index 2f76187..f698da7 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -15,12 +15,6 @@ Files: examples/sqla-format
 Copyright: 2014, Arthur Axel "fREW" Schmidt
 License: Artistic or GPL-1+
 
-Files: inc/Module/*
-Copyright: 2002-2012, Adam Kennedy 
- 2002-2012, Audrey Tang 
- 2002-2012, Brian Ingerson 
-License: Artistic or GPL-1+
-
 Files: debian/*
 Copyright:
  2003-2006, Stephen Quinney 

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


[libsql-abstract-perl] 04/09: Remove minimal version for libtest-exception-perl

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libsql-abstract-perl.

commit 1489d55b7872d4e566786ec9242213e5d4532d20
Author: Xavier Guimard 
Date:   Wed Oct 25 22:26:49 2017 +0200

Remove minimal version for libtest-exception-perl
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 9d11a39..c759e5c 100644
--- a/debian/control
+++ b/debian/control
@@ -11,7 +11,7 @@ Build-Depends-Indep: libhash-merge-perl,
  libmoo-perl (>= 1.004002),
  libsub-quote-perl,
  libtest-deep-perl,
- libtest-exception-perl (>= 0.31),
+ libtest-exception-perl,
  libtest-warn-perl,
  perl
 Standards-Version: 4.1.1

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


[libsql-abstract-perl] 03/09: Declare compliance with Debian Policy 4.1.1

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libsql-abstract-perl.

commit 9c51d1ac2764b4a131bd3ea9f5b70569805f9612
Author: Xavier Guimard 
Date:   Wed Oct 25 22:25:39 2017 +0200

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

diff --git a/debian/control b/debian/control
index 4de5099..9d11a39 100644
--- a/debian/control
+++ b/debian/control
@@ -14,7 +14,7 @@ Build-Depends-Indep: libhash-merge-perl,
  libtest-exception-perl (>= 0.31),
  libtest-warn-perl,
  perl
-Standards-Version: 3.9.6
+Standards-Version: 4.1.1
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libsql-abstract-perl.git
 Vcs-Git: 
https://anonscm.debian.org/git/pkg-perl/packages/libsql-abstract-perl.git
 Homepage: https://metacpan.org/release/SQL-Abstract

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


[libsql-abstract-perl] 09/09: Update d/ch

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libsql-abstract-perl.

commit e1e019a0d3791b32cd838658adc5dc3cad35eb2d
Author: Xavier Guimard 
Date:   Wed Oct 25 22:42:58 2017 +0200

Update d/ch
---
 debian/changelog | 14 --
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 3e10698..86334d2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libsql-abstract-perl (1.81-2) UNRELEASED; urgency=medium
+libsql-abstract-perl (1.84-1) unstable; urgency=medium
 
   [ Salvatore Bonaccorso ]
   * debian/control: Use HTTPS transport protocol for Vcs-Git URI
@@ -11,7 +11,17 @@ libsql-abstract-perl (1.81-2) UNRELEASED; urgency=medium
   [ Alex Muntada ]
   * Remove inactive pkg-perl members from Uploaders.
 
- -- Salvatore Bonaccorso   Sat, 30 Jan 2016 20:06:29 +0100
+  [ Xavier Guimard ]
+  * New upstream version
+  * Add libsub-quote-perl in dependencies
+  * Declare compliance with Debian Policy 4.1.1
+  * Remove minimal version for libtest-exception-perl
+  * Update debhelper version in dependencies
+  * Remove Module::Install entry in debian/copyright
+  * Add spelling errors patch (reported)
+  * Bump debian/compat to 9
+
+ -- Xavier Guimard   Wed, 25 Oct 2017 22:42:39 +0200
 
 libsql-abstract-perl (1.81-1) unstable; urgency=medium
 

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


[libsql-abstract-perl] branch pristine-tar updated (990bac0 -> ef63adf)

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a change to branch pristine-tar
in repository libsql-abstract-perl.

  from  990bac0   pristine-tar data for 
libsql-abstract-perl_1.81.orig.tar.gz
   new  ef63adf   pristine-tar data for 
libsql-abstract-perl_1.84.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:
 libsql-abstract-perl_1.84.orig.tar.gz.delta | Bin 0 -> 2644 bytes
 libsql-abstract-perl_1.84.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libsql-abstract-perl_1.84.orig.tar.gz.delta
 create mode 100644 libsql-abstract-perl_1.84.orig.tar.gz.id

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


[lemonldap-ng] 03/04: Import upstream patch for JS error

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository lemonldap-ng.

commit 3f6e10b20d3e922c69cc916c2a51cabdd723b787
Author: Xavier Guimard 
Date:   Wed Oct 25 21:47:15 2017 +0200

Import upstream patch for JS error
---
 debian/patches/javascript-typo.patch | 20 
 debian/patches/series|  1 +
 2 files changed, 21 insertions(+)

diff --git a/debian/patches/javascript-typo.patch 
b/debian/patches/javascript-typo.patch
new file mode 100644
index 000..6458ddf
--- /dev/null
+++ b/debian/patches/javascript-typo.patch
@@ -0,0 +1,20 @@
+Description: Fix for little javascript error
+ Import upstream patch to fix an error with Form replay feature (javascript
+ generates error for fields with a dot)
+Author: Xavier Guimard 
+Origin: upstream
+Bug: https://jira.ow2.org/browse/LEMONLDAP-1310
+Forwarded: no
+Last-Update: 2017-10-25
+
+--- 
lemonldap-ng-1.9.13.orig/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main.pm
 lemonldap-ng-1.9.13/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main.pm
+@@ -745,7 +745,7 @@ sub postJavascript {
+ use bytes;
+ my $value = "x" x bytes::length( $data->{$name} );
+ $filler .=
+-"form.find('input[name=$name], select[name=$name], 
textarea[name=$name]').val('$value')\n";
++"form.find('input[name=\"$name\"], select[name=\"$name\"], 
textarea[name=\"$name\"]').val('$value')\n";
+ }
+ 
+ my $submitter =
diff --git a/debian/patches/series b/debian/patches/series
index 661cd37..d01d9cd 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -2,3 +2,4 @@ javascript-path.patch
 avoid-modify-sources.patch
 replace-mouse-by-moose.patch
 Avoid-developer-tests.patch
+javascript-typo.patch

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


[lemonldap-ng] 02/04: Remove Authen::Captcha patch

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository lemonldap-ng.

commit 4a27d3850b368f43358435dae026ff84a4d96b32
Author: Xavier Guimard 
Date:   Wed Oct 25 21:36:10 2017 +0200

Remove Authen::Captcha patch
---
 debian/patches/disable-captcha-test.patch | 15 ---
 debian/patches/series |  1 -
 2 files changed, 16 deletions(-)

diff --git a/debian/patches/disable-captcha-test.patch 
b/debian/patches/disable-captcha-test.patch
deleted file mode 100644
index c2f841f..000
--- a/debian/patches/disable-captcha-test.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Description: Disable Captcha test
- Authen::Captcha fails randomly, so this test fails.
-Author: Xavier Guimard 
-Bug-Debian: https://bugs.debian.org/875627
-Forwarded: https://bugs.debian.org/875627
-Last-Update: 2017-09-12
-
 
lemonldap-ng-1.9.12.orig/lemonldap-ng-portal/t/66-Lemonldap-NG-Portal-Captcha.t
-+++ lemonldap-ng-1.9.12/lemonldap-ng-portal/t/66-Lemonldap-NG-Portal-Captcha.t
-@@ -1,4 +1,4 @@
--use Test::More tests => 5;
-+use Test::More skip_all => 'Disable due to Authen::Captcha bug (#875627)';
- 
- BEGIN {
- use_ok("Lemonldap::NG::Portal::Simple");
diff --git a/debian/patches/series b/debian/patches/series
index 2dc2c2b..661cd37 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -2,4 +2,3 @@ javascript-path.patch
 avoid-modify-sources.patch
 replace-mouse-by-moose.patch
 Avoid-developer-tests.patch
-disable-captcha-test.patch

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


[lemonldap-ng] 01/04: Fix Authen::Captcha/libpng version to workaround #875627

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository lemonldap-ng.

commit 77c151c40f8bb9e70b017ef695adfbb2503d27fc
Author: Xavier Guimard 
Date:   Wed Oct 25 21:35:34 2017 +0200

Fix Authen::Captcha/libpng version to workaround #875627
---
 debian/control | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/debian/control b/debian/control
index 9094763..de34b51 100644
--- a/debian/control
+++ b/debian/control
@@ -8,6 +8,7 @@ Build-Depends: debhelper (>= 9.20160709),
 Build-Depends-Indep: libapache-session-perl,
  libauthcas-perl,
  libauthen-captcha-perl,
+ libauthen-captcha-perl (>= 1.024-2) | libpng16-16 (<< 
1.6.32-1) | libpng12-0,
  libcache-cache-perl,
  libcgi-pm-perl,
  libclone-perl,
@@ -288,6 +289,7 @@ Recommends: libjs-bootstrap,
 libwww-perl
 Suggests: libauthcas-perl,
   libauthen-captcha-perl,
+  libauthen-captcha-perl (>= 1.024-2) | libpng16-16 (<< 1.6.32-1) | 
libpng12-0,
   libdbi-perl,
   libglib-perl,
   liblasso-perl,

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


[lemonldap-ng] 04/04: Update d/ch

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository lemonldap-ng.

commit 3691b557aa2d6acc86c1c98e06ffb4514f70aa63
Author: Xavier Guimard 
Date:   Wed Oct 25 21:50:23 2017 +0200

Update d/ch
---
 debian/changelog | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index b6ec9dd..638a01f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,16 @@
-lemonldap-ng (1.9.13-2) UNRELEASED; urgency=medium
+lemonldap-ng (1.9.13-2) unstable; urgency=medium
 
   * Add libmouse-perl in liblemonldap-ng-common-perl recommended dependencies
 since command-line configuration client uses it.
 See https://jira.ow2.org/browse/LEMONLDAP-1315
   * Remove liblemonldap-ng-conf-perl transional package (introduced in Jessie)
+  * Remove patch that disable captcha test
+  * Add minimal version to libauthen-captcha-perl or use old libpng to
+workaround libauthen-captcha-perl bug (#875627)
+  * Import upstream little fix for "Form replay" feature (JS error when field
+contains a dot)
 
- -- Xavier Guimard   Fri, 13 Oct 2017 11:47:16 +0200
+ -- Xavier Guimard   Wed, 25 Oct 2017 21:48:12 +0200
 
 lemonldap-ng (1.9.13-1) unstable; urgency=medium
 

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


[lemonldap-ng] branch master updated (eadbeeb -> 3691b55)

2017-10-25 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a change to branch master
in repository lemonldap-ng.

  from  eadbeeb   Remove liblemonldap-ng-conf-perl transional package 
(introduced in Jessie)
   new  77c151c   Fix Authen::Captcha/libpng version to workaround #875627
   new  4a27d38   Remove Authen::Captcha patch
   new  3f6e10b   Import upstream patch for JS error
   new  3691b55   Update d/ch

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  |  9 +++--
 debian/control|  2 ++
 debian/patches/disable-captcha-test.patch | 15 ---
 debian/patches/javascript-typo.patch  | 20 
 debian/patches/series |  2 +-
 5 files changed, 30 insertions(+), 18 deletions(-)
 delete mode 100644 debian/patches/disable-captcha-test.patch
 create mode 100644 debian/patches/javascript-typo.patch

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


[libtext-csv-xs-perl] 04/04: releasing package libtext-csv-xs-perl version 1.33-1

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libtext-csv-xs-perl.

commit ade786b627e66d5c462ab346411df6abcc90e706
Author: Damyan Ivanov 
Date:   Wed Oct 25 13:56:46 2017 +

releasing package libtext-csv-xs-perl version 1.33-1
---
 debian/changelog | 10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 7aa945b..de3a183 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,14 @@
-libtext-csv-xs-perl (1.26-2) UNRELEASED; urgency=medium
+libtext-csv-xs-perl (1.33-1) unstable; urgency=medium
 
+  [ Alex Muntada ]
   * Remove inactive pkg-perl members from Uploaders.
 
- -- Alex Muntada   Sun, 08 Oct 2017 17:35:16 +0200
+  [ Damyan Ivanov ]
+  * New upstream version 1.33
+  * update years of upstream copyright
+  * declare conformance with Policy 4.1.1 (no changes needed)
+
+ -- Damyan Ivanov   Wed, 25 Oct 2017 13:54:05 +
 
 libtext-csv-xs-perl (1.26-1) unstable; urgency=medium
 

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


[libtext-csv-xs-perl] 01/01: pristine-tar data for libtext-csv-xs-perl_1.33.orig.tar.gz

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch pristine-tar
in repository libtext-csv-xs-perl.

commit 2700f223bd48f2e3eea17ab10eafddb11d5ab190
Author: Damyan Ivanov 
Date:   Wed Oct 25 13:44:55 2017 +

pristine-tar data for libtext-csv-xs-perl_1.33.orig.tar.gz
---
 libtext-csv-xs-perl_1.33.orig.tar.gz.delta | Bin 0 -> 2488 bytes
 libtext-csv-xs-perl_1.33.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libtext-csv-xs-perl_1.33.orig.tar.gz.delta 
b/libtext-csv-xs-perl_1.33.orig.tar.gz.delta
new file mode 100644
index 000..2e3e1a3
Binary files /dev/null and b/libtext-csv-xs-perl_1.33.orig.tar.gz.delta differ
diff --git a/libtext-csv-xs-perl_1.33.orig.tar.gz.id 
b/libtext-csv-xs-perl_1.33.orig.tar.gz.id
new file mode 100644
index 000..5b3b10b
--- /dev/null
+++ b/libtext-csv-xs-perl_1.33.orig.tar.gz.id
@@ -0,0 +1 @@
+c64323cfba37b306dbb8c1d4f2345980f3f50899

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


[libtext-csv-xs-perl] branch pristine-tar updated (f4ec156 -> 2700f22)

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to branch pristine-tar
in repository libtext-csv-xs-perl.

  from  f4ec156   pristine-tar data for libtext-csv-xs-perl_1.26.orig.tar.gz
   new  2700f22   pristine-tar data for libtext-csv-xs-perl_1.33.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:
 libtext-csv-xs-perl_1.33.orig.tar.gz.delta | Bin 0 -> 2488 bytes
 libtext-csv-xs-perl_1.33.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libtext-csv-xs-perl_1.33.orig.tar.gz.delta
 create mode 100644 libtext-csv-xs-perl_1.33.orig.tar.gz.id

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


[libtext-csv-xs-perl] annotated tag upstream/1.33 created (now b3ef75a)

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag upstream/1.33
in repository libtext-csv-xs-perl.

at  b3ef75a   (tag)
   tagging  c8aa47143652b888ea6cf167cd6d961b17cadd2d (commit)
  replaces  upstream/1.26
 tagged by  Damyan Ivanov
on  Wed Oct 25 13:44:55 2017 +

- Log -
Upstream version 1.33

Damyan Ivanov (1):
  New upstream version 1.33

---

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/libtext-csv-xs-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


[libtext-csv-xs-perl] annotated tag debian/1.33-1 created (now e06c060)

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag debian/1.33-1
in repository libtext-csv-xs-perl.

at  e06c060   (tag)
   tagging  ade786b627e66d5c462ab346411df6abcc90e706 (commit)
  replaces  upstream/1.33
 tagged by  Damyan Ivanov
on  Wed Oct 25 13:56:46 2017 +

- Log -
tagging package libtext-csv-xs-perl version debian/1.33-1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEErqDETssFbpNjDZ0z276dTZnSoAQFAlnwmB4ACgkQ276dTZnS
oARYBQ/9E6Sk2Y7leAIkiAzvorS0u1oaPGAYEzbHAi/oF143uydBmOHQWa1u01aQ
cXlHtcVK/pFu+Dr6CGRh0Cx6k2a5ETQed4yt9qiolGUu/wL9q8Rd+kqi3IkcaR6C
zfmqUBvY9VdbHfQiyCRA20ynbSUr0TobV340LTR+Wvp/g94d1CYNplZH84WCmD62
B1s3cgdU2qRlTFCOprv34zXgawt/dyKUg2Y/upgLu9+cHEm1yumyLeReKlvRO/YJ
JItKDAC8PZaFqhRgBzVJDrC9riGM2xRMqiTNN6lBhu1OReleEF/ZxTIK2X4TEP3E
LiBZS4W+iTm3qBnpsrp47ihjPGTjGq69dgdbUlqgYDeMbERLDkcVVXHFVys+GXwj
5MG7KN3588dWaZjInnlWYz7gIQWd7h8k2cWQJ3zgzpLOOKi6Krd3rccQ3Rww1kfg
/lHhYmxhR++7/bXlWk6KDBHtn3Onsze1/IqjID7p9A7KtMyBhAlznkz3wvtLAhdW
LnDxWYKN4FaePiGjK0havcI4Uav382OVasR/nJeYvGRKrbf50yaoCO0gbKUGJP+G
pqAGKcd5PIexiwLdA6UqN6thRDD+teQIMf+yA3dadzVMIE/oCET5RHkmb06x6uq2
9kLRQ3s0QO3nsFNomXj2kfs5QCsajfhFj4mhZAOKXAohtReJPG4=
=ujs4
-END PGP SIGNATURE-

Alex Muntada (2):
  Remove inactive pkg-perl members from Uploaders.
  update changelog

Ansgar Burchardt (26):
  * New upstream release.
  New upstream release.
  Fix typo in debian/copyright.
  New upstream release.
  New upstream release.
  New upstream release.
  * New upstream release
  dch -r
  * New upstream release
  IGNORE-VERSION: 0.73-1
  * New upstream release.
  * New upstream release.
  IGNORE-VERSION: 0.76-1
  New upstream release.
  IGNORE-VERSION: 0.82-1
  debian/control: Convert Vcs-* fields to Git.
  Merge commit 'upstream/0.86'
  * New upstream release.
  Imported Upstream version 0.87
  Bumped Standards-Version to 3.9.3.
  Use debhelper compat level 9.
  Use copyright format 1.0.
  changelog for 0.87-1
  Merge tag 'upstream/0.87'
  Merge branch 'upstream'
  changelog for 0.88-1

Axel Beckert (1):
  Remove trailing whitespace

Damyan Ivanov (10):
  New upstream release
  releasing version 0.54-1
  Merge commit 'upstream/0.82'
  Merge tag 'upstream/1.11'
  Add debian/upstream/metadata
  releasing package libtext-csv-xs-perl version 1.11-1
  Update upstream source from tag 'upstream/1.33'
  update years of upstream copyright
  declare conformance with Policy 4.1.1 (no changes needed)
  releasing package libtext-csv-xs-perl version 1.33-1

Franck Joncourt (2):
  Integrating new upstream version into trunk
  Refreshed packaging:

Gregor Herrmann (21):
  minor changes to README.Debian
  remove dh_installman from debian/rules, not needed
  don't install README, no useful information for users; don't list 
README.debian, it gets installed automatically by dh_installdocs
  New upstream release.
  Drop patch 03_pod.patch (adding a section about 'binary' and UTF-8 to the
  releasing version 0.51-1
  New upstream release.
  releasing version 0.52-1
  [mass commit] switch Vcs-Browser from from WebSVN to ViewSVN
  New upstream release.
  debian/copyright: update years of upstream, third-party and packaging
  releasing version 0.59-1
  New upstream release.
  releasing version 0.60-1
  back to UNRELEASED, QUESTION added to changelog
  New upstream release.
  releasing version 0.70-1
  * Refresh patch (offset) and patch headers.
  releasing version 0.73-1
  Set Standards-Version to 3.9.1; replace Conflicts with Breaks.
  update ryan's email address

Gunnar Wolf (1):
  Removing myself as an uploader from all packages which have other human 
uploaders (2nd batch)

Jonathan Yu (12):
  New upstream release
  * Add myself to Copyright and Uploaders
  Looks good, dch -r. Ready for upload
  Use Enhances instead of Suggests
  * New upstream release
  Add a patch to fix POD spelling errors
  looks good, dch -r
  * New upstream release
  builds clean, dch -r
  add back the rules
  * New upstream release
  builds clean, dch -r

Jose Luis Rivas Contreras (3):
  new upstream release
  * Added me as uploader.
  updated my email address

Lucas Kanashiro (17):
  Merge tag 'upstream/1.21'
  Update debian/changelog
  Update upstream copyright
  Update debian/* copyright
  Releasing libtext-csv-xs-perl version 1.21-1
  Merge tag 'upstream/1.22'
  Update debian/changelog
  Declare compliance with Debian policy 3.9.7
  Releasing libtext-csv-xs-perl version 1.22-1
  Merge tag 'upstream/1.23'
  Update debian/changelog
  debian/rules: export DEB_BUILD_MAINT_OPTIONS = hardening=+bindnow
  

[libtext-csv-xs-perl] 03/04: declare conformance with Policy 4.1.1 (no changes needed)

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libtext-csv-xs-perl.

commit 3c97607b39720610e1599e5c50d7f8603770055c
Author: Damyan Ivanov 
Date:   Wed Oct 25 13:53:53 2017 +

declare conformance with Policy 4.1.1 (no changes needed)
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 29dcc5e..53341b1 100644
--- a/debian/control
+++ b/debian/control
@@ -16,7 +16,7 @@ Build-Depends: debhelper (>= 9.20120312),
libtest-pod-coverage-perl,
libtest-pod-perl,
perl
-Standards-Version: 3.9.8
+Standards-Version: 4.1.1
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libtext-csv-xs-perl.git
 Vcs-Git: 
https://anonscm.debian.org/git/pkg-perl/packages/libtext-csv-xs-perl.git
 Homepage: https://metacpan.org/release/Text-CSV_XS

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


[libtext-csv-xs-perl] branch master updated (7d5c9dd -> ade786b)

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to branch master
in repository libtext-csv-xs-perl.

  from  7d5c9dd   update changelog
  adds  c8aa471   New upstream version 1.33
   new  f7f23d5   Update upstream source from tag 'upstream/1.33'
   new  1e65cf0   update years of upstream copyright
   new  3c97607   declare conformance with Policy 4.1.1 (no changes needed)
   new  ade786b   releasing package libtext-csv-xs-perl version 1.33-1

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:
 CSV_XS.pm | 558 --
 CSV_XS.xs | 296 +++---
 ChangeLog |  47 +
 MANIFEST  |   1 +
 META.json |  90 
 META.yml  |   6 +-
 Makefile.PL   |  38 +++-
 README|  18 +-
 debian/changelog  |  10 +-
 debian/control|   2 +-
 debian/copyright  |   2 +-
 examples/csv-check| 104 ++
 examples/csv2xls  |  67 +++---
 examples/csv2xlsx |  34 ++-
 examples/csvdiff  |   6 +-
 examples/parser-xs.pl |   2 +-
 examples/rewrite.pl   |  37 +++-
 examples/speed.pl |   2 +-
 ppport.h  |   8 +-
 t/12_acc.t|  49 +++--
 t/20_file.t   |   2 +-
 t/21_lexicalio.t  |   2 +-
 t/22_scalario.t   |   2 +-
 t/40_misc.t   |   2 +-
 t/45_eol.t|   2 +-
 t/46_eol_si.t |  41 +++-
 t/50_utf8.t   |   2 +-
 t/51_utf8.t   |   2 +-
 t/55_combi.t  |  20 +-
 t/65_allow.t  |   2 +-
 t/66_formula.t| 169 +++
 t/70_rt.t |  75 ++-
 t/75_hashref.t|   2 -
 t/77_getall.t |   2 +-
 t/78_fragment.t   |  11 +-
 t/79_callbacks.t  |   8 +-
 t/80_diag.t   |  50 -
 t/85_util.t   | 141 -
 t/90_csv.t| 128 +++-
 t/91_csv_cb.t |  51 -
 40 files changed, 1601 insertions(+), 490 deletions(-)
 create mode 100644 t/66_formula.t

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


[libtext-csv-xs-perl] 02/04: update years of upstream copyright

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libtext-csv-xs-perl.

commit 1e65cf0dce5b98c732e5e4052446fe78448f0b3b
Author: Damyan Ivanov 
Date:   Wed Oct 25 13:53:42 2017 +

update years of upstream copyright
---
 debian/copyright | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/copyright b/debian/copyright
index e53055e..9104bae 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,7 +4,7 @@ Upstream-Contact: H.Merijn Brand 
 Source: https://metacpan.org/release/Text-CSV_XS
 
 Files: *
-Copyright: 2007-2016, H. Merijn Brand 
+Copyright: 2007-2017, H. Merijn Brand 
  1998-2001, Jochen Wiedmann 
  1997, Alan Citterman 
 License: Artistic or GPL-1+

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


[libtext-csv-xs-perl] 01/04: Update upstream source from tag 'upstream/1.33'

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libtext-csv-xs-perl.

commit f7f23d57b30f176b0d341b39ed260c1deb8a8e45
Merge: 7d5c9dd c8aa471
Author: Damyan Ivanov 
Date:   Wed Oct 25 13:44:55 2017 +

Update upstream source from tag 'upstream/1.33'

Update to upstream version '1.33'
with Debian dir 2cf04a764275a4a8d402661e77ba5ee360208e92

 CSV_XS.pm | 558 --
 CSV_XS.xs | 296 +++---
 ChangeLog |  47 +
 MANIFEST  |   1 +
 META.json |  90 
 META.yml  |   6 +-
 Makefile.PL   |  38 +++-
 README|  18 +-
 examples/csv-check| 104 ++
 examples/csv2xls  |  67 +++---
 examples/csv2xlsx |  34 ++-
 examples/csvdiff  |   6 +-
 examples/parser-xs.pl |   2 +-
 examples/rewrite.pl   |  37 +++-
 examples/speed.pl |   2 +-
 ppport.h  |   8 +-
 t/12_acc.t|  49 +++--
 t/20_file.t   |   2 +-
 t/21_lexicalio.t  |   2 +-
 t/22_scalario.t   |   2 +-
 t/40_misc.t   |   2 +-
 t/45_eol.t|   2 +-
 t/46_eol_si.t |  41 +++-
 t/50_utf8.t   |   2 +-
 t/51_utf8.t   |   2 +-
 t/55_combi.t  |  20 +-
 t/65_allow.t  |   2 +-
 t/66_formula.t| 169 +++
 t/70_rt.t |  75 ++-
 t/75_hashref.t|   2 -
 t/77_getall.t |   2 +-
 t/78_fragment.t   |  11 +-
 t/79_callbacks.t  |   8 +-
 t/80_diag.t   |  50 -
 t/85_util.t   | 141 -
 t/90_csv.t| 128 +++-
 t/91_csv_cb.t |  51 -
 37 files changed, 1591 insertions(+), 486 deletions(-)

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


[libfile-sharedir-projectdistdir-perl] annotated tag upstream/1.000009 created (now 701928e)

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag upstream/1.09
in repository libfile-sharedir-projectdistdir-perl.

at  701928e   (tag)
   tagging  268607f518ff8ea79369572031ce7dfb0dd76ea3 (commit)
  replaces  upstream/1.08
 tagged by  Damyan Ivanov
on  Wed Oct 25 13:33:50 2017 +

- Log -
Upstream version 1.09

Damyan Ivanov (1):
  New upstream version 1.09

---

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/libfile-sharedir-projectdistdir-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


[libfile-sharedir-projectdistdir-perl] 04/04: releasing package libfile-sharedir-projectdistdir-perl version 1.000009-1

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libfile-sharedir-projectdistdir-perl.

commit fdb4593a72bfed86d9e57b339e9ab7e5933734bd
Author: Damyan Ivanov 
Date:   Wed Oct 25 13:42:28 2017 +

releasing package libfile-sharedir-projectdistdir-perl version 1.09-1
---
 debian/changelog | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 49ebb1f..2d8fb06 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+libfile-sharedir-projectdistdir-perl (1.09-1) unstable; urgency=medium
+
+  * Team upload
+
+  * New upstream version 1.09
+  * update upstream copyright years
+  * declare conformance with Policy 4.1.1 (no changes needed)
+
+ -- Damyan Ivanov   Wed, 25 Oct 2017 13:41:06 +
+
 libfile-sharedir-projectdistdir-perl (1.08-2) unstable; urgency=medium
 
   * Team upload.

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


[libfile-sharedir-projectdistdir-perl] 01/01: pristine-tar data for libfile-sharedir-projectdistdir-perl_1.000009.orig.tar.gz

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch pristine-tar
in repository libfile-sharedir-projectdistdir-perl.

commit 189f0d7d40b8b8f637b04eb86ff588df474a0df6
Author: Damyan Ivanov 
Date:   Wed Oct 25 13:33:50 2017 +

pristine-tar data for 
libfile-sharedir-projectdistdir-perl_1.09.orig.tar.gz
---
 ...aredir-projectdistdir-perl_1.09.orig.tar.gz.delta | Bin 0 -> 3728 bytes
 ...-sharedir-projectdistdir-perl_1.09.orig.tar.gz.id |   1 +
 2 files changed, 1 insertion(+)

diff --git a/libfile-sharedir-projectdistdir-perl_1.09.orig.tar.gz.delta 
b/libfile-sharedir-projectdistdir-perl_1.09.orig.tar.gz.delta
new file mode 100644
index 000..1468346
Binary files /dev/null and 
b/libfile-sharedir-projectdistdir-perl_1.09.orig.tar.gz.delta differ
diff --git a/libfile-sharedir-projectdistdir-perl_1.09.orig.tar.gz.id 
b/libfile-sharedir-projectdistdir-perl_1.09.orig.tar.gz.id
new file mode 100644
index 000..683c4f9
--- /dev/null
+++ b/libfile-sharedir-projectdistdir-perl_1.09.orig.tar.gz.id
@@ -0,0 +1 @@
+cdfc82455a086cbea26cdb3e82c2c038219ddf82

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


[libfile-sharedir-projectdistdir-perl] annotated tag debian/1.000009-1 created (now 8363a22)

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag debian/1.09-1
in repository libfile-sharedir-projectdistdir-perl.

at  8363a22   (tag)
   tagging  fdb4593a72bfed86d9e57b339e9ab7e5933734bd (commit)
  replaces  debian/1.08-2
 tagged by  Damyan Ivanov
on  Wed Oct 25 13:42:28 2017 +

- Log -
tagging package libfile-sharedir-projectdistdir-perl version debian/1.09-1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEErqDETssFbpNjDZ0z276dTZnSoAQFAlnwlMQACgkQ276dTZnS
oATFKw//W3z7vr9bLpCEZOhEgyHg1mIENKjH0QYC/OqpM9kPlZ4Y1VHSOgUvCWC+
lZ42UIOZiviymZJwlh+XtFpfi7unibuLETw1ZFkwsGm/m8jaOTMDUNFra+m7KDG4
DbYe+fLTiHRelK208ESKL4ygpfFWQNyG9dmZvg+a5U4eSUXXBik60DAkpmwb5He7
G39Ntl1XmfQL/xb+TGcsh0sfSzZ1UkJPeuBlBxj0t+GQ8R4kR3uL5g2MgBSqD53p
FlHb8w8uZ7mZrrRRrvztsEGB93gTgr4bL5M+XnONRJdZr8vhYm/tY2/BrdKFOTLe
s+XQBVV7zm3Tk+9nn38Li3yyw5M7LDFz53WXfBhScLf3YJb9Px+YILGW5u6vmCnO
s+xQ7LIXmxtD+oHW57Kk0B9XKps1uyMF9J9r/w2LIHeNPvsNcBaGH8FmjPmxnVJ/
U8jCkyqBLQjVzU7hCHx+q/rjY8MhdxH9vQ/Tq7RCdRXID0QHLBgUv3f2HSFgaOCz
XBV9woyEL/r4xoYiv6mmbwSbR1XWMFojUw3z250tjjcrTZTG5gBG/aVbgmGLc+nL
Ld5NParvzErmg5WOZzeDkpLWoL7HU7hgXQEPnkAMrsJG+2q+xmYqGL0xfJfJgeHJ
MgqeBwClxPjnZcwEE1aAcw60m3UPF3I+ZiVSkUT4YzE+Y1dDFeI=
=rOGf
-END PGP SIGNATURE-

Damyan Ivanov (5):
  New upstream version 1.09
  Update upstream source from tag 'upstream/1.09'
  update upstream copyright years
  declare conformance with Policy 4.1.1 (no changes needed)
  releasing package libfile-sharedir-projectdistdir-perl version 1.09-1

---

This annotated tag includes the following new commits:

   new  57847e5   Update upstream source from tag 'upstream/1.09'
   new  ec2c7f4   update upstream copyright years
   new  d01d59c   declare conformance with Policy 4.1.1 (no changes needed)
   new  fdb4593   releasing package libfile-sharedir-projectdistdir-perl 
version 1.09-1

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/libfile-sharedir-projectdistdir-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


[libfile-sharedir-projectdistdir-perl] 02/04: update upstream copyright years

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libfile-sharedir-projectdistdir-perl.

commit ec2c7f475ece66429a561bc35210b2cee0016faa
Author: Damyan Ivanov 
Date:   Wed Oct 25 13:40:35 2017 +

update upstream copyright years
---
 debian/copyright | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/copyright b/debian/copyright
index 1b46b6f..d83986d 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,7 +4,7 @@ Upstream-Contact: Kent Fredric 
 Upstream-Name: File-ShareDir-ProjectDistDir
 
 Files: *
-Copyright: 2015, Kent Fredric 
+Copyright: 2017, Kent Fredric 
 License: Artistic or GPL-1+
 
 Files: debian/*

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


[libfile-sharedir-projectdistdir-perl] branch pristine-tar updated (c578555 -> 189f0d7)

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to branch pristine-tar
in repository libfile-sharedir-projectdistdir-perl.

  from  c578555   pristine-tar data for 
libfile-sharedir-projectdistdir-perl_1.08.orig.tar.gz
   new  189f0d7   pristine-tar data for 
libfile-sharedir-projectdistdir-perl_1.09.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:
 ...aredir-projectdistdir-perl_1.09.orig.tar.gz.delta | Bin 0 -> 3728 bytes
 ...-sharedir-projectdistdir-perl_1.09.orig.tar.gz.id |   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 
libfile-sharedir-projectdistdir-perl_1.09.orig.tar.gz.delta
 create mode 100644 libfile-sharedir-projectdistdir-perl_1.09.orig.tar.gz.id

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


[libfile-sharedir-projectdistdir-perl] 03/04: declare conformance with Policy 4.1.1 (no changes needed)

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libfile-sharedir-projectdistdir-perl.

commit d01d59c5b64e11dc032e01657baa40b682eb237d
Author: Damyan Ivanov 
Date:   Wed Oct 25 13:40:47 2017 +

declare conformance with Policy 4.1.1 (no changes needed)
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index e94b913..5110b47 100644
--- a/debian/control
+++ b/debian/control
@@ -14,7 +14,7 @@ Build-Depends-Indep: libcapture-tiny-perl (>= 0.12),
  libpath-tiny-perl,
  libsub-exporter-perl,
  perl (>= 5.13.4) | libtest-simple-perl (>= 0.96)
-Standards-Version: 3.9.6
+Standards-Version: 4.1.1
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libfile-sharedir-projectdistdir-perl.git
 Vcs-Git: 
https://anonscm.debian.org/git/pkg-perl/packages/libfile-sharedir-projectdistdir-perl.git
 Homepage: https://metacpan.org/release/File-ShareDir-ProjectDistDir

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


[libfile-sharedir-projectdistdir-perl] branch master updated (2cfc84c -> fdb4593)

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to branch master
in repository libfile-sharedir-projectdistdir-perl.

  from  2cfc84c   releasing package libfile-sharedir-projectdistdir-perl 
version 1.08-2 to unstable
  adds  268607f   New upstream version 1.09
   new  57847e5   Update upstream source from tag 'upstream/1.09'
   new  ec2c7f4   update upstream copyright years
   new  d01d59c   declare conformance with Policy 4.1.1 (no changes needed)
   new  fdb4593   releasing package libfile-sharedir-projectdistdir-perl 
version 1.09-1

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:
 .travis.yml|   3 +-
 Changes|  12 +-
 LICENSE|   6 +-
 MANIFEST   |   6 +-
 META.json  | 334 +
 META.yml   |   8 +-
 Makefile.PL|   9 +-
 README |   2 +-
 debian/changelog   |  10 +
 debian/control |   2 +-
 debian/copyright   |   2 +-
 dist.ini   |   6 +-
 lib/File/ShareDir/ProjectDistDir.pm|   6 +-
 misc/Changes.deps  |   6 +-
 misc/Changes.deps.all  |  22 +-
 misc/Changes.deps.dev  |  16 +-
 misc/Changes.deps.opt  |   6 +-
 misc/built_with.json   | 138 -
 t/00-compile/lib_File_ShareDir_ProjectDistDir_pm.t |  24 +-
 t/00-report-prereqs.dd |  16 +-
 t/00-report-prereqs.t  |  10 +-
 t/classic/01_devel.t   |   5 +-
 t/classic/02_installed_only.t  |   5 +-
 t/classic/03_installed_and_dev_different.t |   5 +-
 t/classic/04_developing_installed.t|   5 +-
 t/classic/05_devel_spec.t  |   5 +-
 t/classic/06_distname.t|   5 +-
 t/deprecations/fatal_no_pathclass_installed.t  |   9 +-
 t/deprecations/warn_on_pathclass.t |   5 +-
 t/strict/01_devel.t|   5 +-
 t/strict/02_installed_only.t   |   5 +-
 t/strict/03_installed_and_dev_different.t  |   5 +-
 t/strict/04_developing_installed.t |   5 +-
 t/strict/05_devel_spec.t   |   5 +-
 t/strict/06_distname.t |   5 +-
 t/strict/07_gh15.t |   5 +-
 xt/author/eol.t|   2 +-
 xt/{release => author}/pod-coverage.t  |   0
 xt/{release => author}/pod-syntax.t|   1 +
 xt/release/cpan-changes.t  |   9 +-
 xt/release/kwalitee.t  |   2 +-
 41 files changed, 427 insertions(+), 310 deletions(-)
 rename xt/{release => author}/pod-coverage.t (100%)
 rename xt/{release => author}/pod-syntax.t (84%)

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


[libfile-sharedir-projectdistdir-perl] 01/04: Update upstream source from tag 'upstream/1.000009'

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libfile-sharedir-projectdistdir-perl.

commit 57847e54e864580e9bfa17d5752349a51c36e441
Merge: 2cfc84c 268607f
Author: Damyan Ivanov 
Date:   Wed Oct 25 13:33:50 2017 +

Update upstream source from tag 'upstream/1.09'

Update to upstream version '1.09'
with Debian dir e2b16167d0ba96fbff1bff5562268b8a65df6227

 .travis.yml|   3 +-
 Changes|  12 +-
 LICENSE|   6 +-
 MANIFEST   |   6 +-
 META.json  | 334 +
 META.yml   |   8 +-
 Makefile.PL|   9 +-
 README |   2 +-
 dist.ini   |   6 +-
 lib/File/ShareDir/ProjectDistDir.pm|   6 +-
 misc/Changes.deps  |   6 +-
 misc/Changes.deps.all  |  22 +-
 misc/Changes.deps.dev  |  16 +-
 misc/Changes.deps.opt  |   6 +-
 misc/built_with.json   | 138 -
 t/00-compile/lib_File_ShareDir_ProjectDistDir_pm.t |  24 +-
 t/00-report-prereqs.dd |  16 +-
 t/00-report-prereqs.t  |  10 +-
 t/classic/01_devel.t   |   5 +-
 t/classic/02_installed_only.t  |   5 +-
 t/classic/03_installed_and_dev_different.t |   5 +-
 t/classic/04_developing_installed.t|   5 +-
 t/classic/05_devel_spec.t  |   5 +-
 t/classic/06_distname.t|   5 +-
 t/deprecations/fatal_no_pathclass_installed.t  |   9 +-
 t/deprecations/warn_on_pathclass.t |   5 +-
 t/strict/01_devel.t|   5 +-
 t/strict/02_installed_only.t   |   5 +-
 t/strict/03_installed_and_dev_different.t  |   5 +-
 t/strict/04_developing_installed.t |   5 +-
 t/strict/05_devel_spec.t   |   5 +-
 t/strict/06_distname.t |   5 +-
 t/strict/07_gh15.t |   5 +-
 xt/author/eol.t|   2 +-
 xt/{release => author}/pod-coverage.t  |   0
 xt/{release => author}/pod-syntax.t|   1 +
 xt/release/cpan-changes.t  |   9 +-
 xt/release/kwalitee.t  |   2 +-
 38 files changed, 415 insertions(+), 308 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libfile-sharedir-projectdistdir-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-install-perl] 05/06: move the discouragement paragraph to the start of the long description

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libmodule-install-perl.

commit 01437b74584552121fcf7660e3e0ab6c9c110f9f
Author: Damyan Ivanov 
Date:   Wed Oct 25 13:25:17 2017 +

move the discouragement paragraph to the start of the long description
---
 debian/control | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/debian/control b/debian/control
index 1636b83..8f4b1f4 100644
--- a/debian/control
+++ b/debian/control
@@ -34,6 +34,11 @@ Recommends: libarchive-zip-perl (>= 1.37),
 libjson-perl,
 libpar-dist-perl
 Description: framework for installing Perl modules
+ NOTE: while Module::Install pioneered many great ideas in its time, its
+ primary benefits have been better achieved by other tools, like Dist::Zilla,
+ and its spinoffs. Use of Module::Install for new distributions is therefore
+ discouraged by the maintainers.
+ .
  Module::Install is a package for writing installers for CPAN (or CPAN-like)
  distributions that are clean, simple, minimalist, act in a strictly correct
  manner with ExtUtils::MakeMaker. It will run on any Perl installation version
@@ -44,8 +49,3 @@ Description: framework for installing Perl modules
  in Makefile.PL in a simple and portable way. It is simple to learn, and has
  the same features as ExtUtils::MakeMaker and Module::Build. However, it has
  the advantage that it requires no installation for end-users.
- .
- Please note that while Module::Install pioneered many great ideas in its
- time, its primary benefits have been better achieved by other tools, like
- Dist::Zilla, and its spinoffs. Use of Module::Install for new distributions
- is therefore discouraged by the maintainers.

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

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to branch master
in repository libmodule-install-perl.

  from  efefbc7   update changelog
  adds  bcac0b8   New upstream version 1.18
   new  c80a7b6   Update upstream source from tag 'upstream/1.18'
   new  1fa93ec   drop spelling.patch, applied upstream
   new  70ae4d6   declare conformance with Policy 4.1.1
   new  15e9563   correct minimum supported Perl version in long description
   new  01437b7   move the discouragement paragraph to the start of the 
long description
   new  345e562   releasing package libmodule-install-perl version 1.18-1

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


Summary of changes:
 .ackrc |  2 +
 .mailmap   |  5 +++
 .travis.yml|  2 +
 Changes|  3 ++
 MANIFEST   |  3 +-
 MANIFEST.SKIP  | 68 +-
 META.yml   | 17 +
 Makefile.PL| 13 ---
 README |  2 +-
 debian/changelog   | 12 +-
 debian/control | 14 +++
 debian/patches/series  |  1 -
 debian/patches/spelling.patch  | 29 ---
 lib/Module/AutoInstall.pm  |  2 +-
 lib/Module/Install.pm  |  2 +-
 lib/Module/Install.pod |  6 +--
 lib/Module/Install/API.pod |  2 +-
 lib/Module/Install/Admin.pm|  2 +-
 lib/Module/Install/Admin/Bundle.pm |  2 +-
 lib/Module/Install/Admin/Compiler.pm   |  2 +-
 lib/Module/Install/Admin/Find.pm   |  2 +-
 lib/Module/Install/Admin/Include.pm|  2 +-
 lib/Module/Install/Admin/Makefile.pm   |  2 +-
 lib/Module/Install/Admin/Manifest.pm   |  2 +-
 lib/Module/Install/Admin/Metadata.pm   |  2 +-
 lib/Module/Install/Admin/ScanDeps.pm   |  2 +-
 lib/Module/Install/Admin/WriteAll.pm   |  2 +-
 lib/Module/Install/AutoInstall.pm  |  2 +-
 lib/Module/Install/Base.pm |  2 +-
 lib/Module/Install/Bundle.pm   |  2 +-
 lib/Module/Install/Can.pm  |  2 +-
 lib/Module/Install/Compiler.pm |  2 +-
 lib/Module/Install/DSL.pm  |  2 +-
 lib/Module/Install/Deprecated.pm   |  2 +-
 lib/Module/Install/External.pm |  2 +-
 lib/Module/Install/Fetch.pm|  2 +-
 lib/Module/Install/Include.pm  |  2 +-
 lib/Module/Install/Inline.pm   |  2 +-
 lib/Module/Install/MakeMaker.pm|  2 +-
 lib/Module/Install/Makefile.pm |  2 +-
 lib/Module/Install/Metadata.pm |  2 +-
 lib/Module/Install/PAR.pm  |  2 +-
 lib/Module/Install/Run.pm  |  2 +-
 lib/Module/Install/Scripts.pm  |  2 +-
 lib/Module/Install/Share.pm|  2 +-
 lib/Module/Install/Win32.pm|  2 +-
 lib/Module/Install/With.pm |  2 +-
 lib/Module/Install/WriteAll.pm |  2 +-
 lib/inc/Module/Install.pm  |  2 +-
 lib/inc/Module/Install/DSL.pm  |  2 +-
 t/01_compile.t |  5 ++-
 t/02_mymeta.t  |  3 +-
 t/05_share.t   |  3 +-
 t/06_ppport.t  |  3 +-
 t/08_dsl.t |  3 +-
 t/09_read.t|  6 ++-
 t/10_test.t|  3 +-
 t/12_eumm_params.t |  3 +-
 t/13_author_tests.t|  3 +-
 t/13_author_tests_ext.t|  3 +-
 t/13_author_tests_ext2.t   |  3 +-
 t/14_auto_include_deps_with_version.t  |  3 +-
 t/15_wrong_usage.t |  3 +-
 t/16_require.t |  3 +-
 t/17_sign.t|  3 +-
 t/18_all_from.t|  3 +-
 t/19_authors.t |  3 +-
 t/20_authors_with_special_characters.t |  3 +-
 t/21_makemaker_args.t  |  3 +-
 t/22_installdirs.t |  3 +-
 t/23_pl_files.t|  3 +-
 t/25_perl_version_from.t   |  3 +-
 t/26_unknown_func.t|  3 +-
 t/27_build_requires_and_include.t  |  3 +-
 t/28_makemaker_args.t  |  3 +-
 t/29_requires_from.t   |  3 +-
 t/30_build_subdirs.t   |  3 +-
 t/31_add_metadata.t|  3 +-
 t/lib/{Test.pm => MyTest.pm}   |  4 +-
 79 files changed, 215 insertions(+), 127 deletions(-)
 create mode 100644 .mailmap
 delete mode 100644 debian/patches/series
 delete mode 100644 debian/patches/spelling.patch
 rename t/lib/{Test.pm => 

[libmodule-install-perl] 03/06: declare conformance with Policy 4.1.1

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libmodule-install-perl.

commit 70ae4d627bcf6b123a5437d6d24df451119884ec
Author: Damyan Ivanov 
Date:   Wed Oct 25 13:21:15 2017 +

declare conformance with Policy 4.1.1
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 39dbc99..d8d5618 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,7 @@ Build-Depends-Indep: perl,
  libmodule-scandeps-perl (>= 1.09),
  perl (>= 5.19.9) | libparse-cpan-meta-perl (>= 1.4413),
  libyaml-tiny-perl
-Standards-Version: 3.9.8
+Standards-Version: 4.1.1
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libmodule-install-perl.git
 Vcs-Git: 
https://anonscm.debian.org/git/pkg-perl/packages/libmodule-install-perl.git
 Homepage: https://metacpan.org/release/Module-Install

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libmodule-install-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-install-perl] annotated tag debian/1.18-1 created (now 3aaf8d7)

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag debian/1.18-1
in repository libmodule-install-perl.

at  3aaf8d7   (tag)
   tagging  345e562538bc3666fb45980d861a5ac30103feb5 (commit)
  replaces  debian/1.17-1
 tagged by  Damyan Ivanov
on  Wed Oct 25 13:30:24 2017 +

- Log -
tagging package libmodule-install-perl version debian/1.18-1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEErqDETssFbpNjDZ0z276dTZnSoAQFAlnwkfAACgkQ276dTZnS
oATghA//bvrsjdyCILAbWLZdvjRGA6HweGa9Jzc+th6xmXWOdfhcO31iEZxJeZAF
fAV24wXGn7P1zSpqr/yhtQtyBkE14/JWbpHWoSSDuw3JTWQH8p1pG3eTCK+1N0K+
+Wqkzj5liyMTv6PYWV/WvLi/M/6BVkVnKwq29dcXuRynciUPdFKsrLIlJQPqx+bX
Lm4mfhFKNOnJCIQ1HUef+Lbk3IV/jM3DtRFwbppm2X7L5ErftKGDNyYgboaX1hir
Gabt2IJe2R+oPWVFV9DdBSGaajpsy8YBDzbFkpsw5zRyNnFJlrf4ONcMcXeNTFRu
WfrBxLeONhV4xCXI1YFZ5NcCQoKYUW7yMtGAgK8F6qfeUQojQBgPBHIRgD7nUq9q
EjyAnK2PaxDqRF+yDipdKUcqQmaisLt11CnJhNcO+S2cKQYnJsOY9NvwdXA07FBw
r3Nughc8Pq50cBsSuURZz9rmdYRdZWwkKjEdwuQtC91oKVif4cqaw50cIdQmFjdz
QrLFFjgUa3P8lEUVln2p9aN0AJJyL+U/sEuPRaWebuJ9AIIBnvEJrqxO+PMcvwPG
kJmHnbqJ8Ed4MKSe6Tn1lnSjzM3pFG1T8Ylx6SQJHy+DsQVlw2+sAgdTohfW2NlT
mbd2vQWF/4e5o8sDXYVdRfomTjqlg1oz9/v1jsvTik3LO0/1LW0=
=Og8F
-END PGP SIGNATURE-

Alex Muntada (2):
  Remove inactive pkg-perl members from Uploaders.
  update changelog

Damyan Ivanov (7):
  New upstream version 1.18
  Update upstream source from tag 'upstream/1.18'
  drop spelling.patch, applied upstream
  declare conformance with Policy 4.1.1
  correct minimum supported Perl version in long description
  move the discouragement paragraph to the start of the long description
  releasing package libmodule-install-perl version 1.18-1

---

This annotated tag includes the following new commits:

   new  c80a7b6   Update upstream source from tag 'upstream/1.18'
   new  1fa93ec   drop spelling.patch, applied upstream
   new  70ae4d6   declare conformance with Policy 4.1.1
   new  15e9563   correct minimum supported Perl version in long description
   new  01437b7   move the discouragement paragraph to the start of the 
long description
   new  345e562   releasing package libmodule-install-perl version 1.18-1

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


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libmodule-install-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-install-perl] annotated tag upstream/1.18 created (now 7073f88)

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag upstream/1.18
in repository libmodule-install-perl.

at  7073f88   (tag)
   tagging  bcac0b8ab12a7f4dead9c546d06415e1ad0780bb (commit)
  replaces  upstream/1.17
 tagged by  Damyan Ivanov
on  Wed Oct 25 13:06:54 2017 +

- Log -
Upstream version 1.18

Damyan Ivanov (1):
  New upstream version 1.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/libmodule-install-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-install-perl] 06/06: releasing package libmodule-install-perl version 1.18-1

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libmodule-install-perl.

commit 345e562538bc3666fb45980d861a5ac30103feb5
Author: Damyan Ivanov 
Date:   Wed Oct 25 13:30:24 2017 +

releasing package libmodule-install-perl version 1.18-1
---
 debian/changelog | 12 ++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 75179d6..7ed925d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,16 @@
-libmodule-install-perl (1.17-2) UNRELEASED; urgency=medium
+libmodule-install-perl (1.18-1) unstable; urgency=medium
 
+  [ Alex Muntada ]
   * Remove inactive pkg-perl members from Uploaders.
 
- -- Alex Muntada   Sun, 08 Oct 2017 17:27:09 +0200
+  [ Damyan Ivanov ]
+  * New upstream version 1.18
+  * drop spelling.patch, applied upstream
+  * declare conformance with Policy 4.1.1
+  * correct minimum supported Perl version in long description
+  * move the discouragement paragraph to the start of the long description
+
+ -- Damyan Ivanov   Wed, 25 Oct 2017 13:25:33 +
 
 libmodule-install-perl (1.17-1) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libmodule-install-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-install-perl] 01/01: pristine-tar data for libmodule-install-perl_1.18.orig.tar.gz

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch pristine-tar
in repository libmodule-install-perl.

commit 2cda2a31bad569a1b1ddb74b7855fc6b241ae4e2
Author: Damyan Ivanov 
Date:   Wed Oct 25 13:06:54 2017 +

pristine-tar data for libmodule-install-perl_1.18.orig.tar.gz
---
 libmodule-install-perl_1.18.orig.tar.gz.delta | Bin 0 -> 3579 bytes
 libmodule-install-perl_1.18.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libmodule-install-perl_1.18.orig.tar.gz.delta 
b/libmodule-install-perl_1.18.orig.tar.gz.delta
new file mode 100644
index 000..e99142a
Binary files /dev/null and b/libmodule-install-perl_1.18.orig.tar.gz.delta 
differ
diff --git a/libmodule-install-perl_1.18.orig.tar.gz.id 
b/libmodule-install-perl_1.18.orig.tar.gz.id
new file mode 100644
index 000..d650dab
--- /dev/null
+++ b/libmodule-install-perl_1.18.orig.tar.gz.id
@@ -0,0 +1 @@
+4eddc45540e5b70faf164c7105e83bced9c3e0aa

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libmodule-install-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-install-perl] 02/06: drop spelling.patch, applied upstream

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libmodule-install-perl.

commit 1fa93ec37e5b87632ef1cad67f23e71285f9ef98
Author: Damyan Ivanov 
Date:   Wed Oct 25 13:10:44 2017 +

drop spelling.patch, applied upstream
---
 debian/patches/series |  1 -
 debian/patches/spelling.patch | 29 -
 2 files changed, 30 deletions(-)

diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 5299247..000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-spelling.patch
diff --git a/debian/patches/spelling.patch b/debian/patches/spelling.patch
deleted file mode 100644
index 4adf25f..000
--- a/debian/patches/spelling.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Description: spelling fixes
-Origin: vendor
-Author: gregor herrmann 
-Last-Update: 2016-10-30
-Forwarded: https://rt.cpan.org/Ticket/Display.html?id=118563
-Bug: https://rt.cpan.org/Ticket/Display.html?id=118563
-
 a/lib/Module/Install.pod
-+++ b/lib/Module/Install.pod
-@@ -341,7 +341,7 @@
- configure_requires: key in the distribution's F file.
- 
- Although most of F is considered advisory only, a L
--client will treat the contents of configure_requires: as authoritive,
-+client will treat the contents of configure_requires: as authoritative,
- and install the listed modules B it executes the F
- (from which it then determines the other dependencies).
- 
 a/lib/Module/Install/API.pod
-+++ b/lib/Module/Install/API.pod
-@@ -54,7 +54,7 @@
-   name 'Foo-Bar';
-   name_from 'lib/Foo/Bar.pm';
- 
--B commmand takes a distribution name. It usually differs
-+B command takes a distribution name. It usually differs
- slightly from a module name (a module name is separated by double
- colons; a distribution name is separated by hyphens). Just replacing
- all the double colons of your main module with hyphens would be

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libmodule-install-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-install-perl] branch pristine-tar updated (22deec1 -> 2cda2a3)

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to branch pristine-tar
in repository libmodule-install-perl.

  from  22deec1   pristine-tar data for 
libmodule-install-perl_1.17.orig.tar.gz
   new  2cda2a3   pristine-tar data for 
libmodule-install-perl_1.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:
 libmodule-install-perl_1.18.orig.tar.gz.delta | Bin 0 -> 3579 bytes
 libmodule-install-perl_1.18.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libmodule-install-perl_1.18.orig.tar.gz.delta
 create mode 100644 libmodule-install-perl_1.18.orig.tar.gz.id

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libmodule-install-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-install-perl] 04/06: correct minimum supported Perl version in long description

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libmodule-install-perl.

commit 15e95634bc2eef49019dc18930a7d382c9701657
Author: Damyan Ivanov 
Date:   Wed Oct 25 13:24:53 2017 +

correct minimum supported Perl version in long description
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index d8d5618..1636b83 100644
--- a/debian/control
+++ b/debian/control
@@ -37,7 +37,7 @@ Description: framework for installing Perl modules
  Module::Install is a package for writing installers for CPAN (or CPAN-like)
  distributions that are clean, simple, minimalist, act in a strictly correct
  manner with ExtUtils::MakeMaker. It will run on any Perl installation version
- 5.004 or newer.
+ 5.005 or newer.
  .
  It is designed to automatically include a copy of itself with modules that
  use it, thus ensuring that bleeding-edge features will be available for use

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libmodule-install-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-install-perl] 01/06: Update upstream source from tag 'upstream/1.18'

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libmodule-install-perl.

commit c80a7b6f0c19165577a73fc08dda10fad58000d9
Merge: efefbc7 bcac0b8
Author: Damyan Ivanov 
Date:   Wed Oct 25 13:06:54 2017 +

Update upstream source from tag 'upstream/1.18'

Update to upstream version '1.18'
with Debian dir ad9dac79a987d686b7ff8e2e74cc04cf7a95fab1

 .ackrc |  2 +
 .mailmap   |  5 +++
 .travis.yml|  2 +
 Changes|  3 ++
 MANIFEST   |  3 +-
 MANIFEST.SKIP  | 68 +-
 META.yml   | 17 +
 Makefile.PL| 13 ---
 README |  2 +-
 lib/Module/AutoInstall.pm  |  2 +-
 lib/Module/Install.pm  |  2 +-
 lib/Module/Install.pod |  6 +--
 lib/Module/Install/API.pod |  2 +-
 lib/Module/Install/Admin.pm|  2 +-
 lib/Module/Install/Admin/Bundle.pm |  2 +-
 lib/Module/Install/Admin/Compiler.pm   |  2 +-
 lib/Module/Install/Admin/Find.pm   |  2 +-
 lib/Module/Install/Admin/Include.pm|  2 +-
 lib/Module/Install/Admin/Makefile.pm   |  2 +-
 lib/Module/Install/Admin/Manifest.pm   |  2 +-
 lib/Module/Install/Admin/Metadata.pm   |  2 +-
 lib/Module/Install/Admin/ScanDeps.pm   |  2 +-
 lib/Module/Install/Admin/WriteAll.pm   |  2 +-
 lib/Module/Install/AutoInstall.pm  |  2 +-
 lib/Module/Install/Base.pm |  2 +-
 lib/Module/Install/Bundle.pm   |  2 +-
 lib/Module/Install/Can.pm  |  2 +-
 lib/Module/Install/Compiler.pm |  2 +-
 lib/Module/Install/DSL.pm  |  2 +-
 lib/Module/Install/Deprecated.pm   |  2 +-
 lib/Module/Install/External.pm |  2 +-
 lib/Module/Install/Fetch.pm|  2 +-
 lib/Module/Install/Include.pm  |  2 +-
 lib/Module/Install/Inline.pm   |  2 +-
 lib/Module/Install/MakeMaker.pm|  2 +-
 lib/Module/Install/Makefile.pm |  2 +-
 lib/Module/Install/Metadata.pm |  2 +-
 lib/Module/Install/PAR.pm  |  2 +-
 lib/Module/Install/Run.pm  |  2 +-
 lib/Module/Install/Scripts.pm  |  2 +-
 lib/Module/Install/Share.pm|  2 +-
 lib/Module/Install/Win32.pm|  2 +-
 lib/Module/Install/With.pm |  2 +-
 lib/Module/Install/WriteAll.pm |  2 +-
 lib/inc/Module/Install.pm  |  2 +-
 lib/inc/Module/Install/DSL.pm  |  2 +-
 t/01_compile.t |  5 ++-
 t/02_mymeta.t  |  3 +-
 t/05_share.t   |  3 +-
 t/06_ppport.t  |  3 +-
 t/08_dsl.t |  3 +-
 t/09_read.t|  6 ++-
 t/10_test.t|  3 +-
 t/12_eumm_params.t |  3 +-
 t/13_author_tests.t|  3 +-
 t/13_author_tests_ext.t|  3 +-
 t/13_author_tests_ext2.t   |  3 +-
 t/14_auto_include_deps_with_version.t  |  3 +-
 t/15_wrong_usage.t |  3 +-
 t/16_require.t |  3 +-
 t/17_sign.t|  3 +-
 t/18_all_from.t|  3 +-
 t/19_authors.t |  3 +-
 t/20_authors_with_special_characters.t |  3 +-
 t/21_makemaker_args.t  |  3 +-
 t/22_installdirs.t |  3 +-
 t/23_pl_files.t|  3 +-
 t/25_perl_version_from.t   |  3 +-
 t/26_unknown_func.t|  3 +-
 t/27_build_requires_and_include.t  |  3 +-
 t/28_makemaker_args.t  |  3 +-
 t/29_requires_from.t   |  3 +-
 t/30_build_subdirs.t   |  3 +-
 t/31_add_metadata.t|  3 +-
 t/lib/{Test.pm => MyTest.pm}   |  4 +-
 75 files changed, 198 insertions(+), 88 deletions(-)

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


[libgit-repository-perl] annotated tag debian/1.321-1 created (now 9c4ef89)

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag debian/1.321-1
in repository libgit-repository-perl.

at  9c4ef89   (tag)
   tagging  56dd2b91d760e907bfc4b02b4e394a9f82f134bc (commit)
  replaces  debian/1.320-1
 tagged by  Damyan Ivanov
on  Wed Oct 25 12:43:27 2017 +

- Log -
tagging package libgit-repository-perl version debian/1.321-1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEErqDETssFbpNjDZ0z276dTZnSoAQFAlnwhu8ACgkQ276dTZnS
oATamg//TcwoC6aD/k6txVaQOAp6B7QjeMt/aoHXl3T/LTqU4orYB1hJqs6jNMmC
XioWMC6vvJ6go6XgRVcZ5ktcmuXko8YtUCRcUElU6ONyqNX1+Q8WJ1f4Sw7oR8vi
Al84m5JgaMnHmJ8FFMyGIHVpaQrFOAZJ47x6fEIvl2JGoMXHWqQxp6o+D5OAWpF0
Bvy3YBEC/i85P3NVnET9Y8N5H+5osSMv3luD1mQTwcZmkAJlew8/iAcHTDBRmrCM
uwFuOug6ENDM/DMWNcjQ8QE3El805wDng3lSnYu/EK+XiLUQ4hOgn8Psz+GBJAg/
J1DtNWSDREXs/24I7yzTcFfqIdSiLcImqZuSjkiJ/ioO1ScaSG0SnVwgIJljOSug
aERVDburPNczAV0yBdwGtpH9Cn55T5psAHOmUhZVOjd+z9ImHEpyTfZuea/23Wx4
NAhv4/j0Zt4H0cJkt1niMYmDfIqwP7P1WGfxEouWJpOdaIZP1hTJpWwLG/Dqb1p1
5Cpd8X+oyK9sVyhz1JylbwY4yYXJS3ZlrsEv8b+dBv67TmaqgTlhXHiZUSC2yc0T
StP0NPjYNYExxaBza1nzpFHKffD7f7sIIgVe6nqNS1XT2zajF2YlFDdtfT6XS9ls
4k9WizdftRoCplgGkcrn5hlx2VCYcSuMZrgx+2X/ap8+GX9nosU=
=vFQI
-END PGP SIGNATURE-

Alex Muntada (2):
  Remove inactive pkg-perl members from Uploaders.
  update changelog

Damyan Ivanov (6):
  New upstream version 1.321
  Update upstream source from tag 'upstream/1.321'
  add myself to Uploaders
  update years of upstream copyright
  declare conformance with Policy 4.1.1
  releasing package libgit-repository-perl version 1.321-1

---

This annotated tag includes the following new commits:

   new  d3762c5   Update upstream source from tag 'upstream/1.321'
   new  8993d7c   add myself to Uploaders
   new  7c4c5c5   update years of upstream copyright
   new  67745e8   declare conformance with Policy 4.1.1
   new  56dd2b9   releasing package libgit-repository-perl version 1.321-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/libgit-repository-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


[libgit-repository-perl] annotated tag upstream/1.321 created (now 2be323b)

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag upstream/1.321
in repository libgit-repository-perl.

at  2be323b   (tag)
   tagging  7e57392337d0423bc14a468e42c427b234c5a37c (commit)
  replaces  upstream/1.320
 tagged by  Damyan Ivanov
on  Wed Oct 25 11:53:22 2017 +

- Log -
Upstream version 1.321

Damyan Ivanov (1):
  New upstream version 1.321

---

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/libgit-repository-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


[libgit-repository-perl] 01/05: Update upstream source from tag 'upstream/1.321'

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

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

commit d3762c521b22aab87919d5a8060905a553c15f56
Merge: dd49055 7e57392
Author: Damyan Ivanov 
Date:   Wed Oct 25 11:53:22 2017 +

Update upstream source from tag 'upstream/1.321'

Update to upstream version '1.321'
with Debian dir 064d137c8ea029a60efb35e8a0225dd21f38e439

 Changes |  5 +
 LICENSE |  6 +++---
 MANIFEST|  2 +-
 META.json   | 15 ---
 META.yml|  7 ---
 Makefile.PL |  6 ++
 dist.ini|  1 +
 eg/build-git|  2 +-
 lib/Git/Repository.pm   |  4 ++--
 lib/Git/Repository/Command.pm   |  2 +-
 lib/Git/Repository/Plugin.pm|  6 +++---
 lib/Git/Repository/Tutorial.pod | 37 +++--
 lib/Test/Git.pm |  2 +-
 t/00-compile.t  | 14 ++
 t/00-report-prereqs.dd  |  1 -
 t/00-report-prereqs.t   | 26 ++
 t/06-version.t  |  4 ++--
 t/author-pod-coverage.t |  4 ++--
 t/author-pod-syntax.t   |  4 ++--
 t/release-distmeta.t|  4 ++--
 20 files changed, 103 insertions(+), 49 deletions(-)

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


[libgit-repository-perl] 01/01: pristine-tar data for libgit-repository-perl_1.321.orig.tar.gz

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch pristine-tar
in repository libgit-repository-perl.

commit e443a53ff272eb6a8a0d02c60c2a74e2311c5ff2
Author: Damyan Ivanov 
Date:   Wed Oct 25 11:53:22 2017 +

pristine-tar data for libgit-repository-perl_1.321.orig.tar.gz
---
 libgit-repository-perl_1.321.orig.tar.gz.delta | Bin 0 -> 2309 bytes
 libgit-repository-perl_1.321.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libgit-repository-perl_1.321.orig.tar.gz.delta 
b/libgit-repository-perl_1.321.orig.tar.gz.delta
new file mode 100644
index 000..27d16fb
Binary files /dev/null and b/libgit-repository-perl_1.321.orig.tar.gz.delta 
differ
diff --git a/libgit-repository-perl_1.321.orig.tar.gz.id 
b/libgit-repository-perl_1.321.orig.tar.gz.id
new file mode 100644
index 000..c47f5d8
--- /dev/null
+++ b/libgit-repository-perl_1.321.orig.tar.gz.id
@@ -0,0 +1 @@
+91233023f283ebfd01d6d780eba902d7f9020bd0

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


[libgit-repository-perl] branch pristine-tar updated (06929ab -> e443a53)

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to branch pristine-tar
in repository libgit-repository-perl.

  from  06929ab   pristine-tar data for 
libgit-repository-perl_1.320.orig.tar.gz
   new  e443a53   pristine-tar data for 
libgit-repository-perl_1.321.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:
 libgit-repository-perl_1.321.orig.tar.gz.delta | Bin 0 -> 2309 bytes
 libgit-repository-perl_1.321.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libgit-repository-perl_1.321.orig.tar.gz.delta
 create mode 100644 libgit-repository-perl_1.321.orig.tar.gz.id

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


[libgit-repository-perl] 05/05: releasing package libgit-repository-perl version 1.321-1

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

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

commit 56dd2b91d760e907bfc4b02b4e394a9f82f134bc
Author: Damyan Ivanov 
Date:   Wed Oct 25 12:43:27 2017 +

releasing package libgit-repository-perl version 1.321-1
---
 debian/changelog | 11 +--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 021fb08..e612293 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,15 @@
-libgit-repository-perl (1.320-2) UNRELEASED; urgency=medium
+libgit-repository-perl (1.321-1) unstable; urgency=medium
 
+  [ Alex Muntada ]
   * Remove inactive pkg-perl members from Uploaders.
 
- -- Alex Muntada   Sun, 08 Oct 2017 17:24:47 +0200
+  [ Damyan Ivanov ]
+  * New upstream version 1.321
+  * add myself to Uploaders
+  * update years of upstream copyright
+  * declare conformance with Policy 4.1.1
+
+ -- Damyan Ivanov   Wed, 25 Oct 2017 12:37:15 +
 
 libgit-repository-perl (1.320-1) unstable; urgency=medium
 

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


[libgit-repository-perl] branch master updated (dd49055 -> 56dd2b9)

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

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

  from  dd49055   update changelog
  adds  7e57392   New upstream version 1.321
   new  d3762c5   Update upstream source from tag 'upstream/1.321'
   new  8993d7c   add myself to Uploaders
   new  7c4c5c5   update years of upstream copyright
   new  67745e8   declare conformance with Policy 4.1.1
   new  56dd2b9   releasing package libgit-repository-perl version 1.321-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 |  5 +
 LICENSE |  6 +++---
 MANIFEST|  2 +-
 META.json   | 15 ---
 META.yml|  7 ---
 Makefile.PL |  6 ++
 debian/changelog| 11 +--
 debian/control  |  3 ++-
 debian/copyright|  2 +-
 dist.ini|  1 +
 eg/build-git|  2 +-
 lib/Git/Repository.pm   |  4 ++--
 lib/Git/Repository/Command.pm   |  2 +-
 lib/Git/Repository/Plugin.pm|  6 +++---
 lib/Git/Repository/Tutorial.pod | 37 +++--
 lib/Test/Git.pm |  2 +-
 t/00-compile.t  | 14 ++
 t/00-report-prereqs.dd  |  1 -
 t/00-report-prereqs.t   | 26 ++
 t/06-version.t  |  4 ++--
 t/author-pod-coverage.t |  4 ++--
 t/author-pod-syntax.t   |  4 ++--
 t/release-distmeta.t|  4 ++--
 23 files changed, 115 insertions(+), 53 deletions(-)

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


[libgit-repository-perl] 03/05: update years of upstream copyright

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

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

commit 7c4c5c532d238d53d02e5fac726e071785e62fc9
Author: Damyan Ivanov 
Date:   Wed Oct 25 12:37:06 2017 +

update years of upstream copyright
---
 debian/copyright | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/copyright b/debian/copyright
index 9796526..9d8bb7b 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,7 +4,7 @@ Upstream-Contact: Philippe Bruhat (BooK) 
 Source: https://metacpan.org/release/Git-Repository
 
 Files: *
-Copyright: 2010-2016, Philippe Bruhat (BooK) 
+Copyright: 2010-2017, Philippe Bruhat (BooK) 
 License: Artistic or GPL-1+
 
 Files: debian/*

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


[libgit-repository-perl] 04/05: declare conformance with Policy 4.1.1

2017-10-25 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

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

commit 67745e85262ef82ad60af4aae37a539e40b301fb
Author: Damyan Ivanov 
Date:   Wed Oct 25 12:39:53 2017 +

declare conformance with Policy 4.1.1
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 54438ec..3c7d1e6 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ Build-Depends-Indep: git,
  libsystem-command-perl (>= 1.118),
  libtest-requires-git-perl,
  perl
-Standards-Version: 3.9.8
+Standards-Version: 4.1.1
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libgit-repository-perl.git
 Vcs-Git: 
https://anonscm.debian.org/git/pkg-perl/packages/libgit-repository-perl.git
 Homepage: https://metacpan.org/release/Git-Repository

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


  1   2   >