[dh-make-perl] branch master updated (99fe5fd -> 0b4413e)

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

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

  from  99fe5fd   Fix parsing of sources.list entry with options in brackets
   new  0b4413e   Use correct location for deb when using install option

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


Summary of changes:
 lib/DhMakePerl/Command/make.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


[dh-make-perl] 01/01: Use correct location for deb when using install option

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

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

commit 0b4413ebae6c890593301d780301da8b13196b7f
Author: Andy Beverley 
Date:   Sat Dec 27 23:51:28 2014 +

Use correct location for deb when using install option
---
 lib/DhMakePerl/Command/make.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/DhMakePerl/Command/make.pm b/lib/DhMakePerl/Command/make.pm
index b0bd9fb..e3b1889 100644
--- a/lib/DhMakePerl/Command/make.pm
+++ b/lib/DhMakePerl/Command/make.pm
@@ -431,7 +431,7 @@ sub install_package {
 $debname = sprintf( "%s_%s-1_%s.deb", $self->pkgname, $self->version,
 $archspec );
 
-my $deb = $self->main_dir . "/$debname";
+my $deb = $self->main_dir . "/../$debname";
 system("dpkg -i $deb") == 0
 || die "Cannot install package $deb\n";
 }

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


[dh-make-perl] 01/01: Reset Git environment variables to ensure correct repo is used

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

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

commit 8dbde447c87fa822af5f2c3d939956e79fc129d3
Author: Damyan Ivanov 
Date:   Sat May 23 15:43:37 2015 +

Reset Git environment variables to ensure correct repo is used

Under some circumstances when building recursively, it's possible
that Git environment variables will be set from previous builds,
which then point to the wrong repo directories. This patches
always undefines them before each call to Git.

Closes: #774070
---
 lib/DhMakePerl/Command/make.pm | 12 
 1 file changed, 12 insertions(+)

diff --git a/lib/DhMakePerl/Command/make.pm b/lib/DhMakePerl/Command/make.pm
index e3b1889..c06d04d 100644
--- a/lib/DhMakePerl/Command/make.pm
+++ b/lib/DhMakePerl/Command/make.pm
@@ -713,11 +713,21 @@ EOF
 return $found ? 1 : 0;
 }
 
+sub reset_git_environment {
+# The Git environment variables may be set from previous iterations
+# of this program being run. In this case, it's possible that the
+# Git module will use these to point to the wrong source tree.
+delete $ENV{'GIT_DIR'};
+delete $ENV{'GIT_WORK_TREE'};
+}
+
 sub git_import_upstream__init_debian {
 my ( $self ) = @_;
 
 require Git;
 
+$self->reset_git_environment();
+
 Git::command( 'init', $self->main_dir );
 
 my $git = Git->repository( $self->main_dir );
@@ -748,6 +758,8 @@ sub git_add_debian {
 require Git;
 require File::Which;
 
+$self->reset_git_environment;
+
 my $git = Git->repository( $self->main_dir );
 $git->command( 'add', 'debian' );
 $git->command( 'commit', '-m',

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


[dh-make-perl] branch master updated (0b4413e -> 8dbde44)

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

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

  from  0b4413e   Use correct location for deb when using install option
   new  8dbde44   Reset Git environment variables to ensure correct repo is 
used

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


Summary of changes:
 lib/DhMakePerl/Command/make.pm | 12 
 1 file changed, 12 insertions(+)

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


[dh-make-perl] branch master updated (8dbde44 -> 3dc5347)

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

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

  from  8dbde44   Reset Git environment variables to ensure correct repo is 
used
   new  ca9379a   Check existing new directory name before attempting a 
rename to it
   new  3dc5347   update changelog

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


Summary of changes:
 debian/changelog   |  9 +
 lib/DhMakePerl/Command/make.pm | 11 +--
 2 files changed, 18 insertions(+), 2 deletions(-)

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


[dh-make-perl] 02/02: update changelog

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

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

commit 3dc534743036b66be9f8b8311e5cb8345a94c387
Author: Damyan Ivanov 
Date:   Sat May 23 15:48:02 2015 +

update changelog
---
 debian/changelog | 9 +
 1 file changed, 9 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index aaf34c3..d7d43b0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,15 @@ dh-make-perl (0.84-3) UNRELEASED; urgency=medium
   * Fix parsing of sources.list entry with options in brackets. (Closes:
 #783110; Thanks Lucas Nussbaum for the bug report.)
 
+  [ Andy Beverley ]
+  * Check existing new directory name before attempting a rename to it
+(Closes: #774071)
+  * Reset Git environment variables to ensure correct repo is used
+(Closes: #774070)
+  * Use correct location for deb when using install option
+(Closes: #774072)
+
+
  -- Axel Beckert   Wed, 22 Apr 2015 20:30:03 +0200
 
 dh-make-perl (0.84-2) unstable; urgency=medium

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


[dh-make-perl] 01/02: Check existing new directory name before attempting a rename to it

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

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

commit ca9379a497cc969b1ccd649565201f1304583702
Author: Andy Beverley 
Date:   Sat Dec 27 21:36:53 2014 +

Check existing new directory name before attempting a rename to it
---
 lib/DhMakePerl/Command/make.pm | 11 +--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/lib/DhMakePerl/Command/make.pm b/lib/DhMakePerl/Command/make.pm
index c06d04d..92a6152 100644
--- a/lib/DhMakePerl/Command/make.pm
+++ b/lib/DhMakePerl/Command/make.pm
@@ -349,12 +349,19 @@ sub setup_dir {
 $new_maindir = $orig_pwd . "/" . $dist->base_id;
 
 # rename existing directory
+my $new_inc;
+my $rename_to = "$new_maindir.$$";
+while (-d $rename_to)
+{
+$new_inc++;
+$rename_to = "$new_maindir.$$-$new_inc";
+}
 if ( -d $new_maindir
-&& rename $new_maindir, "$new_maindir.$$" )
+&& rename $new_maindir, $rename_to)
 {
 print '=' x 70, "\n";
 print
-"Unpacked tarball already existed, directory renamed to 
$new_maindir.$$\n";
+"Unpacked tarball already existed, directory renamed to 
$rename_to\n";
 print '=' x 70, "\n";
 }
 system( "mv", $self->main_dir, "$new_maindir" ) == 0

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


[dh-make-perl] 03/04: new routing, info() for printing stuff in verbose mode, with an 'I: ' prefix

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

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

commit 4113db10f67798fb0f1ea6d6fd2bb6e2f8e26ecb
Author: Damyan Ivanov 
Date:   Sun May 24 09:33:56 2015 +

new routing, info() for printing stuff in verbose mode, with an 'I: ' prefix
---
 lib/DhMakePerl/Command/make.pm | 17 +
 1 file changed, 17 insertions(+)

diff --git a/lib/DhMakePerl/Command/make.pm b/lib/DhMakePerl/Command/make.pm
index 4e14c60..5d036a3 100644
--- a/lib/DhMakePerl/Command/make.pm
+++ b/lib/DhMakePerl/Command/make.pm
@@ -815,6 +815,23 @@ sub warning {
 warn "W: ", @_, "\n";
 }
 
+=item info I ...
+
+In verbose mode, prints supplied arguments on STDERR, prepended with C and
+suffixed with a new line.
+
+Does nothing in non-verbose mode.
+
+=cut
+
+sub info {
+my $self = shift;
+
+return unless $self->cfg->verbose;
+
+warn "I: ", @_, "\n";
+}
+
 =back
 
 =head1 AUTHOR

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


[dh-make-perl] 04/04: print the dpkg -i command

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

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

commit 35d5f53ca7aba335cbff62ead35a813d42861c64
Author: Damyan Ivanov 
Date:   Sun May 24 09:34:08 2015 +

print the dpkg -i command
---
 lib/DhMakePerl/Command/make.pm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/DhMakePerl/Command/make.pm b/lib/DhMakePerl/Command/make.pm
index 5d036a3..7c21233 100644
--- a/lib/DhMakePerl/Command/make.pm
+++ b/lib/DhMakePerl/Command/make.pm
@@ -441,6 +441,7 @@ sub install_package {
 my $deb = $self->main_dir . "/../$debname";
 my $dpkg_cmd = "dpkg -i $deb";
 $dpkg_cmd = "sudo $dpkg_cmd" if $>;
+$self->info("Running '$dpkg_cmd'...");
 system($dpkg_cmd) == 0
 || die "Cannot install package $deb\n";
 }

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


[dh-make-perl] 01/04: run 'dpkg -i pkg.deb' with sudo if we aren't root

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

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

commit 1eaadd589f489e7033af0c1f0ca7094d4e8336b8
Author: Damyan Ivanov 
Date:   Sun May 24 09:29:07 2015 +

run 'dpkg -i pkg.deb' with sudo if we aren't root

otherwise it is necessary to run dh-make-perl as root, which seems
a bit of an overkill (and uses root's CPAN config)
---
 lib/DhMakePerl/Command/make.pm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lib/DhMakePerl/Command/make.pm b/lib/DhMakePerl/Command/make.pm
index 92a6152..2bb8c8a 100644
--- a/lib/DhMakePerl/Command/make.pm
+++ b/lib/DhMakePerl/Command/make.pm
@@ -439,7 +439,9 @@ sub install_package {
 $archspec );
 
 my $deb = $self->main_dir . "/../$debname";
-system("dpkg -i $deb") == 0
+my $dpkg_cmd = "dpkg -i $deb";
+$dpkg_cmd = "sudo $dpkg_cmd" if $>;
+system($dpkg_cmd) == 0
 || die "Cannot install package $deb\n";
 }
 

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


[dh-make-perl] branch master updated (3dc5347 -> 35d5f53)

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

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

  from  3dc5347   update changelog
   new  1eaadd5   run 'dpkg -i pkg.deb' with sudo if we aren't root
   new  fc96f8a   bump years of copyright
   new  4113db1   new routing, info() for printing stuff in verbose mode, 
with an 'I: ' prefix
   new  35d5f53   print the dpkg -i command

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:
 lib/DhMakePerl/Command/make.pm | 24 ++--
 1 file changed, 22 insertions(+), 2 deletions(-)

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


[dh-make-perl] 02/04: bump years of copyright

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

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

commit fc96f8a524f7f89c54951f123dbfb52c5cb98f12
Author: Damyan Ivanov 
Date:   Sun May 24 09:33:31 2015 +

bump years of copyright
---
 lib/DhMakePerl/Command/make.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/DhMakePerl/Command/make.pm b/lib/DhMakePerl/Command/make.pm
index 2bb8c8a..4e14c60 100644
--- a/lib/DhMakePerl/Command/make.pm
+++ b/lib/DhMakePerl/Command/make.pm
@@ -864,7 +864,7 @@ L<http://bugs.debian.org/dh-make-perl>
 
 =item Copyright (C) 2007-2014 Gregor Herrmann 
 
-=item Copyright (C) 2007,2008,2009,2010,2011,2012 Damyan Ivanov 

+=item Copyright (C) 2007,2008,2009,2010,2011,2012,2015 Damyan Ivanov 

 
 =item Copyright (C) 2008, Roberto C. Sanchez 
 

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


[dh-make-perl] branch master updated (35d5f53 -> 1967917)

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

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

  from  35d5f53   print the dpkg -i command
   new  9b09b0d   Packaging: parse 'dist.ini' if present
   new  1967917   create_copyright: use copyright year from dist.ini 
(copyright_year)

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


Summary of changes:
 Build.PL|  1 +
 debian/control  |  2 ++
 lib/DhMakePerl/Command/Packaging.pm | 15 ++-
 3 files changed, 17 insertions(+), 1 deletion(-)

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


[dh-make-perl] 01/02: Packaging: parse 'dist.ini' if present

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

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

commit 9b09b0d165b1789001646eedfb39a65c8a06b7b1
Author: Damyan Ivanov 
Date:   Sun May 24 10:19:40 2015 +

Packaging: parse 'dist.ini' if present
---
 Build.PL| 1 +
 debian/control  | 2 ++
 lib/DhMakePerl/Command/Packaging.pm | 6 ++
 3 files changed, 9 insertions(+)

diff --git a/Build.PL b/Build.PL
index 31ce067..6cd2add 100644
--- a/Build.PL
+++ b/Build.PL
@@ -18,6 +18,7 @@ my $builder = My::Builder->new(
 'AptPkg::Config'=> 0,
 'Array::Unique' => 0,
 'Carp'  => 0,
+'Config::INI::Reader'   => 0,
 'CPAN'  => 0,
 'CPAN::Meta'=> 0,
 'Cwd'   => 0,
diff --git a/debian/control b/debian/control
index d408835..2de9da9 100644
--- a/debian/control
+++ b/debian/control
@@ -18,6 +18,7 @@ Build-Depends: debhelper (>= 8),
 Build-Depends-Indep: libapt-pkg-perl,
  libarray-unique-perl,
  libclass-accessor-perl,
+ libconfig-ini-perl,
  libdpkg-perl,
  libemail-address-perl,
  libemail-date-format-perl,
@@ -56,6 +57,7 @@ Depends: debhelper (>= 8),
  libapt-pkg-perl,
  libarray-unique-perl,
  libclass-accessor-perl,
+ libconfig-ini-perl,
  libdpkg-perl,
  libemail-address-perl,
  libemail-date-format-perl,
diff --git a/lib/DhMakePerl/Command/Packaging.pm 
b/lib/DhMakePerl/Command/Packaging.pm
index 26438cd..25e0305 100644
--- a/lib/DhMakePerl/Command/Packaging.pm
+++ b/lib/DhMakePerl/Command/Packaging.pm
@@ -21,11 +21,13 @@ __PACKAGE__->mk_accessors(
 meta perlname author
 version rules docs examples copyright
 control
+dist_ini
 )
 );
 
 use Array::Unique;
 use Carp qw(confess);
+use Config::INI::Reader ();
 use CPAN ();
 use CPAN::Meta;
 use Cwd qw( getcwd );
@@ -195,6 +197,10 @@ sub process_meta {
 
 $meta = CPAN::Meta->load_file($meta);
 $self->meta( $meta->as_struct );
+
+my $dist_ini_fn = $self->main_file('dist.ini');
+$self->dist_ini( Config::INI::Reader->read_file($dist_ini_fn) )
+if -e $dist_ini_fn;
 }
 
 sub set_package_name {

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


[dh-make-perl] 02/02: create_copyright: use copyright year from dist.ini (copyright_year)

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

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

commit 1967917d718edebac036e0145235c0990f391fe3
Author: Damyan Ivanov 
Date:   Sun May 24 10:20:23 2015 +

create_copyright: use copyright year from dist.ini (copyright_year)
---
 lib/DhMakePerl/Command/Packaging.pm | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/lib/DhMakePerl/Command/Packaging.pm 
b/lib/DhMakePerl/Command/Packaging.pm
index 25e0305..d2a6cba 100644
--- a/lib/DhMakePerl/Command/Packaging.pm
+++ b/lib/DhMakePerl/Command/Packaging.pm
@@ -981,9 +981,16 @@ sub create_copyright {
 # information for anything besides general information.
 push @res, 'Files: *';
 
+my $cprt_year;
+if ($self->dist_ini
+and $self->dist_ini->{_}{copyright_year} )
+{
+$cprt_year = $self->dist_ini->{_}{copyright_year};
+}
 # Absence of author should have already been reported in the
 # Header section
-push @res, "Copyright: $cprt_author";
+push @res,
+"Copyright: " . ( $cprt_year ? "$cprt_year, " : '' ) . $cprt_author;
 
 # This is far from foolproof, but usually works with most
 # boilerplate-generated modules.

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


[dh-make-perl] branch master updated (1967917 -> f071362)

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

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

  from  1967917   create_copyright: use copyright year from dist.ini 
(copyright_year)
   new  f071362   update changelog

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


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

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


[dh-make-perl] 01/01: update changelog

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

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

commit f071362e792868bb39adf92a75fb9986a23eb395
Author: Damyan Ivanov 
Date:   Sun May 24 10:22:40 2015 +

update changelog
---
 debian/changelog | 8 
 1 file changed, 8 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index d7d43b0..4be1e11 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -19,6 +19,14 @@ dh-make-perl (0.84-3) UNRELEASED; urgency=medium
 (Closes: #774072)
 
 
+  [ Damyan Ivanov ]
+  * run 'dpkg -i pkg.deb' with sudo if we aren't root
+  * bump years of copyright
+  * new routine, info() for printing stuff in verbose mode, with an 'I: ' 
prefix
+  * print the dpkg -i command
+  * Packaging: parse 'dist.ini' if present
+  * create_copyright: use copyright year from dist.ini (copyright_year)
+
  -- Axel Beckert   Wed, 22 Apr 2015 20:30:03 +0200
 
 dh-make-perl (0.84-2) unstable; urgency=medium

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


[dh-make-perl] 01/01: releasing package dh-make-perl version 0.85-1

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

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

commit 00f11add42c8fa1a33964b0bc5968feafdaaca3c
Author: Damyan Ivanov 
Date:   Sun May 24 16:15:28 2015 +

releasing package dh-make-perl version 0.85-1
---
 Changes   | 29 +
 debian/changelog  |  4 ++--
 lib/DhMakePerl.pm |  2 +-
 3 files changed, 32 insertions(+), 3 deletions(-)

diff --git a/Changes b/Changes
index 4e75870..aac2954 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,32 @@
+0.85 (2015-05-24)
+
+  [ Damyan Ivanov ]
+  * Config: fixup module name after possible setting it when run as 'cpan2deb'
+(Closes: #18 -- cpan2deb using wrong module from CPAN)
+
+  [ Axel Beckert ]
+  * Improve misleading error message if apt-file installed but no contents
+files could be found.
+  * Fix parsing of sources.list entry with options in brackets. (Closes:
+#783110; Thanks Lucas Nussbaum for the bug report.)
+
+  [ Andy Beverley ]
+  * Check existing new directory name before attempting a rename to it
+(Closes: #774071)
+  * Reset Git environment variables to ensure correct repo is used
+(Closes: #774070)
+  * Use correct location for deb when using install option
+(Closes: #774072)
+
+
+  [ Damyan Ivanov ]
+  * run 'dpkg -i pkg.deb' with sudo if we aren't root
+  * bump years of copyright
+  * new routine, info() for printing stuff in verbose mode, with an 'I: ' 
prefix
+  * print the dpkg -i command
+  * Packaging: parse 'dist.ini' if present
+  * create_copyright: use copyright year from dist.ini (copyright_year)
+
 0.84 (2014-10-20)
 
   [ Axel Beckert ]
diff --git a/debian/changelog b/debian/changelog
index 4be1e11..8a97bbe 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-dh-make-perl (0.84-3) UNRELEASED; urgency=medium
+dh-make-perl (0.85-1) unstable; urgency=medium
 
   [ Damyan Ivanov ]
   * Config: fixup module name after possible setting it when run as 'cpan2deb'
@@ -27,7 +27,7 @@ dh-make-perl (0.84-3) UNRELEASED; urgency=medium
   * Packaging: parse 'dist.ini' if present
   * create_copyright: use copyright year from dist.ini (copyright_year)
 
- -- Axel Beckert   Wed, 22 Apr 2015 20:30:03 +0200
+ -- Damyan Ivanov   Sun, 24 May 2015 16:12:25 +
 
 dh-make-perl (0.84-2) unstable; urgency=medium
 
diff --git a/lib/DhMakePerl.pm b/lib/DhMakePerl.pm
index d96681a..0c68037 100644
--- a/lib/DhMakePerl.pm
+++ b/lib/DhMakePerl.pm
@@ -18,7 +18,7 @@ Version 0.84
 
 =cut
 
-our $VERSION = '0.84';
+our $VERSION = '0.85';
 
 =head1 SYNOPSIS
 

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


[dh-make-perl] branch master updated (f071362 -> 00f11ad)

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

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

  from  f071362   update changelog
   new  00f11ad   releasing package dh-make-perl version 0.85-1

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


Summary of changes:
 Changes   | 29 +
 debian/changelog  |  4 ++--
 lib/DhMakePerl.pm |  2 +-
 3 files changed, 32 insertions(+), 3 deletions(-)

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


[dh-make-perl] annotated tag debian/0.85-1 created (now da4e3c2)

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

dmn pushed a change to annotated tag debian/0.85-1
in repository dh-make-perl.

at  da4e3c2   (tag)
   tagging  00f11add42c8fa1a33964b0bc5968feafdaaca3c (commit)
  replaces  debian/0.84-2
 tagged by  Damyan Ivanov
on  Sun May 24 16:15:28 2015 +

- Log -
tagging package dh-make-perl version debian/0.85-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJVYfkgAAoJENu+nU2Z0qAED+UP/3wNgzFVAqSY4/GtxKTar4EJ
agHVSCAfY2ByXiyldqWgWfL7mGDBEj3mQHoc7EoazeuW3E6/FHMoWBhZul22iGJu
lvdlsirEQx/hIveb0sp61pFwA4WkbM8JalZjHgeCNNXgZsasPK5MNAgNrXaVXjlr
9v4EKMzkn6y3a5XljO8m+rkPoOORuFt1Y+HKdRiiSleHfzxnybGw5sVzgMJqqlAJ
JP4h4D9jCIyT5jKK9w+rGBShD3O4S0SVBM5iznX8ysdfjaMopa2Qr43xJblqFInM
yLscp3Tw9Gu2F8jU2H10P/URAlhlpZZg2b86pl1dBX0Js7L/YHWm2nkNNGnwdnPY
V1dDOGVo0BAFU2gLRBuhhBTuczDytV3MZFKcy+k8VbyYsSA4J/wMW2b0qU/Q/8fI
4HooFifRb1oXLk+CXQNELdZJj3+TGfvbW6yExjv2Pn9Z/B5NYhoV9abc6UHOOzU2
mqNWPKH1w/6o/CackI9VcJhmuz59Zzu1eW/+PNuHXXcbbB+dOLx679pGvMGkwAUf
Ic+EuP8zunjOL3ZICIdqKwDHbkHbNwlxXh02tFHG6lcgSDo6ptqeMVeazOfj8lu5
bB9Tz4IS4MGz/Xmqkq7dFtm1ER0OYzhZFjC+Z2byqvkNDmxgCLuP5jL8Vwt/1rvL
s0g5U+78CUOlkmJnvxaW
=JIrW
-END PGP SIGNATURE-

Andy Beverley (2):
  Use correct location for deb when using install option
  Check existing new directory name before attempting a rename to it

Axel Beckert (2):
  Improve misleading error message if apt-file present but no contents 
files found
  Fix parsing of sources.list entry with options in brackets

Damyan Ivanov (12):
  Config: fixup module name after possible setting it when run as 'cpan2deb'
  update changelog
  Reset Git environment variables to ensure correct repo is used
  update changelog
  run 'dpkg -i pkg.deb' with sudo if we aren't root
  bump years of copyright
  new routing, info() for printing stuff in verbose mode, with an 'I: ' 
prefix
  print the dpkg -i command
  Packaging: parse 'dist.ini' if present
  create_copyright: use copyright year from dist.ini (copyright_year)
  update changelog
  releasing package dh-make-perl version 0.85-1

gregor herrmann (1):
  add YAML* question to TODO

---

This annotated tag includes the following new commits:

   new  00f11ad   releasing package dh-make-perl version 0.85-1

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


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


[libarchive-any-perl] 03/07: remove t/Acme-POE-Knee-1.10.zip frop d/copyright

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

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

commit b4ffa6aaff2735b9b6a8fecb32d7e09f354cbbc3
Author: Damyan Ivanov 
Date:   Fri May 29 20:01:58 2015 +

remove t/Acme-POE-Knee-1.10.zip frop d/copyright

all the archives under t/ are dummy. files in them contain random
garbage. for the tests to run, only the file lists are important
see https://github.com/oalders/archive-any/issues/1
---
 debian/copyright | 4 
 1 file changed, 4 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index cb94576..7904a07 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -7,10 +7,6 @@ Files: *
 Copyright: 2015 by Olaf Alders
 License: Artistic or GPL-1+
 
-Files: t/Acme-POE-Knee-1.10.zip
-Copyright: (c) 2001, Jos Boumans. All Rights Reserved.
-License: Artistic
-
 Files: debian/*
 Copyright: 2008-2011, Ernesto Hernández-Novich (USB) 
 License: Artistic or GPL-1+

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

[libarchive-any-perl] 02/07: bump year of upstream copyright

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

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

commit ea4438251325d27a6b72ec19dc3a6ea3cddb8b0c
Author: Damyan Ivanov 
Date:   Fri May 29 20:00:38 2015 +

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

diff --git a/debian/copyright b/debian/copyright
index 31c6e41..cb94576 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,7 +4,7 @@ Upstream-Contact: Olaf Alders 
 Source: https://metacpan.org/release/Archive-Any
 
 Files: *
-Copyright: 2013 by Olaf Alders
+Copyright: 2015 by Olaf Alders
 License: Artistic or GPL-1+
 
 Files: t/Acme-POE-Knee-1.10.zip

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


[libarchive-any-perl] branch master updated (131e91c -> 427ea85)

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

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

  from  131e91c   Update debian/copyright format specification to 1.0
  adds  bbc631e   Imported Upstream version 0.0942
   new  78bb10f   Merge tag 'upstream/0.0942'
   new  ea44382   bump year of upstream copyright
   new  b4ffa6a   remove t/Acme-POE-Knee-1.10.zip frop d/copyright
   new  0538a39   add patch fixing package tests
   new  e22d475   add Testsuite header
   new  6242bec   drop 'perl' from B-D-I, as it is already in B-D
   new  427ea85   Declare conformance with Policy 3.9.6

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:
 Build.PL  |  30 +--
 CONTRIBUTORS  |   9 ++--
 Changes   |   4 ++
 INSTALL   |   9 ++--
 LICENSE   |   8 +--
 MANIFEST  |   4 +-
 META.json |  21 +---
 Makefile.PL   |  55 ++-
 README|  94 +++-
 anonymize-archives| 121 ++
 cpanfile  |  28 ++
 debian/control|   6 +--
 debian/copyright  |   6 +--
 debian/patches/our-ISA.patch  |  36 +
 debian/patches/series |   1 +
 dist.ini  |  29 +-
 lib/Archive/Any.pm|  11 ++--
 lib/Archive/Any/Plugin.pm |  11 ++--
 lib/Archive/Any/Plugin/Tar.pm |  11 ++--
 lib/Archive/Any/Plugin/Zip.pm |  11 ++--
 lib/Archive/Any/Tar.pm|  11 ++--
 lib/Archive/Any/Zip.pm|  11 ++--
 perltidy.LOG  |  21 
 t/Acme-POE-Knee-1.10.zip  | Bin 6625 -> 12875 bytes
 t/LoadHtml.5_0.tar.gz | Bin 25556 -> 74424 bytes
 t/impolite.tar.gz | Bin 1315 -> 3904 bytes
 t/lib.tgz | Bin 2214 -> 9768 bytes
 t/lib.zip | Bin 5509 -> 10669 bytes
 t/naughty.hominawoof  | Bin 20480 -> 11264 bytes
 t/naughty.tar | Bin 20480 -> 11264 bytes
 t/naughty.tar.gz  | Bin 6423 -> 19589 bytes
 t/your-0.01.tar.gz| Bin 11411 -> 30626 bytes
 32 files changed, 369 insertions(+), 179 deletions(-)
 create mode 100755 anonymize-archives
 create mode 100644 cpanfile
 create mode 100644 debian/patches/our-ISA.patch
 create mode 100644 debian/patches/series
 delete mode 100644 perltidy.LOG

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


[libarchive-any-perl] 06/07: drop 'perl' from B-D-I, as it is already in B-D

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

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

commit 6242bec6a5c3d69d838204bcc0860de69f392fcf
Author: Damyan Ivanov 
Date:   Fri May 29 20:47:38 2015 +

drop 'perl' from B-D-I, as it is already in B-D
---
 debian/control | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/debian/control b/debian/control
index 6294e02..003407f 100644
--- a/debian/control
+++ b/debian/control
@@ -11,8 +11,7 @@ Build-Depends-Indep: libarchive-zip-perl,
  libmodule-find-perl,
  libtest-pod-coverage-perl,
  libtest-pod-perl,
- libtest-warn-perl,
- perl
+ libtest-warn-perl
 Standards-Version: 3.9.1
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libarchive-any-perl.git
 Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libarchive-any-perl.git

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


[libarchive-any-perl] 01/01: pristine-tar data for libarchive-any-perl_0.0942.orig.tar.gz

2015-05-29 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 libarchive-any-perl.

commit cadc70293bd781dc5cf070912dc56606b43a4d54
Author: Damyan Ivanov 
Date:   Fri May 29 17:07:35 2015 +

pristine-tar data for libarchive-any-perl_0.0942.orig.tar.gz
---
 libarchive-any-perl_0.0942.orig.tar.gz.delta | Bin 0 -> 1906 bytes
 libarchive-any-perl_0.0942.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libarchive-any-perl_0.0942.orig.tar.gz.delta 
b/libarchive-any-perl_0.0942.orig.tar.gz.delta
new file mode 100644
index 000..a9d13cb
Binary files /dev/null and b/libarchive-any-perl_0.0942.orig.tar.gz.delta differ
diff --git a/libarchive-any-perl_0.0942.orig.tar.gz.id 
b/libarchive-any-perl_0.0942.orig.tar.gz.id
new file mode 100644
index 000..1becda2
--- /dev/null
+++ b/libarchive-any-perl_0.0942.orig.tar.gz.id
@@ -0,0 +1 @@
+66872f70c5ed85a84edf310247ac5a21d5434283

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


[libarchive-any-perl] 04/07: add patch fixing package tests

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

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

commit 0538a39c4ba72adc15191f2cfa743d9b960212b2
Author: Damyan Ivanov 
Date:   Fri May 29 20:43:21 2015 +

add patch fixing package tests
---
 debian/patches/our-ISA.patch | 36 
 debian/patches/series|  1 +
 2 files changed, 37 insertions(+)

diff --git a/debian/patches/our-ISA.patch b/debian/patches/our-ISA.patch
new file mode 100644
index 000..e9f4792
--- /dev/null
+++ b/debian/patches/our-ISA.patch
@@ -0,0 +1,36 @@
+Description: Declare @ISA before using it
+ Otherwise the automated package check scripts in Debian fail
+ .
+ Are these modules used at all?
+Author: Damyan Ivanov 
+
+--- a/lib/Archive/Any/Tar.pm
 b/lib/Archive/Any/Tar.pm
+@@ -3,7 +3,7 @@ $Archive::Any::Tar::VERSION = '0.0942';
+ use strict;
+ 
+ require Archive::Any;
+-@ISA = qw(Archive::Any);
++our @ISA = qw(Archive::Any);
+ 
+ use Archive::Tar;
+ use Cwd;
+--- a/lib/Archive/Any/Zip.pm
 b/lib/Archive/Any/Zip.pm
+@@ -3,7 +3,7 @@ $Archive::Any::Zip::VERSION = '0.0942';
+ use strict;
+ 
+ require Archive::Any;
+-@ISA = qw(Archive::Any);
++our @ISA = qw(Archive::Any);
+ 
+ use Archive::Zip qw(:ERROR_CODES);
+ use Cwd;
+--- a/t/00compile.t
 b/t/00compile.t
+@@ -6,3 +6,5 @@ use_ok( 'Archive::Any' );
+ use_ok( 'Archive::Any::Plugin' );
+ use_ok( 'Archive::Any::Plugin::Zip' );
+ use_ok( 'Archive::Any::Plugin::Tar' );
++use_ok( 'Archive::Any::Tar' );
++use_ok( 'Archive::Any::Zip' );
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..bac966e
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+our-ISA.patch

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


[libarchive-any-perl] 01/07: Merge tag 'upstream/0.0942'

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

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

commit 78bb10f3ff381ce8a8f6d947cb59d9202b49dcec
Merge: 131e91c bbc631e
Author: Damyan Ivanov 
Date:   Fri May 29 17:07:35 2015 +

Merge tag 'upstream/0.0942'

Upstream version 0.0942

 Build.PL  |  30 +--
 CONTRIBUTORS  |   9 ++--
 Changes   |   4 ++
 INSTALL   |   9 ++--
 LICENSE   |   8 +--
 MANIFEST  |   4 +-
 META.json |  21 +---
 Makefile.PL   |  55 ++-
 README|  94 +++-
 anonymize-archives| 121 ++
 cpanfile  |  28 ++
 dist.ini  |  29 +-
 lib/Archive/Any.pm|  11 ++--
 lib/Archive/Any/Plugin.pm |  11 ++--
 lib/Archive/Any/Plugin/Tar.pm |  11 ++--
 lib/Archive/Any/Plugin/Zip.pm |  11 ++--
 lib/Archive/Any/Tar.pm|  11 ++--
 lib/Archive/Any/Zip.pm|  11 ++--
 perltidy.LOG  |  21 
 t/Acme-POE-Knee-1.10.zip  | Bin 6625 -> 12875 bytes
 t/LoadHtml.5_0.tar.gz | Bin 25556 -> 74424 bytes
 t/impolite.tar.gz | Bin 1315 -> 3904 bytes
 t/lib.tgz | Bin 2214 -> 9768 bytes
 t/lib.zip | Bin 5509 -> 10669 bytes
 t/naughty.hominawoof  | Bin 20480 -> 11264 bytes
 t/naughty.tar | Bin 20480 -> 11264 bytes
 t/naughty.tar.gz  | Bin 6423 -> 19589 bytes
 t/your-0.01.tar.gz| Bin 11411 -> 30626 bytes
 28 files changed, 328 insertions(+), 171 deletions(-)

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


[libarchive-any-perl] 07/07: Declare conformance with Policy 3.9.6

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

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

commit 427ea8520c51007e13c1a9303e5a8f105e4ff515
Author: Damyan Ivanov 
Date:   Fri May 29 20:49:22 2015 +

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

diff --git a/debian/control b/debian/control
index 003407f..b03241b 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ Build-Depends-Indep: libarchive-zip-perl,
  libtest-pod-coverage-perl,
  libtest-pod-perl,
  libtest-warn-perl
-Standards-Version: 3.9.1
+Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libarchive-any-perl.git
 Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libarchive-any-perl.git
 Homepage: https://metacpan.org/release/Archive-Any

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


[libarchive-any-perl] branch pristine-tar updated (f53748b -> cadc702)

2015-05-29 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 libarchive-any-perl.

  from  f53748b   pristine-tar data for 
libarchive-any-perl_0.0941.orig.tar.gz
   new  cadc702   pristine-tar data for 
libarchive-any-perl_0.0942.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:
 libarchive-any-perl_0.0942.orig.tar.gz.delta | Bin 0 -> 1906 bytes
 libarchive-any-perl_0.0942.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libarchive-any-perl_0.0942.orig.tar.gz.delta
 create mode 100644 libarchive-any-perl_0.0942.orig.tar.gz.id

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


[libarchive-any-perl] 05/07: add Testsuite header

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

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

commit e22d4750cc4d5fbd21a28ac4860d1d47a233de8a
Author: Damyan Ivanov 
Date:   Fri May 29 20:43:33 2015 +

add Testsuite header
---
 debian/control | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/control b/debian/control
index bcd4d42..6294e02 100644
--- a/debian/control
+++ b/debian/control
@@ -17,6 +17,7 @@ Standards-Version: 3.9.1
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libarchive-any-perl.git
 Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libarchive-any-perl.git
 Homepage: https://metacpan.org/release/Archive-Any
+Testsuite: autopkgtest-pkg-perl
 
 Package: libarchive-any-perl
 Architecture: all

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


[libarchive-any-perl] annotated tag upstream/0.0942 created (now 884356c)

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

dmn pushed a change to annotated tag upstream/0.0942
in repository libarchive-any-perl.

at  884356c   (tag)
   tagging  bbc631efe820cc000c74ecb9453fa6763ca6323d (commit)
  replaces  upstream/0.0941
 tagged by  Damyan Ivanov
on  Fri May 29 17:07:35 2015 +

- Log -
Upstream version 0.0942

Damyan Ivanov (1):
  Imported Upstream version 0.0942

---

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/libarchive-any-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


[libarchive-any-perl] 01/02: mark patch as forwarded

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

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

commit 7623cb28fa28f7dada9806717a102e5f8dc046fd
Author: Damyan Ivanov 
Date:   Fri May 29 20:54:48 2015 +

mark patch as forwarded
---
 debian/patches/our-ISA.patch | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/debian/patches/our-ISA.patch b/debian/patches/our-ISA.patch
index e9f4792..945c61d 100644
--- a/debian/patches/our-ISA.patch
+++ b/debian/patches/our-ISA.patch
@@ -3,6 +3,8 @@ Description: Declare @ISA before using it
  .
  Are these modules used at all?
 Author: Damyan Ivanov 
+Forwarded: https://github.com/oalders/archive-any/issues/3
+Bug: https://github.com/oalders/archive-any/issues/3
 
 --- a/lib/Archive/Any/Tar.pm
 +++ b/lib/Archive/Any/Tar.pm

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


[libarchive-any-perl] annotated tag debian/0.0942-1 created (now 5dc886d)

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

dmn pushed a change to annotated tag debian/0.0942-1
in repository libarchive-any-perl.

at  5dc886d   (tag)
   tagging  e1a65e21f40706a49363fa85447e3b49005b3a39 (commit)
  replaces  upstream/0.0942
 tagged by  Damyan Ivanov
on  Fri May 29 20:56:30 2015 +

- Log -
tagging package libarchive-any-perl version debian/0.0942-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJVaNJ+AAoJENu+nU2Z0qAE95AP/1j3BCd5xdso7Rt4U8jycpfb
IxFkMx2KYS22mDXX2qFcRLv8hzUbXt5H+rasprq9hcpdygP37ORuA/ZZFoNk+skv
FcRgX9HRNDXwo0DsrDf+SAklqQQjD8Z3ueukARNTZrHStg+/V/nAWdwCoFeeMGjA
Q2xwmdV2JPX57JN8yG7+8QZdjbvADrXCwuikhaGu6otm7EagXOiPW6mGzbIOAApF
DYZ7pqWnIzT/SabbdVB70PR9gyOIL3PsYd0hgclrQyQXLgwgMKXCaxYM2dG0xyT8
JvfpQYQE4pV0xXhBQqfzEaSTu6UpHuIiZS3NC3xkKawmFj5CCUolK9fqgvCZIFkt
u59AgW9O7HFBeKgDsObFIzzAjgv4J/kP/ryl/LE0W53AXH3wBcXVUPhuFCrdFNQS
y46zzLBS2ZMWw6F4JK78yOw8FJDcOZIurabVog5EMq3V9dBARDpucyvR7caxKm26
45zk8mm1pm9kVs+R2gMYLEELaVoniQ3YA5HBjJfPXWs24qO62hS5BZF4fINNbzG4
ng3+cP8yOe9HUWJGiwi5pwfKm7uKVeEimSIjsPx9VqSRpS5kBFz8NYN3Qp0vLnjo
S1dvKetXh5yJ4jeB+ad6D/GUqIGnp6RutY3/ExUlZ//PUpQ+mgQrdb5t1I9oqbgY
2dpaWO67O3P3RGUQCQXn
=qTER
-END PGP SIGNATURE-

Ansgar Burchardt (1):
  debian/control: Convert Vcs-* fields to Git.

Axel Beckert (1):
  Update debian/copyright format specification to 1.0

Damyan Ivanov (14):
  Merge tag 'upstream/0.0940'
  Imported Upstream version 0.0940
  update copyright (upstream author change)
  describe t/Acme-POE-Knee-1.10.zip id debian/copyright
  add TODO about unlicensed content under t/
  Merge tag 'upstream/0.0942'
  bump year of upstream copyright
  remove t/Acme-POE-Knee-1.10.zip frop d/copyright
  add patch fixing package tests
  add Testsuite header
  drop 'perl' from B-D-I, as it is already in B-D
  Declare conformance with Policy 3.9.6
  mark patch as forwarded
  releasing package libarchive-any-perl version 0.0942-1

Ernesto Hernández-Novich (14):
  [svn-inject] Applying Debian modifications to trunk
  Initial Release (Closes: #483704).
  Removed "Add commands..." comments from debian/rules
  Added libarchive-perl-tar as dependency
  Removed versioned dependency on libarchive-tar-perl
  * Included copyright clarification e-mail received from upstream
  Removed unneeded headers from copyright clarification e-mail
  Fixed Depends and Build-Dependes to perl-modules (>= 5.10) as suggested 
by FTP Master's REJECT message
  Upgraded to DH using dh-make-perl refresh mode.
  Fixed typo on debian/changelog.
  Really upgrade package to DH7 :)
  Do not install README file since it's just a copy of the manpage.
  * Upgraded to DH8 using dh-make-perl refresh mode;
  removed versioned dependencies already provided in old-stable;

Florian Schlichting (2):
  Merge tag 'upstream/0.0941'
  Imported Upstream version 0.0941

Gregor Herrmann (3):
  [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
  [masscommit] debian/control: s/perl-modules/perl/, and related tweaks

Nathan Handler (1):
  [mass-commit] debian/watch: Modify to ignore development releases.

Roberto C. Sanchez (1):
  TODO: Fix debhelper discrepancy.  In debian/compat it says 5, but in 
control

Ryan Niebur (1):
  clean up duplicated changelog entries from nhandler's mass-commit

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

gregor herrmann (4):
  debian/control: update {versioned,alternative} (build) dependencies.
  update changelog
  Strip trailing slash from metacpan URLs.
  update changelog

---

This annotated tag includes the following new commits:

   new  7623cb2   mark patch as forwarded
   new  e1a65e2   releasing package libarchive-any-perl version 0.0942-1

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


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

[libarchive-any-perl] branch master updated (427ea85 -> e1a65e2)

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

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

  from  427ea85   Declare conformance with Policy 3.9.6
   new  7623cb2   mark patch as forwarded
   new  e1a65e2   releasing package libarchive-any-perl version 0.0942-1

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


Summary of changes:
 debian/changelog | 17 +++--
 debian/patches/our-ISA.patch |  2 ++
 2 files changed, 13 insertions(+), 6 deletions(-)

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


[libarchive-any-perl] 02/02: releasing package libarchive-any-perl version 0.0942-1

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

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

commit e1a65e21f40706a49363fa85447e3b49005b3a39
Author: Damyan Ivanov 
Date:   Fri May 29 20:56:30 2015 +

releasing package libarchive-any-perl version 0.0942-1
---
 debian/changelog | 17 +++--
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index cff72af..34cb26c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,6 @@
-libarchive-any-perl (0.0941-1) UNRELEASED; urgency=low
+libarchive-any-perl (0.0942-1) unstable; urgency=low
 
-  TODO: repackage or wait for upstream to fix
-  https://github.com/oalders/archive-any/issues/1 (unlicensed tarballs
-  under t)
+  * Team upload
 
   [ gregor herrmann ]
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
@@ -38,7 +36,6 @@ libarchive-any-perl (0.0941-1) UNRELEASED; urgency=low
   [ Damyan Ivanov ]
   * Imported Upstream version 0.0940
   * Update copyright (upstream author change)
-  * Describe t/Acme-POE-Knee-1.10.zip id debian/copyright
 
   [ gregor herrmann ]
   * Strip trailing slash from metacpan URLs.
@@ -53,7 +50,15 @@ libarchive-any-perl (0.0941-1) UNRELEASED; urgency=low
   * Update debian/copyright format specification to 1.0 and remove
 line-break between key and value.
 
- -- Florian Schlichting   Fri, 07 Mar 2014 22:28:32 +0100
+  [ Damyan Ivanov ]
+  * Imported Upstream version 0.0942
+  * bump year of upstream copyright
+  * add patch fixing automatic package tests
+  * add Testsuite header
+  * drop 'perl' from B-D-I, as it is already in B-D
+  * Declare conformance with Policy 3.9.6
+
+ -- Damyan Ivanov   Fri, 29 May 2015 20:54:53 +
 
 libarchive-any-perl (0.0932-1) unstable; urgency=low
 

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


[liblingua-en-words2nums-perl] 05/05: update changelog, convert to non-native package

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository liblingua-en-words2nums-perl.

commit 54178949b046ba37e471bb6abfce20021f798132
Author: Damyan Ivanov 
Date:   Tue Nov 11 19:02:29 2014 +

update changelog, convert to non-native package
---
 debian/changelog | 12 +---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 8b48c55..dca5f7c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,14 @@
-liblingua-en-words2nums-perl (0.20) UNRELEASED; urgency=medium
+liblingua-en-words2nums-perl (0.19-1) UNRELEASED; urgency=medium
 
-  * Take over for the Debian Perl Group; Closes: #768520 -- RFA/ITA
+  * Take over for the Debian Perl Group; Closes: #768520 -- O
+  * debian/control: Added: Vcs-Browser field (source stanza). Changed:
+Maintainer set to Debian Perl Group  (was: Debian QA Group
+); Put myself in Uploaders.
+  * Add debian/watch.
+  * Point Vcs-* to pkg-perl repositorry
 
- -- Damyan Ivanov   Tue, 11 Nov 2014 18:53:14 +
+ -- Damyan Ivanov   Tue, 11 Nov 2014 18:53:14 +
 
 liblingua-en-words2nums-perl (0.19) unstable; urgency=medium
 

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


[liblingua-en-words2nums-perl] branch master created (now 5417894)

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to branch master
in repository liblingua-en-words2nums-perl.

at  5417894   update changelog, convert to non-native package

This branch includes the following new commits:

   new  02667c5   [takeover-for-pkg-perl] Document the takeover
   new  f923acc   add watch file
   new  77334f1   update maitainer/uploader for pkg-perl
   new  d4fd1c0   update Vcs-* for pkg-perl repository
   new  5417894   update changelog, convert to non-native package

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/liblingua-en-words2nums-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


[liblingua-en-words2nums-perl] 04/05: update Vcs-* for pkg-perl repository

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository liblingua-en-words2nums-perl.

commit d4fd1c06f09ff4681b52ba9b8300e83fcf234fb9
Author: Damyan Ivanov 
Date:   Tue Nov 11 19:01:16 2014 +

update Vcs-* for pkg-perl repository
---
 debian/control | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index b1170f4..9d7f6fb 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,8 @@ Build-Depends: debhelper (>= 7), perl5, dpkg-dev (>= 1.9.0)
 Maintainer: Debian Perl Group 
 Uploaders: Damyan Ivanov 
 Standards-Version: 3.8.4
-Vcs-Git: git://git.kitenet.net/words2nums
+Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/liblingua-en-words2nums-perl.git
+Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/liblingua-en-words2nums-perl.git
 Homepage: http://kitenet.net/~joey/code/words2nums/
 
 Package: liblingua-en-words2nums-perl

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


[liblingua-en-words2nums-perl] 01/01: pristine-tar data for liblingua-en-words2nums-perl_0.18.tar.gz

2014-11-11 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 liblingua-en-words2nums-perl.

commit 64e34d379af79550323b09667d470816fd4389c5
Author: Joey Hess 
Date:   Fri Feb 5 17:18:07 2010 -0500

pristine-tar data for liblingua-en-words2nums-perl_0.18.tar.gz
---
 liblingua-en-words2nums-perl_0.18.tar.gz.delta | Bin 0 -> 1122 bytes
 liblingua-en-words2nums-perl_0.18.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/liblingua-en-words2nums-perl_0.18.tar.gz.delta 
b/liblingua-en-words2nums-perl_0.18.tar.gz.delta
new file mode 100644
index 000..b56dc00
Binary files /dev/null and b/liblingua-en-words2nums-perl_0.18.tar.gz.delta 
differ
diff --git a/liblingua-en-words2nums-perl_0.18.tar.gz.id 
b/liblingua-en-words2nums-perl_0.18.tar.gz.id
new file mode 100644
index 000..2084a84
--- /dev/null
+++ b/liblingua-en-words2nums-perl_0.18.tar.gz.id
@@ -0,0 +1 @@
+a90a4880af2274bd2103d57a913acaf623d2d12d

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


[liblingua-en-words2nums-perl] annotated tag 0.18 created (now a90a488)

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag 0.18
in repository liblingua-en-words2nums-perl.

at  a90a488   (tag)
   tagging  71353276dd5d428fa2e508def4d4e25693b9733f (commit)
  replaces  0.17
 tagged by  Joey Hess
on  Fri Feb 5 17:18:06 2010 -0500

- Log -
tagging version 0.18
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iQIVAwUAS2yZHskQ2SIlEuPHAQip/hAAqOKfrb0fnfpd7uBQ7shX4wnSyX6ecsbO
9AbY3v9WAk1gbksuh6ZVNMNLWhJoFOyfIoahylgIcFS9k8Hz5SO1dm1lN+DWxlyp
f2GDyqPpWrKdRUiIjYZHS3EeQNZtLdTBvabCZNQGozJ7YGlzyl1HLnnYVDx3WVSO
kBuRFFpBmQUq8C1tUK5dsozvF0JuqCQwthWD+4bZJRiVPGg6/grNIGuxTCCsVChi
cS2ZkkB2U+AWWQX+ATmAdmkJG8lQ7skpub5t69roKET3dqrbPbp1NS2c+/ITPN/c
n1hL6IP6rkyxJyaEaCqjfZTo0UrOARhsEnVz6tbndN65s8lIpUUv1Yo+5U0bjjXJ
ygPQKZbJN1l0eIw/U/WrvtvQwd4FblQZWbtpxrTmmeo8BaohNN1rx0DC23iyNJnY
f8Ke7Fnh84YrUg70c1QgPzNm81xpWuYlTfqiXWGLpHJ4FbJdEZjb2ohZY6DZiyQV
ev1xvxUCeiv4i9A0rgJUKdYGCxmnpjDdS7W6CKanNQpDZBPnoHg2nvHPdrsO2uKw
+4qZ79h54OD/nV/u8R6X5Z/AGh471RJRSg/xq0PCYIlNUDU4X8tqALlm8k7+R2wb
o32gPN0FHPdZqczqxvyqtKjc/n+kt0B/T+glmXA0fZrMQnCyhfC11dv9cnSgQRH4
EapM/BhTNSA=
=Hp7q
-END PGP SIGNATURE-

Joey Hess (2):
  Remove the PM_FILTER to support Windows. (rt.cpan.org #38101)
  releasing version 0.18

---

No new revisions were added by this update.

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


[liblingua-en-words2nums-perl] annotated tag debian/0.19 created (now 5ebe170)

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag debian/0.19
in repository liblingua-en-words2nums-perl.

at  5ebe170   (tag)
   tagging  a90347985936faf4f03b89a460106f0d15b63234 (commit)
  replaces  0.19
 tagged by  Joey Hess
on  Fri Nov 7 22:00:12 2014 -0400

- Log -
liblingua-en-words2nums-perl release 0.19 for unstable (sid) [dgit]
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUAVF2XFckQ2SIlEuPHAQKMCA/9EOaCswrMv48Nq37AHY/4WT0fnDLRY1sE
bKk7BqehPo+N1w4NFbufMlIKJ/bYzVmjSg41eem1gNVh73N2zu991/fue7+oj3Z/
ZyDd+ZtSkBSyGyjkedmp55o7J5LbrnmbARw2rLMFrHXkzYp6DiVsrQUdAbAFUGEQ
P6eJgIIuTA3/ae0pr/EGXKwkZpanLSrEn/8t1aGoUKpw0Z5Afaj7lIRaO+HNLr+3
1bYrTFWFssXi59rQTBI2SZ3IC02tJweBaB8gNppww2XqtYMkT1YhVU5iXjAzrt+l
v2Q2cJlUSGxI0vwEHgV57Q0LEc3X3xpu50ChCgVHjWI81crxlMzT/isZiOJaxG47
+8SsXitYtexWUnv6LMS5IBM6OghHNlu/dRzwCEgNT3u6xi6kBp0MqLAo6/gmtVCB
kBhEBlxa7lni6VsVtmFvtxOn1zvCj2PluNxU7CUpw6ai8ntQo7W5VafRWZPwAjEd
xQzR+fXjiT6gcxijKc2W03+32hLSNklDMqxuCFTL/uCIn/vgvWSGzRST5smHpeFO
0SqUbk0uFhNfTCwXRzU3fYzbmPnHMkPd9qukIrWmcuG20fg8lEeVqxRGRxGExlMh
q7vZkJdcj2BxnqzU66IAzDliObX6Yb9Xo/KLnmwCP8P9ZdTgOV3GyQGDZXWSgRa+
j9809/XzpL4=
=0GFV
-END PGP SIGNATURE-

Joey Hess (2):
  liblingua-en-words2nums-perl (0.18) unstable; urgency=low
  Merge remote-tracking branch 'refs/remotes/dgit/dgit/sid'

---

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/liblingua-en-words2nums-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


[liblingua-en-words2nums-perl] annotated tag 0.19 created (now d9bd24a)

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag 0.19
in repository liblingua-en-words2nums-perl.

at  d9bd24a   (tag)
   tagging  e1f3e079e48e501f9d1390e2b14d22cb2ee65ce8 (commit)
  replaces  0.18
 tagged by  Joey Hess
on  Fri Nov 7 22:01:32 2014 -0400

- Log -
tagging package liblingua-en-words2nums-perl version 0.19
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUAVF15fMkQ2SIlEuPHAQKh4A//e/QrzOotCz/eoeW21+4K6cNixf9yHa4x
qXBT3+tcc5mDmJMQ96kkcMxe+PO5zsGI8sHxdlbdeiyDeEpEQBPqqYuXpnK9bxc+
proi0AEax+Ox09rQHAFuCWgZoqS0kf2H3CS1iARip0qt4Sbuw/olyZMtH4MtkNE0
cXuCczLqMuxNsKfVsp0E5EtcX8qP1M8V5RJ0koFXRHmYyH7ObyNGTdyAhTl8pBCo
qaPcxybc1lS3OdfOqCIEzChesE0cMq6Jo4ZD+A00VJdCeYBrAOjatj03wkKFhqYn
GsHv3mZnWlEzuDFBl1ZeHQgaS1xMosPkrcBt+u3OKmIvxQ9xaVZcNVUJGMDIaD3W
Ser+nozF5WLhD5jKGT7Cw6pY2ne9aRWm5J9z9t+S63J9+RQCDhu0QfEqOOWb3eDB
SfdBghnNvh7ngkEZEHPw3J1mhPQEDTWmn7SE4Rv0Mi+uk7EGPfOBnrQwqjYTETKY
C+n/FNa7leX/MQytsCGlHNZ9Fy34/S+A6ZrFGHrGC2vXHTvGtBPvV2ldA7kRteBl
gsYio9Jo8T6/zNzd7sAlvCcMNQVAQeYaxSk98dB4/SlPJWRHDuc9tgZLn2OwaXTx
HmoufJrEnuqdo4m8nZdHgdwhUQiyJ3yUbDOucNPGPhzUyB7dKDnXEICC8s9V72YB
bVWRRi1jpj0=
=umi1
-END PGP SIGNATURE-

Joey Hess (8):
  liblingua-en-words2nums-perl (0.18) unstable; urgency=low
  use dpkg-mergechangelog
  DEP5
  updated debian copyright format url
  add licence field
  Merge remote-tracking branch 'dgit/dgit/sid'
  Orphaning the Debian package.
  prep release

---

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/liblingua-en-words2nums-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


[liblingua-en-words2nums-perl] branch pristine-tar created (now 64e34d3)

2014-11-11 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 liblingua-en-words2nums-perl.

at  64e34d3   pristine-tar data for 
liblingua-en-words2nums-perl_0.18.tar.gz

This branch includes the following new commits:

   new  64e34d3   pristine-tar data for 
liblingua-en-words2nums-perl_0.18.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.


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


[liblingua-en-words2nums-perl] 02/05: add watch file

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository liblingua-en-words2nums-perl.

commit f923acc66177109bc06b099a185ac8975f1ae685
Author: Damyan Ivanov 
Date:   Tue Nov 11 18:54:37 2014 +

add watch file
---
 debian/watch | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/debian/watch b/debian/watch
new file mode 100644
index 000..cd612c6
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://metacpan.org/release/Lingua-EN-Words2Nums  
.*/Lingua-EN-Words2Nums-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$

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


[liblingua-en-words2nums-perl] annotated tag 0.16 created (now ede8882)

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag 0.16
in repository liblingua-en-words2nums-perl.

at  ede8882   (tag)
   tagging  0d1bb8f1b5760b8fb3687b7b5afc2247122feaf7 (commit)
 tagged by  Joey Hess
on  Fri Oct 19 22:22:47 2007 -0400

- Log -
tagging version 0.16
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQBHGWZ32tp5zXiKP0wRAqvlAKCfF6xJtgdYPdTf18um1T92kkxWzACgpz6G
BSXprOCT/2HHL6O/Y0HPhNY=
=65h/
-END PGP SIGNATURE-

Joey Hess (2):
  * The repository has moved from svn to git.
  releasing version 0.16

joey (34):
  new
  new
  * Added support for trillion through googolplex, and added localization
  * If the entire string is ignorables ("and", "a", punctuation), don't
  bignums
  * Added big numbers between undecillion and trigintillion. Also
  various updates
  * Don't try to test for inf, since it seems "Infinity" is the string on 
some
  * Use debhelper v4.
  * Localize $_.
  * Localize $_.
  moved
  * Corrected parsing of "fourth". Oops!
  foo
  mostly section changes, also a typo
  * Add proper spelling of "forty", and alternate "nought" spelling.
  web page
  fix
  * Do not pass through things of the form "10-11", since they're note 
really
  updates & sync
  updates for moved deb repo
  * Move from build-depends-indep to build-depends to meet current policy.
  perl 5.8.1 fix
  * Remove quoting in Makefile.PL so it will build under 5.8.1 (this breaks
  move after cvs2svn
  updates
  releasing version 0.14
  * Remove the tests that involve exponentents, as they may not on 64 bit
  moving non-externals out of src directory
  new announcement system
  add XS-Vcs-Svn fields
  * Update url to the web site.
  * Current standards-version (no real changes).
  Vcs- fields now official

---

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/liblingua-en-words2nums-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


[liblingua-en-words2nums-perl] 03/05: update maitainer/uploader for pkg-perl

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository liblingua-en-words2nums-perl.

commit 77334f19c6be0bf0eb96a07f0eb6255b19700264
Author: Damyan Ivanov 
Date:   Tue Nov 11 19:00:59 2014 +

update maitainer/uploader for pkg-perl
---
 debian/control | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 169ef1e..b1170f4 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,8 @@ Source: liblingua-en-words2nums-perl
 Section: perl
 Priority: optional
 Build-Depends: debhelper (>= 7), perl5, dpkg-dev (>= 1.9.0)
-Maintainer: Debian QA Group 
+Maintainer: Debian Perl Group 
+Uploaders: Damyan Ivanov 
 Standards-Version: 3.8.4
 Vcs-Git: git://git.kitenet.net/words2nums
 Homepage: http://kitenet.net/~joey/code/words2nums/

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


[liblingua-en-words2nums-perl] 01/05: [takeover-for-pkg-perl] Document the takeover

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository liblingua-en-words2nums-perl.

commit 02667c58270508211805d6aba4c37345a50ef3a5
Author: Damyan Ivanov 
Date:   Tue Nov 11 18:53:14 2014 +

[takeover-for-pkg-perl] Document the takeover
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 257b830..8b48c55 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+liblingua-en-words2nums-perl (0.20) UNRELEASED; urgency=medium
+
+  * Take over for the Debian Perl Group; Closes: #768520 -- RFA/ITA
+
+ -- Damyan Ivanov   Tue, 11 Nov 2014 18:53:14 +
+
 liblingua-en-words2nums-perl (0.19) unstable; urgency=medium
 
   * Orphaning the Debian package.

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


[liblingua-en-words2nums-perl] annotated tag 0.17 created (now 261f78c)

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag 0.17
in repository liblingua-en-words2nums-perl.

at  261f78c   (tag)
   tagging  03b033f771c96c13d8ce2d0a7a686c3ed204fb1b (commit)
  replaces  0.16
 tagged by  Joey Hess
on  Tue Jul 22 00:31:12 2008 -0400

- Log -
tagging version 0.17
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iD8DBQBIhWKQ2tp5zXiKP0wRAqfpAKDFzO2+2Hg8vvLM/XPrZHnK0jMdcgCfYXET
lweNUcyHBaWdFlkdzXjBJHs=
=Bllt
-END PGP SIGNATURE-

Joey Hess (3):
  add homepage field
  Use debhelper v7; rules file minimisation.
  releasing version 0.17

---

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/liblingua-en-words2nums-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


[liblingua-en-words2nums-perl] tag 0.15 created (now 05a218a)

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to tag 0.15
in repository liblingua-en-words2nums-perl.

at  05a218a   (commit)
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/liblingua-en-words2nums-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


[liblingua-en-words2nums-perl] 03/04: use source format "3.0 (quilt)"

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository liblingua-en-words2nums-perl.

commit 8d5862b408865f07b76ef2e80c9d7df56ebea43e
Author: Damyan Ivanov 
Date:   Tue Nov 11 20:02:21 2014 +

use source format "3.0 (quilt)"
---
 debian/source/format | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)

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


[liblingua-en-words2nums-perl] 01/04: Imported Upstream version 0.19

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository liblingua-en-words2nums-perl.

commit 53219c6e3834446b8b26a18abd9d00473126c44f
Author: Damyan Ivanov 
Date:   Tue Nov 11 19:49:04 2014 +

Imported Upstream version 0.19
---
 .gitattributes   |  1 -
 Makefile.PL  |  1 -
 debian/changelog |  6 --
 debian/control   |  2 +-
 debian/copyright | 20 
 5 files changed, 9 insertions(+), 21 deletions(-)

diff --git a/.gitattributes b/.gitattributes
deleted file mode 100644
index 5d42584..000
--- a/.gitattributes
+++ /dev/null
@@ -1 +0,0 @@
-debian/changelog merge=dpkg-mergechangelogs
diff --git a/Makefile.PL b/Makefile.PL
index eb68978..97778b2 100755
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -4,7 +4,6 @@ use ExtUtils::MakeMaker;
 WriteMakefile(
NAME  => 'Lingua::EN::Words2Nums',
VERSION   => getversion(),
-   LICENSE   => 'perl',
$] < 5.005 ? () : (
AUTHOR => 'Joey Hess ',
ABSTRACT_FROM => 'Words2Nums.pm',
diff --git a/debian/changelog b/debian/changelog
index 257b830..44ca0b5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,3 @@
-liblingua-en-words2nums-perl (0.19) unstable; urgency=medium
-
-  * Orphaning the Debian package.
-
- -- Joey Hess   Fri, 07 Nov 2014 22:00:12 -0400
-
 liblingua-en-words2nums-perl (0.18) unstable; urgency=low
 
   * Remove the PM_FILTER to support Windows. (rt.cpan.org #38101)
diff --git a/debian/control b/debian/control
index 169ef1e..67adea7 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: liblingua-en-words2nums-perl
 Section: perl
 Priority: optional
 Build-Depends: debhelper (>= 7), perl5, dpkg-dev (>= 1.9.0)
-Maintainer: Debian QA Group 
+Maintainer: Joey Hess 
 Standards-Version: 3.8.4
 Vcs-Git: git://git.kitenet.net/words2nums
 Homepage: http://kitenet.net/~joey/code/words2nums/
diff --git a/debian/copyright b/debian/copyright
index 3230769..b08d379 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,14 +1,10 @@
-Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
-Upstream-Name: Lingua::EN::Words2Nums
-Source: native package
+Lingua::EN::Words2Nums is a Debian native package. 
 
-Files: *
-Copyright: 2001-2010 Joey Hess 
-License: perl
- This module is free software; you can redistribute it and/or
- modify it under the same terms as Perl itself.
- .
- That means it's dual licensed under the GPL
- (/usr/share/common-licenses/GPL) and Artistic
- (/usr/share/common-licenses/Artistic) licenses.
+Copyright 2001-2003 Joey Hess 
 
+This module is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+
+That means it's dual licensed under the GPL
+(/usr/share/common-licenses/GPL) and Artistic
+(/usr/share/common-licenses/Artistic) licenses.

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


[liblingua-en-words2nums-perl] 04/04: add support for automatic regression testing

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository liblingua-en-words2nums-perl.

commit 60d4da90359bab7f10a054abefd405f2f866ad39
Author: Damyan Ivanov 
Date:   Tue Nov 11 20:27:51 2014 +

add support for automatic regression testing
---
 debian/control| 1 +
 debian/tests/pkg-perl/files   | 2 ++
 debian/tests/pkg-perl/module-name | 1 +
 3 files changed, 4 insertions(+)

diff --git a/debian/control b/debian/control
index 9d7f6fb..7f69d8a 100644
--- a/debian/control
+++ b/debian/control
@@ -8,6 +8,7 @@ Standards-Version: 3.8.4
 Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/liblingua-en-words2nums-perl.git
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/liblingua-en-words2nums-perl.git
 Homepage: http://kitenet.net/~joey/code/words2nums/
+Testsuite: autopkgtest-pkg-perl
 
 Package: liblingua-en-words2nums-perl
 Architecture: all
diff --git a/debian/tests/pkg-perl/files b/debian/tests/pkg-perl/files
new file mode 100644
index 000..60725d1
--- /dev/null
+++ b/debian/tests/pkg-perl/files
@@ -0,0 +1,2 @@
+t/
+samples
diff --git a/debian/tests/pkg-perl/module-name 
b/debian/tests/pkg-perl/module-name
new file mode 100644
index 000..ce76aaf
--- /dev/null
+++ b/debian/tests/pkg-perl/module-name
@@ -0,0 +1 @@
+Lingua::EN::Words2Nums

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


[liblingua-en-words2nums-perl] branch master updated (5417894 -> 60d4da9)

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to branch master
in repository liblingua-en-words2nums-perl.

  from  5417894   update changelog, convert to non-native package
   new  53219c6   Imported Upstream version 0.19
   new  26c5d2b   Merge tag 'upstream/0.19'
   new  8d5862b   use source format "3.0 (quilt)"
   new  60d4da9   add support for automatic regression testing

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:
 .gitattributes| 1 -
 Makefile.PL   | 1 -
 debian/control| 1 +
 debian/source/format  | 1 +
 debian/{examples => tests/pkg-perl/files} | 1 +
 debian/tests/pkg-perl/module-name | 1 +
 6 files changed, 4 insertions(+), 2 deletions(-)
 delete mode 100644 .gitattributes
 create mode 100644 debian/source/format
 copy debian/{examples => tests/pkg-perl/files} (72%)
 create mode 100644 debian/tests/pkg-perl/module-name

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


[liblingua-en-words2nums-perl] 02/04: Merge tag 'upstream/0.19'

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository liblingua-en-words2nums-perl.

commit 26c5d2b5d92bf0f42d443734b3c30087e5334d5f
Merge: 5417894 53219c6
Author: Damyan Ivanov 
Date:   Tue Nov 11 19:52:28 2014 +

Merge tag 'upstream/0.19'

Upstream version 0.19

Conflicts:
debian/changelog
debian/control

 .gitattributes | 1 -
 Makefile.PL| 1 -
 2 files changed, 2 deletions(-)

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


[liblingua-en-words2nums-perl] 01/01: it is test-files, not files. thanks, gregoa

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository liblingua-en-words2nums-perl.

commit 4411a3cae8009967191785f41389660712fe3162
Author: Damyan Ivanov 
Date:   Tue Nov 11 21:23:37 2014 +

it is test-files, not files. thanks, gregoa
---
 debian/tests/pkg-perl/{files => test-files} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/debian/tests/pkg-perl/files b/debian/tests/pkg-perl/test-files
similarity index 100%
rename from debian/tests/pkg-perl/files
rename to debian/tests/pkg-perl/test-files

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


[liblingua-en-words2nums-perl] branch master updated (60d4da9 -> 4411a3c)

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to branch master
in repository liblingua-en-words2nums-perl.

  from  60d4da9   add support for automatic regression testing
   new  4411a3c   it is test-files, not files. thanks, gregoa

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/tests/pkg-perl/{files => test-files} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename debian/tests/pkg-perl/{files => test-files} (100%)

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


[liblingua-en-words2nums-perl] 02/03: clarify GPL version in debian/copyright

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository liblingua-en-words2nums-perl.

commit 3d4782e3ce38b0d6bf6764efa55078a7ee826321
Author: Damyan Ivanov 
Date:   Tue Nov 11 21:26:24 2014 +

clarify GPL version in debian/copyright
---
 debian/copyright | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index 3230769..271d6c8 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -8,7 +8,7 @@ License: perl
  This module is free software; you can redistribute it and/or
  modify it under the same terms as Perl itself.
  .
- That means it's dual licensed under the GPL
- (/usr/share/common-licenses/GPL) and Artistic
+ That means it's dual licensed under the GPL version 1 or later
+ (/usr/share/common-licenses/GPL-1) and Artistic
  (/usr/share/common-licenses/Artistic) licenses.
 

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


[liblingua-en-words2nums-perl] 01/03: declare conformance with Policy 3.9.6

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository liblingua-en-words2nums-perl.

commit 1ea21cc3cf22e862435aac44b58bd620d0219ca2
Author: Damyan Ivanov 
Date:   Tue Nov 11 21:25:09 2014 +

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

diff --git a/debian/control b/debian/control
index 7f69d8a..18afbbf 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,7 @@ Priority: optional
 Build-Depends: debhelper (>= 7), perl5, dpkg-dev (>= 1.9.0)
 Maintainer: Debian Perl Group 
 Uploaders: Damyan Ivanov 
-Standards-Version: 3.8.4
+Standards-Version: 3.9.6
 Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/liblingua-en-words2nums-perl.git
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/liblingua-en-words2nums-perl.git
 Homepage: http://kitenet.net/~joey/code/words2nums/

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


[liblingua-en-words2nums-perl] branch master updated (4411a3c -> ab5a099)

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to branch master
in repository liblingua-en-words2nums-perl.

  from  4411a3c   it is test-files, not files. thanks, gregoa
   new  1ea21cc   declare conformance with Policy 3.9.6
   new  3d4782e   clarify GPL version in debian/copyright
   new  ab5a099   update changelog

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


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

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


[liblingua-en-words2nums-perl] 03/03: update changelog

2014-11-11 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository liblingua-en-words2nums-perl.

commit ab5a0998d936b383b5474df1e0372b5a62c1ce84
Author: Damyan Ivanov 
Date:   Tue Nov 11 21:29:01 2014 +

update changelog
---
 debian/changelog | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index dca5f7c..8d8e267 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,12 +1,17 @@
 liblingua-en-words2nums-perl (0.19-1) UNRELEASED; urgency=medium
 
-  * Take over for the Debian Perl Group; Closes: #768520 -- O
+  * Take over for the Debian Perl Group; Closes: #768520 -- ITA
   * debian/control: Added: Vcs-Browser field (source stanza). Changed:
 Maintainer set to Debian Perl Group  (was: Debian QA Group
 ); Put myself in Uploaders.
   * Add debian/watch.
   * Point Vcs-* to pkg-perl repositorry
+  * Convert to non-native package
+  * use source format "3.0 (quilt)"
+  * add support for automatic regression testing
+  * declare conformance with Policy 3.9.6
+  * clarify GPL version in debian/copyright
 
  -- Damyan Ivanov   Tue, 11 Nov 2014 18:53:14 +
 

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

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


[libcatalyst-perl] annotated tag upstream/5.90050 created (now 37f80d6)

2014-11-12 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag upstream/5.90050
in repository libcatalyst-perl.

at  37f80d6   (tag)
   tagging  292b5254efb671a0cd2983241895284754f873c2 (commit)
  replaces  upstream/5.90042
 tagged by  Damyan Ivanov
on  Wed Nov 6 14:20:01 2013 +

- Log -
Upstream version 5.90050

Damyan Ivanov (1):
  Imported Upstream version 5.90050

---

This annotated tag includes the following new commits:

   new  292b525   Imported Upstream version 5.90050

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


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

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


[libcatalyst-perl] 02/02: releasing package libcatalyst-perl version 5.90075-2

2014-11-12 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

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

commit d70c6e5718c695505198ed1918ce557480de41dc
Author: Damyan Ivanov 
Date:   Wed Nov 12 08:04:25 2014 +

releasing package libcatalyst-perl version 5.90075-2
---
 debian/changelog | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 3769d65..a1903c4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+libcatalyst-perl (5.90075-2) unstable; urgency=medium
+
+  * Team upload
+  * Remove obsolete build-dependency on libcatalyst-engine-psgi-perl
+This allows for libcatalyst-engine-psgi-perl to be removed from the
+archive. (Closes: #769093)
+Thanks to Simon McVittie
+
+ -- Damyan Ivanov   Wed, 12 Nov 2014 08:00:40 +
+
 libcatalyst-perl (5.90075-1) unstable; urgency=medium
 
   [ Salvatore Bonaccorso ]

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

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


[libcatalyst-perl] branch master updated (02c6fcb -> d70c6e5)

2014-11-12 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

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

  from  02c6fcb   releasing package libcatalyst-perl version 5.90075-1
   new  af27166   Remove obsolete build-dependency on 
libcatalyst-engine-psgi-perl
   new  d70c6e5   releasing package libcatalyst-perl version 5.90075-2

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


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

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

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


[libcatalyst-perl] annotated tag debian/5.90075-2 created (now 6203aa3)

2014-11-12 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag debian/5.90075-2
in repository libcatalyst-perl.

at  6203aa3   (tag)
   tagging  d70c6e5718c695505198ed1918ce557480de41dc (commit)
  replaces  debian/5.90075-1
 tagged by  Damyan Ivanov
on  Wed Nov 12 08:04:25 2014 +

- Log -
tagging package libcatalyst-perl version debian/5.90075-2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJUYxSJAAoJENu+nU2Z0qAEw4cP/j/0r88N+sSWyHETaeP8fWOu
jZLJQb8gQcwPgm680Mt9n2FVRjHcLez8lLNhPd7cPTpqOMyLM+nV0OhM3lOb11ea
58bTDk5on3qSzWgNQ44hBpFzZLe2akUHp72kTDwQyqP66B4fhuprqtyBG4nDdvYJ
u/cSrp9Yw52a2moB9mRfi4vO4YhXpNO275wnZIwWMy13p1j/sL6pO8ToObSWhwr0
iJywhqmuZjbI6eBX0YDgU9biePFPgrhf1WQcMQOT35M5u1RB+xwojsC5HT5phPrg
Uzwo5Hujt2xDBDkCIOVAwYC+fyvg60tx9Zw145bR3eQksTphXoSmesVRQInM8A44
0JZQkBO7VoK3NN3OdN3OpRvdnYlxyQV9OI+BJKzerO7S27QZhGOnt4kEK3T21JPj
PiWc2h2oCWlbyZPn+6czpeTVqPuKJH6irCJnn4P47RjPHoVNJC1Mm2+heR1k0Tx6
MFBGJNSgqWXPOBtDDSRLKLpesWY0Bn4NdqKsd0Vr/siijgSQfAPaycCe5ZAGGiA+
ekSuE6Pyo2H0j4IfNuCVosiSnlvhgFUnQXgueVkhWXTXkZCzdELO3UtGzZW7yx2u
yr2Ush93OVihU2ovXQUsnjlsAPMwEumF7zZ4kDYY7TB9TgQu/KCYC3fKL9QirAwV
+hCtpZ9ILqTKqG2hDHe8
=aVBx
-END PGP SIGNATURE-

Damyan Ivanov (2):
  Remove obsolete build-dependency on libcatalyst-engine-psgi-perl
  releasing package libcatalyst-perl version 5.90075-2

---

This annotated tag includes the following new commits:

   new  af27166   Remove obsolete build-dependency on 
libcatalyst-engine-psgi-perl
   new  d70c6e5   releasing package libcatalyst-perl version 5.90075-2

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


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

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


[libcatalyst-perl] 01/02: Remove obsolete build-dependency on libcatalyst-engine-psgi-perl

2014-11-12 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

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

commit af27166618f46fc61d90bee71ac5c45a17ac95a5
Author: Damyan Ivanov 
Date:   Wed Nov 12 07:59:14 2014 +

Remove obsolete build-dependency on libcatalyst-engine-psgi-perl

This allows for libcatalyst-engine-psgi-perl to be removed from the archive
Closes: #769093
Thanks to Simon McVittie
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index e5c9622..69b19f0 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: libcatalyst-perl
 Section: perl
 Priority: optional
 Build-Depends: debhelper (>= 8)
-Build-Depends-Indep: libcatalyst-engine-psgi-perl,
+Build-Depends-Indep:
  libcatalystx-leakchecker-perl,
  libcgi-simple-perl,
  libcgi-struct-xs-perl,

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


[liblingua-en-words2nums-perl] 01/01: add debian/upstream/metadata

2014-11-12 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository liblingua-en-words2nums-perl.

commit 99c9b10aa08bd2ef2ca9ab02ab5b8e3b858db416
Author: Damyan Ivanov 
Date:   Wed Nov 12 08:31:48 2014 +

add debian/upstream/metadata
---
 debian/upstream/metadata | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 000..dcd40f8
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,6 @@
+---
+Archive: CPAN
+Contact: Joey Hess 
+Homepage: https://github.com/ingydotnet/yaml-pm
+Name: Lingua-EN-Words2Nums
+Repository: git://git.kitenet.net/words2nums

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


[liblingua-en-words2nums-perl] branch master updated (ab5a099 -> 99c9b10)

2014-11-12 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to branch master
in repository liblingua-en-words2nums-perl.

  from  ab5a099   update changelog
   new  99c9b10   add debian/upstream/metadata

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/upstream/metadata | 6 ++
 1 file changed, 6 insertions(+)
 create mode 100644 debian/upstream/metadata

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


[liblingua-en-words2nums-perl] annotated tag upstream/0.19 created (now 794c24d)

2014-11-12 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag upstream/0.19
in repository liblingua-en-words2nums-perl.

at  794c24d   (tag)
   tagging  c9ca5ef1ce484fa815a76c81dfb68dd0a0e05ca4 (commit)
  replaces  debian/0.19
 tagged by  Damyan Ivanov
on  Wed Nov 12 08:35:53 2014 +

- Log -
Upstream version 0.19

Damyan Ivanov (1):
  Imported Upstream version 0.19

---

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/liblingua-en-words2nums-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


[liblingua-en-words2nums-perl] branch pristine-tar updated (64e34d3 -> fa83b7e)

2014-11-12 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 liblingua-en-words2nums-perl.

  from  64e34d3   pristine-tar data for 
liblingua-en-words2nums-perl_0.18.tar.gz
   new  fa83b7e   pristine-tar data for 
liblingua-en-words2nums-perl_0.19.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:
 liblingua-en-words2nums-perl_0.19.orig.tar.gz.delta | Bin 0 -> 6627 bytes
 liblingua-en-words2nums-perl_0.19.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 liblingua-en-words2nums-perl_0.19.orig.tar.gz.delta
 create mode 100644 liblingua-en-words2nums-perl_0.19.orig.tar.gz.id

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


[liblingua-en-words2nums-perl] 03/03: releasing package liblingua-en-words2nums-perl version 0.19-1

2014-11-12 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository liblingua-en-words2nums-perl.

commit 737e9d95f4a0859e8ede7b9f064b452450cf49c0
Author: Damyan Ivanov 
Date:   Wed Nov 12 08:42:43 2014 +

releasing package liblingua-en-words2nums-perl version 0.19-1
---
 debian/changelog | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 8d8e267..c6c2141 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-liblingua-en-words2nums-perl (0.19-1) UNRELEASED; urgency=medium
+liblingua-en-words2nums-perl (0.19-1) unstable; urgency=medium
 
   * Take over for the Debian Perl Group; Closes: #768520 -- ITA
   * debian/control: Added: Vcs-Browser field (source stanza). Changed:
@@ -12,8 +12,9 @@ liblingua-en-words2nums-perl (0.19-1) UNRELEASED; 
urgency=medium
   * add support for automatic regression testing
   * declare conformance with Policy 3.9.6
   * clarify GPL version in debian/copyright
+  * add debian/upstream/metadata
 
- -- Damyan Ivanov   Tue, 11 Nov 2014 18:53:14 +
+ -- Damyan Ivanov   Wed, 12 Nov 2014 08:41:35 +
 
 liblingua-en-words2nums-perl (0.19) unstable; urgency=medium
 

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


[liblingua-en-words2nums-perl] annotated tag debian/0.19-1 created (now 1aabd64)

2014-11-12 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to annotated tag debian/0.19-1
in repository liblingua-en-words2nums-perl.

at  1aabd64   (tag)
   tagging  737e9d95f4a0859e8ede7b9f064b452450cf49c0 (commit)
  replaces  upstream/0.19
 tagged by  Damyan Ivanov
on  Wed Nov 12 08:42:43 2014 +

- Log -
tagging package liblingua-en-words2nums-perl version debian/0.19-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJUYx2DAAoJENu+nU2Z0qAEIJ4P/3q+5mfZwmNx/re3mFbnnLgg
UlkumITaNegjBJeK0MU9HbL3Y6QKL8FTsjR7iD1VdZgP1+EomGOeV944VW1pSs7H
4SyylVu2yKfa8gkR/MoVBqGlvVxNfSePxBoYQ4M98Pe+X1WsRCCX2CG2XfWkV7Uq
aPcK0ep6aQsnNf6wrwzpQuD7LMy1bIPngN2e10zRCxE0n6bgNUb3uqBCP7iFyOPi
08J0mi65D78I5wNyfpqACMxENyheJc8noKjIxQonM5+DUsI1R7BP/DUU3ABjdaj3
FNG56Hk/hVEhcDpzTUoLre9krcQiPwNPPUmlbHy2yjALRlO2vDnKd1dXjjFUiHIz
4qV+S8CoERzn6Fj4bMSjF8wDjlAtONUCmJAjft/ABRp24bWpsinv1+wBGl45d4TM
rzVvzvIosHJZlscvpmCBE8nAw07ahhmVP5w0yU42tFaVHg2yyx8CTlPAn67WDTBQ
vOz1j7BmcDye9VxL/NtvJByTuf8RVYKau0nrACKQzIc1M+hknebESUf4gUN9fexD
QS5juGou7cVvBGu6oVg+wkhyWxouLXO8Nj2LVn0thfJXxl48agJBTm0rGoA9QmCR
xSXYl+fCngUhU0P1FyA/apoQowI+cu8p2bIZwgRW+nrjDexrtM57uznshmqIR1wz
iyWTXTV2c9EgBEN6GDh1
=bijF
-END PGP SIGNATURE-

Damyan Ivanov (17):
  [takeover-for-pkg-perl] Document the takeover
  add watch file
  update maitainer/uploader for pkg-perl
  update Vcs-* for pkg-perl repository
  update changelog, convert to non-native package
  Imported Upstream version 0.19
  Merge tag 'upstream/0.19'
  use source format "3.0 (quilt)"
  add support for automatic regression testing
  it is test-files, not files. thanks, gregoa
  declare conformance with Policy 3.9.6
  clarify GPL version in debian/copyright
  update changelog
  add debian/upstream/metadata
  Merge tag 'upstream/0.19'
  fix two differences in upstream files
  releasing package liblingua-en-words2nums-perl version 0.19-1

---

This annotated tag includes the following new commits:

   new  52df168   Merge tag 'upstream/0.19'
   new  46ac60a   fix two differences in upstream files
   new  737e9d9   releasing package liblingua-en-words2nums-perl version 
0.19-1

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


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


[liblingua-en-words2nums-perl] 02/03: fix two differences in upstream files

2014-11-12 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository liblingua-en-words2nums-perl.

commit 46ac60a5ad3a9f8a4af5dc269ce36add34b8b6ed
Author: Damyan Ivanov 
Date:   Wed Nov 12 08:40:24 2014 +

fix two differences in upstream files

Not sure how did these go in. now 'git diff upstream' in master shows
only changes in debian/
---
 .gitattributes | 1 +
 Makefile.PL| 1 +
 2 files changed, 2 insertions(+)

diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 000..5d42584
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+debian/changelog merge=dpkg-mergechangelogs
diff --git a/Makefile.PL b/Makefile.PL
index 97778b2..eb68978 100755
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -4,6 +4,7 @@ use ExtUtils::MakeMaker;
 WriteMakefile(
NAME  => 'Lingua::EN::Words2Nums',
VERSION   => getversion(),
+   LICENSE   => 'perl',
$] < 5.005 ? () : (
AUTHOR => 'Joey Hess ',
ABSTRACT_FROM => 'Words2Nums.pm',

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


[liblingua-en-words2nums-perl] 01/03: Merge tag 'upstream/0.19'

2014-11-12 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository liblingua-en-words2nums-perl.

commit 52df16877f81595efb548ae6fb670a297d249276
Merge: 99c9b10 c9ca5ef
Author: Damyan Ivanov 
Date:   Wed Nov 12 08:35:53 2014 +

Merge tag 'upstream/0.19'

Upstream version 0.19


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


[liblingua-en-words2nums-perl] 01/01: pristine-tar data for liblingua-en-words2nums-perl_0.19.orig.tar.gz

2014-11-12 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 liblingua-en-words2nums-perl.

commit fa83b7e61c585de45e6cde0d023e8a032b6ed987
Author: Damyan Ivanov 
Date:   Wed Nov 12 08:35:53 2014 +

pristine-tar data for liblingua-en-words2nums-perl_0.19.orig.tar.gz
---
 liblingua-en-words2nums-perl_0.19.orig.tar.gz.delta | Bin 0 -> 6627 bytes
 liblingua-en-words2nums-perl_0.19.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/liblingua-en-words2nums-perl_0.19.orig.tar.gz.delta 
b/liblingua-en-words2nums-perl_0.19.orig.tar.gz.delta
new file mode 100644
index 000..10fbd0c
Binary files /dev/null and 
b/liblingua-en-words2nums-perl_0.19.orig.tar.gz.delta differ
diff --git a/liblingua-en-words2nums-perl_0.19.orig.tar.gz.id 
b/liblingua-en-words2nums-perl_0.19.orig.tar.gz.id
new file mode 100644
index 000..06c2ecf
--- /dev/null
+++ b/liblingua-en-words2nums-perl_0.19.orig.tar.gz.id
@@ -0,0 +1 @@
+f3c9c97ce3ce970221d9173165dc6ff3b919259f

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


[liblingua-en-words2nums-perl] branch master updated (99c9b10 -> 737e9d9)

2014-11-12 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

dmn pushed a change to branch master
in repository liblingua-en-words2nums-perl.

  from  99c9b10   add debian/upstream/metadata
  adds  c9ca5ef   Imported Upstream version 0.19
   new  52df168   Merge tag 'upstream/0.19'
   new  46ac60a   fix two differences in upstream files
   new  737e9d9   releasing package liblingua-en-words2nums-perl version 
0.19-1

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


Summary of changes:
 .gitattributes   | 1 +
 Makefile.PL  | 1 +
 debian/changelog | 5 +++--
 3 files changed, 5 insertions(+), 2 deletions(-)
 create mode 100644 .gitattributes

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


[libpdf-reuse-perl] 01/01: add some TODO to changelog

2014-12-17 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

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

commit ad9326290dd38641e5c3860092ba04345a8ef901
Author: Damyan Ivanov 
Date:   Wed Dec 17 12:30:01 2014 +

add some TODO to changelog
---
 debian/changelog | 4 
 1 file changed, 4 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 24c32bb..b2c2d62 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,9 @@
 libpdf-reuse-perl (0.36-1) unstable; urgency=low
 
+  TODO: lintian --profile=pkg-perl --pedantic complains too much
+
+  TODO: debian/copyright needs to be updated
+
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
 

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


[libpdf-reuse-perl] branch master updated (7d72c7d -> ad93262)

2014-12-17 Thread Damyan Ivanov
This is an automated email from the git hooks/post-receive script.

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

  from  7d72c7d   Remove patch that has been fixed upstream
   new  ad93262   add some TODO to changelog

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


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

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


[libdate-calc-perl] branch jessie created (now 8a89e86)

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

dmn pushed a change to branch jessie
in repository libdate-calc-perl.

at  8a89e86   unapply spelling.patch from git

This branch includes the following new commits:

   new  8a89e86   unapply spelling.patch from git

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


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


[libdate-calc-perl] 01/01: unapply spelling.patch from git

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

dmn pushed a commit to branch jessie
in repository libdate-calc-perl.

commit 8a89e861862037313241b9d284bfb29536019898
Author: Damyan Ivanov 
Date:   Thu Feb 5 20:45:49 2015 +

unapply spelling.patch from git
---
 lib/Date/Calc/Object.pod   | 2 +-
 lib/Date/Calendar.pod  | 2 +-
 lib/Date/Calendar/Profiles.pod | 2 +-
 lib/Date/Calendar/Year.pod | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/lib/Date/Calc/Object.pod b/lib/Date/Calc/Object.pod
index 51d8797..2e8a539 100644
--- a/lib/Date/Calc/Object.pod
+++ b/lib/Date/Calc/Object.pod
@@ -483,7 +483,7 @@ positions a bit further up, e.g. 6, 8 or 10.
 
 Invalid Dates
 
-Only "new()" allows one to create objects containing possibly invalid
+Only "new()" allows to create objects containing possibly invalid
 dates (needed for reading in and evaluating user input, for example).
 
 =item *
diff --git a/lib/Date/Calendar.pod b/lib/Date/Calendar.pod
index e741eb7..35e185b 100644
--- a/lib/Date/Calendar.pod
+++ b/lib/Date/Calendar.pod
@@ -398,7 +398,7 @@ new date, but also a "rest". This rest is useful for cases 
in
 which your profile contains "half" holidays, or when you add
 or subtract fractions of a day.
 
-Sometimes it is not possible to accommodate the requested number
+Sometimes it is not possible to accomodate the requested number
 of work days, and a rest remains.
 
 This rest can currently only assume the value "0.0" (zero),
diff --git a/lib/Date/Calendar/Profiles.pod b/lib/Date/Calendar/Profiles.pod
index 29014c2..1f94fe6 100644
--- a/lib/Date/Calendar/Profiles.pod
+++ b/lib/Date/Calendar/Profiles.pod
@@ -62,7 +62,7 @@ The method "init()" in module Date::Calendar::Year(3) is
 responsible for parsing the calendar schemes contained
 here in the Date::Calendar::Profiles module.
 
-This method offers a "mini-language" which allows one to
+This method offers a "mini-language" which allows to
 specify common date formulas, like for instance a simple
 fixed date (in various different formats, e.g. american
 or european), or things like "the second Sunday of May"
diff --git a/lib/Date/Calendar/Year.pod b/lib/Date/Calendar/Year.pod
index 3b22e94..54a75de 100644
--- a/lib/Date/Calendar/Year.pod
+++ b/lib/Date/Calendar/Year.pod
@@ -345,7 +345,7 @@ i.e., it will not enter into any date calculations, but
 can be queried with the "labels()" and "search()" methods,
 and appears when printing a calendar, for instance.
 
-The character ":" (mnemonic: divided into two halves) specifies
+The character ":" (mnemonic: divided into two halfs) specifies
 that the date in question is only a "half" holiday, i.e., you
 only get half a day off instead of a full day. Some companies
 have this sort of thing. C<:-)>

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


[libdate-calc-perl] 01/01: add a patch to fix tests that are broken since 1 Jan 2015

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

dmn pushed a commit to branch jessie
in repository libdate-calc-perl.

commit 126de180c6c6cf326a7b371ff994eb05c61c8bd5
Author: Damyan Ivanov 
Date:   Thu Feb 5 21:21:24 2015 +

add a patch to fix tests that are broken since 1 Jan 2015

the tests were hardcoding years like 64 that was interpreted as '1964'
until 31 Dec 2014 and now fail. The patch chooses the year dynamically
depending on the current year.

Closes: #775628
---
 debian/patches/century-tests.patch | 586 +
 debian/patches/series  |   1 +
 2 files changed, 587 insertions(+)

diff --git a/debian/patches/century-tests.patch 
b/debian/patches/century-tests.patch
new file mode 100644
index 000..c897521
--- /dev/null
+++ b/debian/patches/century-tests.patch
@@ -0,0 +1,586 @@
+Description: fix tests that got broken in 2015
+ The tests use the 2-digit-year '64' and check that it expands to 1964; which
+ worked until 2014-12-31. Since 2015-01-01 it expands to 2064, and this
+ behaviour is consistent with the module documentation.
+ .
+ So the patch changes the hardcoded '1964' and '64' with the year 45 in the
+ past from now, full and century-less version.
+ .
+ 45 is how far in the past 1964 was in 2009, when the tests were written.
+
+Bug: https://rt.cpan.org/Public/Bug/Display.html?id=101232
+Bug-Debian: https://bugs.debian.org/775628
+Author: Damyan Ivanov , Gregor Herrmann 
+
+--- a/t/f016.t
 b/t/f016.t
+@@ -13,55 +13,58 @@ use Date::Calc qw( Decode_Date_EU Decode
+ #   ($year,$mm,$dd) = Decode_Date_US($buffer);
+ # ==
+ 
++my $Y = 1900 + (localtime)[5] - 50; # expected year (e.g. 1965)
++my $y = sprintf("%02d", $Y % 100);  # short year(e.g. 65)
++
+ print "1..25\n";
+ 
+ $n = 1;
+-if ((($year,$mm,$dd) = Decode_Date_EU("3.1.64")) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("3.1.$y")) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("3 1 64")) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("3 1 $y")) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("03.01.64")) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("03.01.$y")) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("03/01/64")) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("03/01/$y")) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("3. Ene 1964",4)) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("3. Ene $Y",4)) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("Geburtstag: 3. Januar '64 in 
Backnang/W�rttemberg",3)) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("Geburtstag: 3. Januar '$y in 
Backnang/W�rttemberg",3)) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("03-Jan-64")) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("03-Jan-$y")) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("3.Jan1964",6)) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("3.Jan$Y",6)) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("3Jan64",0)) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("3Jan$y",0)) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {p

[libdate-calc-perl] branch jessie updated (8a89e86 -> 126de18)

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

dmn pushed a change to branch jessie
in repository libdate-calc-perl.

  from  8a89e86   unapply spelling.patch from git
   new  126de18   add a patch to fix tests that are broken since 1 Jan 2015

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/patches/century-tests.patch | 586 +
 debian/patches/series  |   1 +
 2 files changed, 587 insertions(+)
 create mode 100644 debian/patches/century-tests.patch

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


[libdate-calc-xs-perl] branch jessie created (now fb341ea)

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

dmn pushed a change to branch jessie
in repository libdate-calc-xs-perl.

at  fb341ea   add a patch to fix tests that are broken since 1 Jan 2015

This branch includes the following new commits:

   new  fb341ea   add a patch to fix tests that are broken since 1 Jan 2015

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


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


[libdate-calc-xs-perl] 01/01: add a patch to fix tests that are broken since 1 Jan 2015

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

dmn pushed a commit to branch jessie
in repository libdate-calc-xs-perl.

commit fb341ea0f2cdf3ebb91937e4c44f9da91aba76fc
Author: Damyan Ivanov 
Date:   Thu Feb 5 21:36:25 2015 +

add a patch to fix tests that are broken since 1 Jan 2015

the tests were hardcoding years like 64 that was interpreted as '1964'
until 31 Dec 2014 and now fail. The patch chooses the year dynamically
depending on the current year. (Closes: #775617)
---
 debian/patches/century-tests.patch | 587 +
 debian/patches/series  |   1 +
 2 files changed, 588 insertions(+)

diff --git a/debian/patches/century-tests.patch 
b/debian/patches/century-tests.patch
new file mode 100644
index 000..a479c9a
--- /dev/null
+++ b/debian/patches/century-tests.patch
@@ -0,0 +1,587 @@
+Description: fix tests that got broken in 2015
+ The tests use the 2-digit-year '64' and check that it expands to 1964; which
+ worked until 2014-12-31. Since 2015-01-01 it expands to 2064, and this
+ behaviour is consistent with the module documentation.
+ .
+ So the patch changes the hardcoded '1964' and '64' with the year 45 in the
+ past from now, full and century-less version.
+ .
+ 45 is how far in the past 1964 was in 2009, when the tests were written.
+
+Bug: https://rt.cpan.org/Public/Bug/Display.html?id=101232
+Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=101232
+Bug-Debian: https://bugs.debian.org/775617
+Author: Damyan Ivanov , Gregor Herrmann 
+
+--- a/t/f016.t
 b/t/f016.t
+@@ -11,55 +11,58 @@ use Date::Calc qw( Decode_Date_EU Decode
+ #   ($year,$mm,$dd) = Decode_Date_US($buffer);
+ # ==
+ 
++my $Y = 1900 + (localtime)[5] - 45; # expected year (e.g. 1965 in 2009)
++my $y = sprintf("%02d", $Y % 100);  # short year(e.g. 65)
++
+ print "1..25\n";
+ 
+ $n = 1;
+-if ((($year,$mm,$dd) = Decode_Date_EU("3.1.64")) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("3.1.$y")) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("3 1 64")) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("3 1 $y")) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("03.01.64")) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("03.01.$y")) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("03/01/64")) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("03/01/$y")) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("3. Ene 1964",4)) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("3. Ene $Y",4)) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("Geburtstag: 3. Januar '64 in 
Backnang/W�rttemberg",3)) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("Geburtstag: 3. Januar '$y in 
Backnang/W�rttemberg",3)) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("03-Jan-64")) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("03-Jan-$y")) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("3.Jan1964",6)) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("3.Jan$Y",6)) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("3Jan64",0)) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("3Jan$y",0)) &&
++($year==$Y)&

[libdate-pcalc-perl] branch jessie created (now a5189fd)

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

dmn pushed a change to branch jessie
in repository libdate-pcalc-perl.

at  a5189fd   add a patch to fix tests that are broken since 1 Jan 2015

This branch includes the following new commits:

   new  a5189fd   add a patch to fix tests that are broken since 1 Jan 2015

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


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


[libdate-pcalc-perl] 01/01: add a patch to fix tests that are broken since 1 Jan 2015

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

dmn pushed a commit to branch jessie
in repository libdate-pcalc-perl.

commit a5189fd3deeac8d1e1f16cac009106a04d6113e3
Author: Damyan Ivanov 
Date:   Thu Feb 5 21:47:34 2015 +

add a patch to fix tests that are broken since 1 Jan 2015

the tests were hardcoding years like 64 that was interpreted as '1964'
until 31 Dec 2014 and now are interpreted as 2064, causing test failures.
The patch chooses the year dynamically to get consistent results
regardless of the current year. (Closes: #775632)
---
 debian/patches/century-tests.patch | 587 +
 debian/patches/series  |   1 +
 2 files changed, 588 insertions(+)

diff --git a/debian/patches/century-tests.patch 
b/debian/patches/century-tests.patch
new file mode 100644
index 000..185540a
--- /dev/null
+++ b/debian/patches/century-tests.patch
@@ -0,0 +1,587 @@
+Description: fix tests that got broken in 2015
+ The tests use the 2-digit-year '64' and check that it expands to 1964; which
+ worked until 2014-12-31. Since 2015-01-01 it expands to 2064, and this
+ behaviour is consistent with the module documentation.
+ .
+ So the patch changes the hardcoded '1964' and '64' with the year 45 in the
+ past from now, full and century-less version.
+ .
+ 45 is how far in the past 1964 was in 2009, when the tests were written.
+
+Bug: https://rt.cpan.org/Public/Bug/Display.html?id=101232
+Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=101232
+Bug-Debian: https://bugs.debian.org/775632
+Author: Damyan Ivanov , Gregor Herrmann 
+
+--- a/t/f016.t
 b/t/f016.t
+@@ -11,55 +11,58 @@ use Date::Calc qw( Decode_Date_EU Decode
+ #   ($year,$mm,$dd) = Decode_Date_US($buffer);
+ # ==
+ 
++my $Y = 1900 + (localtime)[5] - 45; # expected year (e.g. 1965 in 2009)
++my $y = sprintf("%02d", $Y % 100);  # short year(e.g. 65)
++
+ print "1..25\n";
+ 
+ $n = 1;
+-if ((($year,$mm,$dd) = Decode_Date_EU("3.1.64")) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("3.1.$y")) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("3 1 64")) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("3 1 $y")) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("03.01.64")) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("03.01.$y")) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("03/01/64")) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("03/01/$y")) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("3. Ene 1964",4)) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("3. Ene $Y",4)) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("Geburtstag: 3. Januar '64 in 
Backnang/W�rttemberg",3)) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("Geburtstag: 3. Januar '$y in 
Backnang/W�rttemberg",3)) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("03-Jan-64")) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("03-Jan-$y")) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("3.Jan1964",6)) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode_Date_EU("3.Jan$Y",6)) &&
++($year==$Y)&&($mm==1)&&($dd==3))
+ {print "ok $n\n";} else {print "not ok $n\n";}
+ $n++;
+-if ((($year,$mm,$dd) = Decode_Date_EU("3Jan64",0)) &&
+-($year==1964)&&($mm==1)&&($dd==3))
++if ((($year,$mm,$dd) = Decode

[libdate-pcalc-perl] annotated tag debian/6.1-4 created (now 5481a91)

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

dmn pushed a change to annotated tag debian/6.1-4
in repository libdate-pcalc-perl.

at  5481a91   (tag)
   tagging  7ed8d4a76cd0c504cd9b226cb1053a976aefe6b0 (commit)
  replaces  debian/6.1-3
 tagged by  Damyan Ivanov
on  Thu Feb 5 21:59:34 2015 +

- Log -
tagging package libdate-pcalc-perl version debian/6.1-4
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJU0+fGAAoJENu+nU2Z0qAEZUEP/089kcieqSE9DrCQkF0+WvaW
EoZw9SZjRPSksYX1AIgAh4vp966e1Wm1yBrR3tK6IOx4UlKS2rlO0Bb7j/BW2tj+
G8GfnFZl6lxjHLBFnVGvm9RZdVF9Rw8udGEUoLIlmrErgKjLTZmY5HhOriPUmFqC
yjvcUaB8zoKTMCb+0Q0EvoYRLYcSsospTEcn8u7cL2y2wdKbImDGWBmJCcXeEqzR
FuDfmXAZDRjw4FP3MClqxMbC1Jdt1uvUnvmbTA9bmL/N3vvyAocadHcr9GtCaO07
NGkV2pXgiS70YD/MEWfGMXIXy75Vfpp3vFlWYCcR1ipxXijxrHQWj5761y4K2LG6
blALCi1/4Vn+TXZitLU/+fuVfWTIJ8qJtJZjitBRbEBt+JN6kXeIbrpTzKr5IF8D
ujiAA40IgdIclbxF8UFZ2GyUIAQyHRSoMQMFtvZxTJXqHfoLxRoDLXl8Dk33gccF
XJPntpylVAGGnZukstBygKw1ZMz8JSrGBXaRqMfzEb90+nJ6NeBIJgOWAV4+yXYg
fT8caLSpWq2pjVjnr5z+KwUKN65REBoqJgVpSCJP8S5t4UI8e3DesENzECGcjzlE
RLNV3v8xvU4f8Y+hXHGIdMC/L+IB9L8sMwGRAKOpkfBOA81PoiwIUrICeT9mtrPQ
y7OpjoNs14d8iTkRcsB1
=ligl
-END PGP SIGNATURE-

Damyan Ivanov (2):
  add a patch to fix tests that are broken since 1 Jan 2015
  releasing package libdate-pcalc-perl version 6.1-4

---

This annotated tag includes the following new commits:

   new  7ed8d4a   releasing package libdate-pcalc-perl version 6.1-4

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


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


[libdate-pcalc-perl] branch jessie updated (a5189fd -> 7ed8d4a)

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

dmn pushed a change to branch jessie
in repository libdate-pcalc-perl.

  from  a5189fd   add a patch to fix tests that are broken since 1 Jan 2015
  adds  7ed8d4a   releasing package libdate-pcalc-perl version 6.1-4

No new revisions were added by this update.

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

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


[libdate-pcalc-perl] 01/01: releasing package libdate-pcalc-perl version 6.1-4

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

dmn pushed a commit to annotated tag debian/6.1-4
in repository libdate-pcalc-perl.

commit 7ed8d4a76cd0c504cd9b226cb1053a976aefe6b0
Author: Damyan Ivanov 
Date:   Thu Feb 5 21:59:34 2015 +

releasing package libdate-pcalc-perl version 6.1-4
---
 debian/changelog | 12 
 1 file changed, 12 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 4c67714..8580054 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+libdate-pcalc-perl (6.1-4) unstable; urgency=medium
+
+  * Team upload
+
+  * add a patch to fix tests that are broken since 1 Jan 2015
+the tests were hardcoding years like 64 that was interpreted as '1964'
+until 31 Dec 2014 and now are interpreted as 2064, causing test failures.
+The patch chooses the year dynamically to get consistent results
+regardless of the current year. (Closes: #775632)
+
+ -- Damyan Ivanov   Thu, 05 Feb 2015 21:49:05 +
+
 libdate-pcalc-perl (6.1-3) unstable; urgency=low
 
   * Team upload

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


[libdate-calc-perl] 01/01: releasing package libdate-calc-perl version 6.3-2

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

dmn pushed a commit to branch jessie
in repository libdate-calc-perl.

commit 5640f18ed3e3777b31a7767abe349417e48e2629
Author: Damyan Ivanov 
Date:   Thu Feb 5 22:00:20 2015 +

releasing package libdate-calc-perl version 6.3-2
---
 debian/changelog | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 14f0e25..1d12c83 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+libdate-calc-perl (6.3-2) unstable; urgency=medium
+
+  * add a patch to fix tests that are broken since 1 Jan 2015
+the tests were hardcoding years like 64 that was interpreted as '1964'
+until 31 Dec 2014 and now are interpreted as 2064, causing test failures.
+The patch chooses the year dynamically to get consistent results
+regardless of the current year. (Closes: #775628)
+
+ -- Damyan Ivanov   Thu, 05 Feb 2015 21:32:10 +
+
 libdate-calc-perl (6.3-1) unstable; urgency=low
 
   [ Jonathan Yu ]

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


[libdate-calc-perl] annotated tag debian/6.3-2 created (now aeb2bcc)

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

dmn pushed a change to annotated tag debian/6.3-2
in repository libdate-calc-perl.

at  aeb2bcc   (tag)
   tagging  5640f18ed3e3777b31a7767abe349417e48e2629 (commit)
  replaces  debian/6.3-1
 tagged by  Damyan Ivanov
on  Thu Feb 5 22:00:20 2015 +

- Log -
tagging package libdate-calc-perl version debian/6.3-2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJU0+f0AAoJENu+nU2Z0qAE1BAP/A9Fgx3zDBvAvjErQwwBZwKI
kD8t2Kk6RrQD87iiNSgojDpNGYZqh+vTemadg+vqj6tCYng6aYZHDUDAXolvxqmT
wqqe+Niox2t5v/un2PNpHJojQlcoTBjC5AIYamoNHaHrVzfGGeCcu/hp0SfSOHu6
awqNDBudc71cACWmc0SE97Sb/KhxAQI57hKHONCcZfdGlqAfvqBec6vBSChHH66Q
N81yN66H6sJ6Kp69cX293FH8Wdt4JT2wLiceD0HPpCEkczdqQ9o0WTr9ky8UXMTR
Cr18gjrqBI3oQVRDoT2qDYix2xKCLQM+lno9iezU9lahnVw+YSoF3QIuXIv/AJfi
mzd/t9TUybUna3jEECq0hoqRqdrda68AZQgYkC/h/lJJ1hg9KmOJgwcQQJmfJUJu
WrZ6N4Kz7pMo7G0gUnDMj0lMarTJWYL69UyDUPgrTYPAAN9TyT/3P09AoAfrpe1r
BtBHUSS122vP4dK/ycH/ZiYWlPynEvEaLDaZB43FFJk3jtS6+27USxs/KBiTYxb6
5zA++mKDLiJhW6K3h6zq6Ftb7ku7JK8HT7eL6N/ZUKxktNTL1WMePdkKdLBB3O/r
I1ey/vVcRphx+MtJ1/6UaJmTr3UEo9h7vjRopa4rpspHplofL5VHYcEtZDsLZ5rb
rBaKlSs33wDLf3WWvyU8
=8Fgz
-END PGP SIGNATURE-

Damyan Ivanov (6):
  unapply spelling.patch from git
  add a patch to fix tests that are broken since 1 Jan 2015
  45 is 45, deliver what you promise
  add Forwarded header
  1964 = 2009 - 45
  releasing package libdate-calc-perl version 6.3-2

---

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/libdate-calc-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


[libdate-calc-perl] branch jessie updated (58e2885 -> 5640f18)

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

dmn pushed a change to branch jessie
in repository libdate-calc-perl.

  from  58e2885   1964 = 2009 - 45
   new  5640f18   releasing package libdate-calc-perl version 6.3-2

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

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


[libdate-calc-xs-perl] branch jessie updated (fb341ea -> 4d30138)

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

dmn pushed a change to branch jessie
in repository libdate-calc-xs-perl.

  from  fb341ea   add a patch to fix tests that are broken since 1 Jan 2015
   new  4d30138   releasing package libdate-calc-xs-perl version 6.3-2

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

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


[libdate-calc-xs-perl] 01/01: releasing package libdate-calc-xs-perl version 6.3-2

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

dmn pushed a commit to branch jessie
in repository libdate-calc-xs-perl.

commit 4d3013833c811d3f380f19e627cadd863ed6ce3d
Author: Damyan Ivanov 
Date:   Thu Feb 5 22:01:07 2015 +

releasing package libdate-calc-xs-perl version 6.3-2
---
 debian/changelog | 12 
 1 file changed, 12 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 93857f3..7c95051 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+libdate-calc-xs-perl (6.3-2) unstable; urgency=medium
+
+  * Team upload
+
+  * add a patch to fix tests that are broken since 1 Jan 2015
+the tests were hardcoding years like 64 that was interpreted as '1964'
+until 31 Dec 2014 and now are interpreted as 2064, causing test failures.
+The patch chooses the year dynamically to get consistent results
+regardless of the current year. (Closes: #775617)
+
+ -- Damyan Ivanov   Thu, 05 Feb 2015 21:41:19 +
+
 libdate-calc-xs-perl (6.3-1) unstable; urgency=low
 
   [ Florian Schlichting ]

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


[libdate-calc-xs-perl] annotated tag debian/6.3-2 created (now d1c7511)

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

dmn pushed a change to annotated tag debian/6.3-2
in repository libdate-calc-xs-perl.

at  d1c7511   (tag)
   tagging  4d3013833c811d3f380f19e627cadd863ed6ce3d (commit)
  replaces  debian/6.3-1
 tagged by  Damyan Ivanov
on  Thu Feb 5 22:01:07 2015 +

- Log -
tagging package libdate-calc-xs-perl version debian/6.3-2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJU0+gjAAoJENu+nU2Z0qAEPIYQAJz+8rpulGMf4bB4mzEY5bOz
URCCVFxd232Mhx3neWQUfYNHA9OlPJE7Xc750Mhl7pB0vcoWpvhs6f9jBhHPS99u
g2CsEdFvamgmYkEDolTzC7UKr/i6+2+xaOSuYgqzbIZkfJ9NZKuWzrgaPSdQwVwY
XTw0fHl6ctmpdRXTlDtUJGHcxpoGjU8dOTgsakX3IOg4qk5aFbaR/oWjPcsAIEjp
PKhm0AEJ0bjpJbb/OA5MoNlUn33uRrFEcKu4kloFgRAsJXVHghZ5Fr5LEkdZ5Obn
qNOWKJHBpimnERiUZbj64dRp0g0wyx5mdFUXHhnrXDaFZpkdxyQyq7mdXv0pf8s6
EMVWrajhZxTgebAwqlzL5hXa+kdQdEjPllxXmbuY+0u5Yd7DNoOzye16QxEPUGka
TJiUYUExHOMF9bj/wMgwCJ6RO+Xy5iacen6jWkcssaWZkXxyHpWvtv7196vAwQqK
vXmzGLcyKBD9jnDB+sbEn084iA13z8mtaYqbH+eEOse2c+YLYBg5o/Umd1l1kn5M
WX6DKzA+F2sFrEf2bEzVZOW72/Pjhhyggmd5HMqiBWpeEZi8+A8t0gvgWcCjOju+
mvY995lZ3qCklOY4a/V+Igf2GPet4qKL6IJT2dXrzs5vXoFaEI2W+l6+2t6cvMOa
t0DAwCKk710vlpeOJAsZ
=7t9Q
-END PGP SIGNATURE-

Damyan Ivanov (2):
  add a patch to fix tests that are broken since 1 Jan 2015
  releasing package libdate-calc-xs-perl version 6.3-2

---

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/libdate-calc-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


[libdate-calc-perl] 02/02: add Forwarded header

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

dmn pushed a commit to branch jessie
in repository libdate-calc-perl.

commit 257542143d8442fa902221b773304d2c7428bc28
Author: Damyan Ivanov 
Date:   Thu Feb 5 21:28:28 2015 +

add Forwarded header
---
 debian/patches/century-tests.patch | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/patches/century-tests.patch 
b/debian/patches/century-tests.patch
index cafe5d4..563a2b2 100644
--- a/debian/patches/century-tests.patch
+++ b/debian/patches/century-tests.patch
@@ -9,6 +9,7 @@ Description: fix tests that got broken in 2015
  45 is how far in the past 1964 was in 2009, when the tests were written.
 
 Bug: https://rt.cpan.org/Public/Bug/Display.html?id=101232
+Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=101232
 Bug-Debian: https://bugs.debian.org/775628
 Author: Damyan Ivanov , Gregor Herrmann 
 

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


[libdate-calc-perl] branch jessie updated (126de18 -> 2575421)

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

dmn pushed a change to branch jessie
in repository libdate-calc-perl.

  from  126de18   add a patch to fix tests that are broken since 1 Jan 2015
   new  1189550   45 is 45, deliver what you promise
   new  2575421   add Forwarded header

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


Summary of changes:
 debian/patches/century-tests.patch | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

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


[libdate-calc-perl] branch jessie updated (2575421 -> 58e2885)

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

dmn pushed a change to branch jessie
in repository libdate-calc-perl.

  from  2575421   add Forwarded header
   new  58e2885   1964 = 2009 - 45

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/patches/century-tests.patch | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


[libdate-calc-perl] 01/02: 45 is 45, deliver what you promise

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

dmn pushed a commit to branch jessie
in repository libdate-calc-perl.

commit 118955013a25c69426f2bcf54c368d287999cdcb
Author: Damyan Ivanov 
Date:   Thu Feb 5 21:28:19 2015 +

45 is 45, deliver what you promise
---
 debian/patches/century-tests.patch | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/patches/century-tests.patch 
b/debian/patches/century-tests.patch
index c897521..cafe5d4 100644
--- a/debian/patches/century-tests.patch
+++ b/debian/patches/century-tests.patch
@@ -18,7 +18,7 @@ Author: Damyan Ivanov , Gregor Herrmann 

  #   ($year,$mm,$dd) = Decode_Date_US($buffer);
  # ==
  
-+my $Y = 1900 + (localtime)[5] - 50; # expected year (e.g. 1965)
++my $Y = 1900 + (localtime)[5] - 45; # expected year (e.g. 1965)
 +my $y = sprintf("%02d", $Y % 100);  # short year(e.g. 65)
 +
  print "1..25\n";

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


[libdate-calc-perl] 01/01: 1964 = 2009 - 45

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

dmn pushed a commit to branch jessie
in repository libdate-calc-perl.

commit 58e2885cb35a1f538e3b9e224ea4b7ff87ed2440
Author: Damyan Ivanov 
Date:   Thu Feb 5 21:31:18 2015 +

1964 = 2009 - 45
---
 debian/patches/century-tests.patch | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/patches/century-tests.patch 
b/debian/patches/century-tests.patch
index 563a2b2..2cd802d 100644
--- a/debian/patches/century-tests.patch
+++ b/debian/patches/century-tests.patch
@@ -19,7 +19,7 @@ Author: Damyan Ivanov , Gregor Herrmann 

  #   ($year,$mm,$dd) = Decode_Date_US($buffer);
  # ==
  
-+my $Y = 1900 + (localtime)[5] - 45; # expected year (e.g. 1965)
++my $Y = 1900 + (localtime)[5] - 45; # expected year (e.g. 1965 in 2009)
 +my $y = sprintf("%02d", $Y % 100);  # short year(e.g. 65)
 +
  print "1..25\n";

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


[dh-make-perl] 01/01: Config: fixup module name after possible setting it when run as 'cpan2deb'

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

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

commit 1eac9b776374f9eef559b3fd1ead28a1bee8e79c
Author: Damyan Ivanov 
Date:   Wed Feb 11 21:34:01 2015 +

Config: fixup module name after possible setting it when run as 'cpan2deb'

Thing is, CPAN is more tolerant where you search for a module named
'Foo::Bar' than when you search for 'Foo-Bar'

Closes: #18 -- cpan2deb using wrong module from CPAN
---
 lib/DhMakePerl/Config.pm | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/lib/DhMakePerl/Config.pm b/lib/DhMakePerl/Config.pm
index 7ddc961..01c4ab1 100644
--- a/lib/DhMakePerl/Config.pm
+++ b/lib/DhMakePerl/Config.pm
@@ -145,10 +145,6 @@ sub parse_command_line_options {
 GetOptions( \%opts, @OPTIONS )
 or die "Error parsing command-line options\n";
 
-# Make CPAN happy, make the user happy: Be more tolerant!
-# Accept names to be specified with double-colon, dash or slash
-$opts{cpan} =~ s![/-]!::!g if $opts{cpan};
-
 # "If no argument is given (but the switch is specified - not specifying
 # the switch will include everything), it defaults to dpkg-source's
 # default values."
@@ -227,6 +223,13 @@ sub parse_command_line_options {
 $self->command('make');
 }
 
+# Make CPAN happy, make the user happy: Be more tolerant!
+# Accept names to be specified with double-colon, dash or slash
+if ( my $name = $self->cpan ) {
+$name =~ s![/-]!::!g;
+$self->cpan($name);
+}
+
 $self->check_obsolete_entries;
 }
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/dh-make-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   3   4   5   6   7   8   9   10   >