[libdata-alias-perl] 01/06: Imported Upstream version 1.19

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

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

commit 6faa4f258cf805b20cb34e300ae3fa027d703cbb
Author: gregor herrmann 
Date:   Wed Oct 21 17:03:00 2015 +0200

Imported Upstream version 1.19
---
 .gitignore|   1 +
 Alias.xs  | 128 ++
 Changes   |  22 ++
 META.yml  |   2 +-
 README|   2 +-
 lib/Data/Alias.pm |   4 +-
 6 files changed, 136 insertions(+), 23 deletions(-)

diff --git a/.gitignore b/.gitignore
index 45b2336..7f7b25a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,7 @@
 /Makefile
 /pm_to_blib
 /blib
+/MYMETA.json
 /MYMETA.yml
 /Data-Alias-*
 /Alias.c
diff --git a/Alias.xs b/Alias.xs
index 17a6d3d..32e7550 100644
--- a/Alias.xs
+++ b/Alias.xs
@@ -1,6 +1,6 @@
 /* Copyright (C) 2003, 2004, 2006, 2007  Matthijs van Duin 
  *
- * Copyright (C) 2010, 2011, 2013 Andrew Main (Zefram) 
+ * Copyright (C) 2010, 2011, 2013, 2015 Andrew Main (Zefram) 
  *
  * Parts from perl, which is Copyright (C) 1991-2013 Larry Wall and others
  *
@@ -146,6 +146,22 @@
 #define SVt_RV SVt_IV
 #endif
 
+#ifndef IS_PADGV
+#ifdef USE_ITHREADS
+#define IS_PADGV(v) ((v) && SvTYPE(v) == SVt_PVGV)
+#else
+#define IS_PADGV(v) 0
+#endif
+#endif
+
+#ifndef PadnamelistARRAY
+#define PadnamelistARRAY(pnl) AvARRAY(pnl)
+#endif
+
+#ifndef PadnameOUTER
+#define PadnameOUTER(pn) (!!SvFAKE(pn))
+#endif
+
 #if (PERL_COMBI_VERSION >= 5006000) && (PERL_COMBI_VERSION < 5011000)
 #define case_OP_SETSTATE_ case OP_SETSTATE:
 #else
@@ -164,7 +180,9 @@ static char const msg_no_symref[] =
 #error "Data::Alias doesn't support Misc Attribute Decoration yet"
 #endif
 #define PL_lex_defer   (PL_parser->lex_defer)
+#if (PERL_COMBI_VERSION < 5021004)
 #define PL_lex_expect  (PL_parser->lex_expect)
+#endif
 #define PL_linestr (PL_parser->linestr)
 #define PL_expect  (PL_parser->expect)
 #define PL_bufptr  (PL_parser->bufptr)
@@ -183,11 +201,11 @@ static char const msg_no_symref[] =
 #endif
 
 
-#define OPpALIASAV  2
-#define OPpALIASHV  4
+#define OPpALIASAV  1
+#define OPpALIASHV  2
 #define OPpALIAS (OPpALIASAV | OPpALIASHV)
 
-#define OPpUSEFUL 128
+#define OPpUSEFUL OPpLVAL_INTRO
 
 #define MOD(op) op_lvalue((op), OP_GREPSTART)
 
@@ -221,6 +239,10 @@ static char const msg_no_symref[] =
 
 STATIC OP *(*da_old_ck_rv2cv)(pTHX_ OP *op);
 STATIC OP *(*da_old_ck_entersub)(pTHX_ OP *op);
+#if (PERL_COMBI_VERSION >= 5021007)
+STATIC OP *(*da_old_ck_aelem)(pTHX_ OP *op);
+STATIC OP *(*da_old_ck_helem)(pTHX_ OP *op);
+#endif
 
 #ifdef USE_ITHREADS
 
@@ -1485,7 +1507,8 @@ STATIC OP *DataAlias_pp_copy(pTHX) {
 STATIC void da_lvalue(pTHX_ OP *op, int list) {
switch (op->op_type) {
case OP_PADSV: op->op_ppaddr = DataAlias_pp_padsv;
-  if (SvFAKE(AvARRAY(PL_comppad_name)[op->op_targ])
+  if (PadnameOUTER(
+   PadnamelistARRAY(PL_comppad_name)[op->op_targ])
   && ckWARN(WARN_CLOSURE))
   Perl_warner(aTHX_ packWARN(WARN_CLOSURE),
   DA_OUTER_ERR);
@@ -1497,7 +1520,8 @@ STATIC void da_lvalue(pTHX_ OP *op, int list) {
int i;
if (!list) goto bad;
for(i = start; i != start+count; i++) {
-  if (SvFAKE(AvARRAY(PL_comppad_name)[i])
+  if (PadnameOUTER(
+   PadnamelistARRAY(PL_comppad_name)[i])
   && ckWARN(WARN_CLOSURE))
   Perl_warner(aTHX_ packWARN(WARN_CLOSURE),
   DA_OUTER_ERR);
@@ -1704,6 +1728,7 @@ STATIC int da_transform(pTHX_ OP *op, int sib) {
break;
case OP_AASSIGN:
op->op_ppaddr = DataAlias_pp_aassign;
+   op->op_private = 0;
da_aassign(op, kid);
MOD(kid);
ksib = FALSE;
@@ -1780,7 +1805,7 @@ STATIC int da_transform(pTHX_ OP *op, int sib) {
 }
 
 STATIC void da_peep2(pTHX_ OP *o) {
-   OP *sib, *k;
+   OP *sib, *k, *fk;
int useful;
while (o->op_ppaddr != da_tag_list) {
while ((sib = o->op_sibling)) {
@@ -1800,21 +1825,22 @@ STATIC void da_peep2(pTHX_ OP *o) {
useful = o->op_private & OPpUSEFUL;
op_null(o);
o->op_ppaddr = PL_ppaddr[OP_NULL];
-   k = o = cLISTOPo->op_first;
+   k = fk = cLISTOPo->op_first;
while ((sib = k->op_sibling))
k = sib;
-   if (!(sib = cUNOPo->op_first) || sib->op_ppaddr != da_tag_rv2cv) {
+   if (!(sib = 

[libdata-alias-perl] 03/06: Update years of upstream and packaging copyright.

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

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

commit e64bf4ec54b6b52c6f5fb1093cd4c100e4545b06
Author: gregor herrmann 
Date:   Wed Oct 21 17:04:41 2015 +0200

Update years of upstream and packaging copyright.
---
 debian/copyright | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index ce32782..a1b14cd 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,7 +4,7 @@ Upstream-Contact: Andrew Main (Zefram) 
 Source: https://metacpan.org/release/Data-Alias
 
 Files: *
-Copyright: 2010-2013, Andrew Main (Zefram) 
+Copyright: 2010-2015, Andrew Main (Zefram) 
  2003-2007, Matthijs van Duin
  Parts from perl, which is Copyright (C) 1991-2013 Larry Wall and others
 License: Artistic or GPL-1+
@@ -27,7 +27,7 @@ License: Artistic or GPL-1+
 Files: debian/*
 Copyright: 2010-2011, Jonathan Yu 
  2009, Ryan Niebur 
- 2011-2013, gregor herrmann 
+ 2011-2015, gregor herrmann 
  2011, Jotam Jr. Trejo 
  2011, Fabrizio Regalli 
 License: Artistic or GPL-1+

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

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


[libdata-alias-perl] 06/06: update changelog

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

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

commit 13c848aeab0de8cfee64e302ff910c85a3affdc5
Author: gregor herrmann 
Date:   Wed Oct 21 17:27:56 2015 +0200

update changelog

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

diff --git a/debian/changelog b/debian/changelog
index b3aa94c..3d89318 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,9 +8,13 @@ libdata-alias-perl (1.19-1) UNRELEASED; urgency=medium
 
   [ gregor herrmann ]
   * New upstream release.
-Fixes "FTBFS with perl 5.22" (Closes: #787453)
+This release is supposed to fix the build failure under Perl 5.22
+(cf. #787453) but the test suite still fails.
+  * Update years of upstream and packaging copyright.
+  * Mark package as autopkgtest-able.
+  * Declare compliance with Debian Policy 3.9.6.
 
- -- gregor herrmann   Wed, 21 Oct 2015 17:03:01 +0200
+ -- gregor herrmann   Wed, 21 Oct 2015 17:24:38 +0200
 
 libdata-alias-perl (1.18-1) unstable; urgency=low
 

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

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


[libdata-alias-perl] branch master updated (5be1cf1 -> 13c848a)

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

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

  from  5be1cf1   update changelog
   new  6faa4f2   Imported Upstream version 1.19
   new  69d515b   New upstream release.
   new  e64bf4e   Update years of upstream and packaging copyright.
   new  dbd476f   Mark package as autopkgtest-able.
   new  85a4cd8   Declare compliance with Debian Policy 3.9.6.
   new  13c848a   update changelog

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


Summary of changes:
 .gitignore|   1 +
 Alias.xs  | 128 ++
 Changes   |  22 ++
 META.yml  |   2 +-
 README|   2 +-
 debian/changelog  |  12 -
 debian/control|   3 +-
 debian/copyright  |   4 +-
 lib/Data/Alias.pm |   4 +-
 9 files changed, 150 insertions(+), 28 deletions(-)

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

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


[libmodule-info-perl] 01/01: pristine-tar data for libmodule-info-perl_0.35.07.orig.tar.gz

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

gregoa pushed a commit to branch pristine-tar
in repository libmodule-info-perl.

commit 3e70eaf9f8d54943b30f096497a7e74473a5316a
Author: gregor herrmann 
Date:   Wed Oct 21 17:31:02 2015 +0200

pristine-tar data for libmodule-info-perl_0.35.07.orig.tar.gz
---
 libmodule-info-perl_0.35.07.orig.tar.gz.delta | Bin 0 -> 1896 bytes
 libmodule-info-perl_0.35.07.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libmodule-info-perl_0.35.07.orig.tar.gz.delta 
b/libmodule-info-perl_0.35.07.orig.tar.gz.delta
new file mode 100644
index 000..440fd24
Binary files /dev/null and b/libmodule-info-perl_0.35.07.orig.tar.gz.delta 
differ
diff --git a/libmodule-info-perl_0.35.07.orig.tar.gz.id 
b/libmodule-info-perl_0.35.07.orig.tar.gz.id
new file mode 100644
index 000..6f62278
--- /dev/null
+++ b/libmodule-info-perl_0.35.07.orig.tar.gz.id
@@ -0,0 +1 @@
+0d661ef58162fe491010949ff83b3bace6e6cde4

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

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


[libmodule-info-perl] branch master updated (a0599e8 -> f97e870)

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

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

  from  a0599e8   releasing package libmodule-info-perl version 0.35-2
   new  491cf7a   Imported Upstream version 0.35.07
   new  e8dacff   New upstream devel release. Fixes "FTBFS with perl 5.22: 
test failures" (Closes: #796887)
   new  90f06fc   Refresh autopkgtest.patch (fuzz due to version string).
   new  3be2d2b   debian/copyright: drop stanza about removed third-party 
file.
   new  f25014b   Update (build) dependencies.
   new  21b4c59   Bump debhelper compatibility level to 9.
   new  f97e870   releasing package libmodule-info-perl version 0.35.07-1

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 |  13 -
 Changes  |  39 +++
 MANIFEST |   7 +-
 META.json|  57 ++---
 META.yml |  43 ++--
 Makefile.PL  |   9 +-
 README   |  19 ++
 debian/changelog |  13 +
 debian/compat|   2 +-
 debian/control   |   8 +-
 debian/copyright |   7 -
 debian/patches/autopkgtest.patch |   4 +-
 lib/B/BUtils.pm  | 516 ---
 lib/B/Module/Info.pm |  34 ++-
 lib/Module/Info.pm   |  10 +-
 t/Module-Info.t  |  11 +-
 t/n1_modules_required.t  |   1 +
 t/zy_pod_coverage.t  |   7 +
 18 files changed, 170 insertions(+), 630 deletions(-)
 delete mode 100644 Build.PL
 create mode 100644 README
 delete mode 100644 lib/B/BUtils.pm

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

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


[libmodule-info-perl] 01/07: Imported Upstream version 0.35.07

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

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

commit 491cf7a5147afc6ae6c4131fe02b5cf14232369d
Author: gregor herrmann 
Date:   Wed Oct 21 17:31:02 2015 +0200

Imported Upstream version 0.35.07
---
 Build.PL|  13 --
 Changes |  39 
 MANIFEST|   7 +-
 META.json   |  57 ++
 META.yml|  43 ++--
 Makefile.PL |   9 +-
 README  |  19 ++
 lib/B/BUtils.pm | 516 
 lib/B/Module/Info.pm|  34 +++-
 lib/Module/Info.pm  |  10 +-
 t/Module-Info.t |  11 +-
 t/n1_modules_required.t |   1 +
 t/zy_pod_coverage.t |   7 +
 13 files changed, 150 insertions(+), 616 deletions(-)

diff --git a/Build.PL b/Build.PL
deleted file mode 100644
index ac54ac4..000
--- a/Build.PL
+++ /dev/null
@@ -1,13 +0,0 @@
-require 5.004;
-
-use strict;
-use Module::Build;
-
-Module::Build->new( module_name   => 'Module::Info',
-dist_version_from => 'lib/Module/Info.pm',
-license   => 'perl',
-requires  => { 'File::Spec' => 0.08 },
-script_files  => [qw(bin/pfunc bin/module_info)],
-dynamic_config=> 0,
-dist_author   => 'Mattia Barbon ',
-   )->create_build_script;
diff --git a/Changes b/Changes
index fe8e8dd..a7274e9 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,44 @@
 Revision history for perl module Module::Info
 
+0.35_07 2015-10-19 NEILB
+- I had missed another instance of "the Windows cwd() issue" affecting
+  t/n1_modules_required.t
+
+0.35_06 2015-10-17 NEILB
+- Added "use strict" to both modules
+- Made the pod coverage test a release test RT#90599
+- Added MIN_PERL_VERSION to Makefile.PL
+- Added a basic README
+
+0.35_05 2015-10-16 NEILB
+- Had a single failure reported by CPAN Testers for Perl 5.22/Windows.
+  On Windows, if you "use Cwd" and then call cwd(), then it does an
+  implicit "use Win32". On recent perls (sometime after 5.20.1) this
+  seems to get built into the op tree in a way that looks like the
+  scope doing the cwd() use'd Win32. There are several magic functions
+  in Cwd.pm which will probably trigger this behaviour. I'll see how this
+  change tests out, and possibly just document it for a non dev release.
+
+0.35_04 2015-10-14 NEILB
+- Sigh, forgot to update the min version of B::Utils in Makefile.PL
+  Thanks to SREZIC for letting me know.
+
+0.35_03 2015-10-13 NEILB
+- Removed File::Spec from t/lib/
+- Set min required version of B::Utils to 0.27, as that release fixes
+  the remaining failing tests.
+- Hacked const_sv() to cope with the change in OP_METHOD_NAMED
+  that happened at 5.21.5 (or possibly an earlier 5.21.*).
+
+0.35_02 2015-06-15 NEILB
+- Sigh, forgot to add B::Utils to PREREQ_PM
+
+0.35_01 2015-06-15 NEILB
+- Dropped B::BUtils in favour of using the standard B::Utils.
+  subroutines_called() stopped working correctly for standard function
+  calls, identifying them as calls via symbolic references. Fixed that.
+- Dropped Build.PL
+
 0.35 2013-09-08 14:10:31 CEST
 - Handle 'package NAME VERSION' syntax (patch by Norbert Gruener)
 - Added repository and license info to metadata
diff --git a/MANIFEST b/MANIFEST
index 691ffe6..a5510f6 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,11 +1,9 @@
-Build.PL
 Changes
 MANIFEST
-META.yml
+README
 Makefile.PL
 bin/module_info
 bin/pfunc
-lib/B/BUtils.pm
 lib/B/Module/Info.pm
 lib/Module/Info.pm
 t/Module-Info.t
@@ -24,4 +22,5 @@ t/n2_safe.t
 t/n3_version.t
 t/zy_pod_coverage.t
 t/zz_pod.t
-META.json
+META.yml Module YAML meta-data (added by 
MakeMaker)
+META.jsonModule JSON meta-data (added by 
MakeMaker)
diff --git a/META.json b/META.json
index 47fcb27..6118d0c 100644
--- a/META.json
+++ b/META.json
@@ -4,7 +4,7 @@
   "Mattia Barbon "
],
"dynamic_config" : 0,
-   "generated_by" : "Module::Build version 0.4007, CPAN::Meta::Converter 
version 2.120921",
+   "generated_by" : "ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter 
version 2.150001",
"license" : [
   "perl_5"
],
@@ -13,49 +13,34 @@
   "version" : "2"
},
"name" : "Module-Info",
+   "no_index" : {
+  "directory" : [
+ "t",
+ "inc"
+  ]
+   },
"prereqs" : {
+  "build" : {
+ "requires" : {
+"ExtUtils::MakeMaker" : "0"
+ }
+  },
   "configure" : {
  "requires" : {
-"Module::Build" : "0.40"
+"ExtUtils::MakeMaker" : "0"
  }
   },
   "runtime" : {
  "requires" : {
-

[libmodule-info-perl] 05/07: Update (build) dependencies.

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

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

commit f25014b07e8eda052fab039f58b78740e443a5a7
Author: gregor herrmann 
Date:   Wed Oct 21 17:37:10 2015 +0200

Update (build) dependencies.
---
 debian/control | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/debian/control b/debian/control
index 13b24a3..8e39983 100644
--- a/debian/control
+++ b/debian/control
@@ -1,9 +1,8 @@
 Source: libmodule-info-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 8),
-   libmodule-build-perl (>= 0.40)
-Build-Depends-Indep: libtest-pod-coverage-perl,
+Build-Depends: debhelper (>= 8)
+Build-Depends-Indep: libb-utils-perl (>= 0.27),
  libtest-pod-perl,
  perl
 Maintainer: Debian Perl Group 
@@ -20,7 +19,8 @@ Testsuite: autopkgtest-pkg-perl
 Package: libmodule-info-perl
 Architecture: all
 Depends: ${misc:Depends},
- ${perl:Depends}
+ ${perl:Depends},
+ libb-utils-perl (>= 0.27)
 Description: Perl module providing information about Perl modules
  Module::Info is a Perl module for determining information about Perl modules
  without actually loading the module. It isn't actually specific to modules

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

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


[libmodule-info-perl] 07/07: releasing package libmodule-info-perl version 0.35.07-1

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

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

commit f97e87025a966688a2ce713df038d4d86ea4c413
Author: gregor herrmann 
Date:   Wed Oct 21 17:42:29 2015 +0200

releasing package libmodule-info-perl version 0.35.07-1
---
 debian/changelog | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index aa007f8..6b194ae 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,15 @@
-libmodule-info-perl (0.35.07-1) UNRELEASED; urgency=medium
+libmodule-info-perl (0.35.07-1) unstable; urgency=medium
 
+  * Team upload.
   * New upstream devel release.
 Fixes "FTBFS with perl 5.22: test failures"
 (Closes: #796887)
+  * Refresh autopkgtest.patch (fuzz due to version string).
+  * debian/copyright: drop stanza about removed third-party file.
+  * Update (build) dependencies.
+  * Bump debhelper compatibility level to 9.
 
- -- gregor herrmann   Wed, 21 Oct 2015 17:31:02 +0200
+ -- gregor herrmann   Wed, 21 Oct 2015 17:40:20 +0200
 
 libmodule-info-perl (0.35-2) unstable; urgency=medium
 

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

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


[libmodule-info-perl] 03/07: Refresh autopkgtest.patch (fuzz due to version string).

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

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

commit 90f06fcd634dfc53f78ff98ae63de86b8d15b39c
Author: gregor herrmann 
Date:   Wed Oct 21 17:34:37 2015 +0200

Refresh autopkgtest.patch (fuzz due to version string).
---
 debian/patches/autopkgtest.patch | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/patches/autopkgtest.patch b/debian/patches/autopkgtest.patch
index 34fdc24..6c6d6ee 100644
--- a/debian/patches/autopkgtest.patch
+++ b/debian/patches/autopkgtest.patch
@@ -2,7 +2,7 @@ Description: adjust paths when run under autopkgtest
 Origin: vendor
 Forwarded: not-needed
 Author: gregor herrmann 
-Last-Update: 2015-05-30
+Last-Update: 2015-10-21
 
 --- a/t/Module-Info.t
 +++ b/t/Module-Info.t
@@ -15,7 +15,7 @@ Last-Update: 2015-05-30
 +
  my $has_version_pm = eval 'use version; 1';
  my $version_pm_VERSION = $has_version_pm ? 'version'->VERSION : 0;
- my $Mod_Info_VERSION = '0.35';
+ my $Mod_Info_VERSION = '0.35_07';
 @@ -59,7 +62,7 @@
  
  can_ok('Module::Info', @expected_subs);

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

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


[libmodule-info-perl] 02/07: New upstream devel release. Fixes "FTBFS with perl 5.22: test failures" (Closes: #796887)

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

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

commit e8dacffbcb7a7983bbe704e91b2c8ba9d56a9627
Author: gregor herrmann 
Date:   Wed Oct 21 17:33:19 2015 +0200

New upstream devel release. Fixes "FTBFS with perl 5.22: test failures" 
(Closes: #796887)
---
 debian/changelog | 8 
 1 file changed, 8 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 2677e3e..aa007f8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+libmodule-info-perl (0.35.07-1) UNRELEASED; urgency=medium
+
+  * New upstream devel release.
+Fixes "FTBFS with perl 5.22: test failures"
+(Closes: #796887)
+
+ -- gregor herrmann   Wed, 21 Oct 2015 17:31:02 +0200
+
 libmodule-info-perl (0.35-2) unstable; urgency=medium
 
   * Team upload.

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

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


[libmodule-info-perl] annotated tag debian/0.35.07-1 created (now b0d7cb1)

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

gregoa pushed a change to annotated tag debian/0.35.07-1
in repository libmodule-info-perl.

at  b0d7cb1   (tag)
   tagging  f97e87025a966688a2ce713df038d4d86ea4c413 (commit)
  replaces  debian/0.35-2
 tagged by  gregor herrmann
on  Wed Oct 21 17:42:29 2015 +0200

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

iQJ8BAABCgBmBQJWJ7JlXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoGG2MP/0tpIH3FCjb3ZwQhGh2DLKEi
pPiYIMDWy/COTlm6MYhQz2nhHpncfzX8VfTmcY2KsfxU3ZJpGUen5zBi0WQ2Dstc
0WNxoqmwPcYGbh254a2H146yk5A7WckSU3aJIW0VG+VaMlCQ4Zo8TphhV8k6+JZe
eCdQCTHaMsJ7psbFRg4fSLWTMy3H6AKAGHOsg4inHj31NatlKmyIWcMOz/eGBB/h
MyF6pHrGwroRFHT8d+LvV6U0AAgzOyYlOz/BlybOLfh7k4udR5nUkWjDj9NZ2q4F
ytUK40ZBMelfe44+6e/GTdvDWBnwOUUeOOtiygCcR1bjmLMvyjTbKmnXnmI1wtA9
m/QJ0xJ1IkmxPSygSQRuO69kgzdXacRVRoPylfln+2nf8KPOPfnySyXO1Y6ylTz0
shw8OILEkH+W6BAIpBERkRFYYxFhpDDjdZj4GQy6BC582JjYJk2J31tWKowUlRAy
vpgrT9a/IhqY2jVxMjOuutFeoONsI38H/aO90V+fo2sZ9Vwim6vX+37i8Eq8WWYC
HVivxBoKZiBLD4oQRrC8M+KtH0YB1avvqkVCy/eQuE16BrDkISr7spMAiwfDGRCQ
V7I967RlRc+iMOd4B2ZfQWQb8y4e/iY5R88ElnX82YYZzXUEU98IDUgUWZOwscH9
7K/d1pnvUlaHVj9Xrxtf
=nYEs
-END PGP SIGNATURE-

gregor herrmann (7):
  Imported Upstream version 0.35.07
  New upstream devel release. Fixes "FTBFS with perl 5.22: test failures" 
(Closes: #796887)
  Refresh autopkgtest.patch (fuzz due to version string).
  debian/copyright: drop stanza about removed third-party file.
  Update (build) dependencies.
  Bump debhelper compatibility level to 9.
  releasing package libmodule-info-perl version 0.35.07-1

---

This annotated tag includes the following new commits:

   new  491cf7a   Imported Upstream version 0.35.07
   new  e8dacff   New upstream devel release. Fixes "FTBFS with perl 5.22: 
test failures" (Closes: #796887)
   new  90f06fc   Refresh autopkgtest.patch (fuzz due to version string).
   new  3be2d2b   debian/copyright: drop stanza about removed third-party 
file.
   new  f25014b   Update (build) dependencies.
   new  21b4c59   Bump debhelper compatibility level to 9.
   new  f97e870   releasing package libmodule-info-perl version 0.35.07-1

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.


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

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


[libmodule-info-perl] 04/07: debian/copyright: drop stanza about removed third-party file.

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

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

commit 3be2d2b39efdcb8f6d022c1ccabfa6c7f7a32140
Author: gregor herrmann 
Date:   Wed Oct 21 17:35:22 2015 +0200

debian/copyright: drop stanza about removed third-party file.
---
 debian/copyright | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index 2057eca..d52c613 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -10,13 +10,6 @@ License: Artistic or GPL-1+
 Comment: Years of copyright taken from `Changes' file,
  copyright holders from main *.pm files.
 
-Files: lib/B/BUtils.pm
-Copyright: 2001-2007, Simon Cozens 
-License: Artistic or GPL-1+
-Comment: Years of copyright guessed from `Changes' file from
- this module and B-Utils
-X-Fork: embedded code copy/fork of: libb-utils-perl
-
 Files: t/lib/*
 Copyright: 2001, chromatic 
  2001, Michael G Schwern 

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

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


[libmodule-info-perl] branch pristine-tar updated (aec84a5 -> 3e70eaf)

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

gregoa pushed a change to branch pristine-tar
in repository libmodule-info-perl.

  from  aec84a5   pristine-tar data for libmodule-info-perl_0.35.orig.tar.gz
   new  3e70eaf   pristine-tar data for 
libmodule-info-perl_0.35.07.orig.tar.gz

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


Summary of changes:
 libmodule-info-perl_0.35.07.orig.tar.gz.delta | Bin 0 -> 1896 bytes
 libmodule-info-perl_0.35.07.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libmodule-info-perl_0.35.07.orig.tar.gz.delta
 create mode 100644 libmodule-info-perl_0.35.07.orig.tar.gz.id

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

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


[libmodule-info-perl] annotated tag upstream/0.35.07 created (now 32be504)

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

gregoa pushed a change to annotated tag upstream/0.35.07
in repository libmodule-info-perl.

at  32be504   (tag)
   tagging  c76ab0d656ae4d6a0e2dd200b90c242cb7ef04b5 (commit)
  replaces  upstream/0.35
 tagged by  gregor herrmann
on  Wed Oct 21 17:31:02 2015 +0200

- Log -
Upstream version 0.35.07

gregor herrmann (1):
  Imported Upstream version 0.35.07

---

No new revisions were added by this update.

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

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


[libmodule-info-perl] 06/07: Bump debhelper compatibility level to 9.

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

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

commit 21b4c59a49761fd220a41fe709756ccba9c0d4a1
Author: gregor herrmann 
Date:   Wed Oct 21 17:40:09 2015 +0200

Bump debhelper compatibility level to 9.
---
 debian/compat  | 2 +-
 debian/control | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/compat b/debian/compat
index 45a4fb7..ec63514 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-8
+9
diff --git a/debian/control b/debian/control
index 8e39983..dc2ba83 100644
--- a/debian/control
+++ b/debian/control
@@ -1,7 +1,7 @@
 Source: libmodule-info-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 8)
+Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: libb-utils-perl (>= 0.27),
  libtest-pod-perl,
  perl

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

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


[libnetaddr-ip-perl] branch pristine-tar updated (3572cf8 -> 41a8808)

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

gregoa pushed a change to branch pristine-tar
in repository libnetaddr-ip-perl.

  from  3572cf8   pristine-tar data for libnetaddr-ip-perl_4.078.orig.tar.gz
   new  41a8808   pristine-tar data for 
libnetaddr-ip-perl_4.078+dfsg.orig.tar.gz

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


Summary of changes:
 libnetaddr-ip-perl_4.078+dfsg.orig.tar.gz.delta | Bin 0 -> 7231 bytes
 libnetaddr-ip-perl_4.078+dfsg.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libnetaddr-ip-perl_4.078+dfsg.orig.tar.gz.delta
 create mode 100644 libnetaddr-ip-perl_4.078+dfsg.orig.tar.gz.id

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

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


[libnetaddr-ip-perl] 01/01: pristine-tar data for libnetaddr-ip-perl_4.078+dfsg.orig.tar.gz

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

gregoa pushed a commit to branch pristine-tar
in repository libnetaddr-ip-perl.

commit 41a8808265b5bfc9175e41a2b956312807752a6a
Author: gregor herrmann 
Date:   Wed Oct 21 17:47:10 2015 +0200

pristine-tar data for libnetaddr-ip-perl_4.078+dfsg.orig.tar.gz
---
 libnetaddr-ip-perl_4.078+dfsg.orig.tar.gz.delta | Bin 0 -> 7231 bytes
 libnetaddr-ip-perl_4.078+dfsg.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libnetaddr-ip-perl_4.078+dfsg.orig.tar.gz.delta 
b/libnetaddr-ip-perl_4.078+dfsg.orig.tar.gz.delta
new file mode 100644
index 000..b0e1a1b
Binary files /dev/null and b/libnetaddr-ip-perl_4.078+dfsg.orig.tar.gz.delta 
differ
diff --git a/libnetaddr-ip-perl_4.078+dfsg.orig.tar.gz.id 
b/libnetaddr-ip-perl_4.078+dfsg.orig.tar.gz.id
new file mode 100644
index 000..552e853
--- /dev/null
+++ b/libnetaddr-ip-perl_4.078+dfsg.orig.tar.gz.id
@@ -0,0 +1 @@
+8988ab0c220b6f5189de37ff5e269f04445dac9a

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

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


[libnetaddr-ip-perl] annotated tag upstream/4.078+dfsg created (now 3a55f5e)

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

gregoa pushed a change to annotated tag upstream/4.078+dfsg
in repository libnetaddr-ip-perl.

at  3a55f5e   (tag)
   tagging  ac355106aa0fb2cbd63cf1ad5449a193d51f9cff (commit)
  replaces  upstream/4.078
 tagged by  gregor herrmann
on  Wed Oct 21 17:47:10 2015 +0200

- Log -
Upstream version 4.078+dfsg

gregor herrmann (1):
  Imported Upstream version 4.078+dfsg

---

No new revisions were added by this update.

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

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


[libtext-csv-xs-perl] 02/03: Install new CONTRIBUTING file.

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

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

commit 5a158c24379478eec72f2d4b12f4bbdb7952bfa6
Author: gregor herrmann 
Date:   Wed Oct 21 18:16:42 2015 +0200

Install new CONTRIBUTING file.
---
 debian/libtext-csv-xs-perl.docs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/libtext-csv-xs-perl.docs b/debian/libtext-csv-xs-perl.docs
new file mode 100644
index 000..a1892e3
--- /dev/null
+++ b/debian/libtext-csv-xs-perl.docs
@@ -0,0 +1 @@
+CONTRIBUTING.md

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

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


[libtext-csv-xs-perl] 01/03: Rename autopkgtest configuration file.

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

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

commit 1d1e86e97fc0d9e8f629c334c129700d58dafb48
Author: gregor herrmann 
Date:   Wed Oct 21 18:15:17 2015 +0200

Rename autopkgtest configuration file.
---
 debian/tests/pkg-perl/{test-files => smoke-files} | 0
 debian/tests/pkg-perl/{skip-smoke => smoke-skip}  | 0
 2 files changed, 0 insertions(+), 0 deletions(-)

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

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

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


[libnetaddr-ip-perl] annotated tag debian/4.078+dfsg-1 created (now 276f44f)

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

gregoa pushed a change to annotated tag debian/4.078+dfsg-1
in repository libnetaddr-ip-perl.

at  276f44f   (tag)
   tagging  f2482635968dea221d98ff1e155f3fe61a1da5b0 (commit)
  replaces  debian/4.075+dfsg-1
 tagged by  gregor herrmann
on  Wed Oct 21 17:56:03 2015 +0200

- Log -
tagging package libnetaddr-ip-perl version debian/4.078+dfsg-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAABCgBmBQJWJ7WTXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoGANMP/AzkiNFCdpijrQP5vpBn9Hq5
WZRnjMfIPQcIadkJ7sRl8SQ+SsSgnYrIfLXyJtPsY1ZN340sxGb/ZQT9WVmC0M7p
uPtdaVOeQbkCWlh7ZxS0bgPgl6VVrsuC0hgVVNmFoNonXC35I2KQr1rjhBzDsblq
/YJjSsPpAKDp9d+dlBtE4FVzijrDoZ8ADiJsjzVdP9UhbcUf8tVmci7o3Avlob32
52d1Ogr+UYJ6FmJgO9GPM3FDG62EqAUNNR7wGH+lTU/N0FJK98UK6jYYpBWyy2mx
9bXceWGvTQMizDz7RcI9a52FvjeEQeWMGaPI+PBJZVR/fG0Fq9Q2Vg3Mb08Z4pSZ
Lpl4TDznbIxfTws6s1OAJiATI8C03ItdPPTsYkIKycg7AEgVr+d6z629WxrmX26I
UhiD7LP1AyCWerngPIKp85tJOs6BTstSfoKNxeppaeH1OrxyvsSYhaSSR4W8zYHD
cEA7yuqU6dK5+eg/08JBw6O3aQZJYGc8OZV1yeSJ/iSZyT7TbAa9daQHe+FKd48g
3xYI3KQXGoyZz1a1IrB01x82uSQImvIYviKwqsM9FMBl+aBZ0zslvAnyEaTA7R0D
S5M6a4nopJm7UoBsDlqGwRbjL6D1VqAEJj5GtL0CJxSFMlrBKw7XQGSmSbwfyXD6
HE1Lkr5SAeOXQ/W00jV0
=CGiY
-END PGP SIGNATURE-

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

Xavier Guimard (5):
  Imported Upstream version 4.078
  Merge tag 'upstream/4.078'
  Bump Standards-Version to 3.9.6
  Update debian/copyright
  Update d/ch

gregor herrmann (5):
  Imported Upstream version 4.078+dfsg
  Merge tag 'upstream/4.078+dfsg'
  update version after importing the repacked tarball
  Mark package as autopkgtest-able.
  releasing package libnetaddr-ip-perl version 4.078+dfsg-1

---

This annotated tag includes the following new commits:

   new  1c80345   Merge tag 'upstream/4.078+dfsg'
   new  a4de7ac   update version after importing the repacked tarball
   new  8dfaab0   Mark package as autopkgtest-able.
   new  f248263   releasing package libnetaddr-ip-perl version 4.078+dfsg-1

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


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

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


[libnetaddr-ip-perl] 01/04: Merge tag 'upstream/4.078+dfsg'

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

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

commit 1c80345cdbd907a4e55cf1d71be6edc44d12297c
Merge: 20d047b ac35510
Author: gregor herrmann 
Date:   Wed Oct 21 17:47:10 2015 +0200

Merge tag 'upstream/4.078+dfsg'

Upstream version 4.078+dfsg

 MANIFEST |1 -
 docs/rfc1884.txt | 1023 --
 2 files changed, 1024 deletions(-)

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

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


[libdata-alias-perl] 01/01: pristine-tar data for libdata-alias-perl_1.19.orig.tar.gz

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

gregoa pushed a commit to branch pristine-tar
in repository libdata-alias-perl.

commit c7752a5d4037eaa018fa4bbd9758e50a6ba8e5e9
Author: gregor herrmann 
Date:   Wed Oct 21 17:03:00 2015 +0200

pristine-tar data for libdata-alias-perl_1.19.orig.tar.gz
---
 libdata-alias-perl_1.19.orig.tar.gz.delta | Bin 0 -> 2489 bytes
 libdata-alias-perl_1.19.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libdata-alias-perl_1.19.orig.tar.gz.delta 
b/libdata-alias-perl_1.19.orig.tar.gz.delta
new file mode 100644
index 000..a8ad15c
Binary files /dev/null and b/libdata-alias-perl_1.19.orig.tar.gz.delta differ
diff --git a/libdata-alias-perl_1.19.orig.tar.gz.id 
b/libdata-alias-perl_1.19.orig.tar.gz.id
new file mode 100644
index 000..b164a27
--- /dev/null
+++ b/libdata-alias-perl_1.19.orig.tar.gz.id
@@ -0,0 +1 @@
+f7abb12a36a0aba030f98c5765e85114439875c9

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

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


[libdata-alias-perl] annotated tag upstream/1.19 created (now bcf5cff)

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

gregoa pushed a change to annotated tag upstream/1.19
in repository libdata-alias-perl.

at  bcf5cff   (tag)
   tagging  acb3552e2a363eb5b4c7368088b4a17a0c45d77c (commit)
  replaces  upstream/1.18
 tagged by  gregor herrmann
on  Wed Oct 21 17:03:00 2015 +0200

- Log -
Upstream version 1.19

gregor herrmann (1):
  Imported Upstream version 1.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/libdata-alias-perl.git

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


[libdata-alias-perl] branch pristine-tar updated (e802d12 -> c7752a5)

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

gregoa pushed a change to branch pristine-tar
in repository libdata-alias-perl.

  from  e802d12   pristine-tar data for libdata-alias-perl_1.18.orig.tar.gz
   new  c7752a5   pristine-tar data for libdata-alias-perl_1.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:
 libdata-alias-perl_1.19.orig.tar.gz.delta | Bin 0 -> 2489 bytes
 libdata-alias-perl_1.19.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libdata-alias-perl_1.19.orig.tar.gz.delta
 create mode 100644 libdata-alias-perl_1.19.orig.tar.gz.id

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

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


[libdata-alias-perl] 04/06: Mark package as autopkgtest-able.

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

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

commit dbd476f815c04bf65aacf045c1203cdfd97e10f5
Author: gregor herrmann 
Date:   Wed Oct 21 17:04:59 2015 +0200

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

diff --git a/debian/control b/debian/control
index e8ef105..75eb09a 100644
--- a/debian/control
+++ b/debian/control
@@ -9,6 +9,7 @@ Uploaders: Ryan Niebur ,
Fabrizio Regalli ,
Dominic Hargreaves 
 Section: perl
+Testsuite: autopkgtest-pkg-perl
 Priority: optional
 Build-Depends: debhelper (>= 9.20120312),
libtest-pod-coverage-perl,

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

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


[libnetaddr-ip-perl] 03/04: Mark package as autopkgtest-able.

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

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

commit 8dfaab07d660e7b00f2db34ca99c534a12f4cb69
Author: gregor herrmann 
Date:   Wed Oct 21 17:50:19 2015 +0200

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

diff --git a/debian/control b/debian/control
index edee5e2..8576096 100644
--- a/debian/control
+++ b/debian/control
@@ -7,6 +7,7 @@ Uploaders: Damyan Ivanov ,
Xavier Guimard ,
Daniel Lintott 
 Section: perl
+Testsuite: autopkgtest-pkg-perl
 Priority: optional
 Build-Depends: debhelper (>= 9.20120312),
libsocket6-perl,

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

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


[libsoap-lite-perl] annotated tag debian/1.19-1 created (now db61629)

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

gregoa pushed a change to annotated tag debian/1.19-1
in repository libsoap-lite-perl.

at  db61629   (tag)
   tagging  7c44dbff36efc43015c553650d10a84882ff56e8 (commit)
  replaces  debian/1.11-1
 tagged by  gregor herrmann
on  Wed Oct 21 18:11:32 2015 +0200

- Log -
tagging package libsoap-lite-perl version debian/1.19-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAABCgBmBQJWJ7k0XxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoGKEcP/0kfFIB52Mn1QMFo9TUITPvx
u9mrNgldtkvK2/SgdDlK0EUGH14oql5ijhdt8eXetoATBGxFW8OuAUHdlXyBlp35
bQbUv6r9rKAP6ZQ5BdzMdsOCdoICmhTQXKjsBK96VIslqHlTXo4CDXQI3FuIZBy8
mT4E/GEMsOYhuBETmxl4dCAj2mhUInuVp+VGMyjsIewZIKAD8Lz9tZIz9N1IbJX3
scshKBPk5tszw+H3BcIMjg6973VKFjZm39UeOZxVBn82d8Nhd4VlrQvyjOSL6Un9
EQz3j0TcdhxmmCuyzjsK1ne+wTQvZm2wDv3ZmdGRQVdQRPt7gn7PcuOCMGwgG+ke
ulVDsFS33Zc3TjnfcBi4dm5+Za8Yg4R41jkesXoRYTX3ZOccMWUnmcCwWzbUW7hj
L6rQWB2nhu9nzqLjYSHmk2O+lJds5YYxzB0S8qNhXBWJu+7uoHRgzvL/brJVZKmZ
t5isBie4XaQyo79l32qvQfMX4b1M0TolqBQePk51gAp6DZAAaTw+I632uJa7+jvn
c95ZHNO6dPSxk/DHhp41E9A7zs3uDK734pvmvj+a6bU0cYfPnvuZ+gHee8DLaoIt
fimkdOAPjrkJlEwzliVr7ayH61E7dTRwpKWWIj6mrniBEWLd13UNn+EQRaF2qEFu
crJ1jQhJFDHLoILClTET
=lGgf
-END PGP SIGNATURE-

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

Xavier Guimard (7):
  Imported Upstream version 1.19
  Merge tag 'upstream/1.19'
  Add Test::Warn and XML::Parser::Lite in build dependencies
  Bump Standards-Version to 3.9.6
  Update patch offset
  Add patch for a spelling error
  Update d/ch

gregor herrmann (6):
  debian/rules: remove override_dh_auto_test.
  debian/control: update (build) dependencies.
  Mark package as autopkgtest-able.
  Bump debhelper compatibility level to 9.
  Add debian/upstream/metadata.
  releasing package libsoap-lite-perl version 1.19-1

---

This annotated tag includes the following new commits:

   new  13dcd3b   debian/rules: remove override_dh_auto_test.
   new  fa0202a   debian/control: update (build) dependencies.
   new  57fd74e   Mark package as autopkgtest-able.
   new  5a2c6ed   Bump debhelper compatibility level to 9.
   new  f5e6201   Add debian/upstream/metadata.
   new  7c44dbf   releasing package libsoap-lite-perl version 1.19-1

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


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

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


[libsoap-lite-perl] 03/06: Mark package as autopkgtest-able.

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

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

commit 57fd74e641f18e3a00998c7cd3f4e938e3564cb5
Author: gregor herrmann 
Date:   Wed Oct 21 18:06:30 2015 +0200

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

diff --git a/debian/control b/debian/control
index 3f70f09..c3a5605 100644
--- a/debian/control
+++ b/debian/control
@@ -10,6 +10,7 @@ Uploaders: Ezra Pagel ,
Franck Joncourt ,
Xavier Guimard 
 Section: perl
+Testsuite: autopkgtest-pkg-perl
 Priority: optional
 Build-Depends: debhelper (>= 8)
 Build-Depends-Indep: libclass-inspector-perl,

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

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


[libsoap-lite-perl] branch master updated (3cc6efb -> 7c44dbf)

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

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

  from  3cc6efb   Update d/ch
   new  13dcd3b   debian/rules: remove override_dh_auto_test.
   new  fa0202a   debian/control: update (build) dependencies.
   new  57fd74e   Mark package as autopkgtest-able.
   new  5a2c6ed   Bump debhelper compatibility level to 9.
   new  f5e6201   Add debian/upstream/metadata.
   new  7c44dbf   releasing package libsoap-lite-perl version 1.19-1

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


Summary of changes:
 debian/changelog | 9 +
 debian/compat| 2 +-
 debian/control   | 9 -
 debian/rules | 4 
 debian/upstream/metadata | 9 +
 5 files changed, 23 insertions(+), 10 deletions(-)
 create mode 100644 debian/upstream/metadata

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

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


[libsoap-lite-perl] 04/06: Bump debhelper compatibility level to 9.

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

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

commit 5a2c6edfbf943c3331b8839a315e76fc63372baa
Author: gregor herrmann 
Date:   Wed Oct 21 18:06:31 2015 +0200

Bump debhelper compatibility level to 9.
---
 debian/compat  | 2 +-
 debian/control | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/compat b/debian/compat
index 45a4fb7..ec63514 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-8
+9
diff --git a/debian/control b/debian/control
index c3a5605..cfd8698 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ Uploaders: Ezra Pagel ,
 Section: perl
 Testsuite: autopkgtest-pkg-perl
 Priority: optional
-Build-Depends: debhelper (>= 8)
+Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: libclass-inspector-perl,
  libfcgi-perl,
  libhttp-daemon-perl | libwww-perl (<< 6),

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

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


[libsoap-lite-perl] 06/06: releasing package libsoap-lite-perl version 1.19-1

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

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

commit 7c44dbff36efc43015c553650d10a84882ff56e8
Author: gregor herrmann 
Date:   Wed Oct 21 18:11:32 2015 +0200

releasing package libsoap-lite-perl version 1.19-1
---
 debian/changelog | 9 +
 1 file changed, 9 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index c01e311..6b8eb9f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,15 @@ libsoap-lite-perl (1.19-1) unstable; urgency=medium
   * Update patch offset
   * Add patch for a spelling error
 
+  [ gregor herrmann ]
+  * debian/rules: remove override_dh_auto_test. The test suite has been
+revamped, TEST_AUTHOR is not used anmyore.
+  * debian/control: update (build) dependencies. Drop libcrypt-ssleay-
+perl, add liblwp-protocol-https-perl.
+  * Mark package as autopkgtest-able.
+  * Bump debhelper compatibility level to 9.
+  * Add debian/upstream/metadata.
+
  -- Xavier Guimard   Mon, 19 Oct 2015 09:22:27 +0200
 
 libsoap-lite-perl (1.11-1) unstable; urgency=medium

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

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


[libsoap-lite-perl] 02/06: debian/control: update (build) dependencies.

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

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

commit fa0202a2aa006eb6a51d50f8b0ea2ea855140306
Author: gregor herrmann 
Date:   Wed Oct 21 18:05:56 2015 +0200

debian/control: update (build) dependencies.

Drop libcrypt-ssleay-perl, add liblwp-protocol-https-perl.
---
 debian/control | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/debian/control b/debian/control
index f57ffbe..3f70f09 100644
--- a/debian/control
+++ b/debian/control
@@ -12,15 +12,13 @@ Uploaders: Ezra Pagel ,
 Section: perl
 Priority: optional
 Build-Depends: debhelper (>= 8)
-# NOTE: no build-dep on libxmlrpc-lite-perl,
-# causes circular dependency, cf. commit message in 0c6342e
 Build-Depends-Indep: libclass-inspector-perl,
- libcrypt-ssleay-perl,
  libfcgi-perl,
  libhttp-daemon-perl | libwww-perl (<< 6),
  libio-sessiondata-perl,
  libio-socket-ssl-perl,
  libio-stringy-perl,
+ liblwp-protocol-https-perl,
  libmime-lite-perl,
  libmime-tools-perl,
  libossp-uuid-perl,
@@ -42,12 +40,12 @@ Architecture: all
 Depends: ${misc:Depends},
  ${perl:Depends},
  libclass-inspector-perl,
- libcrypt-ssleay-perl,
  libfcgi-perl,
  libhttp-daemon-perl | libwww-perl (<< 6),
  libio-sessiondata-perl,
  libio-socket-ssl-perl,
  libio-stringy-perl,
+ liblwp-protocol-https-perl,
  libmime-tools-perl,
  libossp-uuid-perl,
  libtask-weaken-perl,

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

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


[libsoap-lite-perl] 01/06: debian/rules: remove override_dh_auto_test.

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

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

commit 13dcd3b6723c9f7e891ad29486bb8a7a0dcd5889
Author: gregor herrmann 
Date:   Wed Oct 21 18:01:37 2015 +0200

debian/rules: remove override_dh_auto_test.

The test suite has been revamped, TEST_AUTHOR is not used anmyore.
---
 debian/rules | 4 
 1 file changed, 4 deletions(-)

diff --git a/debian/rules b/debian/rules
index 2966be1..4335fb1 100755
--- a/debian/rules
+++ b/debian/rules
@@ -8,10 +8,6 @@ SCRIPTS = SOAPsh stubmaker
 %:
dh $@
 
-override_dh_auto_test:
-   # explicitly turn off author tests, 2 of 4 fail horribly
-   TEST_AUTHOR=0 dh_auto_test
-
 override_dh_auto_install:
dh_auto_install
# fix extension, hashbang, and script names

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

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


[libsoap-lite-perl] 05/06: Add debian/upstream/metadata.

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

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

commit f5e620163fd7695f687b292df73774aea08bc364
Author: gregor herrmann 
Date:   Wed Oct 21 18:07:25 2015 +0200

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

diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 000..ade6c65
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,9 @@
+---
+Archive: CPAN
+Bug-Database: https://rt.cpan.org/Public/Dist/Display.html?Name=SOAP-Lite
+Bug-Submit: bug-soap-l...@rt.cpan.org
+Contact: Pavel Kulchenko, Randy J Ray, Byrne Reese, Martin Kutter 
,
+  Fred Moyer
+Name: SOAP-Lite
+Repository: https://github.com/redhotpenguin/soaplite
+Repository-Browse: https://github.com/redhotpenguin/soaplite

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

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


[libtext-csv-xs-perl] annotated tag debian/1.20-1 created (now 7ca7d2f)

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

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

at  7ca7d2f   (tag)
   tagging  d4b08463b51b900c983ea3952eaf3e4278dc52db (commit)
  replaces  debian/1.19-1
 tagged by  gregor herrmann
on  Wed Oct 21 18:20:59 2015 +0200

- Log -
tagging package libtext-csv-xs-perl version debian/1.20-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAABCgBmBQJWJ7trXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoGqOwP/iVnRkWgoIsOsCy4LJ2t5ZUx
QDIr9U6tRaoQlWUR0UWNEEl7qsMYXtoNLaqu61IcownUcEz3pXCXaMuzNjW2DwIe
TQUsnww9sVqcNwu9N9vGjSc0UjndmZqxX4Gcmkk62X0glDiXCz8hnSMmLUUqqKwi
fwxPN9fypb+3lkGOfpS5uuuAaV/cXNkMwljjUi8KRwyUJLHjM7FA5G7LoAlPG3+5
6TMf/GDpLf6kq42+dK/T4HcA6PWMsbH3fc4NVlyU0recoXdOi3kF8+mqDUn54Q6Z
VNZJu3DjC21nVocPnGcN4Zd6OkL/xeGSq7RxtglijYji7dAbxuGeupDmIjV9E9fj
FYaSRy2nqe3q3ghlt/ZLbq07nysRLWE1Xu6TsasIXZHYD4u2phzV8NPGuxJr3e+F
jXuPXvftsP8wsYeRu21VY9ds2yON8G43QYVxwI5fGNpdyzctUBfUlpifyV8WvW7f
OxwRZOqmi7wGw0blxOGZ5KcJtN7Biw0Fpi8YaqB+ZVqiQ0flK3att7LcFOBoGLWd
GTFZoMkNzy8EN770YYCAuiwxSKc/6MIpEbNiYpXXSVk7bqUG6gb0x+KB530X+/A6
PXTGPGfZqxaP9sbS5+8PMLWzzxUhztNR+uH40gO4eC3P3xcQS78nM3CmJBxAJLxt
ad10s14iZCR8iAU8Brcb
=aZWo
-END PGP SIGNATURE-

Xavier Guimard (4):
  Imported Upstream version 1.20
  Merge tag 'upstream/1.20'
  Update copyright years
  Update d/ch

gregor herrmann (3):
  Rename autopkgtest configuration file.
  Install new CONTRIBUTING file.
  releasing package libtext-csv-xs-perl version 1.20-1

---

This annotated tag includes the following new commits:

   new  1d1e86e   Rename autopkgtest configuration file.
   new  5a158c2   Install new CONTRIBUTING file.
   new  d4b0846   releasing package libtext-csv-xs-perl version 1.20-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/libtext-csv-xs-perl.git

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


[libtext-csv-xs-perl] 03/03: releasing package libtext-csv-xs-perl version 1.20-1

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

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

commit d4b08463b51b900c983ea3952eaf3e4278dc52db
Author: gregor herrmann 
Date:   Wed Oct 21 18:20:59 2015 +0200

releasing package libtext-csv-xs-perl version 1.20-1
---
 debian/changelog | 5 +
 1 file changed, 5 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 5e2ca82..285e9fd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,13 @@
 libtext-csv-xs-perl (1.20-1) unstable; urgency=medium
 
+  [ Xavier Guimard ]
   * New upstream version
   * Update debian/copyright years
 
+  [ gregor herrmann ]
+  * Rename autopkgtest configuration file.
+  * Install new CONTRIBUTING file.
+
  -- Xavier Guimard   Wed, 21 Oct 2015 12:51:32 +0200
 
 libtext-csv-xs-perl (1.19-1) unstable; urgency=medium

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

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


[libtext-csv-xs-perl] branch master updated (7900f64 -> d4b0846)

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

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

  from  7900f64   Update d/ch
   new  1d1e86e   Rename autopkgtest configuration file.
   new  5a158c2   Install new CONTRIBUTING file.
   new  d4b0846   releasing package libtext-csv-xs-perl version 1.20-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:
 debian/changelog  | 5 +
 debian/libtext-csv-xs-perl.docs   | 1 +
 debian/tests/pkg-perl/{test-files => smoke-files} | 0
 debian/tests/pkg-perl/{skip-smoke => smoke-skip}  | 0
 4 files changed, 6 insertions(+)
 create mode 100644 debian/libtext-csv-xs-perl.docs
 rename debian/tests/pkg-perl/{test-files => smoke-files} (100%)
 rename debian/tests/pkg-perl/{skip-smoke => smoke-skip} (100%)

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

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


[libdata-alias-perl] 02/06: New upstream release.

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

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

commit 69d515bf48e5a8572848f78ab4058d533ef482f1
Author: gregor herrmann 
Date:   Wed Oct 21 17:04:06 2015 +0200

New upstream release.
---
 debian/changelog | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 3b417d1..b3aa94c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libdata-alias-perl (1.18-2) UNRELEASED; urgency=medium
+libdata-alias-perl (1.19-1) UNRELEASED; urgency=medium
 
   [ gregor herrmann ]
   * Strip trailing slash from metacpan URLs.
@@ -6,7 +6,11 @@ libdata-alias-perl (1.18-2) UNRELEASED; urgency=medium
   [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
 
- -- gregor herrmann   Thu, 27 Feb 2014 22:34:14 +0100
+  [ gregor herrmann ]
+  * New upstream release.
+Fixes "FTBFS with perl 5.22" (Closes: #787453)
+
+ -- gregor herrmann   Wed, 21 Oct 2015 17:03:01 +0200
 
 libdata-alias-perl (1.18-1) unstable; urgency=low
 

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

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


[libdata-alias-perl] 05/06: Declare compliance with Debian Policy 3.9.6.

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

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

commit 85a4cd8bf1efe38be961a9c37f802243e2c2df1d
Author: gregor herrmann 
Date:   Wed Oct 21 17:05:01 2015 +0200

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

diff --git a/debian/control b/debian/control
index 75eb09a..abbffe3 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,7 @@ Build-Depends: debhelper (>= 9.20120312),
libtest-pod-coverage-perl,
libtest-pod-perl,
perl
-Standards-Version: 3.9.4
+Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libdata-alias-perl.git
 Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libdata-alias-perl.git
 Homepage: https://metacpan.org/release/Data-Alias

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

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


[libsql-statement-perl] 05/05: update changelog

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

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

commit 8582bd4bd3918c7bb1a9cc327ffd3e0efa91cdc5
Author: gregor herrmann 
Date:   Wed Oct 21 18:39:32 2015 +0200

update changelog

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

diff --git a/debian/changelog b/debian/changelog
index f967d2f..de30848 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,6 @@
-libsql-statement-perl (1.407-1) unstable; urgency=medium
+libsql-statement-perl (1.407-1) UNRELEASED; urgency=medium
+
+  WAITS-FOR: libmath-base-convert-perl
 
   [ gregor herrmann ]
   * Strip trailing slash from metacpan URLs.
@@ -12,6 +14,10 @@ libsql-statement-perl (1.407-1) unstable; urgency=medium
   * Bump debhelper compatibility to 9
   * Update debian/copyright years
 
+  [ gregor herrmann ]
+  * Add debian/upstream/metadata.
+  * Add new (build) dependencies.
+
  -- Xavier Guimard   Wed, 21 Oct 2015 13:28:18 +0200
 
 libsql-statement-perl (1.405-1) unstable; urgency=low

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

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


[libsql-statement-perl] 03/05: Add new (build) dependencies.

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

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

commit 9f97481a1a0ceb5b26f50e5249beb69c236fa29f
Author: gregor herrmann 
Date:   Wed Oct 21 18:37:22 2015 +0200

Add new (build) dependencies.
---
 debian/control | 5 +
 1 file changed, 5 insertions(+)

diff --git a/debian/control b/debian/control
index 367d409..e339170 100644
--- a/debian/control
+++ b/debian/control
@@ -13,7 +13,10 @@ Priority: optional
 Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: libclone-perl,
  libdbi-perl (>= 1.616),
+ libmath-base-convert-perl,
+ libmodule-runtime-perl,
  libparams-util-perl,
+ libtest-deep-perl,
  libtest-pod-coverage-perl,
  libtest-pod-perl,
  libtext-soundex-perl | perl (<< 5.17.0),
@@ -28,8 +31,10 @@ Architecture: all
 Depends: ${misc:Depends},
  ${perl:Depends},
  libclone-perl,
+ libmodule-runtime-perl,
  libparams-util-perl
 Recommends: libdbi-perl (>= 1.616),
+libmath-base-convert-perl,
 libtext-soundex-perl | perl (<< 5.17.0)
 Breaks: libdbd-anydata-perl (<< 0.09+),
 libdbd-csv-perl (<< 0.3000),

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

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


[libnetaddr-ip-perl] branch master updated (20d047b -> f248263)

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

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

  from  20d047b   Update d/ch
  adds  ac35510   Imported Upstream version 4.078+dfsg
   new  1c80345   Merge tag 'upstream/4.078+dfsg'
   new  a4de7ac   update version after importing the repacked tarball
   new  8dfaab0   Mark package as autopkgtest-able.
   new  f248263   releasing package libnetaddr-ip-perl version 4.078+dfsg-1

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


Summary of changes:
 MANIFEST |1 -
 debian/changelog |5 +-
 debian/control   |1 +
 docs/rfc1884.txt | 1023 --
 4 files changed, 5 insertions(+), 1025 deletions(-)
 delete mode 100644 docs/rfc1884.txt

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

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


[libnetaddr-ip-perl] 04/04: releasing package libnetaddr-ip-perl version 4.078+dfsg-1

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

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

commit f2482635968dea221d98ff1e155f3fe61a1da5b0
Author: gregor herrmann 
Date:   Wed Oct 21 17:56:03 2015 +0200

releasing package libnetaddr-ip-perl version 4.078+dfsg-1
---
 debian/changelog | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index ecb347f..53c2b59 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,9 @@ libnetaddr-ip-perl (4.078+dfsg-1) unstable; urgency=medium
   * Bump Standards-Version to 3.9.6
   * Update debian/copyright: add configure.*cc section
 
+  [ gregor herrmann ]
+  * Mark package as autopkgtest-able.
+
  -- Xavier Guimard   Mon, 19 Oct 2015 08:32:05 +0200
 
 libnetaddr-ip-perl (4.075+dfsg-1) unstable; urgency=medium

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

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


[libnetaddr-ip-perl] 02/04: update version after importing the repacked tarball

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

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

commit a4de7ac32b9c50cb9aa7686cc555cbc1457e645c
Author: gregor herrmann 
Date:   Wed Oct 21 17:47:33 2015 +0200

update version after importing the repacked tarball

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

diff --git a/debian/changelog b/debian/changelog
index d165644..ecb347f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libnetaddr-ip-perl (4.078-1) unstable; urgency=medium
+libnetaddr-ip-perl (4.078+dfsg-1) unstable; urgency=medium
 
   [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend

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

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


[libsql-statement-perl] 01/05: echo 9 > debian/compat

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

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

commit 3baf99006dc74441d95601cf3c5521ebbd672faf
Author: gregor herrmann 
Date:   Wed Oct 21 18:24:54 2015 +0200

echo 9 > debian/compat

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

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

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

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


[libsql-statement-perl] 02/05: Add debian/upstream/metadata.

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

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

commit c33499da9956c53e9a1e7ed3b9ca3d1b0a66de56
Author: gregor herrmann 
Date:   Wed Oct 21 18:27:04 2015 +0200

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

diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 000..60d450f
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,8 @@
+---
+Archive: CPAN
+Bug-Database: http://rt.cpan.org/Public/Dist/Display.html?Name=SQL-Statement
+Bug-Submit: sql-statem...@rt.cpan.org
+Contact: Jeff Zucker , Jens Rehsack 
+Name: SQL-Statement
+Repository: https://github.com/perl5-dbi/SQL-Statement.git
+Repository-Browse: https://github.com/perl5-dbi/SQL-Statement

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

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


[libsql-statement-perl] branch master updated (a1fd292 -> 8582bd4)

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

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

  from  a1fd292   Update d/ch
   new  3baf990   echo 9 > debian/compat
   new  c33499d   Add debian/upstream/metadata.
   new  9f97481   Add new (build) dependencies.
   new  81841be   unify breaks
   new  8582bd4   update changelog

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


Summary of changes:
 debian/changelog | 8 +++-
 debian/compat| 2 +-
 debian/control   | 7 ++-
 debian/upstream/metadata | 8 
 4 files changed, 22 insertions(+), 3 deletions(-)
 create mode 100644 debian/upstream/metadata

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

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


[libsql-statement-perl] 04/05: unify breaks

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

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

commit 81841be5aa9a95c473657e69ee97cf672fb243e9
Author: gregor herrmann 
Date:   Wed Oct 21 18:37:53 2015 +0200

unify breaks

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

diff --git a/debian/control b/debian/control
index e339170..79320cf 100644
--- a/debian/control
+++ b/debian/control
@@ -36,7 +36,7 @@ Depends: ${misc:Depends},
 Recommends: libdbi-perl (>= 1.616),
 libmath-base-convert-perl,
 libtext-soundex-perl | perl (<< 5.17.0)
-Breaks: libdbd-anydata-perl (<< 0.09+),
+Breaks: libdbd-anydata-perl (<< 0.10),
 libdbd-csv-perl (<< 0.3000),
 libdbi-perl (<< 1.612)
 Description: module for parsing and processing SQL statements

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

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


[libperinci-cmdline-perl] tag upstream/1.47 created (now 5bfce42)

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

gregoa pushed a change to tag upstream/1.47
in repository libperinci-cmdline-perl.

at  5bfce42   (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/libperinci-cmdline-perl.git

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


[libogg-vorbis-decoder-perl] 01/06: Add a patch to temporarily skip a test

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

gregoa pushed a commit to branch master
in repository libogg-vorbis-decoder-perl.

commit 70ea355b4d48c1cc84ac16dbf18e382f74c708c8
Author: gregor herrmann 
Date:   Wed Oct 21 20:26:59 2015 +0200

Add a patch to temporarily skip a test

which fails with libvorbisfile3 1.3.4-3.

Closes: #801610
---
 debian/patches/libvorbis-ov_raw_total.patch | 21 +
 debian/patches/series   |  1 +
 2 files changed, 22 insertions(+)

diff --git a/debian/patches/libvorbis-ov_raw_total.patch 
b/debian/patches/libvorbis-ov_raw_total.patch
new file mode 100644
index 000..fdd1310
--- /dev/null
+++ b/debian/patches/libvorbis-ov_raw_total.patch
@@ -0,0 +1,21 @@
+Description: mark a test as TODO which fails with libvorbisfile3 1.3.4-3.
+ Cf. #802393
+Origin: vendor
+Bug-Debian: https://bugs.debian.org/801610
+Forwarded: not-needed
+Author: gregor herrmann 
+Last-Update: 2015-10-21
+
+--- a/t/basic.t
 b/t/basic.t
+@@ -17,7 +17,10 @@
+ ok($ogg->streams, 'streams');
+ ok($ogg->seekable, 'seekable');
+ ok($ogg->serialnumber, 'serialnumber');
++TODO: {
++local $TODO = 'Bug in libvorbisfile3 1.3.4-3, cf. #802393.';
+ is($ogg->raw_total, 4418594, 'raw_total');
++}
+ ok($ogg->pcm_total, 'pcm_total');
+ is(sprintf("%.2f", $ogg->time_total), 187.15, 'time_total');
+ ok($ogg->raw_tell, 'raw_tell');
diff --git a/debian/patches/series b/debian/patches/series
index 526c1ad..a921429 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 useless_dependency.patch
+libvorbis-ov_raw_total.patch

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

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


[libogg-vorbis-decoder-perl] 02/06: Update years of packaging copyright.

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

gregoa pushed a commit to branch master
in repository libogg-vorbis-decoder-perl.

commit 0700f506161b4aa23a93146cdc93f3dd21e47d89
Author: gregor herrmann 
Date:   Wed Oct 21 20:28:41 2015 +0200

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

diff --git a/debian/copyright b/debian/copyright
index 855ada7..c1cc72f 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -17,7 +17,7 @@ License: Artistic or GPL-1+
 Files: debian/*
 Copyright: 2004, Ivan Kohler 
  2008, Rene Mayorga 
- 2008-2011, gregor herrmann 
+ 2008-2015, gregor herrmann 
  2010, Damyan Ivanov 
  2011, Jonathan Yu 
 License: Artistic or GPL-1+

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

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


[libogg-vorbis-decoder-perl] 04/06: Mark package as autopkgtest-able.

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

gregoa pushed a commit to branch master
in repository libogg-vorbis-decoder-perl.

commit a86f4072308f93cf6d667bd1fafb7ae63d63a644
Author: gregor herrmann 
Date:   Wed Oct 21 20:28:56 2015 +0200

Mark package as autopkgtest-able.
---
 debian/control| 1 +
 debian/tests/pkg-perl/smoke-files | 2 ++
 debian/tests/pkg-perl/use-name| 1 +
 3 files changed, 4 insertions(+)

diff --git a/debian/control b/debian/control
index 5ff53cc..a620cc2 100644
--- a/debian/control
+++ b/debian/control
@@ -5,6 +5,7 @@ Uploaders: gregor herrmann ,
Rene Mayorga ,
Damyan Ivanov 
 Section: perl
+Testsuite: autopkgtest-pkg-perl
 Priority: optional
 Build-Depends: debhelper (>= 9.20120312~),
perl,
diff --git a/debian/tests/pkg-perl/smoke-files 
b/debian/tests/pkg-perl/smoke-files
new file mode 100644
index 000..5e3c053
--- /dev/null
+++ b/debian/tests/pkg-perl/smoke-files
@@ -0,0 +1,2 @@
+t/
+data/
diff --git a/debian/tests/pkg-perl/use-name b/debian/tests/pkg-perl/use-name
new file mode 100644
index 000..5528233
--- /dev/null
+++ b/debian/tests/pkg-perl/use-name
@@ -0,0 +1 @@
+Ogg::Vorbis::Decoder

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

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


[libogg-vorbis-decoder-perl] annotated tag debian/0.9-3 created (now 4b30c3b)

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

gregoa pushed a change to annotated tag debian/0.9-3
in repository libogg-vorbis-decoder-perl.

at  4b30c3b   (tag)
   tagging  131de0b5004d8a606d6b21e1cb6408ccc673fc88 (commit)
  replaces  debian/0.9-2
 tagged by  gregor herrmann
on  Wed Oct 21 20:34:33 2015 +0200

- Log -
tagging package libogg-vorbis-decoder-perl version debian/0.9-3
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAABCgBmBQJWJ9q5XxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoGK80P/1BmDUHxeQHC+QZfb9CtZOeB
SDgbnCQ3RqU3KtRjhanegYqtJYg/Cop1vMU6jTKzeg2mzf729AlMoTLbNUOjW+4r
cR1tqkULC2wqj5t1Brs0DzmVfRWKRJzsLUmZm3CXStSV5aLVEPpXOG2kV3Y+BqSn
yafuLPd4D8e2mbYwGdlDukL6DphiDrddal0npzMlNO/V5BuT2VUlNRAsIiDsK/Vz
6AA7pRWVZNg7JInvTh5k79Sytj4A9zKmWEs4RnsqNfS63DAxsZjro26ia+9MquDA
Gw3XEJtWVj56IQnCNV8MuWLEZI36N2Dzw3FVbiFKJ4leLrzme2cb7fh2XGb30QtA
9NGMWCxWW3/+9FNgxHwKad4QcGdbCdW3vM2ZFN/hb0lCyQCtVb/S2UJvLxA6eDrO
F/pYExUHlDe4naVGR8Rw4yysQ3FxZGfOHwZyR6zESxKaUeXocvUHR6oHIxGzkwgU
WWovm093rIWrBBZ599vsJCdv5fRmpdRd2+tmorw/hY6ZBiLl2ES9MtqyyAC6/hAs
GPaJEoXhChZymXr370iFyIRP+TQEQz9DC2f4pckRwQB8gHoEg9K9omcoK+W4id2Z
0BaRJEqR1NGP9W1/eDZ+jGvSZyL5TpcL5NFq3ug07NkHFRltGL5B+fhrFDwqp0Pe
rhmNLfD6QNfuWLkAsgMZ
=neg9
-END PGP SIGNATURE-

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

gregor herrmann (6):
  Add a patch to temporarily skip a test
  Update years of packaging copyright.
  Reformat debian/control with cme
  Mark package as autopkgtest-able.
  Declare compliance with Debian Policy 3.9.6.
  releasing package libogg-vorbis-decoder-perl version 0.9-3

---

This annotated tag includes the following new commits:

   new  70ea355   Add a patch to temporarily skip a test
   new  0700f50   Update years of packaging copyright.
   new  506514a   Reformat debian/control with cme
   new  a86f407   Mark package as autopkgtest-able.
   new  6929cd1   Declare compliance with Debian Policy 3.9.6.
   new  131de0b   releasing package libogg-vorbis-decoder-perl version 0.9-3

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


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

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


[libogg-vorbis-decoder-perl] 03/06: Reformat debian/control with cme

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

gregoa pushed a commit to branch master
in repository libogg-vorbis-decoder-perl.

commit 506514a3f261e4f4bc26800c28e88f1ae539b2fb
Author: gregor herrmann 
Date:   Wed Oct 21 20:28:54 2015 +0200

Reformat debian/control with cme

Gbp-Dch: ignore
---
 debian/control | 29 -
 1 file changed, 16 insertions(+), 13 deletions(-)

diff --git a/debian/control b/debian/control
index 1587771..5ff53cc 100644
--- a/debian/control
+++ b/debian/control
@@ -1,24 +1,27 @@
 Source: libogg-vorbis-decoder-perl
-Section: perl
-Priority: optional
-Build-Depends: debhelper (>= 9.20120312~), perl,
- libogg-dev,
- libtest-pod-coverage-perl,
- libtest-pod-perl,
- libvorbis-dev
 Maintainer: Debian Perl Group 
 Uploaders: gregor herrmann ,
- Jonathan Yu ,
- Rene Mayorga ,
- Damyan Ivanov 
+   Jonathan Yu ,
+   Rene Mayorga ,
+   Damyan Ivanov 
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 9.20120312~),
+   perl,
+   libogg-dev,
+   libtest-pod-coverage-perl,
+   libtest-pod-perl,
+   libvorbis-dev
 Standards-Version: 3.9.5
-Homepage: https://metacpan.org/release/Ogg-Vorbis-Decoder
-Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/libogg-vorbis-decoder-perl.git
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libogg-vorbis-decoder-perl.git
+Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/libogg-vorbis-decoder-perl.git
+Homepage: https://metacpan.org/release/Ogg-Vorbis-Decoder
 
 Package: libogg-vorbis-decoder-perl
 Architecture: any
-Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}
+Depends: ${misc:Depends},
+ ${perl:Depends},
+ ${shlibs:Depends}
 Description: module for decoding Ogg Vorbis streams
  Ogg::Vorbis::Decoder is a Perl module for decoding Ogg Vorbis files, based on
  the Vorbisfile interface (see libvorbis-dev for details). It can read data in

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

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


[libogg-vorbis-decoder-perl] 05/06: Declare compliance with Debian Policy 3.9.6.

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

gregoa pushed a commit to branch master
in repository libogg-vorbis-decoder-perl.

commit 6929cd146ea400bcee2d85946b337959b27b54db
Author: gregor herrmann 
Date:   Wed Oct 21 20:28:57 2015 +0200

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

diff --git a/debian/control b/debian/control
index a620cc2..73ffcc6 100644
--- a/debian/control
+++ b/debian/control
@@ -13,7 +13,7 @@ Build-Depends: debhelper (>= 9.20120312~),
libtest-pod-coverage-perl,
libtest-pod-perl,
libvorbis-dev
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libogg-vorbis-decoder-perl.git
 Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/libogg-vorbis-decoder-perl.git
 Homepage: https://metacpan.org/release/Ogg-Vorbis-Decoder

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

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


[libogg-vorbis-decoder-perl] 06/06: releasing package libogg-vorbis-decoder-perl version 0.9-3

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

gregoa pushed a commit to branch master
in repository libogg-vorbis-decoder-perl.

commit 131de0b5004d8a606d6b21e1cb6408ccc673fc88
Author: gregor herrmann 
Date:   Wed Oct 21 20:34:33 2015 +0200

releasing package libogg-vorbis-decoder-perl version 0.9-3
---
 debian/changelog | 13 +++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 5e2d5e3..6b6c114 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,17 @@
-libogg-vorbis-decoder-perl (0.9-3) UNRELEASED; urgency=medium
+libogg-vorbis-decoder-perl (0.9-3) unstable; urgency=medium
 
+  [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
 
- -- Salvatore Bonaccorso   Sat, 16 Aug 2014 09:34:01 +0200
+  [ gregor herrmann ]
+  * Add a patch to temporarily skip a test which fails with
+libvorbisfile3 1.3.4-3.
+(Closes: #801610)
+  * Update years of packaging copyright.
+  * Mark package as autopkgtest-able.
+  * Declare compliance with Debian Policy 3.9.6.
+
+ -- gregor herrmann   Wed, 21 Oct 2015 20:33:18 +0200
 
 libogg-vorbis-decoder-perl (0.9-2) unstable; urgency=low
 

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

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


[libogg-vorbis-decoder-perl] branch master updated (6738bc7 -> 131de0b)

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

gregoa pushed a change to branch master
in repository libogg-vorbis-decoder-perl.

  from  6738bc7   update changelog
   new  70ea355   Add a patch to temporarily skip a test
   new  0700f50   Update years of packaging copyright.
   new  506514a   Reformat debian/control with cme
   new  a86f407   Mark package as autopkgtest-able.
   new  6929cd1   Declare compliance with Debian Policy 3.9.6.
   new  131de0b   releasing package libogg-vorbis-decoder-perl version 0.9-3

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


Summary of changes:
 debian/changelog| 13 ++--
 debian/control  | 32 -
 debian/copyright|  2 +-
 debian/patches/libvorbis-ov_raw_total.patch | 21 +++
 debian/patches/series   |  1 +
 debian/tests/pkg-perl/smoke-files   |  2 ++
 debian/tests/pkg-perl/use-name  |  1 +
 7 files changed, 55 insertions(+), 17 deletions(-)
 create mode 100644 debian/patches/libvorbis-ov_raw_total.patch
 create mode 100644 debian/tests/pkg-perl/smoke-files
 create mode 100644 debian/tests/pkg-perl/use-name

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

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


[libperinci-cmdline-perl] 01/01: pristine-tar data for libperinci-cmdline-perl_1.47.orig.tar.gz

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

gregoa pushed a commit to branch pristine-tar
in repository libperinci-cmdline-perl.

commit fb7eda4674161ae9c773809dde22614fea8b2343
Author: gregor herrmann 
Date:   Wed Oct 21 20:42:03 2015 +0200

pristine-tar data for libperinci-cmdline-perl_1.47.orig.tar.gz
---
 libperinci-cmdline-perl_1.47.orig.tar.gz.delta | Bin 0 -> 1291 bytes
 libperinci-cmdline-perl_1.47.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libperinci-cmdline-perl_1.47.orig.tar.gz.delta 
b/libperinci-cmdline-perl_1.47.orig.tar.gz.delta
new file mode 100644
index 000..8638bdd
Binary files /dev/null and b/libperinci-cmdline-perl_1.47.orig.tar.gz.delta 
differ
diff --git a/libperinci-cmdline-perl_1.47.orig.tar.gz.id 
b/libperinci-cmdline-perl_1.47.orig.tar.gz.id
new file mode 100644
index 000..04b640e
--- /dev/null
+++ b/libperinci-cmdline-perl_1.47.orig.tar.gz.id
@@ -0,0 +1 @@
+3980511103ddcec7d690292f9a5f6036a9c5670b

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

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


[libperinci-cmdline-perl] 02/04: copyright

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

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

commit b86c78e40bd5d5e698359123449309452305601f
Author: gregor herrmann 
Date:   Wed Oct 21 20:43:19 2015 +0200

copyright
---
 debian/copyright | 10 +-
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index 72a8b5f..b03ff42 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -2,17 +2,9 @@ Format: 
http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Source: https://metacpan.org/release/Perinci-CmdLine
 Upstream-Contact: perlancar 
 Upstream-Name: Perinci-CmdLine
-DISCLAIMER: This copyright info was automatically extracted 
- from the perl module. It may not be accurate, so you better 
- check the module sources in order to ensure the module for its 
- inclusion in Debian or for general legal information. Please, 
- if licensing information is incorrectly generated, file a bug 
- on dh-make-perl.
- NOTE: Don't forget to remove this disclaimer once you are happy
- with this file.
 
 Files: *
-Copyright: perlancar 
+Copyright: 2015, perlancar 
 License: Artistic or GPL-1+
 
 Files: debian/*

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

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


[libperinci-cmdline-perl] 03/04: control

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

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

commit 6c94926563cd29f011cfe4388a593039abaf2b6b
Author: gregor herrmann 
Date:   Wed Oct 21 20:45:58 2015 +0200

control
---
 debian/control | 19 ---
 1 file changed, 8 insertions(+), 11 deletions(-)

diff --git a/debian/control b/debian/control
index 6d10d4c..6e1dab6 100644
--- a/debian/control
+++ b/debian/control
@@ -1,27 +1,24 @@
 Source: libperinci-cmdline-perl
-Section: perl
-Priority: optional
 Maintainer: Debian Perl Group 
 Uploaders: gregor herrmann 
+Section: perl
+Testsuite: autopkgtest-pkg-perl
+Priority: optional
 Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: perl
 Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libperinci-cmdline-perl.git
 Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libperinci-cmdline-perl.git
 Homepage: https://metacpan.org/release/Perinci-CmdLine
-Testsuite: autopkgtest-pkg-perl
 
 Package: libperinci-cmdline-perl
 Architecture: all
-Depends: ${misc:Depends}, ${perl:Depends}
+Depends: ${misc:Depends},
+ ${perl:Depends}
 Description: Rinci/Riap-based command-line application framework
- Perinci::CmdLine is currently empty, becase the implementation is currently
- split into Perinci::CmdLine::Lite (for lightweight version) and
+ Perinci::CmdLine is currently empty, because the implementation is currently
+ split into Perinci::CmdLine::Lite (the lightweight version) and
  Perinci::CmdLine::Classic (the full but heavier version). There's also
- Perinci::CmdLine::Any that lets you choose between the two dynamically, a la
+ Perinci::CmdLine::Any that let's you choose between the two dynamically, à la
  Any::Moose. And finally there's also Perinci::CmdLine::Inline, the even more
  lightweight version.
- .
- This module exists solely for convenience of linking purposes.
- .
- This description was automagically extracted from the module by dh-make-perl.

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

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

[libperinci-cmdline-perl] 01/04: Initial packaging by dh-make-perl 0.84

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

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

commit 5311271381e5116eba2d152a2fefc97304ed61c5
Author: gregor herrmann 
Date:   Wed Oct 21 20:42:03 2015 +0200

Initial packaging by dh-make-perl 0.84
---
 debian/changelog |  5 +
 debian/compat|  1 +
 debian/control   | 27 +++
 debian/copyright | 36 
 debian/rules |  4 
 debian/source/format |  1 +
 debian/upstream/metadata |  7 +++
 debian/watch |  2 ++
 8 files changed, 83 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 000..233e57b
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libperinci-cmdline-perl (1.47-1) UNRELEASED; urgency=low
+
+  * Initial Release.
+
+ -- gregor herrmann   Wed, 21 Oct 2015 20:42:03 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 000..6d10d4c
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,27 @@
+Source: libperinci-cmdline-perl
+Section: perl
+Priority: optional
+Maintainer: Debian Perl Group 
+Uploaders: gregor herrmann 
+Build-Depends: debhelper (>= 9)
+Build-Depends-Indep: perl
+Standards-Version: 3.9.6
+Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libperinci-cmdline-perl.git
+Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libperinci-cmdline-perl.git
+Homepage: https://metacpan.org/release/Perinci-CmdLine
+Testsuite: autopkgtest-pkg-perl
+
+Package: libperinci-cmdline-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends}
+Description: Rinci/Riap-based command-line application framework
+ Perinci::CmdLine is currently empty, becase the implementation is currently
+ split into Perinci::CmdLine::Lite (for lightweight version) and
+ Perinci::CmdLine::Classic (the full but heavier version). There's also
+ Perinci::CmdLine::Any that lets you choose between the two dynamically, a la
+ Any::Moose. And finally there's also Perinci::CmdLine::Inline, the even more
+ lightweight version.
+ .
+ This module exists solely for convenience of linking purposes.
+ .
+ This description was automagically extracted from the module by dh-make-perl.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 000..72a8b5f
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,36 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Source: https://metacpan.org/release/Perinci-CmdLine
+Upstream-Contact: perlancar 
+Upstream-Name: Perinci-CmdLine
+DISCLAIMER: This copyright info was automatically extracted 
+ from the perl module. It may not be accurate, so you better 
+ check the module sources in order to ensure the module for its 
+ inclusion in Debian or for general legal information. Please, 
+ if licensing information is incorrectly generated, file a bug 
+ on dh-make-perl.
+ NOTE: Don't forget to remove this disclaimer once you are happy
+ with this file.
+
+Files: *
+Copyright: perlancar 
+License: Artistic or GPL-1+
+
+Files: debian/*
+Copyright: 2015, gregor herrmann 
+License: Artistic or GPL-1+
+
+License: Artistic
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+ .
+ On Debian systems, the complete text of the Artistic License can be
+ found in `/usr/share/common-licenses/Artistic'.
+
+License: GPL-1+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 1, or (at your option)
+ any later version.
+ .
+ On Debian systems, the complete text of version 1 of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-1'.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 000..2d33f6a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+   dh $@
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)
diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 000..5d3058e
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,7 @@
+---
+Archive: CPAN
+Bug-Database: https://rt.cpan.org/Public/Dist/Display.html?Name=Perinci-CmdLine
+Contact: perlancar 
+Name: Perinci-CmdLine
+Repository: git://github.com/perlancar/perl-Perinci-CmdLine.git
+Repository-Browse: 

[libperinci-cmdline-perl] branch pristine-tar created (now fb7eda4)

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

gregoa pushed a change to branch pristine-tar
in repository libperinci-cmdline-perl.

at  fb7eda4   pristine-tar data for 
libperinci-cmdline-perl_1.47.orig.tar.gz

This branch includes the following new commits:

   new  fb7eda4   pristine-tar data for 
libperinci-cmdline-perl_1.47.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.


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

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


[libperinci-cmdline-perl] 04/04: spelling.patch

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

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

commit 43446758359e6e654de2446df4dc0f4f783f9685
Author: gregor herrmann 
Date:   Wed Oct 21 20:52:02 2015 +0200

spelling.patch
---
 debian/patches/series |  1 +
 debian/patches/spelling.patch | 45 +++
 2 files changed, 46 insertions(+)

diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..5299247
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+spelling.patch
diff --git a/debian/patches/spelling.patch b/debian/patches/spelling.patch
new file mode 100644
index 000..c583f3b
--- /dev/null
+++ b/debian/patches/spelling.patch
@@ -0,0 +1,45 @@
+Description: fix some spelling errors
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2015-10-21
+Forwarded: https://rt.cpan.org/Ticket/Display.html?id=107908
+Bug: https://rt.cpan.org/Ticket/Display.html?id=107908
+
+--- a/lib/Perinci/CmdLine.pm
 b/lib/Perinci/CmdLine.pm
+@@ -27,10 +27,10 @@
+ 
+ =head1 DESCRIPTION
+ 
+-This module is currently empty, becase the implementation is currently split
+-into L (for lightweight version) and
++This module is currently empty, because the implementation is currently split
++into L (the lightweight version) and
+ L (the full but heavier version). There's also
+-L that lets you choose between the two dynamically, a 
la
++L that let's you choose between the two dynamically, à 
la
+ Any::Moose. And finally there's also L, the even 
more
+ lightweight version.
+ 
+--- a/lib/Perinci/CmdLine/Manual.pod
 b/lib/Perinci/CmdLine/Manual.pod
+@@ -206,7 +206,7 @@
+ =head1 CONFIGURATION FILE
+ 
+ Configuration files are read to preset the value of arguments, before
+-potentially overriden/merged with command-line options. Configuration files 
are
++potentially overridden/merged with command-line options. Configuration files 
are
+ in L format, which is basically C with some extra features.
+ 
+ By default, configuration files are searched in C and home directory, 
with
+--- a/lib/Perinci/CmdLine/Manual/Examples.pod
 b/lib/Perinci/CmdLine/Manual/Examples.pod
+@@ -641,7 +641,7 @@
+ =head2 Basics
+ 
+ In the function-centric world of Perinci::CmdLine, configuration is just 
another
+-way to supply values to function arguments (before being potentially overriden
++way to supply values to function arguments (before being potentially 
overridden
+ by command-line arguments). Configuration files are written in L format,
+ which is basically "INI with extra features". By default, configuration files
+ are searched in C and then your home directory, with the name of

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

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

[libperinci-cmdline-perl] branch master created (now 4344675)

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

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

at  4344675   spelling.patch

This branch includes the following new commits:

   new  5311271   Initial packaging by dh-make-perl 0.84
   new  b86c78e   copyright
   new  6c94926   control
   new  4344675   spelling.patch

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


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

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


[libverilog-perl] branch master updated (e32eeff -> 9e1365d)

2015-10-21 Thread Florian Schlichting
This is an automated email from the git hooks/post-receive script.

fsfs pushed a change to branch master
in repository libverilog-perl.

  from  e32eeff   update changelog
   new  cd303d6   Add debian/upstream/metadata
   new  a8ea05d   Update debian/changelog
  adds  8da2009   Imported Upstream version 3.416
   new  6046cfc   Merge tag 'upstream/3.416'
   new  58549da   Update debian/changelog
   new  cc4e4a4   Bump years of packaging copyright
   new  9e1365d   prepare changelog for release

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


Summary of changes:
 .gitignore  | 17 
 Changes |  7 +++
 EditFiles.pm|  2 +-
 Getopt.pm   |  6 +--
 Language.pm |  2 +-
 MANIFEST|  2 +
 META.yml|  2 +-
 Netlist.pm  |  2 +-
 Netlist/Cell.pm |  2 +-
 Netlist/ContAssign.pm   |  2 +-
 Netlist/Defparam.pm |  2 +-
 Netlist/File.pm |  2 +-
 Netlist/Interface.pm|  2 +-
 Netlist/Logger.pm   |  2 +-
 Netlist/ModPort.pm  |  2 +-
 Netlist/Module.pm   |  2 +-
 Netlist/Net.pm  |  2 +-
 Netlist/Pin.pm  |  2 +-
 Netlist/Port.pm |  2 +-
 Netlist/Subclass.pm |  2 +-
 Parser/.gitignore   | 23 --
 Parser/Parser.pm|  2 +-
 Parser/SigParser.pm |  2 +-
 Parser/bisonpre |  2 +-
 Parser/callbackgen  |  2 +-
 Parser/gen/bisonpre-0   |  2 +-
 Preproc/.gitignore  | 15 ---
 Preproc/Preproc.pm  |  2 +-
 Std.pm  |  2 +-
 debian/changelog| 12 +++--
 debian/copyright|  2 +-
 debian/upstream/metadata|  5 +++
 t/42_dumpcheck.t|  4 +-
 t/42_dumpcheck_1.out| 58 -
 t/42_dumpcheck_2.out| 10 ++---
 t/42_dumpcheck_v2k.out  |  4 +-
 t/51_vrename_kwd.t  | 16 +--
 t/51_vrename_kwd.v  |  4 ++
 t/51_vrename_kwd_chg.out|  4 ++
 t/{51_vrename_kwd.v => 51_vrename_kwd_chg2.out} | 10 +++--
 t/51_vrename_kwd_chg2.vrename   |  8 
 t/51_vrename_kwd_list.out   |  3 +-
 vhier   |  2 +-
 vpassert|  2 +-
 vppreproc   |  2 +-
 vrename |  4 +-
 46 files changed, 130 insertions(+), 136 deletions(-)
 delete mode 100644 .gitignore
 delete mode 100644 Parser/.gitignore
 delete mode 100644 Preproc/.gitignore
 create mode 100644 debian/upstream/metadata
 copy t/{51_vrename_kwd.v => 51_vrename_kwd_chg2.out} (53%)
 mode change 100755 => 100644
 create mode 100644 t/51_vrename_kwd_chg2.vrename

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

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


[libverilog-perl] 03/06: Merge tag 'upstream/3.416'

2015-10-21 Thread Florian Schlichting
This is an automated email from the git hooks/post-receive script.

fsfs pushed a commit to branch master
in repository libverilog-perl.

commit 6046cfc3ff5193e8ed4ff284aeae5b76959383a2
Merge: a8ea05d 8da2009
Author: Florian Schlichting 
Date:   Wed Oct 21 20:52:53 2015 +0200

Merge tag 'upstream/3.416'

Upstream version 3.416

 .gitignore  | 17 
 Changes |  7 +++
 EditFiles.pm|  2 +-
 Getopt.pm   |  6 +--
 Language.pm |  2 +-
 MANIFEST|  2 +
 META.yml|  2 +-
 Netlist.pm  |  2 +-
 Netlist/Cell.pm |  2 +-
 Netlist/ContAssign.pm   |  2 +-
 Netlist/Defparam.pm |  2 +-
 Netlist/File.pm |  2 +-
 Netlist/Interface.pm|  2 +-
 Netlist/Logger.pm   |  2 +-
 Netlist/ModPort.pm  |  2 +-
 Netlist/Module.pm   |  2 +-
 Netlist/Net.pm  |  2 +-
 Netlist/Pin.pm  |  2 +-
 Netlist/Port.pm |  2 +-
 Netlist/Subclass.pm |  2 +-
 Parser/.gitignore   | 23 --
 Parser/Parser.pm|  2 +-
 Parser/SigParser.pm |  2 +-
 Parser/bisonpre |  2 +-
 Parser/callbackgen  |  2 +-
 Parser/gen/bisonpre-0   |  2 +-
 Preproc/.gitignore  | 15 ---
 Preproc/Preproc.pm  |  2 +-
 Std.pm  |  2 +-
 t/42_dumpcheck.t|  4 +-
 t/42_dumpcheck_1.out| 58 -
 t/42_dumpcheck_2.out| 10 ++---
 t/42_dumpcheck_v2k.out  |  4 +-
 t/51_vrename_kwd.t  | 16 +--
 t/51_vrename_kwd.v  |  4 ++
 t/51_vrename_kwd_chg.out|  4 ++
 t/{51_vrename_kwd.v => 51_vrename_kwd_chg2.out} | 10 +++--
 t/51_vrename_kwd_chg2.vrename   |  8 
 t/51_vrename_kwd_list.out   |  3 +-
 vhier   |  2 +-
 vpassert|  2 +-
 vppreproc   |  2 +-
 vrename |  4 +-
 43 files changed, 116 insertions(+), 131 deletions(-)

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

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


[libverilog-perl] branch pristine-tar updated (7a306f5 -> 4ebf972)

2015-10-21 Thread Florian Schlichting
This is an automated email from the git hooks/post-receive script.

fsfs pushed a change to branch pristine-tar
in repository libverilog-perl.

  from  7a306f5   pristine-tar data for libverilog-perl_3.414.orig.tar.gz
   new  4ebf972   pristine-tar data for libverilog-perl_3.416.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:
 libverilog-perl_3.416.orig.tar.gz.delta | Bin 0 -> 7841 bytes
 libverilog-perl_3.416.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libverilog-perl_3.416.orig.tar.gz.delta
 create mode 100644 libverilog-perl_3.416.orig.tar.gz.id

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

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


[libverilog-perl] annotated tag debian/3.416-1 created (now 7a2b196)

2015-10-21 Thread Florian Schlichting
This is an automated email from the git hooks/post-receive script.

fsfs pushed a change to annotated tag debian/3.416-1
in repository libverilog-perl.

at  7a2b196   (tag)
   tagging  9e1365d15481572106223a9d57a31d2c9164a3b5 (commit)
  replaces  debian/3.412-1
 tagged by  Florian Schlichting
on  Wed Oct 21 21:02:31 2015 +0200

- Log -
   debian/3.416-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJWJ+FKAAoJEBKXO25y3Ae1EDMP/2a7OYLAmeMPKsC6MfmcNux6
x9VyXi6TAj3WRmMuDceGXY1DcjN/cTf8x+PuPyEORl6+5SF7I0r8qK4srBM1Qwje
8bfMF6e8Acezl6wZRiSLvW60fzcjPpxf5PM8u06O+yKNeu+fXJHY1Bu1Ik+7U+ZG
JNERUqh/Dd+2O82KZvjTDMrnHDm2Y78x3Hg3jgT/16AucHlnahCp8m0DEuF+3lix
pS7sR+HerM9mfHu93DoFFXpvqeh5NaLSP06t2ukhdoNIvky4sUGh2m+fwvreU5iT
LMVnCQ1BXckxymQ6B+42GDj2dI2iDa6322DasPr7yyOUMbKNyRYExvh1H1GwaTFv
x3F6N7ovjtLvM1WA5XDODJJtILVYCVFJ+dlJPO3sqoysK3lFEBH4iZfV1DIQltZ/
Hs0x4pinU1KHuGlwTIo7wnaq6nal1SoVf3W95IEKw4XU2YVfjk0qXIyA9GBseGjJ
9NjM82Xbn7P+LMJAZWVzeNkJf2qm12fKaCDFpfqrOdey9OXdSm61G6vS9TcPXn4O
wVYsP2JzJcPOs6bLnMaZE2Gyq7lhCzWtIaFS4vdFv3GR4q0plxp+IiPR3DjDGjln
sugaFXJZ5h1+PGrS7jNh53Lr198GOb7dAI1EApAhZ8yiEwbhGIDzIxdDFN9YU4vE
hMnI5p5OigmNFauUFsL8
=dbNZ
-END PGP SIGNATURE-

Florian Schlichting (7):
  Add debian/upstream/metadata
  Update debian/changelog
  Imported Upstream version 3.416
  Merge tag 'upstream/3.416'
  Update debian/changelog
  Bump years of packaging copyright
  prepare changelog for release

gregor herrmann (5):
  Imported Upstream version 3.414
  Merge tag 'upstream/3.414'
  New upstream release.
  Update years of packaging copyright.
  update changelog

---

This annotated tag includes the following new commits:

   new  cd303d6   Add debian/upstream/metadata
   new  a8ea05d   Update debian/changelog
   new  6046cfc   Merge tag 'upstream/3.416'
   new  58549da   Update debian/changelog
   new  cc4e4a4   Bump years of packaging copyright
   new  9e1365d   prepare changelog for release

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


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

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


[libverilog-perl] 06/06: prepare changelog for release

2015-10-21 Thread Florian Schlichting
This is an automated email from the git hooks/post-receive script.

fsfs pushed a commit to branch master
in repository libverilog-perl.

commit 9e1365d15481572106223a9d57a31d2c9164a3b5
Author: Florian Schlichting 
Date:   Wed Oct 21 20:58:16 2015 +0200

prepare changelog for release
---
 debian/changelog | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 91eb683..a1c0b92 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,4 @@
-libverilog-perl (3.416-1) UNRELEASED; urgency=medium
-
-  PROBLEM: FTBFS, new test failures
+libverilog-perl (3.416-1) unstable; urgency=medium
 
   [ gregor herrmann ]
   * New upstream release.
@@ -9,8 +7,9 @@ libverilog-perl (3.416-1) UNRELEASED; urgency=medium
   [ Florian Schlichting ]
   * Add debian/upstream/metadata
   * Import upstream version 3.416
+  * Bump years of packaging copyright
 
- -- Florian Schlichting   Wed, 21 Oct 2015 20:52:54 +0200
+ -- Florian Schlichting   Wed, 21 Oct 2015 20:58:02 +0200
 
 libverilog-perl (3.412-1) unstable; urgency=medium
 

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

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


[libverilog-perl] 04/06: Update debian/changelog

2015-10-21 Thread Florian Schlichting
This is an automated email from the git hooks/post-receive script.

fsfs pushed a commit to branch master
in repository libverilog-perl.

commit 58549dab77c1a576dc4b24f45deece05616b2ceb
Author: Florian Schlichting 
Date:   Wed Oct 21 20:52:54 2015 +0200

Update debian/changelog

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

diff --git a/debian/changelog b/debian/changelog
index 3ab6e0e..91eb683 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,15 +1,16 @@
-libverilog-perl (3.414-1) UNRELEASED; urgency=medium
+libverilog-perl (3.416-1) UNRELEASED; urgency=medium
 
-  [ gregor herrmann ]
   PROBLEM: FTBFS, new test failures
 
+  [ gregor herrmann ]
   * New upstream release.
   * Update years of packaging copyright.
 
   [ Florian Schlichting ]
   * Add debian/upstream/metadata
+  * Import upstream version 3.416
 
- -- gregor herrmann   Sat, 27 Jun 2015 22:05:31 +0200
+ -- Florian Schlichting   Wed, 21 Oct 2015 20:52:54 +0200
 
 libverilog-perl (3.412-1) unstable; urgency=medium
 

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

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


[libverilog-perl] 01/06: Add debian/upstream/metadata

2015-10-21 Thread Florian Schlichting
This is an automated email from the git hooks/post-receive script.

fsfs pushed a commit to branch master
in repository libverilog-perl.

commit cd303d68743734566ab55af5a5435bb237d1f0c7
Author: Florian Schlichting 
Date:   Wed Oct 21 20:52:30 2015 +0200

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

diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 000..cb58069
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,5 @@
+---
+Archive: CPAN
+Bug-Database: http://www.veripool.org/verilog-perl-bugs
+Contact: Wilson Snyder 
+Name: Verilog-Perl

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

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


[libverilog-perl] annotated tag upstream/3.416 created (now 0a78195)

2015-10-21 Thread Florian Schlichting
This is an automated email from the git hooks/post-receive script.

fsfs pushed a change to annotated tag upstream/3.416
in repository libverilog-perl.

at  0a78195   (tag)
   tagging  8da20099e310c1cc5c9c96f401e791ebe915b4c7 (commit)
  replaces  upstream/3.414
 tagged by  Florian Schlichting
on  Wed Oct 21 20:52:53 2015 +0200

- Log -
Upstream version 3.416

Florian Schlichting (1):
  Imported Upstream version 3.416

---

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

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


[libverilog-perl] 05/06: Bump years of packaging copyright

2015-10-21 Thread Florian Schlichting
This is an automated email from the git hooks/post-receive script.

fsfs pushed a commit to branch master
in repository libverilog-perl.

commit cc4e4a4b5c2368d7602463e5acb304882cedc3b0
Author: Florian Schlichting 
Date:   Wed Oct 21 20:54:25 2015 +0200

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

diff --git a/debian/copyright b/debian/copyright
index 735b969..3178041 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -15,7 +15,7 @@ Files: debian/*
 Copyright: 2009-2010, Jonathan Yu 
  2009-2013,2015 أحمد المحمودي (Ahmed El-Mahmoudy) 

  2010-2015, gregor herrmann 
- 2012-2014, Florian Schlichting 
+ 2012-2015, Florian Schlichting 
 License: Artistic-2.0 or LGPL-3
 
 License: Artistic-2.0

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

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

[libverilog-perl] 01/01: pristine-tar data for libverilog-perl_3.416.orig.tar.gz

2015-10-21 Thread Florian Schlichting
This is an automated email from the git hooks/post-receive script.

fsfs pushed a commit to branch pristine-tar
in repository libverilog-perl.

commit 4ebf9725d7df47ab4aea457f941ca17e3412c7b5
Author: Florian Schlichting 
Date:   Wed Oct 21 20:52:53 2015 +0200

pristine-tar data for libverilog-perl_3.416.orig.tar.gz
---
 libverilog-perl_3.416.orig.tar.gz.delta | Bin 0 -> 7841 bytes
 libverilog-perl_3.416.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libverilog-perl_3.416.orig.tar.gz.delta 
b/libverilog-perl_3.416.orig.tar.gz.delta
new file mode 100644
index 000..001de6a
Binary files /dev/null and b/libverilog-perl_3.416.orig.tar.gz.delta differ
diff --git a/libverilog-perl_3.416.orig.tar.gz.id 
b/libverilog-perl_3.416.orig.tar.gz.id
new file mode 100644
index 000..44f14fc
--- /dev/null
+++ b/libverilog-perl_3.416.orig.tar.gz.id
@@ -0,0 +1 @@
+2f07a50fcbae18864eadbacd9a5bb2dfccafdac1

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

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


[libdist-zilla-util-test-kentnl-perl] 02/03: Update debian/changelog

2015-10-21 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a commit to branch master
in repository libdist-zilla-util-test-kentnl-perl.

commit 11cc4847269cce20300f46e0702501827bb40738
Author: Axel Beckert 
Date:   Wed Oct 21 20:34:37 2015 +0200

Update debian/changelog

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

diff --git a/debian/changelog b/debian/changelog
index 9173a62..879134d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libdist-zilla-util-test-kentnl-perl (1.005013-1) UNRELEASED; urgency=medium
+
+  * Import upstream version 1.005013
+
+ -- Axel Beckert   Wed, 21 Oct 2015 20:34:36 +0200
+
 libdist-zilla-util-test-kentnl-perl (1.005012-1) unstable; urgency=low
 
   * Initial Release. (Closes: #794175)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdist-zilla-util-test-kentnl-perl.git

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


[libdist-zilla-util-test-kentnl-perl] branch pristine-tar updated (34018bd -> 24fef88)

2015-10-21 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a change to branch pristine-tar
in repository libdist-zilla-util-test-kentnl-perl.

  from  34018bd   pristine-tar data for 
libdist-zilla-util-test-kentnl-perl_1.005012.orig.tar.gz
   new  24fef88   pristine-tar data for 
libdist-zilla-util-test-kentnl-perl_1.005013.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:
 ...illa-util-test-kentnl-perl_1.005013.orig.tar.gz.delta | Bin 0 -> 2275 bytes
 ...t-zilla-util-test-kentnl-perl_1.005013.orig.tar.gz.id |   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 
libdist-zilla-util-test-kentnl-perl_1.005013.orig.tar.gz.delta
 create mode 100644 libdist-zilla-util-test-kentnl-perl_1.005013.orig.tar.gz.id

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdist-zilla-util-test-kentnl-perl.git

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


[libdist-zilla-util-test-kentnl-perl] branch master updated (6314bca -> c685dae)

2015-10-21 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a change to branch master
in repository libdist-zilla-util-test-kentnl-perl.

  from  6314bca   Upload to unstable as 1.005012-1
  adds  8499e03   Import original source of Dist-Zilla-Util-Test-KENTNL 
1.005012
  adds  a5fdaff   Initial !
  adds  ee097b2   dump in the codes
  adds  1e8dbbb   Hide crap
  adds  f4f6dea   Hide crap
  adds  09ad6b3   critic tidyup
  adds  08ff57b   v0.0101
  adds  9e2a80e   Build results of 08ff57b (on master)
  adds  aefeabe   Refactor code to work again
  adds  088ab7e   Really working now, honest
  adds  681c313   v0.0104
  adds  72b0ccc   Build results of 681c313 (on master)
  adds  03d6472   Returns a Zilla instance if no magic is performed.
  adds  7ab59b1   Lint check, die -> croak
  adds  e0e043e   v0.0111
  adds  91cf190   Build results of e0e043e (on master)
  adds  158d05fFix ns::ac problems.
  adds  b645d72   v0.01000510
  adds  32b773d   Build results of b645d72 (on master)
  adds  2efc773   move to @Author::KENTNL
  adds  18f7e5d   update critic rules
  adds  aa76bdb   remove suprious no critic
  adds  a1b84a9   Greatly simplify code
  adds  9016543   truley get rid of MX:A stuff
  adds  096b46f   normalize changes
  adds  e88b159   update changelog
  adds  4b7838e   v0.01015821
  adds  517a78f   Build results of 4b7838e (on master)
  adds  beb2283   update toolkit and changes
  adds  773a67d   v0.01015822
  adds  604e8d7   Build results of 773a67d (on master)
  adds  d8652d7   Build results of 9231054 (on master)
  adds  7dd9f8a   Build results of 43744be (on master)
  adds  2b4df3f   Build results of 52ae64e (on master)
  adds  40022a5   Build results of 17c9d9e (on master)
  adds  50f375e   Build results of 6273d7e (on master)
  adds  f3f4d9b   Build results of a80bac8 (on master)
  adds  c06027e   Build results of 148d910 (on master)
  adds  8f9e4d4   Build results of 68a99a2 (on master)
  adds  1edc3c1   Build results of 8cce057 (on master)
  adds  6441b91   Build results of f439699 (on master)
  adds  605f268   Build results of f37ae39 (on master)
  adds  342b0ed   Build results of 5ee702c (on master)
  adds  8ce1a3f   Build results of 161ffcf (on master)
  adds  0923cc5   Build results of 87b4573 (on master)
  adds  8f04d66   Build results of d527634 (on master)
  adds  16e5ab9   Build results of c0cbb33 (on master)
  adds  307380c   Build results of bba0d70 (on master)
  adds  3985352   Build results of e352f42 (on master)
  adds  c1f745d   Build results of 4eafc3b (on master)
  adds  9e266ff   Build results of 3f5034c (on master)
  adds  b878865   Build results of 10a266e (on master)
  adds  d3e4c58   Build results of 30af4cb (on master)
  adds  7b2f477   Imported Upstream version 1.005013
   new  f684614   Merge tag 'upstream/1.005013'
   new  11cc484   Update debian/changelog
   new  c685dae   Update build- and runtime dependencies

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:
 .gitignore|  13 +-
 Changes   |  11 +-
 INSTALL.SKIP  |   1 +
 MANIFEST  |   3 +-
 META.json | 301 ++--
 META.yml  | 554 +-
 Makefile.PL   |  69 ++--
 debian/changelog  |   7 +
 debian/control|   4 +-
 dist.ini  |  53 ++-
 dist.ini.meta |  34 +-
 lib/Dist/Zilla/Util/Test/KENTNL.pm|   4 +-
 lib/Dist/Zilla/Util/Test/KENTNL/dztest.pm |   4 +-
 misc/Changes.deps |   8 +-
 misc/Changes.deps.all |  25 +-
 misc/Changes.deps.dev |  21 +-
 misc/Changes.deps.opt |   5 +-
 misc/built_with.json  | 123 +++
 t/00-report-prereqs.dd|  14 +-
 xt/author/eol.t   |   2 +-
 xt/release/kwalitee.t |   2 +-
 21 files changed, 425 insertions(+), 833 deletions(-)
 create mode 100644 INSTALL.SKIP

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdist-zilla-util-test-kentnl-perl.git

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


[libdist-zilla-util-test-kentnl-perl] 01/03: Merge tag 'upstream/1.005013'

2015-10-21 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a commit to branch master
in repository libdist-zilla-util-test-kentnl-perl.

commit f68461491ebce2dcd28b7b3897979b3fd1919897
Merge: 6314bca 7b2f477
Author: Axel Beckert 
Date:   Wed Oct 21 20:34:34 2015 +0200

Merge tag 'upstream/1.005013'

Upstream version 1.005013

# gpg: Signature made Wed 21 Oct 2015 08:34:14 PM CEST
# gpg:using RSA key 6BE663C75A35C975
# gpg: please do a --check-trustdb
# gpg: Good signature from "Axel Beckert (FSFE Fellow) "
# gpg: aka "Axel Beckert "
# gpg: aka "Axel Beckert (E-Mail + Jabber) "
# gpg: aka "Axel Beckert (Symlink) "
# gpg: aka "Axel Stefan Beckert"
# gpg: WARNING: This key is not certified with a trusted signature!
# gpg:  There is no indication that the signature belongs to the 
owner.
# Primary key fingerprint: 2517 B724 C5F6 CA99 5329  6E61 2FF9 CD59 6126 
16B5
#  Subkey fingerprint: 468C 8979 3B42 9819 E9D7  6126 6BE6 63C7 5A35 
C975

 .gitignore|  13 +-
 Changes   |  11 +-
 INSTALL.SKIP  |   1 +
 MANIFEST  |   3 +-
 META.json | 301 ++--
 META.yml  | 554 +-
 Makefile.PL   |  69 ++--
 dist.ini  |  53 ++-
 dist.ini.meta |  34 +-
 lib/Dist/Zilla/Util/Test/KENTNL.pm|   4 +-
 lib/Dist/Zilla/Util/Test/KENTNL/dztest.pm |   4 +-
 misc/Changes.deps |   8 +-
 misc/Changes.deps.all |  25 +-
 misc/Changes.deps.dev |  21 +-
 misc/Changes.deps.opt |   5 +-
 misc/built_with.json  | 123 +++
 t/00-report-prereqs.dd|  14 +-
 xt/author/eol.t   |   2 +-
 xt/release/kwalitee.t |   2 +-
 19 files changed, 416 insertions(+), 831 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdist-zilla-util-test-kentnl-perl.git

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


[libdist-zilla-util-test-kentnl-perl] 01/01: pristine-tar data for libdist-zilla-util-test-kentnl-perl_1.005013.orig.tar.gz

2015-10-21 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a commit to branch pristine-tar
in repository libdist-zilla-util-test-kentnl-perl.

commit 24fef8893c7ce94c7e55f287a6a3824fba9477e2
Author: Axel Beckert 
Date:   Wed Oct 21 20:34:14 2015 +0200

pristine-tar data for 
libdist-zilla-util-test-kentnl-perl_1.005013.orig.tar.gz
---
 ...illa-util-test-kentnl-perl_1.005013.orig.tar.gz.delta | Bin 0 -> 2275 bytes
 ...t-zilla-util-test-kentnl-perl_1.005013.orig.tar.gz.id |   1 +
 2 files changed, 1 insertion(+)

diff --git a/libdist-zilla-util-test-kentnl-perl_1.005013.orig.tar.gz.delta 
b/libdist-zilla-util-test-kentnl-perl_1.005013.orig.tar.gz.delta
new file mode 100644
index 000..84d55a2
Binary files /dev/null and 
b/libdist-zilla-util-test-kentnl-perl_1.005013.orig.tar.gz.delta differ
diff --git a/libdist-zilla-util-test-kentnl-perl_1.005013.orig.tar.gz.id 
b/libdist-zilla-util-test-kentnl-perl_1.005013.orig.tar.gz.id
new file mode 100644
index 000..560a7a4
--- /dev/null
+++ b/libdist-zilla-util-test-kentnl-perl_1.005013.orig.tar.gz.id
@@ -0,0 +1 @@
+f5f1ecd8eb6d25135bf1226db7a62bc66685e4fb

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdist-zilla-util-test-kentnl-perl.git

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


[libdist-zilla-util-test-kentnl-perl] annotated tag upstream/1.005013 created (now cc73e7f)

2015-10-21 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a change to annotated tag upstream/1.005013
in repository libdist-zilla-util-test-kentnl-perl.

at  cc73e7f   (tag)
   tagging  7b2f4774c8f4da8349bcede4eaae1eb73f276543 (commit)
  replaces  upstream/1.005012
 tagged by  Axel Beckert
on  Wed Oct 21 20:34:14 2015 +0200

- Log -
Upstream version 1.005013
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJWJ9qmAAoJEGvmY8daNcl1nvQP/j5cIwKK0kqS6YGrQuqxDXdh
e5PdXujfTVn1jdLydGXbgdqFwwIjisdUIWfG5JQ9vIFZ/ZdGDHt4s1k+J+yODCTn
L9I8/hWkz4BzQj6Br/QVmPjSmsPeqGK9HBOVfmA0Qg2p+ziO7P2RtIHytKdfMsXO
wtpyrgyEoUjBBM+NmI+RCHuT+0FWumbV+WpNsoCekJxwm2isxGvTNOmHb9ybtCh9
VSyh5sYoRkUiyQ0vv5gUsZnrYJTnWCjup7YQEKLKdyJlc9LJmhBqSzwieuyYN7gc
cTFh9O++5PKzyxD/2gKufG+dlGKzf3DLadZMsStl44b92kdHlP9U/vuCoLZJXRtk
JdJmwUdtzKSCZ97dd0UBfN8k5/bS+Fr+lwsAkthM8X/UDSNueHyXkpb8nzRVSB15
xX6YpPQy+SwrFKo/1VpHuFPGqgTphoJXVEL4aoB6YnA6zuLkle6kMWLF6JQoCpPS
aflyRSWnqv9haknTMp6Aemv1HIDYjtqHoIR/5lVBIC2VSIRrynsB4RvKibSyvEXq
t7Cx6mggtutsUPD60xM+XY+w6iENCUaFD1LWlBgioUpQLoXfmrEb3UVVg2w1nghu
Sul67zGq4GO9kel/jP/1O0CgNNs1Qqp/z/0XzLmF6K0Z4kXMmgNai9Y83vTtYBxW
SVECBkJYVWb4/Ce+b+qs
=GOt5
-END PGP SIGNATURE-

Axel Beckert (2):
  Import original source of Dist-Zilla-Util-Test-KENTNL 1.005012
  Imported Upstream version 1.005013

Kent Fredric (52):
  Initial !
  dump in the codes
  Hide crap
  Hide crap
  critic tidyup
  v0.0101
  Build results of 08ff57b (on master)
  Refactor code to work again
  Really working now, honest
  v0.0104
  Build results of 681c313 (on master)
  Returns a Zilla instance if no magic is performed.
  Lint check, die -> croak
  v0.0111
  Build results of e0e043e (on master)
  Fix ns::ac problems.
  v0.01000510
  Build results of b645d72 (on master)
  move to @Author::KENTNL
  update critic rules
  remove suprious no critic
  Greatly simplify code
  truley get rid of MX:A stuff
  normalize changes
  update changelog
  v0.01015821
  Build results of 4b7838e (on master)
  update toolkit and changes
  v0.01015822
  Build results of 773a67d (on master)
  Build results of 9231054 (on master)
  Build results of 43744be (on master)
  Build results of 52ae64e (on master)
  Build results of 17c9d9e (on master)
  Build results of 6273d7e (on master)
  Build results of a80bac8 (on master)
  Build results of 148d910 (on master)
  Build results of 68a99a2 (on master)
  Build results of 8cce057 (on master)
  Build results of f439699 (on master)
  Build results of f37ae39 (on master)
  Build results of 5ee702c (on master)
  Build results of 161ffcf (on master)
  Build results of 87b4573 (on master)
  Build results of d527634 (on master)
  Build results of c0cbb33 (on master)
  Build results of bba0d70 (on master)
  Build results of e352f42 (on master)
  Build results of 4eafc3b (on master)
  Build results of 3f5034c (on master)
  Build results of 10a266e (on master)
  Build results of 30af4cb (on master)

---

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/libdist-zilla-util-test-kentnl-perl.git

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


[libdist-zilla-util-test-kentnl-perl] 03/03: Update build- and runtime dependencies

2015-10-21 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a commit to branch master
in repository libdist-zilla-util-test-kentnl-perl.

commit c685dae986ecf708f674124d4e64853d37c7370e
Author: Axel Beckert 
Date:   Wed Oct 21 21:07:25 2015 +0200

Update build- and runtime dependencies

Module::Metadata has been added upstream as build-dependency, but is
in core for ages already, hence no change there for Debian.
---
 debian/changelog | 1 +
 debian/control   | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 879134d..ade43ed 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
 libdist-zilla-util-test-kentnl-perl (1.005013-1) UNRELEASED; urgency=medium
 
   * Import upstream version 1.005013
++ Update build- and runtime dependencies.
 
  -- Axel Beckert   Wed, 21 Oct 2015 20:34:36 +0200
 
diff --git a/debian/control b/debian/control
index 3bb8418..ed21f49 100644
--- a/debian/control
+++ b/debian/control
@@ -14,7 +14,7 @@ Build-Depends-Indep: libdata-dpath-perl,
  libsub-exporter-perl,
  libtest-fatal-perl,
  libtry-tiny-perl,
- perl (>= 5.13.4)
+ perl (>= 5.15.9) | libcpan-meta-requirements-perl (>= 
2.121)
 Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libdist-zilla-util-test-kentnl-perl.git
 Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/libdist-zilla-util-test-kentnl-perl.git
@@ -32,7 +32,7 @@ Depends: libdata-dpath-perl,
  libsub-exporter-perl,
  libtest-fatal-perl,
  libtry-tiny-perl,
- perl (>= 5.13.4),
+ perl,
  ${misc:Depends},
  ${perl:Depends}
 Description: Module to write tests for Dist::Zilla plugins

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdist-zilla-util-test-kentnl-perl.git

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


[libdist-zilla-util-test-kentnl-perl] annotated tag debian/1.005013-1 created (now 8ecf95e)

2015-10-21 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a change to annotated tag debian/1.005013-1
in repository libdist-zilla-util-test-kentnl-perl.

at  8ecf95e   (tag)
   tagging  c6a56e771dad841376862d602da718a9b49edf2d (commit)
  replaces  debian/1.005012-1
 tagged by  Axel Beckert
on  Wed Oct 21 21:42:25 2015 +0200

- Log -
libdist-zilla-util-test-kentnl-perl Debian release 1.005013-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJWJ+qhAAoJEGvmY8daNcl147MQALa+vwuq9VWKtFP/z/h4Zur5
jF0C0k4Tlycy6EvksfbmGWGnubkY5lE7D3lflQpfFbWzI+O5wPdXc7kKvLs3xuNS
dOyjAXpzoqU/LSR1E8y7SYQNreENF/6cRSdLqx7vCnAab+8Ve12TklMTgy6HYyrA
ZTFlQYEi+/adZHu/lTxhnPuSNlJFmOntySMZE70D4ci5+Ur0sw6MG/73GWKDjdYE
j0oVvz8K2UFNbAY/XAxK528p8IOWCd1cPDIXn4BAETeCjR6cB0hDNJ4r65tA1WeI
yUULtwc8NAiBVHGkvybKiyNFn3ZZdWN93V8VJvMxYJF3ovrP/q8R8rbMId15jo0N
/7Gip6rAr9oh+wxAjjlz5rlp2eK1a22fzfcH4pCIC7I5nkgxplhcVm7ZisCcVBCY
ppoUKnP4K/+adLHHdFTa+t52TdJ62+A3dQPTm/oGyMbS4UGe0/0/GhHkv5lzLXSX
zzDyVpI8DtEnpbBRLPS8KSfrB4dRrd+VFjOqBsWjmJswWaw+NNurLxnQ/hQKNs7U
RQx9lwOAFfZhyQsv7WNhFRs3tBQKdJd86QQgH3qGGpO7n6sEYkPXkILk0MK4qT6u
eX+9TripaG83PL6mOpOHoIAAi/qgYrdFp70JV/Ti5h0AmLY3eOKS5zrtclacJjnU
aU0fHO4cVuddy71nmgys
=BzK7
-END PGP SIGNATURE-

Axel Beckert (6):
  Import original source of Dist-Zilla-Util-Test-KENTNL 1.005012
  Imported Upstream version 1.005013
  Merge tag 'upstream/1.005013'
  Update debian/changelog
  Update build- and runtime dependencies
  Upload to unstable as 1.005013-1

Kent Fredric (52):
  Initial !
  dump in the codes
  Hide crap
  Hide crap
  critic tidyup
  v0.0101
  Build results of 08ff57b (on master)
  Refactor code to work again
  Really working now, honest
  v0.0104
  Build results of 681c313 (on master)
  Returns a Zilla instance if no magic is performed.
  Lint check, die -> croak
  v0.0111
  Build results of e0e043e (on master)
  Fix ns::ac problems.
  v0.01000510
  Build results of b645d72 (on master)
  move to @Author::KENTNL
  update critic rules
  remove suprious no critic
  Greatly simplify code
  truley get rid of MX:A stuff
  normalize changes
  update changelog
  v0.01015821
  Build results of 4b7838e (on master)
  update toolkit and changes
  v0.01015822
  Build results of 773a67d (on master)
  Build results of 9231054 (on master)
  Build results of 43744be (on master)
  Build results of 52ae64e (on master)
  Build results of 17c9d9e (on master)
  Build results of 6273d7e (on master)
  Build results of a80bac8 (on master)
  Build results of 148d910 (on master)
  Build results of 68a99a2 (on master)
  Build results of 8cce057 (on master)
  Build results of f439699 (on master)
  Build results of f37ae39 (on master)
  Build results of 5ee702c (on master)
  Build results of 161ffcf (on master)
  Build results of 87b4573 (on master)
  Build results of d527634 (on master)
  Build results of c0cbb33 (on master)
  Build results of bba0d70 (on master)
  Build results of e352f42 (on master)
  Build results of 4eafc3b (on master)
  Build results of 3f5034c (on master)
  Build results of 10a266e (on master)
  Build results of 30af4cb (on master)

---

This annotated tag includes the following new commits:

   new  c6a56e7   Upload to unstable as 1.005013-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/libdist-zilla-util-test-kentnl-perl.git

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


[libdist-zilla-util-test-kentnl-perl] branch master updated (c685dae -> c6a56e7)

2015-10-21 Thread Axel Beckert
This is an automated email from the git hooks/post-receive script.

abe pushed a change to branch master
in repository libdist-zilla-util-test-kentnl-perl.

  from  c685dae   Update build- and runtime dependencies
   new  c6a56e7   Upload to unstable as 1.005013-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:
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdist-zilla-util-test-kentnl-perl.git

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


[libperinci-cmdline-perl] branch master updated (4344675 -> 803080a)

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

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

  from  4344675   spelling.patch
   new  fdf187a   add ITP bug #
   new  803080a   releasing package libperinci-cmdline-perl version 1.47-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 | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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

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


[libperinci-cmdline-perl] 01/02: add ITP bug #

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

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

commit fdf187aad6d320993b419c2c668fa312ecc803fa
Author: gregor herrmann 
Date:   Wed Oct 21 21:06:49 2015 +0200

add ITP bug #

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

diff --git a/debian/changelog b/debian/changelog
index 233e57b..9a94a1c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,5 @@
 libperinci-cmdline-perl (1.47-1) UNRELEASED; urgency=low
 
-  * Initial Release.
+  * Initial release (closes: #802622).
 
  -- gregor herrmann   Wed, 21 Oct 2015 20:42:03 +0200

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

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


[libpod-markdown-perl] 04/04: prepare changelog for release

2015-10-21 Thread Florian Schlichting
This is an automated email from the git hooks/post-receive script.

fsfs pushed a commit to branch master
in repository libpod-markdown-perl.

commit 9a5febfbae47465d883d05e59f19ad4749a49b18
Author: Florian Schlichting 
Date:   Wed Oct 21 21:14:16 2015 +0200

prepare changelog for release
---
 debian/changelog | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 9ce2837..0c26e65 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
-libpod-markdown-perl (3.003000-1) UNRELEASED; urgency=medium
+libpod-markdown-perl (3.003000-1) unstable; urgency=medium
 
   * Import upstream version 3.003000
+  * Bump Pod::Simple (build-)dependency to 3.27 for keep_encoding fix
 
- -- Florian Schlichting   Wed, 21 Oct 2015 20:58:59 +0200
+ -- Florian Schlichting   Wed, 21 Oct 2015 21:14:06 +0200
 
 libpod-markdown-perl (3.002000-2) unstable; urgency=medium
 

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

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


[libpod-markdown-perl] 02/04: Update debian/changelog

2015-10-21 Thread Florian Schlichting
This is an automated email from the git hooks/post-receive script.

fsfs pushed a commit to branch master
in repository libpod-markdown-perl.

commit b7ba139c6cbeab6c9ca2cd36614158120a208af2
Author: Florian Schlichting 
Date:   Wed Oct 21 20:58:59 2015 +0200

Update debian/changelog

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

diff --git a/debian/changelog b/debian/changelog
index 51a2624..9ce2837 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libpod-markdown-perl (3.003000-1) UNRELEASED; urgency=medium
+
+  * Import upstream version 3.003000
+
+ -- Florian Schlichting   Wed, 21 Oct 2015 20:58:59 +0200
+
 libpod-markdown-perl (3.002000-2) unstable; urgency=medium
 
   * Team upload.

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

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


[libpod-markdown-perl] 03/04: Bump Pod::Simple (build-)dependency to 3.27 for keep_encoding fix

2015-10-21 Thread Florian Schlichting
This is an automated email from the git hooks/post-receive script.

fsfs pushed a commit to branch master
in repository libpod-markdown-perl.

commit 05ff653a02f140c1c51f88e1f397ca4dc978ae09
Author: Florian Schlichting 
Date:   Wed Oct 21 21:08:48 2015 +0200

Bump Pod::Simple (build-)dependency to 3.27 for keep_encoding fix
---
 debian/control | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/control b/debian/control
index d4205fc..5932e36 100644
--- a/debian/control
+++ b/debian/control
@@ -6,7 +6,7 @@ Build-Depends-Indep: libhtml-parser-perl,
  libio-stringy-perl,
  libtest-differences-perl,
  perl,
- perl (>= 5.17.10) | libpod-simple-perl (>= 3.26)
+ perl (>= 5.18.0) | libpod-simple-perl (>= 3.27)
 Maintainer: Debian Perl Group 
 Uploaders: Jonathan Yu ,
Nathan Handler ,
@@ -21,7 +21,7 @@ Package: libpod-markdown-perl
 Architecture: all
 Depends: ${misc:Depends},
  ${perl:Depends},
- perl (>= 5.12.1) | libpod-simple-perl
+ perl (>= 5.18.0) | libpod-simple-perl (>= 3.27)
 Recommends: libhtml-parser-perl
 Description: module to convert POD to the Markdown file format
  Pod::Markdown is a Perl module that parses Plain Old Documentation (POD) and

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

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


[libmath-base-convert-perl] 01/04: Initial packaging by dh-make-perl 0.84

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

gregoa pushed a commit to branch master
in repository libmath-base-convert-perl.

commit e7e0e591f5267d5b8817e69d9e33961fd869abcf
Author: gregor herrmann 
Date:   Wed Oct 21 20:53:47 2015 +0200

Initial packaging by dh-make-perl 0.84
---
 debian/changelog |  5 +
 debian/compat|  1 +
 debian/control   | 24 
 debian/copyright | 36 
 debian/rules |  4 
 debian/source/format |  1 +
 debian/upstream/metadata |  4 
 debian/watch |  2 ++
 8 files changed, 77 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 000..6ddebcc
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libmath-base-convert-perl (0.08-1) UNRELEASED; urgency=low
+
+  * Initial Release.
+
+ -- gregor herrmann   Wed, 21 Oct 2015 20:53:46 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 000..5734691
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,24 @@
+Source: libmath-base-convert-perl
+Section: perl
+Priority: optional
+Maintainer: Debian Perl Group 
+Uploaders: gregor herrmann 
+Build-Depends: debhelper (>= 9)
+Build-Depends-Indep: perl
+Standards-Version: 3.9.6
+Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libmath-base-convert-perl.git
+Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/libmath-base-convert-perl.git
+Homepage: https://metacpan.org/release/Math-Base-Convert
+Testsuite: autopkgtest-pkg-perl
+
+Package: libmath-base-convert-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends}
+Description: unknown
+ Math::Base::Convert provides fast functions and methods to convert between
+ arbitrary number bases from 2 (binary) thru 65535.
+ .
+ This module is pure Perl, has no external dependencies, and is backward
+ compatible with old versions of Perl 5.
+ .
+ This description was automagically extracted from the module by dh-make-perl.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 000..9405701
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,36 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Source: https://metacpan.org/release/Math-Base-Convert
+Upstream-Contact: unknown
+Upstream-Name: Math-Base-Convert
+DISCLAIMER: This copyright info was automatically extracted 
+ from the perl module. It may not be accurate, so you better 
+ check the module sources in order to ensure the module for its 
+ inclusion in Debian or for general legal information. Please, 
+ if licensing information is incorrectly generated, file a bug 
+ on dh-make-perl.
+ NOTE: Don't forget to remove this disclaimer once you are happy
+ with this file.
+
+Files: *
+Copyright: unknown
+License: 
+
+Files: debian/*
+Copyright: 2015, gregor herrmann 
+License: Artistic or GPL-1+
+
+License: Artistic
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+ .
+ On Debian systems, the complete text of the Artistic License can be
+ found in `/usr/share/common-licenses/Artistic'.
+
+License: GPL-1+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 1, or (at your option)
+ any later version.
+ .
+ On Debian systems, the complete text of version 1 of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-1'.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 000..2d33f6a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+   dh $@
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)
diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 000..beefb4c
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,4 @@
+---
+Archive: CPAN
+Contact: unknown
+Name: Math-Base-Convert
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 000..308786f
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://metacpan.org/release/Math-Base-Convert   
.*/Math-Base-Convert-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/libmath-base-convert-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org

[libmath-base-convert-perl] 04/04: autopkgtest

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

gregoa pushed a commit to branch master
in repository libmath-base-convert-perl.

commit 4a692da45ba013e0a4df66cf6a1dac14365ca1c7
Author: gregor herrmann 
Date:   Wed Oct 21 21:05:40 2015 +0200

autopkgtest
---
 debian/tests/pkg-perl/smoke-files | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/debian/tests/pkg-perl/smoke-files 
b/debian/tests/pkg-perl/smoke-files
new file mode 100644
index 000..2b877e7
--- /dev/null
+++ b/debian/tests/pkg-perl/smoke-files
@@ -0,0 +1,2 @@
+t/
+recurse2txt

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

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


[libmath-base-convert-perl] 02/04: copyright

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

gregoa pushed a commit to branch master
in repository libmath-base-convert-perl.

commit 020970548aa2c7904712c9f64d8c4fb68710ecf7
Author: gregor herrmann 
Date:   Wed Oct 21 20:56:39 2015 +0200

copyright
---
 debian/copyright | 14 +++---
 1 file changed, 3 insertions(+), 11 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index 9405701..4db132e 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,19 +1,11 @@
 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Source: https://metacpan.org/release/Math-Base-Convert
-Upstream-Contact: unknown
+Upstream-Contact: Michael Robinton 
 Upstream-Name: Math-Base-Convert
-DISCLAIMER: This copyright info was automatically extracted 
- from the perl module. It may not be accurate, so you better 
- check the module sources in order to ensure the module for its 
- inclusion in Debian or for general legal information. Please, 
- if licensing information is incorrectly generated, file a bug 
- on dh-make-perl.
- NOTE: Don't forget to remove this disclaimer once you are happy
- with this file.
 
 Files: *
-Copyright: unknown
-License: 
+Copyright: 2012-2014, Michael Robinton 
+License: Artistic or GPL-1+
 
 Files: debian/*
 Copyright: 2015, gregor herrmann 

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

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


[libmath-base-convert-perl] 03/04: control

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

gregoa pushed a commit to branch master
in repository libmath-base-convert-perl.

commit 808d3c80b609a93eac8c011a8fcb1a2241b55e5f
Author: gregor herrmann 
Date:   Wed Oct 21 20:57:45 2015 +0200

control
---
 debian/control | 13 ++---
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/debian/control b/debian/control
index 5734691..db4e384 100644
--- a/debian/control
+++ b/debian/control
@@ -1,24 +1,23 @@
 Source: libmath-base-convert-perl
-Section: perl
-Priority: optional
 Maintainer: Debian Perl Group 
 Uploaders: gregor herrmann 
+Section: perl
+Testsuite: autopkgtest-pkg-perl
+Priority: optional
 Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: perl
 Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libmath-base-convert-perl.git
 Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/libmath-base-convert-perl.git
 Homepage: https://metacpan.org/release/Math-Base-Convert
-Testsuite: autopkgtest-pkg-perl
 
 Package: libmath-base-convert-perl
 Architecture: all
-Depends: ${misc:Depends}, ${perl:Depends}
-Description: unknown
+Depends: ${misc:Depends},
+ ${perl:Depends}
+Description: module for very fast base to base conversion
  Math::Base::Convert provides fast functions and methods to convert between
  arbitrary number bases from 2 (binary) thru 65535.
  .
  This module is pure Perl, has no external dependencies, and is backward
  compatible with old versions of Perl 5.
- .
- This description was automagically extracted from the module by dh-make-perl.

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

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


[libmath-base-convert-perl] branch master created (now 4a692da)

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

gregoa pushed a change to branch master
in repository libmath-base-convert-perl.

at  4a692da   autopkgtest

This branch includes the following new commits:

   new  e7e0e59   Initial packaging by dh-make-perl 0.84
   new  0209705   copyright
   new  808d3c8   control
   new  4a692da   autopkgtest

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


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

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


[libmath-base-convert-perl] branch pristine-tar created (now e8cd663)

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

gregoa pushed a change to branch pristine-tar
in repository libmath-base-convert-perl.

at  e8cd663   pristine-tar data for 
libmath-base-convert-perl_0.08.orig.tar.gz

This branch includes the following new commits:

   new  e8cd663   pristine-tar data for 
libmath-base-convert-perl_0.08.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.


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

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


[libmath-base-convert-perl] 01/01: pristine-tar data for libmath-base-convert-perl_0.08.orig.tar.gz

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

gregoa pushed a commit to branch pristine-tar
in repository libmath-base-convert-perl.

commit e8cd6637bb4cb378b133c7c3a6ca91a6b50a0dbe
Author: gregor herrmann 
Date:   Wed Oct 21 20:53:47 2015 +0200

pristine-tar data for libmath-base-convert-perl_0.08.orig.tar.gz
---
 libmath-base-convert-perl_0.08.orig.tar.gz.delta | Bin 0 -> 2159 bytes
 libmath-base-convert-perl_0.08.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libmath-base-convert-perl_0.08.orig.tar.gz.delta 
b/libmath-base-convert-perl_0.08.orig.tar.gz.delta
new file mode 100644
index 000..0a20ded
Binary files /dev/null and b/libmath-base-convert-perl_0.08.orig.tar.gz.delta 
differ
diff --git a/libmath-base-convert-perl_0.08.orig.tar.gz.id 
b/libmath-base-convert-perl_0.08.orig.tar.gz.id
new file mode 100644
index 000..1a8cb40
--- /dev/null
+++ b/libmath-base-convert-perl_0.08.orig.tar.gz.id
@@ -0,0 +1 @@
+24f20b9ef5ec3fafb87c2c3997faeb3dbd44942e

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

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


[libmath-base-convert-perl] tag upstream/0.08 created (now f54a890)

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

gregoa pushed a change to tag upstream/0.08
in repository libmath-base-convert-perl.

at  f54a890   (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/libmath-base-convert-perl.git

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


[libverilog-perl] 02/06: Update debian/changelog

2015-10-21 Thread Florian Schlichting
This is an automated email from the git hooks/post-receive script.

fsfs pushed a commit to branch master
in repository libverilog-perl.

commit a8ea05d0526d2a4c989f24856af1ea9c41ae7c87
Author: Florian Schlichting 
Date:   Wed Oct 21 20:52:30 2015 +0200

Update debian/changelog

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

diff --git a/debian/changelog b/debian/changelog
index 2a3ae4f..3ab6e0e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,14 @@
 libverilog-perl (3.414-1) UNRELEASED; urgency=medium
 
+  [ gregor herrmann ]
   PROBLEM: FTBFS, new test failures
 
   * New upstream release.
   * Update years of packaging copyright.
 
+  [ Florian Schlichting ]
+  * Add debian/upstream/metadata
+
  -- gregor herrmann   Sat, 27 Jun 2015 22:05:31 +0200
 
 libverilog-perl (3.412-1) unstable; urgency=medium

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

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


[libpod-markdown-perl] branch master updated (f878c14 -> 9a5febf)

2015-10-21 Thread Florian Schlichting
This is an automated email from the git hooks/post-receive script.

fsfs pushed a change to branch master
in repository libpod-markdown-perl.

  from  f878c14   releasing package libpod-markdown-perl version 3.002000-2
  adds  4b82801   Bump Pod::Simple prereq for bug fix
  adds  0efcb17   Allow 'init' to pass through in codes.t helper
  adds  7883f24   Use Pod::Simple's nbsp_for_S instead of handling 
internally
  adds  fce44d9   Use unicode_to_native for nsbp/copyright portability
  adds  525da8e   v3.003
  adds  29ff55b   Imported Upstream version 3.003000
   new  295dd43   Merge tag 'upstream/3.003000'
   new  b7ba139   Update debian/changelog
   new  05ff653   Bump Pod::Simple (build-)dependency to 3.27 for 
keep_encoding fix
   new  9a5febf   prepare changelog for release

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:
 Changes   |   7 ++
 MANIFEST  |   2 +-
 META.json | 233 ++
 META.yml  | 209 +++--
 Makefile.PL   |  10 +-
 README|   4 +-
 bin/pod2markdown  |   2 +-
 debian/changelog  |   7 ++
 debian/control|   4 +-
 lib/Pod/Markdown.pm   |  26 ++---
 lib/Pod/Perldoc/ToMarkdown.pm |   4 +-
 t/00-compile.t|   6 +-
 t/00-report-prereqs.dd|   7 +-
 t/codes.t |  17 ++-
 14 files changed, 288 insertions(+), 250 deletions(-)

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

___
Pkg-perl-cvs-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   >