[libgenome-model-tools-music-perl] branch master updated (4ee874f -> 1ba4343)

2016-01-01 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to branch master
in repository libgenome-model-tools-music-perl.

  from  4ee874f   releasing package libgenome-model-tools-music-perl 
version 0.04-2
   new  76a5acf   Add patch to fix "Can't use 'defined(@array)' error.
   new  cbbc80f   Mark package as autopkgtest-able.
   new  1ba4343   releasing package libgenome-model-tools-music-perl 
version 0.04-3

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


Summary of changes:
 debian/changelog   |  8 
 debian/control |  1 +
 debian/patches/defined-array.patch | 28 
 debian/patches/series  |  1 +
 debian/tests/pkg-perl/SKIP |  3 +++
 5 files changed, 41 insertions(+)
 create mode 100644 debian/patches/defined-array.patch
 create mode 100644 debian/tests/pkg-perl/SKIP

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libgenome-model-tools-music-perl.git

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


[libgenome-model-tools-music-perl] 02/03: Mark package as autopkgtest-able.

2016-01-01 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libgenome-model-tools-music-perl.

commit cbbc80f26bc15fc25a145d288ce163d482a0d8ec
Author: gregor herrmann 
Date:   Fri Jan 1 18:25:18 2016 +0100

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

diff --git a/debian/control b/debian/control
index 5c84a73..a965725 100644
--- a/debian/control
+++ b/debian/control
@@ -16,6 +16,7 @@ Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libgenome-model-tools-music-perl.git
 Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/libgenome-model-tools-music-perl.git
 Homepage: https://metacpan.org/release/Genome-Model-Tools-Music
+Testsuite: autopkgtest-pkg-perl
 
 Package: libgenome-model-tools-music-perl
 Architecture: all
diff --git a/debian/tests/pkg-perl/SKIP b/debian/tests/pkg-perl/SKIP
new file mode 100644
index 000..97929e0
--- /dev/null
+++ b/debian/tests/pkg-perl/SKIP
@@ -0,0 +1,3 @@
+# leads to warnings:
+# Name "..." used only once: possible typo at ...
+runtime-deps.d/use.t

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libgenome-model-tools-music-perl.git

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


[libgenome-model-tools-music-perl] 01/03: Add patch to fix "Can't use 'defined(@array)' error.

2016-01-01 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libgenome-model-tools-music-perl.

commit 76a5acff1fe52b8686a1666d462d8bb93cec1d9c
Author: gregor herrmann 
Date:   Fri Jan 1 18:22:16 2016 +0100

Add patch to fix "Can't use 'defined(@array)' error.

Closes: #809583
---
 debian/patches/defined-array.patch | 28 
 debian/patches/series  |  1 +
 2 files changed, 29 insertions(+)

diff --git a/debian/patches/defined-array.patch 
b/debian/patches/defined-array.patch
new file mode 100644
index 000..e573104
--- /dev/null
+++ b/debian/patches/defined-array.patch
@@ -0,0 +1,28 @@
+Description: fix "Can't use 'defined(@array)' (Maybe you should just omit the 
defined()?)"
+Origin: vendor
+Bug: https://rt.cpan.org/Public/Bug/Display.html?id=108560
+Forwarded: no, reported and trivial to fix
+Bug-Debian: https://bugs.debian.org/809583
+Author: gregor herrmann 
+Last-Update: 2016-01-01
+
+--- a/lib/Genome/Model/Tools/Music/Survival.pm
 b/lib/Genome/Model/Tools/Music/Survival.pm
+@@ -333,7 +333,7 @@
+ }
+ 
+ #check to see if this gene is on the list (if there is a list at all)
+-if( defined @{$mutated_genes_to_include} ) {
++if( @{$mutated_genes_to_include} ) {
+ next unless( scalar grep { m/^$gene$/ } 
@{$mutated_genes_to_include} );
+ }
+ 
+@@ -396,7 +396,7 @@
+ }
+ 
+ #check to see if this gene is on the list (if there is a list at all)
+-if( defined @{$mutated_genes_to_include} ) {
++if( @{$mutated_genes_to_include} ) {
+ next unless (scalar grep { m/^$gene$/ } 
@{$mutated_genes_to_include});
+ }
+ 
diff --git a/debian/patches/series b/debian/patches/series
index 5148245..797d91d 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 01-fixpod2man
+defined-array.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libgenome-model-tools-music-perl.git

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


[libgenome-model-tools-music-perl] annotated tag debian/0.04-3 created (now 53469d9)

2016-01-01 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to annotated tag debian/0.04-3
in repository libgenome-model-tools-music-perl.

at  53469d9   (tag)
   tagging  1ba4343a1f9af30e25708e01132af77385440ba3 (commit)
  replaces  debian/0.04-2
 tagged by  gregor herrmann
on  Fri Jan 1 18:28:50 2016 +0100

- Log -
tagging package libgenome-model-tools-music-perl version debian/0.04-3
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAABCgBmBQJWhrdSXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoGky8QAMVDhaFfnoiAurSfWaPfATe4
qcpsTWvd9XN8m2H9+WHbLFmVhD+X04/wWKADH0OR/wK+kqeQqp6ZbWA+bRGUirRP
6nGqjvknmvGC603a1t0qaJN8PkwiQPGPdarjuLThUV0+itG8nqLbp8H20ZBehSHY
erOLgFHSH0n+f0HWeuljkDZfkaH/iDiRVGtA1tTqao+TQXNM3f8Tm4ooiG3BfGEt
n/X/MvSRpqT2d1QELdkLWstw1xgzyYBF9Yb/5y2wVNaj2ExPHuagVpAPUIYkv7o4
SjLUWEboGKQMTcTrq6jORTmanaqEUlmFiXTnTDMXIeig95/pW+LQemFupRanmH5c
In2pR5vVRVQo6zukTlrMPZPpUzHX5hJgUrIxdn/Pikfp3qzsnmDhpcYQI2ZSMJR6
650NWm/Z0FfZ8duLD8cOFDrNfRIICQgxAYF1lXisjdybSWWa1DbSYGrPbG3gRVen
RJPFC0hapLKLnV5vxo1lU+1d3Ap7lE8+Dyq4dHmFhMDWaJxzYRqU0vFc3iNP8hcG
9sfUCrj+nlXiCa/IWIxMryt889gU8MXfS7bYkxG1P23f72mtuY/NhAFuOFxqdxIj
5vQ3SQ0KGsYeeLs8Ea/Gv/eWiy/MT6kCHU19uY2LegQEYxWzkfqbPQGyLBsd/VTB
ihkNy1Hsn/9sCyIBZRks
=lHYS
-END PGP SIGNATURE-

gregor herrmann (3):
  Add patch to fix "Can't use 'defined(@array)' error.
  Mark package as autopkgtest-able.
  releasing package libgenome-model-tools-music-perl version 0.04-3

---

This annotated tag includes the following new commits:

   new  76a5acf   Add patch to fix "Can't use 'defined(@array)' error.
   new  cbbc80f   Mark package as autopkgtest-able.
   new  1ba4343   releasing package libgenome-model-tools-music-perl 
version 0.04-3

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


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libgenome-model-tools-music-perl.git

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


[libgenome-model-tools-music-perl] 03/03: releasing package libgenome-model-tools-music-perl version 0.04-3

2016-01-01 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libgenome-model-tools-music-perl.

commit 1ba4343a1f9af30e25708e01132af77385440ba3
Author: gregor herrmann 
Date:   Fri Jan 1 18:28:50 2016 +0100

releasing package libgenome-model-tools-music-perl version 0.04-3
---
 debian/changelog | 8 
 1 file changed, 8 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 8178f73..cfce612 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+libgenome-model-tools-music-perl (0.04-3) unstable; urgency=medium
+
+  * Team upload.
+  * Add patch to fix "Can't use 'defined(@array)' error. (Closes: #809583)
+  * Mark package as autopkgtest-able.
+
+ -- gregor herrmann   Fri, 01 Jan 2016 18:26:23 +0100
+
 libgenome-model-tools-music-perl (0.04-2) unstable; urgency=medium
 
   * Team upload.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libgenome-model-tools-music-perl.git

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


[libppix-regexp-perl] 02/02: Update debian/changelog file

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libppix-regexp-perl.

commit 01b33c76f10b6bba6f7e12f95e48bd46ba1c0310
Author: Salvatore Bonaccorso 
Date:   Fri Jan 1 19:56:32 2016 +0100

Update debian/changelog file

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

diff --git a/debian/changelog b/debian/changelog
index 1240cca..18a8bd2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libppix-regexp-perl (0.045-1) UNRELEASED; urgency=medium
+
+  * Imported Upstream version 0.045
+
+ -- Salvatore Bonaccorso   Fri, 01 Jan 2016 19:56:27 +0100
+
 libppix-regexp-perl (0.044-1) unstable; urgency=medium
 
   * Imported Upstream version 0.044

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

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


[libppix-regexp-perl] branch pristine-tar updated (c409d30 -> 6521632)

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to branch pristine-tar
in repository libppix-regexp-perl.

  from  c409d30   pristine-tar data for 
libppix-regexp-perl_0.044.orig.tar.gz
   new  6521632   pristine-tar data for 
libppix-regexp-perl_0.045.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:
 libppix-regexp-perl_0.045.orig.tar.gz.delta | Bin 0 -> 4409 bytes
 libppix-regexp-perl_0.045.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libppix-regexp-perl_0.045.orig.tar.gz.delta
 create mode 100644 libppix-regexp-perl_0.045.orig.tar.gz.id

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

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


[libppix-regexp-perl] branch master updated (a7dcc01 -> 01b33c7)

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to branch master
in repository libppix-regexp-perl.

  from  a7dcc01   Prepare changelog for release
  adds  e1de4d6   Imported Upstream version 0.045
   new  f08ecdd   Merge tag 'upstream/0.045'
   new  01b33c7   Update debian/changelog file

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:
 Changes  |  15 +
 MANIFEST |   4 +
 META.json| 124 +++---
 META.yml | 125 +++---
 debian/changelog |   6 +
 eg/predump   |  47 +-
 eg/preslurp  |   2 +-
 inc/PPIx/Regexp/Build.pm |   2 +-
 inc/PPIx/Regexp/Mock_Tokenizer.pm| 132 ++
 inc/PPIx/Regexp/Test.pm  |   8 +-
 lib/PPIx/Regexp.pm   |  59 ++-
 lib/PPIx/Regexp/Constant.pm  |   2 +-
 lib/PPIx/Regexp/Dumper.pm|  14 +-
 lib/PPIx/Regexp/Element.pm   |  31 +-
 lib/PPIx/Regexp/Lexer.pm |  56 ++-
 lib/PPIx/Regexp/Node.pm  |   2 +-
 lib/PPIx/Regexp/Node/Range.pm|   2 +-
 lib/PPIx/Regexp/StringTokenizer.pm   | 274 
 lib/PPIx/Regexp/Structure.pm |  23 +-
 lib/PPIx/Regexp/Structure/Assertion.pm   |   2 +-
 lib/PPIx/Regexp/Structure/BranchReset.pm |   2 +-
 lib/PPIx/Regexp/Structure/Capture.pm |   2 +-
 lib/PPIx/Regexp/Structure/CharClass.pm   |   2 +-
 lib/PPIx/Regexp/Structure/Code.pm|   2 +-
 lib/PPIx/Regexp/Structure/Main.pm|   2 +-
 lib/PPIx/Regexp/Structure/Modifier.pm|   2 +-
 lib/PPIx/Regexp/Structure/NamedCapture.pm|   2 +-
 lib/PPIx/Regexp/Structure/Quantifier.pm  |   2 +-
 lib/PPIx/Regexp/Structure/RegexSet.pm|   2 +-
 lib/PPIx/Regexp/Structure/Regexp.pm  |   2 +-
 lib/PPIx/Regexp/Structure/Replacement.pm |   2 +-
 lib/PPIx/Regexp/Structure/Subexpression.pm   |   2 +-
 lib/PPIx/Regexp/Structure/Switch.pm  |   2 +-
 lib/PPIx/Regexp/Structure/Unknown.pm |   2 +-
 lib/PPIx/Regexp/Support.pm   |   2 +-
 lib/PPIx/Regexp/Token.pm |  35 +-
 lib/PPIx/Regexp/Token/Assertion.pm   |   2 +-
 lib/PPIx/Regexp/Token/Backreference.pm   |   7 +-
 lib/PPIx/Regexp/Token/Backtrack.pm   |   2 +-
 lib/PPIx/Regexp/Token/CharClass.pm   |   2 +-
 lib/PPIx/Regexp/Token/CharClass/POSIX.pm |   2 +-
 lib/PPIx/Regexp/Token/CharClass/POSIX/Unknown.pm |   2 +-
 lib/PPIx/Regexp/Token/CharClass/Simple.pm|   2 +-
 lib/PPIx/Regexp/Token/Code.pm|  63 +--
 lib/PPIx/Regexp/Token/Comment.pm |   2 +-
 lib/PPIx/Regexp/Token/Condition.pm   |   2 +-
 lib/PPIx/Regexp/Token/Control.pm |  22 +-
 lib/PPIx/Regexp/Token/Delimiter.pm   |   2 +-
 lib/PPIx/Regexp/Token/Greediness.pm  |   5 +-
 lib/PPIx/Regexp/Token/GroupType.pm   |   2 +-
 lib/PPIx/Regexp/Token/GroupType/Assertion.pm |   2 +-
 lib/PPIx/Regexp/Token/GroupType/BranchReset.pm   |   2 +-
 lib/PPIx/Regexp/Token/GroupType/Code.pm  |   2 +-
 lib/PPIx/Regexp/Token/GroupType/Modifier.pm  |   2 +-
 lib/PPIx/Regexp/Token/GroupType/NamedCapture.pm  |  38 +-
 lib/PPIx/Regexp/Token/GroupType/Subexpression.pm |   2 +-
 lib/PPIx/Regexp/Token/GroupType/Switch.pm|   2 +-
 lib/PPIx/Regexp/Token/Interpolation.pm   |  33 +-
 lib/PPIx/Regexp/Token/Literal.pm |   2 +-
 lib/PPIx/Regexp/Token/Modifier.pm|  24 +-
 lib/PPIx/Regexp/Token/Operator.pm|  29 +-
 lib/PPIx/Regexp/Token/Quantifier.pm  |   4 +-
 lib/PPIx/Regexp/Token/Recursion.pm   |   2 +-
 lib/PPIx/Regexp/Token/Reference.pm   | 123 +++---
 lib/PPIx/Regexp/Token/Structure.pm   |   9 +-
 lib/PPIx/Regexp/Token/Unknown.pm |  36 +-
 lib/PPIx/Regexp/Token/Unmatched.pm   |   2 +-
 lib/PPIx/Regexp/Token/Whitespace.pm  |  75 +---
 lib/PPIx/Regexp/Tokenizer.pm | 316 +++---
 lib/PPIx/Regexp/Util.pm  |  59 ++-
 t/basic.t|  93 ++--
 t/string.t   | 526 +++
 t/string_unit.t  |  21 +
 t/version.t 

[libppix-regexp-perl] 01/02: Merge tag 'upstream/0.045'

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libppix-regexp-perl.

commit f08ecddcc92ba984f030c3917fc9fd7c8184e941
Merge: a7dcc01 e1de4d6
Author: Salvatore Bonaccorso 
Date:   Fri Jan 1 19:56:21 2016 +0100

Merge tag 'upstream/0.045'

Upstream version 0.045

 Changes  |  15 +
 MANIFEST |   4 +
 META.json| 124 +++---
 META.yml | 125 +++---
 eg/predump   |  47 +-
 eg/preslurp  |   2 +-
 inc/PPIx/Regexp/Build.pm |   2 +-
 inc/PPIx/Regexp/Mock_Tokenizer.pm| 132 ++
 inc/PPIx/Regexp/Test.pm  |   8 +-
 lib/PPIx/Regexp.pm   |  59 ++-
 lib/PPIx/Regexp/Constant.pm  |   2 +-
 lib/PPIx/Regexp/Dumper.pm|  14 +-
 lib/PPIx/Regexp/Element.pm   |  31 +-
 lib/PPIx/Regexp/Lexer.pm |  56 ++-
 lib/PPIx/Regexp/Node.pm  |   2 +-
 lib/PPIx/Regexp/Node/Range.pm|   2 +-
 lib/PPIx/Regexp/StringTokenizer.pm   | 274 
 lib/PPIx/Regexp/Structure.pm |  23 +-
 lib/PPIx/Regexp/Structure/Assertion.pm   |   2 +-
 lib/PPIx/Regexp/Structure/BranchReset.pm |   2 +-
 lib/PPIx/Regexp/Structure/Capture.pm |   2 +-
 lib/PPIx/Regexp/Structure/CharClass.pm   |   2 +-
 lib/PPIx/Regexp/Structure/Code.pm|   2 +-
 lib/PPIx/Regexp/Structure/Main.pm|   2 +-
 lib/PPIx/Regexp/Structure/Modifier.pm|   2 +-
 lib/PPIx/Regexp/Structure/NamedCapture.pm|   2 +-
 lib/PPIx/Regexp/Structure/Quantifier.pm  |   2 +-
 lib/PPIx/Regexp/Structure/RegexSet.pm|   2 +-
 lib/PPIx/Regexp/Structure/Regexp.pm  |   2 +-
 lib/PPIx/Regexp/Structure/Replacement.pm |   2 +-
 lib/PPIx/Regexp/Structure/Subexpression.pm   |   2 +-
 lib/PPIx/Regexp/Structure/Switch.pm  |   2 +-
 lib/PPIx/Regexp/Structure/Unknown.pm |   2 +-
 lib/PPIx/Regexp/Support.pm   |   2 +-
 lib/PPIx/Regexp/Token.pm |  35 +-
 lib/PPIx/Regexp/Token/Assertion.pm   |   2 +-
 lib/PPIx/Regexp/Token/Backreference.pm   |   7 +-
 lib/PPIx/Regexp/Token/Backtrack.pm   |   2 +-
 lib/PPIx/Regexp/Token/CharClass.pm   |   2 +-
 lib/PPIx/Regexp/Token/CharClass/POSIX.pm |   2 +-
 lib/PPIx/Regexp/Token/CharClass/POSIX/Unknown.pm |   2 +-
 lib/PPIx/Regexp/Token/CharClass/Simple.pm|   2 +-
 lib/PPIx/Regexp/Token/Code.pm|  63 +--
 lib/PPIx/Regexp/Token/Comment.pm |   2 +-
 lib/PPIx/Regexp/Token/Condition.pm   |   2 +-
 lib/PPIx/Regexp/Token/Control.pm |  22 +-
 lib/PPIx/Regexp/Token/Delimiter.pm   |   2 +-
 lib/PPIx/Regexp/Token/Greediness.pm  |   5 +-
 lib/PPIx/Regexp/Token/GroupType.pm   |   2 +-
 lib/PPIx/Regexp/Token/GroupType/Assertion.pm |   2 +-
 lib/PPIx/Regexp/Token/GroupType/BranchReset.pm   |   2 +-
 lib/PPIx/Regexp/Token/GroupType/Code.pm  |   2 +-
 lib/PPIx/Regexp/Token/GroupType/Modifier.pm  |   2 +-
 lib/PPIx/Regexp/Token/GroupType/NamedCapture.pm  |  38 +-
 lib/PPIx/Regexp/Token/GroupType/Subexpression.pm |   2 +-
 lib/PPIx/Regexp/Token/GroupType/Switch.pm|   2 +-
 lib/PPIx/Regexp/Token/Interpolation.pm   |  33 +-
 lib/PPIx/Regexp/Token/Literal.pm |   2 +-
 lib/PPIx/Regexp/Token/Modifier.pm|  24 +-
 lib/PPIx/Regexp/Token/Operator.pm|  29 +-
 lib/PPIx/Regexp/Token/Quantifier.pm  |   4 +-
 lib/PPIx/Regexp/Token/Recursion.pm   |   2 +-
 lib/PPIx/Regexp/Token/Reference.pm   | 123 +++---
 lib/PPIx/Regexp/Token/Structure.pm   |   9 +-
 lib/PPIx/Regexp/Token/Unknown.pm |  36 +-
 lib/PPIx/Regexp/Token/Unmatched.pm   |   2 +-
 lib/PPIx/Regexp/Token/Whitespace.pm  |  75 +---
 lib/PPIx/Regexp/Tokenizer.pm | 316 +++---
 lib/PPIx/Regexp/Util.pm  |  59 ++-
 t/basic.t|  93 ++--
 t/string.t   | 526 +++
 t/string_unit.t  |  21 +
 t/version.t  |   7 +-
 xt/author/pod_spelling.t |   1 +
 74 files changed, 1922 insertions(+), 596 deletions(-)

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

___

[libppix-regexp-perl] 01/01: pristine-tar data for libppix-regexp-perl_0.045.orig.tar.gz

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch pristine-tar
in repository libppix-regexp-perl.

commit 6521632fd630cdaa284657daf65952dc9d427fec
Author: Salvatore Bonaccorso 
Date:   Fri Jan 1 19:56:20 2016 +0100

pristine-tar data for libppix-regexp-perl_0.045.orig.tar.gz
---
 libppix-regexp-perl_0.045.orig.tar.gz.delta | Bin 0 -> 4409 bytes
 libppix-regexp-perl_0.045.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libppix-regexp-perl_0.045.orig.tar.gz.delta 
b/libppix-regexp-perl_0.045.orig.tar.gz.delta
new file mode 100644
index 000..809b404
Binary files /dev/null and b/libppix-regexp-perl_0.045.orig.tar.gz.delta differ
diff --git a/libppix-regexp-perl_0.045.orig.tar.gz.id 
b/libppix-regexp-perl_0.045.orig.tar.gz.id
new file mode 100644
index 000..0785183
--- /dev/null
+++ b/libppix-regexp-perl_0.045.orig.tar.gz.id
@@ -0,0 +1 @@
+77090e73d7363d97a46d53ec08614962bf4e77c3

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

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


[libppix-regexp-perl] annotated tag upstream/0.045 created (now 6a4794b)

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to annotated tag upstream/0.045
in repository libppix-regexp-perl.

at  6a4794b   (tag)
   tagging  e1de4d6b199403f7e48c5f77a05947faf6cb738e (commit)
  replaces  upstream/0.044
 tagged by  Salvatore Bonaccorso
on  Fri Jan 1 19:56:20 2016 +0100

- Log -
Upstream version 0.045

Salvatore Bonaccorso (1):
  Imported Upstream version 0.045

---

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

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


[libppix-regexp-perl] 01/02: Update copyright years for debian/* packaging files

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libppix-regexp-perl.

commit e83566e69e97ba96f607168285f847bf9eed7b1b
Author: Salvatore Bonaccorso 
Date:   Fri Jan 1 19:59:15 2016 +0100

Update copyright years for debian/* packaging files
---
 debian/copyright | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/copyright b/debian/copyright
index 944cc02..3ae2eb0 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -11,7 +11,7 @@ Files: debian/*
 Copyright: 2009, 2010, Jonathan Yu 
2009, Jose Luis Rivas 
2010, Ansgar Burchardt 
-   2010-2015, Salvatore Bonaccorso 
+   2010-2016, Salvatore Bonaccorso 
 License: Artistic or GPL-1+
 
 License: Artistic

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

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


[libppix-regexp-perl] branch master updated (01b33c7 -> 7d9df07)

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to branch master
in repository libppix-regexp-perl.

  from  01b33c7   Update debian/changelog file
   new  e83566e   Update copyright years for debian/* packaging files
   new  7d9df07   Prepare changelog for release

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

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

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


[libppix-regexp-perl] 02/02: Prepare changelog for release

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libppix-regexp-perl.

commit 7d9df0778b87f935377ebbf6fa559694568000f8
Author: Salvatore Bonaccorso 
Date:   Fri Jan 1 20:21:45 2016 +0100

Prepare changelog for release

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

diff --git a/debian/changelog b/debian/changelog
index 18a8bd2..bc972d7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
-libppix-regexp-perl (0.045-1) UNRELEASED; urgency=medium
+libppix-regexp-perl (0.045-1) unstable; urgency=medium
 
   * Imported Upstream version 0.045
+  * Update copyright years for debian/* packaging files
 
- -- Salvatore Bonaccorso   Fri, 01 Jan 2016 19:56:27 +0100
+ -- Salvatore Bonaccorso   Fri, 01 Jan 2016 20:21:31 +0100
 
 libppix-regexp-perl (0.044-1) unstable; urgency=medium
 

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

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


[libproc-daemon-perl] branch master updated (8a7d7e1 -> 85bb4dc)

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to branch master
in repository libproc-daemon-perl.

  from  8a7d7e1   Prepare changelog for release
  adds  243a879   Remove Installation section from README
  adds  8f17677   Strip `.` directory from $PATH in taint mode test 
[RT#110330]
  adds  67785ec   Update version
  adds  d4e10ad   Reflect changes
  adds  3da8413   Imported Upstream version 0.23
   new  a15ed02   Merge tag 'upstream/0.23'
   new  a832055   Update debian/changelog
   new  00bcffd   Update copyright years for upstream files
   new  08fb31a   Update copyright years for debian/* packaging files
   new  85bb4dc   Prepare changelog for release

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


Summary of changes:
 Changes|  3 +++
 LICENSE|  6 +++---
 META.yml   |  2 +-
 Makefile.PL|  2 +-
 README.md  | 23 ---
 debian/changelog   |  8 
 debian/copyright   |  4 ++--
 lib/Proc/Daemon.pm |  2 +-
 t/02_testmodule.t  |  2 +-
 9 files changed, 20 insertions(+), 32 deletions(-)

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

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


[libproc-daemon-perl] 03/05: Update copyright years for upstream files

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libproc-daemon-perl.

commit 00bcffde90a5785eda4d2c660cf4c4d2103187a4
Author: Salvatore Bonaccorso 
Date:   Fri Jan 1 21:11:49 2016 +0100

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

diff --git a/debian/copyright b/debian/copyright
index c0cad4e..3f1e934 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -8,7 +8,7 @@ Source: https://metacpan.org/release/Proc-Daemon/
 Files: *
 Copyright: 1997-2015, Earl Hood 
  1997-2015, Detlef Pilzecker 
- 1997-2015, Pavel Denisov 
+ 1997-2016, Pavel Denisov 
 License: Artistic or GPL-1+
 
 Files: debian/*

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

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


[libproc-daemon-perl] 01/05: Merge tag 'upstream/0.23'

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libproc-daemon-perl.

commit a15ed02d3d04409ec6e61e4515472057ca4482c1
Merge: 8a7d7e1 3da8413
Author: Salvatore Bonaccorso 
Date:   Fri Jan 1 21:10:04 2016 +0100

Merge tag 'upstream/0.23'

Upstream version 0.23

 Changes|  3 +++
 LICENSE|  6 +++---
 META.yml   |  2 +-
 Makefile.PL|  2 +-
 README.md  | 23 ---
 lib/Proc/Daemon.pm |  2 +-
 t/02_testmodule.t  |  2 +-
 7 files changed, 10 insertions(+), 30 deletions(-)

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

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


[libproc-daemon-perl] 02/05: Update debian/changelog

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libproc-daemon-perl.

commit a8320555a0b66455bf13a07ffdb573085ae7bffa
Author: Salvatore Bonaccorso 
Date:   Fri Jan 1 21:10:04 2016 +0100

Update debian/changelog

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

diff --git a/debian/changelog b/debian/changelog
index 7e93c7e..805af66 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libproc-daemon-perl (0.23-1) UNRELEASED; urgency=medium
+
+  * Import upstream version 0.23
+
+ -- Salvatore Bonaccorso   Fri, 01 Jan 2016 21:10:04 +0100
+
 libproc-daemon-perl (0.22-1) unstable; urgency=medium
 
   * Import upstream version 0.22

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

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


[libproc-daemon-perl] branch pristine-tar updated (e850b4f -> 949decc)

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to branch pristine-tar
in repository libproc-daemon-perl.

  from  e850b4f   pristine-tar data for libproc-daemon-perl_0.22.orig.tar.gz
   new  949decc   pristine-tar data for libproc-daemon-perl_0.23.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:
 libproc-daemon-perl_0.23.orig.tar.gz.delta | Bin 0 -> 1268 bytes
 libproc-daemon-perl_0.23.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libproc-daemon-perl_0.23.orig.tar.gz.delta
 create mode 100644 libproc-daemon-perl_0.23.orig.tar.gz.id

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

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


[libproc-daemon-perl] 05/05: Prepare changelog for release

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libproc-daemon-perl.

commit 85bb4dce354a5f5b02aec09bd0b907138bc93372
Author: Salvatore Bonaccorso 
Date:   Fri Jan 1 21:12:22 2016 +0100

Prepare changelog for release

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

diff --git a/debian/changelog b/debian/changelog
index 805af66..93c5ac2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,10 @@
-libproc-daemon-perl (0.23-1) UNRELEASED; urgency=medium
+libproc-daemon-perl (0.23-1) unstable; urgency=medium
 
   * Import upstream version 0.23
+  * Update copyright years for upstream files
+  * Update copyright years for debian/* packaging files
 
- -- Salvatore Bonaccorso   Fri, 01 Jan 2016 21:10:04 +0100
+ -- Salvatore Bonaccorso   Fri, 01 Jan 2016 21:12:14 +0100
 
 libproc-daemon-perl (0.22-1) unstable; urgency=medium
 

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

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


[libproc-daemon-perl] 04/05: Update copyright years for debian/* packaging files

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libproc-daemon-perl.

commit 08fb31ae54148c7817f17273a0512cfc1e0d03f1
Author: Salvatore Bonaccorso 
Date:   Fri Jan 1 21:12:01 2016 +0100

Update copyright years for debian/* packaging files
---
 debian/copyright | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/copyright b/debian/copyright
index 3f1e934..5d86cee 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -16,7 +16,7 @@ Copyright:
  2003, 2010, Marc Haber 
  2010, Krzysztof Krzyżaniak (eloy) 
  2011, Nicholas Bamber 
- 2011-2015, Salvatore Bonaccorso 
+ 2011-2016, Salvatore Bonaccorso 
  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/libproc-daemon-perl.git

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

[libproc-daemon-perl] annotated tag upstream/0.23 created (now a4b4114)

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to annotated tag upstream/0.23
in repository libproc-daemon-perl.

at  a4b4114   (tag)
   tagging  3da84131cefb4b842361ce049c9bfd539147ead7 (commit)
  replaces  upstream/0.22
 tagged by  Salvatore Bonaccorso
on  Fri Jan 1 21:10:04 2016 +0100

- Log -
Upstream version 0.23

Pavel Denisov (4):
  Remove Installation section from README
  Strip `.` directory from $PATH in taint mode test [RT#110330]
  Update version
  Reflect changes

Salvatore Bonaccorso (1):
  Imported Upstream version 0.23

---

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

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


[libproc-daemon-perl] 01/01: pristine-tar data for libproc-daemon-perl_0.23.orig.tar.gz

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch pristine-tar
in repository libproc-daemon-perl.

commit 949deccd7d8692a19b0d75ded3351894f0d79e33
Author: Salvatore Bonaccorso 
Date:   Fri Jan 1 21:10:04 2016 +0100

pristine-tar data for libproc-daemon-perl_0.23.orig.tar.gz
---
 libproc-daemon-perl_0.23.orig.tar.gz.delta | Bin 0 -> 1268 bytes
 libproc-daemon-perl_0.23.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libproc-daemon-perl_0.23.orig.tar.gz.delta 
b/libproc-daemon-perl_0.23.orig.tar.gz.delta
new file mode 100644
index 000..8e22732
Binary files /dev/null and b/libproc-daemon-perl_0.23.orig.tar.gz.delta differ
diff --git a/libproc-daemon-perl_0.23.orig.tar.gz.id 
b/libproc-daemon-perl_0.23.orig.tar.gz.id
new file mode 100644
index 000..777ea7f
--- /dev/null
+++ b/libproc-daemon-perl_0.23.orig.tar.gz.id
@@ -0,0 +1 @@
+dfe566f1f055d729160880b9b1b4bd69c77e2825

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

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


[libppix-regexp-perl] annotated tag debian/0.045-1 created (now b9bf387)

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to annotated tag debian/0.045-1
in repository libppix-regexp-perl.

at  b9bf387   (tag)
   tagging  7d9df0778b87f935377ebbf6fa559694568000f8 (commit)
  replaces  debian/0.044-1
 tagged by  Salvatore Bonaccorso
on  Fri Jan 1 21:18:39 2016 +0100

- Log -
tagging package libppix-regexp-perl version debian/0.045-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCgAGBQJWht8fAAoJEAVMuPMTQ89EtY0P/19u86/rd8Q/eknMe/C/P+g4
eSRgVRxs9Sgp91yt1oOYZERfM3qyjntUVGyzjxXeE2Pdaijq1DzZOFvSYcshURlm
LL3EwKa4TCZJB/KeGWvma/bI6+QN0rbSw8LAj+EHzkLpIKry5uIIzzcyuw9FzreD
BUL1PFhFwJ7BP8u6/MD5ChG8w14bd765Qqd84MfYwepvqpCnvKMeYjpW6cXlqEoH
LSVgju5vOhLkwWSb0gKCLGokHF/3rV0STH1+VRpU0URnvtHBilB+C6rWjePsgOSa
Za9UrPlcskRKBvJiLgl+TEkOK3hZcaDjWiD68o4JdTiD1qrvtaeIVQV/RfeLqRe+
zkXMOB+P009EeV52V2pxzHKTuhTfC6Ic/0pEoW5lWt99PUkx6ZU+EpL0K6ACRDPE
FIHHXTlpaQkfP5grRdcNN29EAfjTEKAf02cXCIoJ2J9OZC0Ut2ORWMWfxigZqQPT
qi4lPDid9/GO02lzXmhwJ7cakFd6wdH3hL8JGpHguTKWkvc6Xzf9a6qeXSBGDTKp
JOaE54KrgW49d0k5NLlbjrqzyEf9pQ+NCTKlPz/Wy9OTuCLC/2CccPYQMIG+NGul
r1snDvqj+zk5s+diPnkIcn1EURYO+lhVyUNnukuM+gNeqsEyo2KDTOgbq4yCGO10
RR2yfUKkLAvKovATE8JN
=coXm
-END PGP SIGNATURE-

Salvatore Bonaccorso (5):
  Imported Upstream version 0.045
  Merge tag 'upstream/0.045'
  Update debian/changelog file
  Update copyright years for debian/* packaging files
  Prepare changelog for release

---

No new revisions were added by this update.

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

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


[libproc-daemon-perl] annotated tag debian/0.23-1 created (now ac49748)

2016-01-01 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to annotated tag debian/0.23-1
in repository libproc-daemon-perl.

at  ac49748   (tag)
   tagging  85bb4dce354a5f5b02aec09bd0b907138bc93372 (commit)
  replaces  debian/0.22-1
 tagged by  Salvatore Bonaccorso
on  Fri Jan 1 21:18:18 2016 +0100

- Log -
tagging package libproc-daemon-perl version debian/0.23-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCgAGBQJWht8KAAoJEAVMuPMTQ89E7jsP/1o3SPMWF0t6BPqfkBiGjjZV
nHJ+ETPuDrn0/e+bFbhYupj9SWudUl8k68ZrpocQ4+zOK3XGJQE/z/laVQG2jNXb
Zhe6X0lSB92Y0xKK7lAbnzcz55+QDLZlCkB/UspbcvhFaSiLkX+e67X7F+KNdOpf
2/m8D8KDI9j0Ry+w2FbSGGMtXt9yMk89gBhfaVkn24GT42Q4syEUs6R+ltGPwCgb
GVxlZShDCPfMc0qowNmL7Bz/wwO67QXi2NfR7Hm9CMYxfA2gdKWtzOXKYkyQ3saI
93CqUFamdPBkUC2mm4u8B69wlvIAbNDuBid4lboub7F/CpAz1LM2JR69SXiEGgEe
QF0AvXsSHyQ2k6UnpWp1Evo4Z5K25XM5FIzyS1McVFh1n3VJetTJ8/mGceGzR0IZ
zuqkOMgrdSzKOH83OHPq0ferj2kzoy7MTdtI3WredFdXCyIi7REsvxvPix506BMC
NfWmADHV7DlbMeTHjJWDTz6FjLN3q3mxameQjpH8S/umyRG8vS4wUWGqDWgvKhYV
DHmmDOPi0QkICMGNMB1ggivgBLEdAJUBddpk6y0Sulyn9JPIU1N2WlJC6/Num09r
EmBxEiD5Ui1YxEjB+rXO/dH/YedZLkKp6ZZJiTf25jr5AIKwCtNzcpRvFOGqGX3U
SzVvYks7/JWQ9H95NCvP
=7Wnj
-END PGP SIGNATURE-

Pavel Denisov (4):
  Remove Installation section from README
  Strip `.` directory from $PATH in taint mode test [RT#110330]
  Update version
  Reflect changes

Salvatore Bonaccorso (6):
  Imported Upstream version 0.23
  Merge tag 'upstream/0.23'
  Update debian/changelog
  Update copyright years for upstream files
  Update copyright years for debian/* packaging files
  Prepare changelog for release

---

No new revisions were added by this update.

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

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