[libb-hooks-op-check-entersubforcv-perl] 01/03: Fix for Perl 5.22 compatibility

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libb-hooks-op-check-entersubforcv-perl.

commit 100ab3b736d5223ef8ef5f949bbb5c9b747f7d46
Author: Niko Tyni 
Date:   Sun Dec 27 11:51:55 2015 +0200

Fix for Perl 5.22 compatibility

Closes: #787499
---
 .../patches/0001-Perl-5.21.4-compatibility.patch   | 34 ++
 debian/patches/series  |  1 +
 2 files changed, 35 insertions(+)

diff --git a/debian/patches/0001-Perl-5.21.4-compatibility.patch 
b/debian/patches/0001-Perl-5.21.4-compatibility.patch
new file mode 100644
index 000..0880cb1
--- /dev/null
+++ b/debian/patches/0001-Perl-5.21.4-compatibility.patch
@@ -0,0 +1,34 @@
+From 6c62adb1722a96370dbe8d294d36f9382b0788fa Mon Sep 17 00:00:00 2001
+From: Niko Tyni 
+Date: Sun, 27 Dec 2015 11:47:24 +0200
+Subject: [PATCH] Perl >= 5.21.4 compatibility
+
+This fixes test failures since perl commit v5.21.3-654-ga65cc14 .
+
+Bug: https://rt.cpan.org/Public/Bug/Display.html?id=94945
+Bug-Debian: https://bugs.debian.org/787499
+---
+ EntersubForCV.xs | 7 ++-
+ 1 file changed, 6 insertions(+), 1 deletion(-)
+
+diff --git a/EntersubForCV.xs b/EntersubForCV.xs
+index 870d470..4acbcab 100644
+--- a/EntersubForCV.xs
 b/EntersubForCV.xs
+@@ -60,7 +60,12 @@ entersub_cb (pTHX_ OP *op, void *user_data) {
+   return op;
+   }
+ 
+-  cv = GvCV (cGVOPx_gv (kid));
++  GV *gv = cGVOPx_gv (kid);
++  if (SvROK(gv)) { /* since v5.21.3-654-ga65cc14 */
++  cv = (CV *)SvRV(gv);
++  } else {
++  cv = GvCV (gv);
++  }
+ 
+   if (ud->cv == cv) {
+   op = ud->cb (aTHX_ op, cv, ud->ud);
+-- 
+2.6.4
+
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..de76cb9
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+0001-Perl-5.21.4-compatibility.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libb-hooks-op-check-entersubforcv-perl.git

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


[libb-hooks-op-check-entersubforcv-perl] branch master updated (2e49ec0 -> d1e6bdc)

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to branch master
in repository libb-hooks-op-check-entersubforcv-perl.

  from  2e49ec0   update changelog
   new  100ab3b   Fix for Perl 5.22 compatibility
   new  867a2b8   Declare the package autopkgtestable
   new  d1e6bdc   releasing package libb-hooks-op-check-entersubforcv-perl 
version 0.09-4 to unstable

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   | 11 +--
 debian/control |  1 +
 .../patches/0001-Perl-5.21.4-compatibility.patch   | 34 ++
 debian/patches/series  |  1 +
 4 files changed, 45 insertions(+), 2 deletions(-)
 create mode 100644 debian/patches/0001-Perl-5.21.4-compatibility.patch
 create mode 100644 debian/patches/series

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libb-hooks-op-check-entersubforcv-perl.git

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


[libb-hooks-op-check-entersubforcv-perl] 02/03: Declare the package autopkgtestable

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libb-hooks-op-check-entersubforcv-perl.

commit 867a2b8b95be828cd8378b680d59a0810773904d
Author: Niko Tyni 
Date:   Sun Dec 27 11:53:15 2015 +0200

Declare the package autopkgtestable
---
 debian/control | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/control b/debian/control
index 04db175..62d375c 100644
--- a/debian/control
+++ b/debian/control
@@ -12,6 +12,7 @@ Standards-Version: 3.9.5
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libb-hooks-op-check-entersubforcv-perl.git
 Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/libb-hooks-op-check-entersubforcv-perl.git
 Homepage: https://metacpan.org/release/B-Hooks-OP-Check-EntersubForCV
+Testsuite: autopkgtest-pkg-perl
 
 Package: libb-hooks-op-check-entersubforcv-perl
 Architecture: any

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libb-hooks-op-check-entersubforcv-perl.git

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


[libb-hooks-op-check-entersubforcv-perl] annotated tag debian/0.09-4 created (now b4c726b)

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to annotated tag debian/0.09-4
in repository libb-hooks-op-check-entersubforcv-perl.

at  b4c726b   (tag)
   tagging  d1e6bdce523c15016326c1b919be016070838ae6 (commit)
  replaces  debian/0.09-3
 tagged by  Niko Tyni
on  Sun Dec 27 12:03:36 2015 +0200

- Log -
Debian release 0.09-4
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJWf7d4AAoJEC7A/7O3MBsfRx0P/jofEh6KU8/Z9CpjUZwbQaos
ULep3huvLYB2i9tmVyS65yJbEnxn0No62b5FQorDQK1+H5ScjctgyvG0PXEx4V81
2147zgn5GtUPytmHiz3cd6vyUJcYquMphUNuaLn04nBsBQ2chs6uH6gpJcnTSt8+
bzhJY6SSuYHVJ5ZdbhxfAoX6vVPPR1nzQnh32W/NtLZR3ouz7lWCi2Yc8q0c3H8x
CMeGiEHwVg6qS4zKSxqFIfkov5TM3xFOhPEziaflqVXOAiu3uB/llAtILxZabwsf
dy3Byejg2aJOnPY+PyOtgOwtPlq+I3TdgIu8oVaPJ1cuS4ysum6D49ffvgGOeHJC
9oVv6G5pT+15G9XpXCVV/iZwbg3CQ8zwjwZo5o8I+f7cP6L9+lQEncQwxf1H6Cro
uoddzQuJFgBCApUBV2K5yHHuCiRstYqWjhwoCG08aUPewWkQARdhwM2JuLhjAoHD
TwSweSJPF5iXCWsChXBuhefx5/zZC54hL4/8NVf6EqZFISlFWXmq3C9MKyOhDRc3
Ig9AOx576QtnNboezDrhUduhhWNOQnKEj/7C1FmLI6XC9KgRrFNj7IQKZSeq/YJI
LIUQb5IiaTduQDOPx9U2zdMzp+5DuGm0KAxtC2viQwJzS/z4oCtDblci9S97JqTA
nQTJqpTmA+hZtDOm2ekL
=GjRH
-END PGP SIGNATURE-

Niko Tyni (3):
  Fix for Perl 5.22 compatibility
  Declare the package autopkgtestable
  releasing package libb-hooks-op-check-entersubforcv-perl version 0.09-4 
to unstable

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

---

This annotated tag includes the following new commits:

   new  100ab3b   Fix for Perl 5.22 compatibility
   new  867a2b8   Declare the package autopkgtestable
   new  d1e6bdc   releasing package libb-hooks-op-check-entersubforcv-perl 
version 0.09-4 to unstable

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/libb-hooks-op-check-entersubforcv-perl.git

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


[libb-hooks-op-check-entersubforcv-perl] 03/03: releasing package libb-hooks-op-check-entersubforcv-perl version 0.09-4 to unstable

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libb-hooks-op-check-entersubforcv-perl.

commit d1e6bdce523c15016326c1b919be016070838ae6
Author: Niko Tyni 
Date:   Sun Dec 27 11:53:33 2015 +0200

releasing package libb-hooks-op-check-entersubforcv-perl version 0.09-4 to 
unstable
---
 debian/changelog | 11 +--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 239221b..70652cf 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,15 @@
-libb-hooks-op-check-entersubforcv-perl (0.09-4) UNRELEASED; urgency=medium
+libb-hooks-op-check-entersubforcv-perl (0.09-4) unstable; urgency=medium
 
+  * Team upload.
+
+  [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
 
- -- Salvatore Bonaccorso   Sat, 16 Aug 2014 09:29:44 +0200
+  [ Niko Tyni ]
+  * Add a fix for Perl 5.22 compatibility. (Closes: #787499)
+  * Declare the package autopkgtestable.
+
+ -- Niko Tyni   Sun, 27 Dec 2015 11:53:17 +0200
 
 libb-hooks-op-check-entersubforcv-perl (0.09-3) unstable; urgency=low
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libb-hooks-op-check-entersubforcv-perl.git

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


[libconvert-nls-date-format-perl] 02/02: Update debian/changelog file

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libconvert-nls-date-format-perl.

commit 1249f83322d32f5809482e83204eb99dfbabafdf
Author: Salvatore Bonaccorso 
Date:   Sun Dec 27 12:30:30 2015 +0100

Update debian/changelog file

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

diff --git a/debian/changelog b/debian/changelog
index 59e4ad9..152f8e6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -13,6 +13,9 @@ libconvert-nls-date-format-perl (0.05-2) UNRELEASED; 
urgency=low
 
   [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
+  * Escape brace in regexp in Convert::NLS_DATE_FORMAT.
+Unescaped left brace used in regexp is deprecated and issues a warning
+under Perl 5.22. (Closes: #809093)
 
  -- Salvatore Bonaccorso   Sun, 06 Jan 2013 21:58:57 +0100
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libconvert-nls-date-format-perl.git

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


[libconvert-nls-date-format-perl] 01/02: Escape brace in regexp in Convert::NLS_DATE_FORMAT

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libconvert-nls-date-format-perl.

commit 6c070a728da69f89572ab47bf1a893258cfa0b73
Author: Salvatore Bonaccorso 
Date:   Sun Dec 27 12:23:08 2015 +0100

Escape brace in regexp in Convert::NLS_DATE_FORMAT

Unescaped left brace used in regexp is deprecated and issues a warning
under Perl 5.22.

Closes: #809093
---
 debian/patches/escape-brace-in-regex.patch | 21 +
 debian/patches/series  |  1 +
 2 files changed, 22 insertions(+)

diff --git a/debian/patches/escape-brace-in-regex.patch 
b/debian/patches/escape-brace-in-regex.patch
new file mode 100644
index 000..0ae9506
--- /dev/null
+++ b/debian/patches/escape-brace-in-regex.patch
@@ -0,0 +1,21 @@
+Description: Escape braces in regexp
+ Unescaped braces in regexp are deprecated and issue a warning
+ when used in Perl 5.22.
+Origin: vendor
+Bug-Debian: https://bugs.debian.org/809093
+Author: Salvatore Bonaccorso 
+Last-Update: 2015-12-27
+Forwarded: https://rt.cpan.org/Ticket/Display.html?id=110651
+Bug: https://rt.cpan.org/Ticket/Display.html?id=110651
+
+--- a/lib/Convert/NLS_DATE_FORMAT.pm
 b/lib/Convert/NLS_DATE_FORMAT.pm
+@@ -110,7 +110,7 @@ sub posix2oracle {
+ my ($format) = @_;
+ # regex from DateTime
+ $format =~ s/
+-(%{\w+})
++(%\{\w+\})
+ /
+ $formats{$1} ? $formats{$1} : "\%$1"
+ /sgex;
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..f147473
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+escape-brace-in-regex.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libconvert-nls-date-format-perl.git

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


[libconvert-nls-date-format-perl] branch master updated (8e5ff1e -> 1249f83)

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to branch master
in repository libconvert-nls-date-format-perl.

  from  8e5ff1e   update changelog
   new  6c070a7   Escape brace in regexp in Convert::NLS_DATE_FORMAT
   new  1249f83   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:
 debian/changelog   |  3 +++
 debian/patches/escape-brace-in-regex.patch | 21 +
 debian/patches/series  |  1 +
 3 files changed, 25 insertions(+)
 create mode 100644 debian/patches/escape-brace-in-regex.patch
 create mode 100644 debian/patches/series

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libconvert-nls-date-format-perl.git

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


[libconvert-nls-date-format-perl] branch master updated (1249f83 -> 5838989)

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to branch master
in repository libconvert-nls-date-format-perl.

  from  1249f83   Update debian/changelog file
   new  5838989   Update ordering of patch headers

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


Summary of changes:
 debian/patches/escape-brace-in-regex.patch | 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/libconvert-nls-date-format-perl.git

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


[libconvert-nls-date-format-perl] 01/01: Update ordering of patch headers

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libconvert-nls-date-format-perl.

commit 583898978a2cbdf1b5b4d90abb67abc7a5adde2e
Author: Salvatore Bonaccorso 
Date:   Sun Dec 27 12:38:22 2015 +0100

Update ordering of patch headers

Gbp-Dch: Ignore
---
 debian/patches/escape-brace-in-regex.patch | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/patches/escape-brace-in-regex.patch 
b/debian/patches/escape-brace-in-regex.patch
index 0ae9506..1d5eae8 100644
--- a/debian/patches/escape-brace-in-regex.patch
+++ b/debian/patches/escape-brace-in-regex.patch
@@ -2,11 +2,11 @@ Description: Escape braces in regexp
  Unescaped braces in regexp are deprecated and issue a warning
  when used in Perl 5.22.
 Origin: vendor
+Bug: https://rt.cpan.org/Ticket/Display.html?id=110651
 Bug-Debian: https://bugs.debian.org/809093
+Forwarded: https://rt.cpan.org/Ticket/Display.html?id=110651
 Author: Salvatore Bonaccorso 
 Last-Update: 2015-12-27
-Forwarded: https://rt.cpan.org/Ticket/Display.html?id=110651
-Bug: https://rt.cpan.org/Ticket/Display.html?id=110651
 
 --- a/lib/Convert/NLS_DATE_FORMAT.pm
 +++ b/lib/Convert/NLS_DATE_FORMAT.pm

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libconvert-nls-date-format-perl.git

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


[libconvert-nls-date-format-perl] 04/04: Prepare changelog for release

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libconvert-nls-date-format-perl.

commit cab78bdd8bc1bbb9de5150ee2b313d1ae223b589
Author: Salvatore Bonaccorso 
Date:   Sun Dec 27 12:56:32 2015 +0100

Prepare changelog for release

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

diff --git a/debian/changelog b/debian/changelog
index 152f8e6..32503dd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,6 @@
-libconvert-nls-date-format-perl (0.05-2) UNRELEASED; urgency=low
+libconvert-nls-date-format-perl (0.05-2) unstable; urgency=medium
+
+  * Team upload.
 
   [ Salvatore Bonaccorso ]
   * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
@@ -16,8 +18,11 @@ libconvert-nls-date-format-perl (0.05-2) UNRELEASED; 
urgency=low
   * Escape brace in regexp in Convert::NLS_DATE_FORMAT.
 Unescaped left brace used in regexp is deprecated and issues a warning
 under Perl 5.22. (Closes: #809093)
+  * Bump Debhelper compat level to 9
+  * Declare compliance with Debian policy 3.9.6
+  * Declare package as autopkgtestable
 
- -- Salvatore Bonaccorso   Sun, 06 Jan 2013 21:58:57 +0100
+ -- Salvatore Bonaccorso   Sun, 27 Dec 2015 12:59:23 +0100
 
 libconvert-nls-date-format-perl (0.05-1) unstable; urgency=low
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libconvert-nls-date-format-perl.git

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


[libconvert-nls-date-format-perl] annotated tag debian/0.05-2 created (now d28f672)

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to annotated tag debian/0.05-2
in repository libconvert-nls-date-format-perl.

at  d28f672   (tag)
   tagging  cab78bdd8bc1bbb9de5150ee2b313d1ae223b589 (commit)
  replaces  debian/0.05-1
 tagged by  Salvatore Bonaccorso
on  Sun Dec 27 13:01:40 2015 +0100

- Log -
tagging package libconvert-nls-date-format-perl version debian/0.05-2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCgAGBQJWf9MkAAoJEAVMuPMTQ89ET5sP/ip8np2lNLcmdn7/naI7fUZQ
X8TNnBTsJkbuQiN8c5VqWlk5xZZVw1BUCqyFx3nYfr+Rw/FGiffdxthFBWjZArXt
kLnj7Ok8JKqhRDgcJhvNVsIMVN9SnXkg+v29hNacg8s4FclzBIpw34gqzlLLiZKo
Plp9iNvQX12Z5pV8jZG57whuJuqWWTaVbnizqOx4WF0+tOYwXQNGKmmWTj0zwMsF
K7ZyHihcGvK7qsGS4l/4YmWLARXuXqUAxwpwrY/LB+2qi9VEMShHKEZKmyMP7ErO
CR3C9/1jK7M74Dvm6e8NQRC0h8VKJtKJjFmdWHq2n/9Yb5kRuQYkmIavkRfiB1Xj
tBuGgN6shRE8RjwkL7uIRep+9XT5T7A1Oef5mMXcyCTuKvGfi8JdYBHa4Odo5TV1
/WJitlI5tqSmw6AVnPDtWBzqRIL0y+f6QcXfWJj374KTyen3Td8IRyAAE0j9iOgg
6ps8WLBg2k2H7rZNe5wq4/yjXgBPFUZkw1ATImXMQ5yGS7vQ4oNW/2A4EtXz7R5O
YzkP6ZV7FB/u0rBWKvKv30Fbmp1ZqIUoLvqxCuNwHXedsMYFyVsD6rE7Qyu8MHi5
6OEoztU38FLzCJI2cJbJkre+Q2O0KniMe2YdJnoluvIHxD3FEX1rMN5p7mcHgmzy
fqhYsOEbQ5bGGLAmoKax
=r/R5
-END PGP SIGNATURE-

Axel Beckert (1):
  debian/copyright: migrate pre-1.0 format to 1.0 using "cme fix 
dpkg-copyright"

Salvatore Bonaccorso (13):
  Change Vcs-Git to canonical URI (git://anonscm.debian.org)
  update changelog
  Change search.cpan.org based URIs to metacpan.org based URIs
  update changelog
  Update Vcs-Browser URL to cgit web frontend
  update changelog
  Escape brace in regexp in Convert::NLS_DATE_FORMAT
  Update debian/changelog file
  Update ordering of patch headers
  Bump Debhelper compat level to 9
  Declare compliance with Debian policy 3.9.6
  Declare package as autopkgtestable
  Prepare changelog for release

gregor herrmann (2):
  Strip trailing slash from metacpan URLs.
  update changelog

---

This annotated tag includes the following new commits:

   new  39e6e41   Bump Debhelper compat level to 9
   new  e7ebf8c   Declare compliance with Debian policy 3.9.6
   new  7f51b39   Declare package as autopkgtestable
   new  cab78bd   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.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libconvert-nls-date-format-perl.git

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


[libconvert-nls-date-format-perl] 03/04: Declare package as autopkgtestable

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libconvert-nls-date-format-perl.

commit 7f51b398fd1efdd336f58ae5ea9638d5b4dfbc57
Author: Salvatore Bonaccorso 
Date:   Sun Dec 27 12:56:04 2015 +0100

Declare package as autopkgtestable
---
 debian/control | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/control b/debian/control
index 1a7cb47..f47c505 100644
--- a/debian/control
+++ b/debian/control
@@ -9,6 +9,7 @@ Standards-Version: 3.9.6
 Homepage: https://metacpan.org/release/Convert-NLS_DATE_FORMAT
 Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/libconvert-nls-date-format-perl.git
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libconvert-nls-date-format-perl.git
+Testsuite: autopkgtest-pkg-perl
 
 Package: libconvert-nls-date-format-perl
 Architecture: all

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libconvert-nls-date-format-perl.git

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


[libconvert-nls-date-format-perl] 02/04: Declare compliance with Debian policy 3.9.6

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libconvert-nls-date-format-perl.

commit e7ebf8ce7024e37d8ecdcc8fbecaf149e03c89d3
Author: Salvatore Bonaccorso 
Date:   Sun Dec 27 12:55:27 2015 +0100

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 4549212..1a7cb47 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,7 @@ Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: perl
 Maintainer: Debian Perl Group 
 Uploaders: gregor herrmann 
-Standards-Version: 3.9.2
+Standards-Version: 3.9.6
 Homepage: https://metacpan.org/release/Convert-NLS_DATE_FORMAT
 Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/libconvert-nls-date-format-perl.git
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libconvert-nls-date-format-perl.git

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libconvert-nls-date-format-perl.git

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


[libconvert-nls-date-format-perl] 01/04: Bump Debhelper compat level to 9

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libconvert-nls-date-format-perl.

commit 39e6e41ef550a8a5fc941123d93aff1282ee4a60
Author: Salvatore Bonaccorso 
Date:   Sun Dec 27 12:53:24 2015 +0100

Bump Debhelper compat 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 081a6b4..4549212 100644
--- a/debian/control
+++ b/debian/control
@@ -1,7 +1,7 @@
 Source: libconvert-nls-date-format-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 8)
+Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: perl
 Maintainer: Debian Perl Group 
 Uploaders: gregor herrmann 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libconvert-nls-date-format-perl.git

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


[libconvert-nls-date-format-perl] branch master updated (5838989 -> cab78bd)

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to branch master
in repository libconvert-nls-date-format-perl.

  from  5838989   Update ordering of patch headers
   new  39e6e41   Bump Debhelper compat level to 9
   new  e7ebf8c   Declare compliance with Debian policy 3.9.6
   new  7f51b39   Declare package as autopkgtestable
   new  cab78bd   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:
 debian/changelog | 9 +++--
 debian/compat| 2 +-
 debian/control   | 5 +++--
 3 files changed, 11 insertions(+), 5 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libconvert-nls-date-format-perl.git

___
Pkg-perl-cvs-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-dump-streamer-perl] annotated tag debian/2.39-2 created (now 9e29c15)

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to annotated tag debian/2.39-2
in repository libdata-dump-streamer-perl.

at  9e29c15   (tag)
   tagging  021bdace7ba03b6a8e10d14256fce9514711dcd5 (commit)
  replaces  debian/2.39-1
 tagged by  Niko Tyni
on  Sun Dec 27 17:57:49 2015 +0200

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

iQIcBAABCAAGBQJWgAp9AAoJEC7A/7O3MBsf32kP/RYrHOqEAKkwVq61w1aOOZwT
36q9xmkNOZrTFnSpZ6xtKO8AMpZtsfHjeNsaS9Fjaax5entF+2PAnT0vMTKLW3GX
coN+M/CDXq7UXLpoeiOlyT6mqKZaPf85qq5+tWfF8Q5hLA+DAyn9XEygx3RQhEXk
sZ2GR9nQmyErd73K1WIBU+h77wGHdbbmR/kUeGbZEocp/bDz3Eqrq9evFQviwXSL
VToxD6f4V4cIkXcxLBaHv118DlynXj0IfdEv3FZw94HtDsJ3WaRPym3sJkTAsoyE
2mj3ynfhCkWHRJdTTs3gMUTREI1QIcPWsUxP+K9lVGM9Z0DE0O1B/jUOQSJ34RD4
YUh4PVsAA1FQhB8AV549eyo/ckuzByWVB6p6V/hqUSw03D8/JKtHatt+1TkM6Hmu
wCT0eX8hETdMNLUXrj3cAoqWsx1xHbDlMsXQm39GVN3B0XBN5q6A8dZ5TF7089Ta
YL/o5tQIeGp8X5MhdRMbRAu7G5ryCh5oqInvAmxgcXjpsRvllUu1Kl6owtFsdWs7
kbIRKRtf8Nit6jSWkaRQCKZekLh/WYyeonyGwo5ji8xrzMrD2p5A5oUip6bmuSQ1
f17U4tNYt/3TPeAc7PpVBBey9hh9FKKBeawDV9GQO0ofxOLmAqGnKkuV2yOeGooz
eDH8gEb3pbiN6kvWcZS9
=IEns
-END PGP SIGNATURE-

Niko Tyni (2):
  Upgrade libpadwalker-perl to a hard dependency
  releasing package libdata-dump-streamer-perl version 2.39-2 to unstable

---

This annotated tag includes the following new commits:

   new  7d2da75   Upgrade libpadwalker-perl to a hard dependency
   new  021bdac   releasing package libdata-dump-streamer-perl version 
2.39-2 to unstable

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


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

___
Pkg-perl-cvs-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-dump-streamer-perl] 01/02: Upgrade libpadwalker-perl to a hard dependency

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libdata-dump-streamer-perl.

commit 7d2da75b60f3f1b4d16871da9bc1f6ac0bc0930c
Author: Niko Tyni 
Date:   Sun Dec 27 17:54:22 2015 +0200

Upgrade libpadwalker-perl to a hard dependency

We can downgrade this back if/when the fallback gets fixed
upstream.

Closes: #809110
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index bc41930..e5e7c1d 100644
--- a/debian/control
+++ b/debian/control
@@ -27,8 +27,8 @@ Architecture: any
 Depends: ${misc:Depends},
  ${perl:Depends},
  ${shlibs:Depends},
+ libpadwalker-perl,
  libb-utils-perl
-Recommends: libpadwalker-perl
 Description: module for serializing a data structure as Perl code
  Data::Dump::Streamer is a Perl module that serializes scalars, objects or
  reference variables and provides their contents in Perl syntax. Special data

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

___
Pkg-perl-cvs-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-dump-streamer-perl] 02/02: releasing package libdata-dump-streamer-perl version 2.39-2 to unstable

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libdata-dump-streamer-perl.

commit 021bdace7ba03b6a8e10d14256fce9514711dcd5
Author: Niko Tyni 
Date:   Sun Dec 27 17:56:19 2015 +0200

releasing package libdata-dump-streamer-perl version 2.39-2 to unstable
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 337947b..32ba569 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libdata-dump-streamer-perl (2.39-2) unstable; urgency=medium
+
+  * Upgrade libpadwalker-perl to a hard dependency. (Closes: #809110)
+
+ -- Niko Tyni   Sun, 27 Dec 2015 17:55:55 +0200
+
 libdata-dump-streamer-perl (2.39-1) unstable; urgency=medium
 
   * Import upstream version 2.39:

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

___
Pkg-perl-cvs-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-dump-streamer-perl] branch master updated (4586503 -> 021bdac)

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to branch master
in repository libdata-dump-streamer-perl.

  from  4586503   releasing package libdata-dump-streamer-perl version 
2.39-1
   new  7d2da75   Upgrade libpadwalker-perl to a hard dependency
   new  021bdac   releasing package libdata-dump-streamer-perl version 
2.39-2 to unstable

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


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

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

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


[libgraphviz-perl] 01/03: Add upstream repository information to debian/upstream/metadata

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

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

commit 7d512e72ab06564b951be2bf459e362005b176ba
Author: Niko Tyni 
Date:   Sun Dec 27 18:05:31 2015 +0200

Add upstream repository information to debian/upstream/metadata
---
 debian/upstream/metadata | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/upstream/metadata b/debian/upstream/metadata
index 3327032..650430f 100644
--- a/debian/upstream/metadata
+++ b/debian/upstream/metadata
@@ -3,3 +3,4 @@ Archive: CPAN
 Bug-Database: https://rt.cpan.org/Public/Dist/Display.html?Name=GraphViz
 Contact: Leon Brocard 
 Name: GraphViz
+Repository: https://github.com/ronsavage/GraphViz

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

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


[libgraphviz-perl] annotated tag debian/2.19-2 created (now 489fee1)

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to annotated tag debian/2.19-2
in repository libgraphviz-perl.

at  489fee1   (tag)
   tagging  08acdc065eae0c5d5b48133f1652b5ef4c4ecd05 (commit)
  replaces  debian/2.19-1
 tagged by  Niko Tyni
on  Sun Dec 27 18:17:44 2015 +0200

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

iQIcBAABCAAGBQJWgA8oAAoJEC7A/7O3MBsfLGoP/jKFGz1y8ACp3DxcU2KN0Hy1
RVyC/HJjchMLhMqxUAUe/P1mY/rqaPX/bAlpalorDkKkipt+IIXzdWpxmUfVnVyj
XeFLaN1aB9xrdkwLeWJm/AFtFbYebInaeNEcBYHF2Br0cgnnM7iprDnwODwMUCvt
y6IhF0ACc8PfcMYTjJILftbZVll2fwbB7K/lElaoxZi58sGdoTOrIWl14XO6bM8N
Ex5ZaWRq6rMzZHJfpYVTJEhNRkVpq/1TJwODS4vZgbCIRcmYFNA8PlygRC/eErWh
aabupXSvm38jCQY04X3fo3QHzMQcSBOs99E81kOXyo1veCC3kzFOUU1rBB4mPf+W
lR924xWR+GRWET0OghwIhNBVuwK+nfs7EZlU/qLkNvZREzCZG/yRC83UN7q/1F08
ob6z9xE5l8DDspA4RvM4XHSx8bbBcO/ehyfptBz7RXPf17Oh7wFaF2G27QhIMyJU
nRUtMjbLp8tlzou7D6GTC7297VcJ13Z1Qf4Fnwu/rwWw5hzsXoXvOmJbqhxijy1e
jx4SSSrGXQQoiHZHsFRcdxtlIJp1Dlocr0t5uf7yOFKXObM3wwB63WkWuC1unNGI
FFpCk5QwSLRiy2kRwF1GOj+cu091XSo8jPUbh3ujcTyUZUkKZ9RxG+Zkbkat4Oh9
x69KKcEjUF6NJTjzlFVO
=50ep
-END PGP SIGNATURE-

Niko Tyni (3):
  Add upstream repository information to debian/upstream/metadata
  Fix Devel::GraphVizProf module syntax
  releasing package libgraphviz-perl version 2.19-2 to unstable

---

This annotated tag includes the following new commits:

   new  7d512e7   Add upstream repository information to 
debian/upstream/metadata
   new  a653e42   Fix Devel::GraphVizProf module syntax
   new  08acdc0   releasing package libgraphviz-perl version 2.19-2 to 
unstable

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

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


[libgraphviz-perl] 02/03: Fix Devel::GraphVizProf module syntax

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

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

commit a653e42bbe7ba23e7d25d3db5bd1e49b9ea2663c
Author: Niko Tyni 
Date:   Sun Dec 27 18:10:58 2015 +0200

Fix Devel::GraphVizProf module syntax

The defined(@array) syntax became a hard failure with Perl 5.22.

Closes: #809095
---
 ...0001-Fix-Devel-GraphVizProf-module-syntax.patch | 38 ++
 debian/patches/series  |  1 +
 2 files changed, 39 insertions(+)

diff --git a/debian/patches/0001-Fix-Devel-GraphVizProf-module-syntax.patch 
b/debian/patches/0001-Fix-Devel-GraphVizProf-module-syntax.patch
new file mode 100644
index 000..c9c85d0
--- /dev/null
+++ b/debian/patches/0001-Fix-Devel-GraphVizProf-module-syntax.patch
@@ -0,0 +1,38 @@
+From 477b3a61eab6755032a39cd327f298799d81c4d0 Mon Sep 17 00:00:00 2001
+From: Niko Tyni 
+Date: Sun, 27 Dec 2015 18:10:58 +0200
+Subject: [PATCH] Fix Devel::GraphVizProf module syntax
+
+The defined(@array) syntax became a hard failure with Perl 5.22.
+
+Bug-Debian: https://bugs.debian.org/809095
+Bug: https://github.com/ronsavage/GraphViz/pull/3
+---
+ lib/Devel/GraphVizProf.pm | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/lib/Devel/GraphVizProf.pm b/lib/Devel/GraphVizProf.pm
+index b14dded..0e657fe 100644
+--- a/lib/Devel/GraphVizProf.pm
 b/lib/Devel/GraphVizProf.pm
+@@ -56,7 +56,7 @@ sub DB {
+   # evals which do not define subroutines will disappear.
+   no strict 'refs';
+   $DB::listings{$filename} = \@{"main::_<$filename"} if 
+-defined(@{"main::_<$filename"});
++@{"main::_<$filename"};
+   use strict 'refs';
+ 
+ #  warn $DB::prevl . " -> " . $line . "\n";
+@@ -197,7 +197,7 @@ sub sub {
+   if (defined($DB::sub{$DB::sub})) {
+ my($m,$s) = ($DB::sub{$DB::sub} =~ /.+(?=:)|[^:-]+/g);
+ $DB::profiles{$m}->[$s]++;
+-$DB::listings{$m} = \@{"main::_<$m"} if defined(@{"main::_<$m"});
++$DB::listings{$m} = \@{"main::_<$m"} if @{"main::_<$m"};
+   }
+   goto &$DB::sub;
+ }
+-- 
+2.6.4
+
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..ad16547
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+0001-Fix-Devel-GraphVizProf-module-syntax.patch

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

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


[libgraphviz-perl] 03/03: releasing package libgraphviz-perl version 2.19-2 to unstable

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

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

commit 08acdc065eae0c5d5b48133f1652b5ef4c4ecd05
Author: Niko Tyni 
Date:   Sun Dec 27 18:14:59 2015 +0200

releasing package libgraphviz-perl version 2.19-2 to unstable
---
 debian/changelog | 8 
 1 file changed, 8 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 0f60083..909987c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+libgraphviz-perl (2.19-2) unstable; urgency=medium
+
+  * Team upload.
+  * Add upstream repository information to debian/upstream/metadata
+  * Fix Devel::GraphVizProf module syntax (Closes: #809095)
+
+ -- Niko Tyni   Sun, 27 Dec 2015 18:14:43 +0200
+
 libgraphviz-perl (2.19-1) unstable; urgency=medium
 
   * Team upload.

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

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


[libgraphviz-perl] branch master updated (51fe6c4 -> 08acdc0)

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

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

  from  51fe6c4   we still need Module::Build
   new  7d512e7   Add upstream repository information to 
debian/upstream/metadata
   new  a653e42   Fix Devel::GraphVizProf module syntax
   new  08acdc0   releasing package libgraphviz-perl version 2.19-2 to 
unstable

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 +
 ...0001-Fix-Devel-GraphVizProf-module-syntax.patch | 38 ++
 debian/patches/series  |  1 +
 debian/upstream/metadata   |  1 +
 4 files changed, 48 insertions(+)
 create mode 100644 
debian/patches/0001-Fix-Devel-GraphVizProf-module-syntax.patch
 create mode 100644 debian/patches/series

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

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


[libnet-managesieve-perl] branch master updated (8a14db8 -> a0c59db)

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to branch master
in repository libnet-managesieve-perl.

  from  8a14db8   update changelog
   new  9614354   Escape brace in regexp
   new  b65b0bb   Refresh debian/copyright file format
   new  a0c59db   Update debian/changelog file

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   | 11 +++
 debian/copyright   | 29 -
 debian/patches/escape-brace-in-regex.patch | 21 +
 debian/patches/series  |  1 +
 4 files changed, 49 insertions(+), 13 deletions(-)
 create mode 100644 debian/patches/escape-brace-in-regex.patch
 create mode 100644 debian/patches/series

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

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


[libnet-managesieve-perl] 02/03: Refresh debian/copyright file format

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libnet-managesieve-perl.

commit b65b0bb1163d639bed927ac2c93529558a20
Author: Salvatore Bonaccorso 
Date:   Sun Dec 27 18:04:20 2015 +0100

Refresh debian/copyright file format

Update format specification to 1.0 copyright-format.

Add missing Files: * stanza for upstream files.

Explicitly refer to Debian systems in general instead of only Debian
GNU/Linux systems.

Explicitly refer to GPL-1 license text in common-licenses.
---
 debian/copyright | 29 -
 1 file changed, 16 insertions(+), 13 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index 16521bc..9acd99d 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,8 +1,9 @@
-Format-Specification: 
http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=135
-Maintainer: Steffen Kaiser
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: Net-ManageSieve
+Upstream-Contact: Steffen Kaiser
 Source: https://metacpan.org/release/Net-ManageSieve
-Name: Net-ManageSieve
 
+Files: *
 Copyright: 2008-2010, Steffen Kaiser
 License: Artistic or GPL-1+
 
@@ -13,15 +14,17 @@ Copyright:
 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 GNU/Linux systems, the complete text of the Artistic License
-can be found in `/usr/share/common-licenses/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 GNU/Linux systems, the complete text of the GNU General
-Public License can be found in `/usr/share/common-licenses/GPL'
+ 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'.

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

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


[libnet-managesieve-perl] 03/03: Update debian/changelog file

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libnet-managesieve-perl.

commit a0c59db93e7881c685a27faa25b22880e62f91b6
Author: Salvatore Bonaccorso 
Date:   Sun Dec 27 18:06:11 2015 +0100

Update debian/changelog file

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

diff --git a/debian/changelog b/debian/changelog
index b7f5e0b..50300bc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -32,6 +32,17 @@ libnet-managesieve-perl (0.12-1) UNRELEASED; urgency=low
   [ gregor herrmann ]
   * Drop disable-signature-test.patch. The patched file is gone.
 
+  [ Salvatore Bonaccorso ]
+  * Escape brace in regexp.
+Unescaped left brace used in regexp is deprecated and issues a warning
+under Perl 5.22. (Closes: #809102)
+  * Refresh debian/copyright file format.
+Update format specification to 1.0 copyright-format.
+Add missing Files: * stanza for upstream files.
+Explicitly refer to Debian systems in general instead of only Debian
+GNU/Linux systems.
+Explicitly refer to GPL-1 license text in common-licenses.
+
  -- gregor herrmann   Fri, 20 Jan 2012 20:50:00 +0100
 
 libnet-managesieve-perl (0.10-1) unstable; urgency=low

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

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


[libnet-managesieve-perl] 01/03: Escape brace in regexp

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libnet-managesieve-perl.

commit 961435492c4fd4a54efbec12645c192573a045a6
Author: Salvatore Bonaccorso 
Date:   Sun Dec 27 18:00:44 2015 +0100

Escape brace in regexp

Unescaped left brace used in regexp is deprecated and issues a warning
under Perl 5.22.

Closes: #809102
---
 debian/patches/escape-brace-in-regex.patch | 21 +
 debian/patches/series  |  1 +
 2 files changed, 22 insertions(+)

diff --git a/debian/patches/escape-brace-in-regex.patch 
b/debian/patches/escape-brace-in-regex.patch
new file mode 100644
index 000..81edae5
--- /dev/null
+++ b/debian/patches/escape-brace-in-regex.patch
@@ -0,0 +1,21 @@
+Description: Escape braces in regexp
+ Unescaped braces in regexp are deprecated and issue a warning
+ when used in Perl 5.22.
+Origin: vendor
+Bug: https://rt.cpan.org/Ticket/Display.html?id=110664
+Bug-Debian: https://bugs.debian.org/809102
+Forwarded: https://rt.cpan.org/Ticket/Display.html?id=110664
+Author: Salvatore Bonaccorso 
+Last-Update: 2015-12-27
+
+--- a/lib/Net/ManageSieve.pm
 b/lib/Net/ManageSieve.pm
+@@ -1034,7 +1034,7 @@ sub _token {
+   $l =~ s/\A[[:blank:]]+//;
+   }
+ 
+-  if($l =~ /\A{(\d+)\+?}\r*\Z/) { # The next $1 octets are the token
++  if($l =~ /\A\{(\d+)\+?\}\r*\Z/) {   # The next $1 octets are the 
token
+   my $cnt = $1;
+   $l = '';
+   while($cnt > 0) {   # Need some characters still
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..f147473
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+escape-brace-in-regex.patch

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

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


[libhtml-defang-perl] 02/03: Fix regexp syntax for Perl 5.22, eliminating new warnings.

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libhtml-defang-perl.

commit a67f75015478853a3f2b026d02c116ea2e6f890a
Author: Niko Tyni 
Date:   Sun Dec 27 18:50:07 2015 +0200

Fix regexp syntax for Perl 5.22, eliminating new warnings.

Closes: #809096
---
 .../0001-Fix-regexp-syntax-for-Perl-5.22.patch |  51 ++
 ...x-test-script-regexp-syntax-for-Perl-5.22.patch | 918 +
 debian/patches/series  |   2 +
 3 files changed, 971 insertions(+)

diff --git a/debian/patches/0001-Fix-regexp-syntax-for-Perl-5.22.patch 
b/debian/patches/0001-Fix-regexp-syntax-for-Perl-5.22.patch
new file mode 100644
index 000..466e00c
--- /dev/null
+++ b/debian/patches/0001-Fix-regexp-syntax-for-Perl-5.22.patch
@@ -0,0 +1,51 @@
+From f88618b06c4b8d2dee5bd38211c0e29703a648f8 Mon Sep 17 00:00:00 2001
+From: Niko Tyni 
+Date: Sun, 27 Dec 2015 18:22:25 +0200
+Subject: [PATCH 1/2] Fix regexp syntax for Perl 5.22
+
+Perl 5.22 introduced the warning
+
+ Unescaped left brace in regex is deprecated, passed through in regex
+
+which triggers in these regexps.
+
+Bug-Debian: https://bugs.debian.org/809096
+Bug: https://rt.cpan.org/Public/Bug/Display.html?id=110663
+---
+ lib/HTML/Defang.pm | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/lib/HTML/Defang.pm b/lib/HTML/Defang.pm
+index c97b7b3..61794d8 100644
+--- a/lib/HTML/Defang.pm
 b/lib/HTML/Defang.pm
+@@ -157,7 +157,7 @@ my $Executables = '([^@]\.com|'.
+   '.*\.(exe|cmd|bat|pif|scr|sys|sct|lnk|dll'.
+   '|vbs?|vbe|hta|shb|shs|hlp|chm|eml|wsf|wsh|js'.
+   '|asx|wm.|mdb|mht|msi|msp|cpl|lib|reg))';
+-my $SrcBanStd  = 
qr/^([A-Za-z]*script|.*\&{|mocha|about|opera|mailto:|hcp:|\/(dev|proc)|\\|file|smb|cid:${Executables}(@|\?|$))/i;
++my $SrcBanStd  = 
qr/^([A-Za-z]*script|.*\&\{|mocha|about|opera|mailto:|hcp:|\/(dev|proc)|\\|file|smb|cid:${Executables}(@|\?|$))/i;
+ 
+ my %Rules = 
+ (
+@@ -178,7 +178,7 @@ my %Rules =
+   "form-method"  => qr/^(get|post)$/i,
+   "frame"=> 
qr/^(void|above|below|hsides|vsides|lhs|rhs|box|border)$/i,
+   # href: Not javascript, vbs or vbscript
+-  "href" => [ 
qr/(?i:^([a-z]*script\s*:|.*\&{|mocha|hcp|opera\s*:|about\s*:|smb|\/dev\/|<))|[^\x00-\x7f]/
 ],
++  "href" => [ 
qr/(?i:^([a-z]*script\s*:|.*\&\{|mocha|hcp|opera\s*:|about\s*:|smb|\/dev\/|<))|[^\x00-\x7f]/
 ],
+   "usemap-href"  => qr/^#[A-Za-z0-9_.-]+$/,  # this is not really a href at 
all!
+   "input-size"   => qr/^(\d{1,4})$/, # some browsers freak out with very 
large widgets
+   "input-type"   => 
qr/^(button|checkbox|file|hidden|image|password|radio|readonly|reset|submit|text)$/i,
+@@ -204,7 +204,7 @@ my %Rules =
+ #  "style"=> 
qr/expression|eval|script:|mocha:|\&{|\@import|(? qr/^.*$/s,
+ #kc In addition to this, we could strip all 'javascript:|expression|' etc. 
from all attributes(in attribute_cleanup())
+-  "stylesheet"   => [ qr/expression|eval|script:|mocha:|\&{|\@import/i ], # 
stylesheets are forbidden if Embedded => 1.  css positioning can be allowed in 
an iframe.
++  "stylesheet"   => [ qr/expression|eval|script:|mocha:|\&\{|\@import/i ], # 
stylesheets are forbidden if Embedded => 1.  css positioning can be allowed in 
an iframe.
+   # NB see also `process_stylesheet' below
+   "style-type"   => [ qr/script|mocha/i ],
+   "size" => qr/^[\d.]+(px|%)?$/i,
+-- 
+2.6.4
+
diff --git 
a/debian/patches/0002-Fix-test-script-regexp-syntax-for-Perl-5.22.patch 
b/debian/patches/0002-Fix-test-script-regexp-syntax-for-Perl-5.22.patch
new file mode 100644
index 000..775386e
--- /dev/null
+++ b/debian/patches/0002-Fix-test-script-regexp-syntax-for-Perl-5.22.patch
@@ -0,0 +1,918 @@
+From d61140731d698d62258a7c8bb6b649cb7a4a7ea6 Mon Sep 17 00:00:00 2001
+From: Niko Tyni 
+Date: Sun, 27 Dec 2015 18:46:17 +0200
+Subject: [PATCH 2/2] Fix test script regexp syntax for Perl 5.22
+
+Perl 5.22 introduced the warning
+
+ Unescaped left brace in regex is deprecated, passed through in regex
+
+which triggers in these regexps.
+
+Bug: https://rt.cpan.org/Public/Bug/Display.html?id=110663
+---
+ t/01_basic.t |   4 +-
+ t/02_xss.t   | Bin 45684 -> 45691 bytes
+ t/03_styles.t| 136 -
+ t/04_imports.t   |   2 +-
+ t/05_callbacks.t | 442 +++
+ t/06_unicode.t   |   2 +-
+ 6 files changed, 293 insertions(+), 293 deletions(-)
+
+diff --git a/t/01_basic.t b/t/01_basic.t
+index 91a91f0..b1efcc3 100755
+--- a/t/01_basic.t
 b/t/01_basic.t
+@@ -456,8 +456,8 @@ $H = 

[libhtml-defang-perl] 03/03: releasing package libhtml-defang-perl version 1.04-3 to unstable

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libhtml-defang-perl.

commit 22cbaaf74cc2e3eee3215bae78c8c55c4f3760db
Author: Niko Tyni 
Date:   Sun Dec 27 18:57:24 2015 +0200

releasing package libhtml-defang-perl version 1.04-3 to unstable
---
 debian/changelog | 12 ++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 90935e2..dba414e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,16 @@
-libhtml-defang-perl (1.04-3) UNRELEASED; urgency=medium
+libhtml-defang-perl (1.04-3) unstable; urgency=medium
 
+  * Team upload.
+
+  [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
 
- -- Salvatore Bonaccorso   Sat, 16 Aug 2014 09:32:08 +0200
+  [ Niko Tyni ]
+  * Declare the package autopkgtestable.
+  * Fix regexp syntax for Perl 5.22, eliminating new warnings.
+(Closes: #809096)
+
+ -- Niko Tyni   Sun, 27 Dec 2015 18:57:12 +0200
 
 libhtml-defang-perl (1.04-2) unstable; urgency=low
 

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

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


[libhtml-defang-perl] 01/03: Declare the package autopkgtestable

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libhtml-defang-perl.

commit e888afa9c4f9e14f0a40d3d7acbcf0c604a58a5c
Author: Niko Tyni 
Date:   Sun Dec 27 18:20:35 2015 +0200

Declare the package autopkgtestable
---
 debian/control | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/control b/debian/control
index 78cbd68..4bbfc37 100644
--- a/debian/control
+++ b/debian/control
@@ -12,6 +12,7 @@ Standards-Version: 3.9.5
 Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libhtml-defang-perl
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libhtml-defang-perl.git
 Homepage: http://search.cpan.org/dist/HTML-Defang/
+Testsuite: autopkgtest-pkg-perl
 
 Package: libhtml-defang-perl
 Architecture: all

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

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


[libhtml-defang-perl] branch master updated (f98f4f0 -> 22cbaaf)

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to branch master
in repository libhtml-defang-perl.

  from  f98f4f0   update changelog
   new  e888afa   Declare the package autopkgtestable
   new  a67f750   Fix regexp syntax for Perl 5.22, eliminating new warnings.
   new  22cbaaf   releasing package libhtml-defang-perl version 1.04-3 to 
unstable

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   |  12 +-
 debian/control |   1 +
 .../0001-Fix-regexp-syntax-for-Perl-5.22.patch |  51 ++
 ...x-test-script-regexp-syntax-for-Perl-5.22.patch | 918 +
 debian/patches/series  |   2 +
 5 files changed, 982 insertions(+), 2 deletions(-)
 create mode 100644 debian/patches/0001-Fix-regexp-syntax-for-Perl-5.22.patch
 create mode 100644 
debian/patches/0002-Fix-test-script-regexp-syntax-for-Perl-5.22.patch
 create mode 100644 debian/patches/series

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

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


[libhtml-defang-perl] annotated tag debian/1.04-3 created (now 3423850)

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to annotated tag debian/1.04-3
in repository libhtml-defang-perl.

at  3423850   (tag)
   tagging  22cbaaf74cc2e3eee3215bae78c8c55c4f3760db (commit)
  replaces  debian/1.04-2
 tagged by  Niko Tyni
on  Sun Dec 27 18:59:12 2015 +0200

- Log -
Debian release 1.04-3
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJWgBjgAAoJEC7A/7O3MBsfjL0P/0LOaA4cOLX7gOtzKL+p1JC0
Tggw/2P+ixZVe/eUSjpLsEECXBxuUqT0mrDt0IEpYEthlHMOTu6l57IEnxuAvz/q
EXmhuC+Sa3UUeWiBU/eNDP0DiFiyNoOQzPn3yN0c7UVihA8oc2zRTo8AkAFjRC1h
vNRxRDsjzMa6veLjb6Wzstbxbi/oMjDysvtHh9n+8Rt7ts1LQwGTmMW/U7J3c2fP
pks/qbhWOx8RtR2jitfzsAgOEX/+yZHMEqwVJxcHnPNl/itipS8DZsiuRK1lr3lM
/0QNQLOMPHaZ82vJFRiV/stnB1t2m9HtXs81Ucfwf6RUbhv/NmC4DBqcApFUhaF3
+7kuqA3Lvr/yO5ISvkbCgNBOlzN2n0tRqxVhaPyDEU5uhZLQDXCHGZ+VQaVJesyb
XDluu7uu5LQWZrBWiwRIwuh2iKa9uCQDheXbXdLMSRYXqvvjYeum2pzbpUyhad19
7Ta2/MOlrCzJOFJRAiMUKPPmkFKM6EEM0PmTGDOhT9oSr/9e9e9pqXVlW2O0MIN2
oFxG62yevNI9NY/sdwtEzGGmn5LYkthpi2sBeLFKbvQG44xv130pvdtAM7UI0X9Q
uM7o8FxPZ+w8oJPnMBSaddFWnlOKQppxqlDEjFgTDTZCA0UOzMpPteGaFmkm1lVE
/Iktg7qb9tyxipxZpukP
=7Gd3
-END PGP SIGNATURE-

Niko Tyni (3):
  Declare the package autopkgtestable
  Fix regexp syntax for Perl 5.22, eliminating new warnings.
  releasing package libhtml-defang-perl version 1.04-3 to unstable

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

---

This annotated tag includes the following new commits:

   new  e888afa   Declare the package autopkgtestable
   new  a67f750   Fix regexp syntax for Perl 5.22, eliminating new warnings.
   new  22cbaaf   releasing package libhtml-defang-perl version 1.04-3 to 
unstable

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

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


[libpdf-fdf-simple-perl] branch master updated (8fec385 -> 2e09a48)

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

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

  from  8fec385   releasing package libpdf-fdf-simple-perl version 0.21-2 
to unstable
   new  80a8b39   Exempt PDF::FDF::Simple::Builder from the autopkgtest 
syntax check
   new  2e09a48   releasing package libpdf-fdf-simple-perl version 0.21-3 
to unstable

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


Summary of changes:
 debian/changelog  | 8 
 debian/tests/pkg-perl/syntax-skip | 1 +
 2 files changed, 9 insertions(+)
 create mode 100644 debian/tests/pkg-perl/syntax-skip

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

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


[libpdf-fdf-simple-perl] 02/02: releasing package libpdf-fdf-simple-perl version 0.21-3 to unstable

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

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

commit 2e09a484f1951b32f4e2958c3c6428abc8b29a78
Author: Niko Tyni 
Date:   Sun Dec 27 20:06:15 2015 +0200

releasing package libpdf-fdf-simple-perl version 0.21-3 to unstable
---
 debian/changelog | 8 
 1 file changed, 8 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index a094352..c4ff80c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+libpdf-fdf-simple-perl (0.21-3) unstable; urgency=medium
+
+  * Team upload.
+  * Exempt PDF::FDF::Simple::Builder from the autopkgtest syntax check.
+(Closes: #809105)
+
+ -- Niko Tyni   Sun, 27 Dec 2015 20:05:55 +0200
+
 libpdf-fdf-simple-perl (0.21-2) unstable; urgency=medium
 
   * Team upload.

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

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


[libpdf-fdf-simple-perl] 01/02: Exempt PDF::FDF::Simple::Builder from the autopkgtest syntax check

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

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

commit 80a8b392c2293c18fd996e9f87118af412e4e39e
Author: Niko Tyni 
Date:   Sun Dec 27 20:04:20 2015 +0200

Exempt PDF::FDF::Simple::Builder from the autopkgtest syntax check

A runtime dependency (however weak) on Module::Build seems wrong.

Closes: #809105
---
 debian/tests/pkg-perl/syntax-skip | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/tests/pkg-perl/syntax-skip 
b/debian/tests/pkg-perl/syntax-skip
new file mode 100644
index 000..74d4f86
--- /dev/null
+++ b/debian/tests/pkg-perl/syntax-skip
@@ -0,0 +1 @@
+PDF/FDF/Simple/Builder.pm

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

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


[libpdf-fdf-simple-perl] annotated tag debian/0.21-3 created (now ec933a4)

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to annotated tag debian/0.21-3
in repository libpdf-fdf-simple-perl.

at  ec933a4   (tag)
   tagging  2e09a484f1951b32f4e2958c3c6428abc8b29a78 (commit)
  replaces  debian/0.21-2
 tagged by  Niko Tyni
on  Sun Dec 27 20:08:17 2015 +0200

- Log -
Debian release 0.21-3
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJWgCkRAAoJEC7A/7O3MBsfFqsQAKHaTTwx8QqmmWLJ+kr6w38R
R1wHh+LbWOPo/WyL4Ac6h/5pmnWpRMmHPZzOn2kZgF9fH05p3s8Vcc4XJkjNhjiT
EkVPPq/a4mdsO0fsBW8t0hPqAlCypm3yPW1dRWn7NphEtfvYrzjhZ1Rdk3xtyerf
XnykNveUBaA5sIqeX0n+fQ9TtQK29uDk2AYAlkqowPNGdy4p0dbYopsdw3pI9vqj
CzRFWjt8rHOPg/XC3PbHOUjuEZxxsWA6QGGbecRbTbGPtzIuKxZJoHxSn1rENqpx
3mUa8RS3uwdgr8wm/XpzLZSXz8GkKy3d0GAeIFNPOGp946VUZQRxCFyb7ZeP8An5
L0eYevYrC1fkVuLwtO0MPUUep/rtuYWnA9MTi9VTnQya51GnBTU0400TOwBgGj97
Yxc+Lrs6v57k1HT8faRVV02w7G3G+35e5ALlvu6svZbvSanfeWB9smGma1rFy+g1
BOEeVN8+a1GHjrWNPl4x3C2NZqfbU5e3GdKPCMLDUIt5hACBxeKRoOanJ/a0sqoJ
BzB1NeOTajNly3BgYDYIa+1rN4kY/fFc72+WU332FHsLddw5DM74yG/XVWO5JBvO
VAftebhT55HcEEPdYWKe2QnFlAYYP6BixHQEb4nNFmaI1iMv19pjW4aJJ26uL9lo
V0slzErYQ5Eb83Q65/e4
=TMyS
-END PGP SIGNATURE-

Niko Tyni (2):
  Exempt PDF::FDF::Simple::Builder from the autopkgtest syntax check
  releasing package libpdf-fdf-simple-perl version 0.21-3 to unstable

---

This annotated tag includes the following new commits:

   new  80a8b39   Exempt PDF::FDF::Simple::Builder from the autopkgtest 
syntax check
   new  2e09a48   releasing package libpdf-fdf-simple-perl version 0.21-3 
to unstable

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


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

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


[libnet-managesieve-perl] 02/05: Declare compliance with Debian policy 3.9.6

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libnet-managesieve-perl.

commit 607182a591cd651718088bf7f2d1b8792b0a5fe9
Author: Salvatore Bonaccorso 
Date:   Sun Dec 27 19:43:06 2015 +0100

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 c02981c..8cf3bfd 100644
--- a/debian/control
+++ b/debian/control
@@ -6,7 +6,7 @@ Build-Depends-Indep: perl, libtest-pod-coverage-perl,
  libtest-pod-perl
 Maintainer: Debian Perl Group 
 Uploaders: Jonathan Yu , Ansgar Burchardt 
-Standards-Version: 3.9.0
+Standards-Version: 3.9.6
 Homepage: https://metacpan.org/release/Net-ManageSieve
 Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libnet-managesieve-perl.git
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libnet-managesieve-perl.git

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

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


[libnet-managesieve-perl] 04/05: Declare package as autopkgtestable

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libnet-managesieve-perl.

commit 89bea47086e766a0f28450e474f3d1c31a3415b3
Author: Salvatore Bonaccorso 
Date:   Sun Dec 27 19:50:10 2015 +0100

Declare package as autopkgtestable
---
 debian/control | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/control b/debian/control
index 8cf3bfd..fe75fd6 100644
--- a/debian/control
+++ b/debian/control
@@ -10,6 +10,7 @@ Standards-Version: 3.9.6
 Homepage: https://metacpan.org/release/Net-ManageSieve
 Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libnet-managesieve-perl.git
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libnet-managesieve-perl.git
+Testsuite: autopkgtest-pkg-perl
 
 Package: libnet-managesieve-perl
 Architecture: all

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

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


[libnet-managesieve-perl] annotated tag debian/0.12-1 created (now a1b7db5)

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to annotated tag debian/0.12-1
in repository libnet-managesieve-perl.

at  a1b7db5   (tag)
   tagging  6ffca62689dd5d1f35848cbe7adb1ccba4112f59 (commit)
  replaces  upstream/0.12
 tagged by  Salvatore Bonaccorso
on  Sun Dec 27 19:51:01 2015 +0100

- Log -
tagging package libnet-managesieve-perl version debian/0.12-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCgAGBQJWgDMVAAoJEAVMuPMTQ89EqlQQAIc954Ov/60kjAIP9mO3zFI2
O+7t4AQ5vzwOKMmyBulhI6bDmgYZGcpKJXuSQ7cQteUxSTxtjxW9z/ExoPtXg592
gioXzODTSGmmJ1V71nAuACniosrX2DczTc4446xybF2iiiZ53kn5UtJI5SqKov+j
BCKn3hW5QjYyzbGMLI61OvRBRwxEhf5lzy988/xfl4UkmptEj04cWZ/E40XYKsrY
TKocHXwsQnO/WeamsmUI0xmsmSoxK6C7Si9SKSXF88gTSW76IQP8NwHtQKD5AlhU
gS3FISaOa2Fq/jo6RWPwbajDPuftbZcYfPtCkUBilzXVQSQ1lXol8IKf1dKSNyRe
mmKMVuMTULAmUMVhVytDrw/fXtbZACZ3vH3rJCXer5VMqKmlGiRoQN6utRpJDfNc
UHb9yoS+Bzg90zZzzcMYYHJlvintOIHifyLsIqJhR43b3Tk9po6XMCCnv5IzRsmz
kZHGGoEnlLWgy/ghUJ83K8fMQYOdKy9RqSytmUdEKgfiyj+Nt83ETCzpoAck87jn
H6Q2Xbzpi1S2j4BD1qZv3SJN6lW6gDfzvOHfCRExUWL6AlTwLI1sNy1c5yvtq/aK
0lu2dycD2xxfHPkF6T/HF99SlXaaV/ASbS3hr1YbXXee1hNm7ZcjiUDrQ7nbc7J7
ek8zCzuAbxbS0emTEcOx
=0jp8
-END PGP SIGNATURE-

Ansgar Burchardt (6):
  * New upstream release.
  Update my email address.
  debian/control: Convert Vcs-* fields to Git.
  Merge branch 'upstream'
  Merge commit 'upstream/0.11'
  IGNORE-VERSION: 0.10-2

Christoph Berg (3):
  [svn-inject] Applying Debian modifications to trunk
  Remove myself from uploaders.
  releasing version 0.09-1

Jonathan Yu (7):
  * New upstream release
  Added a patch to disable signature tests unless we have Internet
  Added the patch, undo the modified test
  Quit after the test is skipped
  dch -r. Lintian clean, everything looks OK. Ready for upload :-)
  * New upstream release
  IGNORE-VERSION: 0.09-1

Nathan Handler (3):
  [mass-commit] debian/watch: Update to ignore development releases.
  Undo failed [mass-commit]
  [mass-commit] debian/watch: Modify to ignore development releases.

Ryan Niebur (2):
  clean up duplicated changelog entries from nhandler's mass-commit
  mass updated jawnsy's email address

Salvatore Bonaccorso (16):
  [mass-commit] Replace versioned dependency on perl (>= 5.6.0-{12,16}) 
with unversioned dependency on perl (as permitted by Debian Policy 3.8.3)
  [packagecheck] fixed Vcs-(Git|Browser)/Homepage field(s) in 
debian/control and/or URL in debian/watch and/or rmdir /usr/{lib|share}/perl5 
in debian/rules.
  Change Vcs-Git to canonical URI (git://anonscm.debian.org)
  update changelog
  Change search.cpan.org based URIs to metacpan.org based URIs
  update changelog
  Update Vcs-Browser URL to cgit web frontend
  update changelog
  Escape brace in regexp
  Refresh debian/copyright file format
  Update debian/changelog file
  Bump Debhelper compat level to 9
  Declare compliance with Debian policy 3.9.6
  Add fix-spelling-error-in-manpage.patch patch
  Declare package as autopkgtestable
  Prepare changelog for release

gregor herrmann (7):
  fix version in changelog
  Merge commit 'upstream/0.12'
  New upstream release 0.12.
  Strip trailing slash from metacpan URLs.
  update changelog
  Drop disable-signature-test.patch. The patched file is gone.
  update changelog

---

This annotated tag includes the following new commits:

   new  b7dc1f3   Bump Debhelper compat level to 9
   new  607182a   Declare compliance with Debian policy 3.9.6
   new  f6672cc   Add fix-spelling-error-in-manpage.patch patch
   new  89bea47   Declare package as autopkgtestable
   new  6ffca62   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.


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

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


[libnet-managesieve-perl] 01/05: Bump Debhelper compat level to 9

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libnet-managesieve-perl.

commit b7dc1f3db97ac62e8b74c2d8e7b8fa01f3937ee5
Author: Salvatore Bonaccorso 
Date:   Sun Dec 27 19:41:58 2015 +0100

Bump Debhelper compat 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 7f8f011..ec63514 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-7
+9
diff --git a/debian/control b/debian/control
index 230781d..c02981c 100644
--- a/debian/control
+++ b/debian/control
@@ -1,7 +1,7 @@
 Source: libnet-managesieve-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7)
+Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: perl, libtest-pod-coverage-perl,
  libtest-pod-perl
 Maintainer: Debian Perl Group 

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

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


[libnet-managesieve-perl] 03/05: Add fix-spelling-error-in-manpage.patch patch

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libnet-managesieve-perl.

commit f6672ccb217a1c79b1fd0fd7ea8e5493609c9565
Author: Salvatore Bonaccorso 
Date:   Sun Dec 27 19:48:50 2015 +0100

Add fix-spelling-error-in-manpage.patch patch

Fix spelling errors in Net::ManageSieve manpage.
---
 debian/patches/fix-spelling-error-in-manpage.patch | 27 ++
 debian/patches/series  |  1 +
 2 files changed, 28 insertions(+)

diff --git a/debian/patches/fix-spelling-error-in-manpage.patch 
b/debian/patches/fix-spelling-error-in-manpage.patch
new file mode 100644
index 000..93cfbd0
--- /dev/null
+++ b/debian/patches/fix-spelling-error-in-manpage.patch
@@ -0,0 +1,27 @@
+Description: Fix spelling errors in manpage
+Origin: vendor
+Bug: https://rt.cpan.org/Ticket/Display.html?id=110668
+Forwarded: https://rt.cpan.org/Ticket/Display.html?id=110668
+Author: Salvatore Bonaccorso 
+Last-Update: 2015-12-27
+
+--- a/lib/Net/ManageSieve.pm
 b/lib/Net/ManageSieve.pm
+@@ -23,7 +23,7 @@ A new Net::ManageSieve object must be cr
+ this has been done, all ManageSieve commands are accessed through
+ this object.
+ 
+-I: ManageSieve allows to manipulate scripts on a host running a
++I: ManageSieve allows one to manipulate scripts on a host running a
+ ManageSieve service, this module does not perform, validate or something
+ like that Sieve scipts themselves.
+ 
+@@ -92,7 +92,7 @@ this subroutine is called with the argum
+ 
+ The return value controls, whether or not the error message will be
+ assigned to C<$@>. Private functions may just signal that an error
+-occured, but keep C<$@> unchanged. In this case C<$@> remains unchanged,
++occurred, but keep C<$@> unchanged. In this case C<$@> remains unchanged,
+ if code_ref returns true.
+ 
+ I: Even if the code ref returns false, C<$@> might bi clobberred
diff --git a/debian/patches/series b/debian/patches/series
index f147473..408b3e7 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 escape-brace-in-regex.patch
+fix-spelling-error-in-manpage.patch

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

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


[libnet-managesieve-perl] branch master updated (a0c59db -> 6ffca62)

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to branch master
in repository libnet-managesieve-perl.

  from  a0c59db   Update debian/changelog file
   new  b7dc1f3   Bump Debhelper compat level to 9
   new  607182a   Declare compliance with Debian policy 3.9.6
   new  f6672cc   Add fix-spelling-error-in-manpage.patch patch
   new  89bea47   Declare package as autopkgtestable
   new  6ffca62   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:
 debian/changelog   | 15 ++--
 debian/compat  |  2 +-
 debian/control |  5 ++--
 debian/patches/fix-spelling-error-in-manpage.patch | 27 ++
 debian/patches/series  |  1 +
 5 files changed, 40 insertions(+), 10 deletions(-)
 create mode 100644 debian/patches/fix-spelling-error-in-manpage.patch

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

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


[libnet-managesieve-perl] 05/05: Prepare changelog for release

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libnet-managesieve-perl.

commit 6ffca62689dd5d1f35848cbe7adb1ccba4112f59
Author: Salvatore Bonaccorso 
Date:   Sun Dec 27 19:50:45 2015 +0100

Prepare changelog for release

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

diff --git a/debian/changelog b/debian/changelog
index 50300bc..6bea7de 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,6 @@
-libnet-managesieve-perl (0.12-1) UNRELEASED; urgency=low
+libnet-managesieve-perl (0.12-1) unstable; urgency=medium
 
-  IGNORE-VERSION: 0.11-1
-  Only applied our patch.
-
-  IGNORE-VERSION: 0.12-1
-  Only removes signature test
+  * Team upload.
 
   [ Ansgar Burchardt ]
   * New upstream release 0.11.
@@ -42,8 +38,13 @@ libnet-managesieve-perl (0.12-1) UNRELEASED; urgency=low
 Explicitly refer to Debian systems in general instead of only Debian
 GNU/Linux systems.
 Explicitly refer to GPL-1 license text in common-licenses.
+  * Bump Debhelper compat level to 9
+  * Declare compliance with Debian policy 3.9.6
+  * Add fix-spelling-error-in-manpage.patch patch.
+Fix spelling errors in Net::ManageSieve manpage.
+  * Declare package as autopkgtestable
 
- -- gregor herrmann   Fri, 20 Jan 2012 20:50:00 +0100
+ -- Salvatore Bonaccorso   Sun, 27 Dec 2015 19:50:37 +0100
 
 libnet-managesieve-perl (0.10-1) unstable; urgency=low
 

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

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


[libtap-parser-sourcehandler-pgtap-perl] annotated tag debian/3.31-2 created (now 0983186)

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to annotated tag debian/3.31-2
in repository libtap-parser-sourcehandler-pgtap-perl.

at  0983186   (tag)
   tagging  2b268cc3c24d757750814f5c636aeb69e0ee4ad6 (commit)
  replaces  debian/3.29-1.2
 tagged by  Niko Tyni
on  Sun Dec 27 21:22:16 2015 +0200

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

iQIcBAABCAAGBQJWgDpoAAoJEC7A/7O3MBsfYcEP/Asdb3QWE5Ew4+6m3sQwj0Gd
ojju5grZIXSYPAZe5hrNcJ2hU7KhUEoibEJdY7cKmJg51yC35coS2NgkPbW6RnTd
BHprb5ICslXAVAirDIecoWOrpmByVYIZIR7js6B7YYug1oS32MVY2DZEfWafxQov
X04nQ6ggm/7q0g3eUZR8xaS5uyxBtOp8xorrFYciqQgPql9kQ7SbsKEJv/0nfXUP
30np1YLblTRuTwo0+0E05MYZiO8bIbIrygt5ZWwr9SISyaOEP1ijCwMUk5SF3DYZ
6bz7wnIJ+03wZXGhqzXlGqRKyuDsZsX3E0cYE/3ETFPl9B57lYp117svPyIUsz9h
8W4PlEBso2jLhZ8URK6W0Tu1awWJqWsl0Kj52kbn2FdMyk6evlRlIA4RI7by+8np
u/VGPIFW4PupQUeaslYfuF9dtauJYoQAcG1TH6IFpRilWwPZjNafUBvBEsRrCzbS
5mn98PyDC29IvWxiECnCKaiThdy7eFfQ0P8ebNkphHgXk+nD0ZuVqvDLaM9jlTtZ
/aHHmMZf9HS9DOfVXwCAvDUVDGwvXSfgvGy8Ng53hZMDfXc282VneGgz1gp1pD5P
d+i5x2Y+cgLKaJ2xKQbcb3fx0jY8hOaZIkc8Z7OBNknLZZiq3TyTHtP6AgtL+cXE
CyVJXLntdPYxP5LzxvME
=NZMg
-END PGP SIGNATURE-

Christoph Berg (4):
  Moving the package into the pkg-perl and pkg-postgresql umbrellas.
  Imported Upstream version 3.31
  Merge tag 'upstream/3.31'
  releasing package libtap-parser-sourcehandler-pgtap-perl version 3.31-1

Niko Tyni (2):
  Fix t/scripts/psql shebang for the autopkgtest checks
  Releasing 3.31-2 to unstable

---

This annotated tag includes the following new commits:

   new  85c9dc7   Fix t/scripts/psql shebang for the autopkgtest checks
   new  2b268cc   Releasing 3.31-2 to unstable

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


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtap-parser-sourcehandler-pgtap-perl.git

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


[libtap-parser-sourcehandler-pgtap-perl] branch master updated (e2ac5ad -> 2b268cc)

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to branch master
in repository libtap-parser-sourcehandler-pgtap-perl.

  from  e2ac5ad   releasing package libtap-parser-sourcehandler-pgtap-perl 
version 3.31-1
   new  85c9dc7   Fix t/scripts/psql shebang for the autopkgtest checks
   new  2b268cc   Releasing 3.31-2 to unstable

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


Summary of changes:
 debian/changelog  | 7 +++
 debian/tests/pkg-perl/smoke-setup | 7 +++
 2 files changed, 14 insertions(+)
 create mode 100755 debian/tests/pkg-perl/smoke-setup

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtap-parser-sourcehandler-pgtap-perl.git

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


[libtap-parser-sourcehandler-pgtap-perl] branch pristine-tar updated (768f268 -> 9a72820)

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to branch pristine-tar
in repository libtap-parser-sourcehandler-pgtap-perl.

  from  768f268   pristine-tar data for 
libtap-parser-sourcehandler-pgtap-perl_3.29.orig.tar.gz
   new  9a72820   pristine-tar data for 
libtap-parser-sourcehandler-pgtap-perl_3.31.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:
 ...arser-sourcehandler-pgtap-perl_3.31.orig.tar.gz.delta | Bin 0 -> 1338 bytes
 ...p-parser-sourcehandler-pgtap-perl_3.31.orig.tar.gz.id |   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 
libtap-parser-sourcehandler-pgtap-perl_3.31.orig.tar.gz.delta
 create mode 100644 libtap-parser-sourcehandler-pgtap-perl_3.31.orig.tar.gz.id

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtap-parser-sourcehandler-pgtap-perl.git

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


[libtap-parser-sourcehandler-pgtap-perl] 01/01: pristine-tar data for libtap-parser-sourcehandler-pgtap-perl_3.31.orig.tar.gz

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch pristine-tar
in repository libtap-parser-sourcehandler-pgtap-perl.

commit 9a72820c44e3e53d5279eb07d146ca723e0ace71
Author: Niko Tyni 
Date:   Sun Dec 27 21:17:44 2015 +0200

pristine-tar data for 
libtap-parser-sourcehandler-pgtap-perl_3.31.orig.tar.gz
---
 ...arser-sourcehandler-pgtap-perl_3.31.orig.tar.gz.delta | Bin 0 -> 1338 bytes
 ...p-parser-sourcehandler-pgtap-perl_3.31.orig.tar.gz.id |   1 +
 2 files changed, 1 insertion(+)

diff --git a/libtap-parser-sourcehandler-pgtap-perl_3.31.orig.tar.gz.delta 
b/libtap-parser-sourcehandler-pgtap-perl_3.31.orig.tar.gz.delta
new file mode 100644
index 000..be9c381
Binary files /dev/null and 
b/libtap-parser-sourcehandler-pgtap-perl_3.31.orig.tar.gz.delta differ
diff --git a/libtap-parser-sourcehandler-pgtap-perl_3.31.orig.tar.gz.id 
b/libtap-parser-sourcehandler-pgtap-perl_3.31.orig.tar.gz.id
new file mode 100644
index 000..d608196
--- /dev/null
+++ b/libtap-parser-sourcehandler-pgtap-perl_3.31.orig.tar.gz.id
@@ -0,0 +1 @@
+473a835f5d8c578cd25a18c93c896e7ae6e9e481

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtap-parser-sourcehandler-pgtap-perl.git

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


[libtap-parser-sourcehandler-pgtap-perl] 02/02: Releasing 3.31-2 to unstable

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libtap-parser-sourcehandler-pgtap-perl.

commit 2b268cc3c24d757750814f5c636aeb69e0ee4ad6
Author: Niko Tyni 
Date:   Sun Dec 27 21:19:56 2015 +0200

Releasing 3.31-2 to unstable
---
 debian/changelog | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index b82d253..9d17081 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libtap-parser-sourcehandler-pgtap-perl (3.31-2) unstable; urgency=medium
+
+  * Team upload.
+  * Fix t/scripts/psql shebang for the autopkgtest checks. (Closes: #809106)
+
+ -- Niko Tyni   Sun, 27 Dec 2015 21:19:26 +0200
+
 libtap-parser-sourcehandler-pgtap-perl (3.31-1) unstable; urgency=medium
 
   * New upstream release.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtap-parser-sourcehandler-pgtap-perl.git

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


[libtap-parser-sourcehandler-pgtap-perl] 01/02: Fix t/scripts/psql shebang for the autopkgtest checks

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libtap-parser-sourcehandler-pgtap-perl.

commit 85c9dc79154cb1542f577e3dc6690c12d3b16e20
Author: Niko Tyni 
Date:   Sun Dec 27 20:46:55 2015 +0200

Fix t/scripts/psql shebang for the autopkgtest checks

Closes: #809106
---
 debian/tests/pkg-perl/smoke-setup | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/debian/tests/pkg-perl/smoke-setup 
b/debian/tests/pkg-perl/smoke-setup
new file mode 100755
index 000..2711b77
--- /dev/null
+++ b/debian/tests/pkg-perl/smoke-setup
@@ -0,0 +1,7 @@
+#!/bin/sh
+grep -q "eval 'exec" $TDIR/t/scripts/psql || exit 0
+echo "$0: fixing $TDIR/t/scripts/psql"
+
+# gosh, I would much rather have used Module::Build fix_shebang_lines(),
+# but it wouldn't cooperate
+sed -i '1,4 d; 5i#!/usr/bin/perl' $TDIR/t/scripts/psql

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtap-parser-sourcehandler-pgtap-perl.git

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


[libperl6-export-attrs-perl] branch master updated (e0e1c20 -> cc61bc1)

2015-12-27 Thread Jonas Smedegaard
This is an automated email from the git hooks/post-receive script.

js pushed a change to branch master
in repository libperl6-export-attrs-perl.

  from  e0e1c20   Prepare for release: Update changelog and copyright hints.
  adds  4ecc5e8   Imported Upstream version 0.05
   new  e1ab379   Merge tag 'upstream/0.05'
   new  76471c7   Update tarball md5sum.
   new  cc61bc1   Prepare for release: Update changelog.

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


Summary of changes:
 Changes   | 6 ++
 META.json | 3 ++-
 META.yml  | 3 ++-
 Makefile.PL   | 5 +++--
 README| 2 +-
 debian/changelog  | 7 +++
 debian/rules  | 2 +-
 lib/Perl6/Export/Attrs.pm | 4 ++--
 8 files changed, 24 insertions(+), 8 deletions(-)

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

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


[libperl6-export-attrs-perl] 01/03: Merge tag 'upstream/0.000005'

2015-12-27 Thread Jonas Smedegaard
This is an automated email from the git hooks/post-receive script.

js pushed a commit to branch master
in repository libperl6-export-attrs-perl.

commit e1ab379d421223f062fd67534f769267eda17fc1
Merge: e0e1c20 4ecc5e8
Author: Jonas Smedegaard 
Date:   Mon Dec 28 00:52:39 2015 +0530

Merge tag 'upstream/0.05'

Upstream version 0.05

# gpg: Underskrift lavet man 28 dec 2015 00:52:36 IST
# gpg:bruger RSA nøgle 0x2C7C3146C1A00121
# gpg: God underskrift fra »Jonas Smedegaard «
# gpg:også kendt som »Jonas Smedegaard «
# gpg:også kendt som »Jonas Smedegaard «
# gpg:også kendt som »[jpeg image of size 4165]«

 Changes   | 6 ++
 META.json | 3 ++-
 META.yml  | 3 ++-
 Makefile.PL   | 5 +++--
 README| 2 +-
 lib/Perl6/Export/Attrs.pm | 4 ++--
 6 files changed, 16 insertions(+), 7 deletions(-)

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

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

[libperl6-export-attrs-perl] 03/03: Prepare for release: Update changelog.

2015-12-27 Thread Jonas Smedegaard
This is an automated email from the git hooks/post-receive script.

js pushed a commit to branch master
in repository libperl6-export-attrs-perl.

commit cc61bc19952840c6590a4329df7c07f4c8f04b32
Author: Jonas Smedegaard 
Date:   Mon Dec 28 00:56:38 2015 +0530

Prepare for release: Update changelog.
---
 debian/changelog | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 2598f9f..ddf88b8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libperl6-export-attrs-perl (0.05-1) unstable; urgency=medium
+
+  [ upstream ]
+  * New release.
+
+ -- Jonas Smedegaard   Mon, 28 Dec 2015 00:56:11 +0530
+
 libperl6-export-attrs-perl (0.04-3) unstable; urgency=medium
 
   * Add patch 1001 to fix regression in exporting subroutines.

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

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


[libperl6-export-attrs-perl] branch pristine-tar updated (9e1d3c4 -> a8ed737)

2015-12-27 Thread Jonas Smedegaard
This is an automated email from the git hooks/post-receive script.

js pushed a change to branch pristine-tar
in repository libperl6-export-attrs-perl.

  from  9e1d3c4   pristine-tar data for 
libperl6-export-attrs-perl_0.04.orig.tar.gz
   new  a8ed737   pristine-tar data for 
libperl6-export-attrs-perl_0.05.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:
 libperl6-export-attrs-perl_0.05.orig.tar.gz.delta | Bin 0 -> 1124 bytes
 libperl6-export-attrs-perl_0.05.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libperl6-export-attrs-perl_0.05.orig.tar.gz.delta
 create mode 100644 libperl6-export-attrs-perl_0.05.orig.tar.gz.id

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

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


[libperl6-export-attrs-perl] annotated tag debian/0.000005-1 created (now ce85215)

2015-12-27 Thread Jonas Smedegaard
This is an automated email from the git hooks/post-receive script.

js pushed a change to annotated tag debian/0.05-1
in repository libperl6-export-attrs-perl.

at  ce85215   (tag)
   tagging  cc61bc19952840c6590a4329df7c07f4c8f04b32 (commit)
  replaces  debian/0.04-3
 tagged by  Jonas Smedegaard
on  Mon Dec 28 00:59:21 2015 +0530

- Log -
libperl6-export-attrs-perl Debian release 0.05-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJWgDwRAAoJECx8MUbBoAEhF5wP/3DhkVHzWaVRztNNmebWQJFG
+JF3e8ydJJPXSjx3NV4jYTELNaANpOHsK8Xn015EnIt9ZE+oyOFS/8SwiF+ahTCf
3MvX4X49FxFJR6oc17EST7aul9ufYNF54qIfRYnlrlu41ooEx5Gr1vOVwfwwasPy
DK8Q/l1AZjl4a7ENj/MRN5NrKMSnANZBIjoTcGlR1vxASjmeGuiTq0IVbKei4t38
H5WoXLcBhUlaqdItuTiOcE4QOZvrVmZ2vYhIUPkbtRsuYIRY4z7+8KaOrR9JFDVr
Yx9fvKQNh5oPZbpC9weAUMbAxhg4+qfHqHPKPMspelxFkJqCNJJRlDydADPN0wYj
WajBx7UUCPZTHI18EmGH+Lj+PoDwnUwtjlUuGGvkNkZvDa2TsQ8YDDSNPaH/aGta
Pt71qZ296lcmnImj4sKrUo1x+/vco3LS6yq9JNs3Y5LCvQFc6bQ3zigHLE1a4m/X
PTrjP3mMMi0ss8Z+BkNL8UWzm/nIw09aAvVSmT0d7bmgbo89wE5yPASLH0uGH1Jb
zKqfSSrqVY6cqWCM14VWdXADXmG94lprj+Ch3ZKDCzLB8vkHmKbFWK6jd5qEzI/r
aRqtD4SqAJ+SiPGJ7xrXriy43Wnf8hhn1pUX9V1cRJTDJzkArKJLUhrOsnS3tUfI
6k9ynW6Ttny/DTiQk/Vk
=VAy5
-END PGP SIGNATURE-

Jonas Smedegaard (4):
  Imported Upstream version 0.05
  Merge tag 'upstream/0.05'
  Update tarball md5sum.
  Prepare for release: Update changelog.

---

This annotated tag includes the following new commits:

   new  e1ab379   Merge tag 'upstream/0.05'
   new  76471c7   Update tarball md5sum.
   new  cc61bc1   Prepare for release: Update changelog.

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


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

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


[libperl6-export-attrs-perl] 02/03: Update tarball md5sum.

2015-12-27 Thread Jonas Smedegaard
This is an automated email from the git hooks/post-receive script.

js pushed a commit to branch master
in repository libperl6-export-attrs-perl.

commit 76471c7afc3e8d369040a6712c203531fcf9c6f4
Author: Jonas Smedegaard 
Date:   Mon Dec 28 00:54:27 2015 +0530

Update tarball md5sum.
---
 debian/rules | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/rules b/debian/rules
index 508cd0f..0ae3709 100755
--- a/debian/rules
+++ b/debian/rules
@@ -26,7 +26,7 @@ pkg = $(DEB_SOURCE_PACKAGE)
 DEB_UPSTREAM_PACKAGE = Perl6-Export-Attrs
 #DEB_UPSTREAM_URL = http://www.cpan.org/modules/by-module/Perl6-Export-Attrs
 DEB_UPSTREAM_URL = http://search.cpan.org/CPAN/authors/id/D/DC/DCONWAY
-DEB_UPSTREAM_TARBALL_MD5 = e65c7eece62f9892a79ad6ce00aa95bd
+DEB_UPSTREAM_TARBALL_MD5 = aeb0ca750ae349937fff127aacdfb89d
 
 # Build-depend unversioned on debhelper
 #  TODO: Drop when adopted in cdbs

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

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


[libperl6-export-attrs-perl] 01/01: pristine-tar data for libperl6-export-attrs-perl_0.000005.orig.tar.gz

2015-12-27 Thread Jonas Smedegaard
This is an automated email from the git hooks/post-receive script.

js pushed a commit to branch pristine-tar
in repository libperl6-export-attrs-perl.

commit a8ed73707b06696dc3e2807de118773ad9fb104b
Author: Jonas Smedegaard 
Date:   Mon Dec 28 00:52:36 2015 +0530

pristine-tar data for libperl6-export-attrs-perl_0.05.orig.tar.gz
---
 libperl6-export-attrs-perl_0.05.orig.tar.gz.delta | Bin 0 -> 1124 bytes
 libperl6-export-attrs-perl_0.05.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libperl6-export-attrs-perl_0.05.orig.tar.gz.delta 
b/libperl6-export-attrs-perl_0.05.orig.tar.gz.delta
new file mode 100644
index 000..c4a6a11
Binary files /dev/null and 
b/libperl6-export-attrs-perl_0.05.orig.tar.gz.delta differ
diff --git a/libperl6-export-attrs-perl_0.05.orig.tar.gz.id 
b/libperl6-export-attrs-perl_0.05.orig.tar.gz.id
new file mode 100644
index 000..e0388e7
--- /dev/null
+++ b/libperl6-export-attrs-perl_0.05.orig.tar.gz.id
@@ -0,0 +1 @@
+4b3adc9f0811fafab7e18bd96adce9953e3edf52

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

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


[libperl6-export-attrs-perl] annotated tag upstream/0.000005 created (now 21f8d97)

2015-12-27 Thread Jonas Smedegaard
This is an automated email from the git hooks/post-receive script.

js pushed a change to annotated tag upstream/0.05
in repository libperl6-export-attrs-perl.

at  21f8d97   (tag)
   tagging  4ecc5e8dd26b5c29845709b7bcf43115ec76fba7 (commit)
  replaces  upstream/0.04
 tagged by  Jonas Smedegaard
on  Mon Dec 28 00:52:36 2015 +0530

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

iQIcBAABAgAGBQJWgDp8AAoJECx8MUbBoAEhDywQAKjQyuYTYS360Ibm/YE9e7Vg
vIA3n9soCA9tDLgmHnVF+fCWUA3+iY7TyhfY+9mQmvqRg2TQD6CHadKLpuXkHrLw
5mHKcZWB+15YsXpmd4OYyo5nPiadKwZsZemZeewPbW9lvy37byY/yPF8ObRbTyZm
GM/onJfkOchDLdk2yhZcexsbzinaE8+fdHxRcqwW2I11pYLAEyKKHD57cO7196Zf
AcEUkrfzOSDyJeei9T46YWETdepZfTwSRII0XEypLwkt+oAuqGUoW6cuuxKyIyHN
pTfqK6fOavXTbnVqXXKlptLJ5f9SbUoezRurfwQzLhojukWzfwBIIwBsb4gLYtAV
BN9bl2CG+2zoHvAa3ORrL4CPfdQSduEFDiVfKmTOuK8sDY0+Aiv9tEdFHA7qTbKR
n+1AJrKYlcgPJNqlQrpcVgLgxTN7D4Rt/ZC734nPazBWG5GNgJwPkgygMnlDiW+q
gWy76IpBDYh6Q2E7LAlP1FSiXzEP0hK9TzW37TL6lMkr3NWqKzJKSQOs3MrOY0o6
SDUSVMT3+JvV2ov9823hC/qTf9eJT8BSGH7CU8AZMbABbgcTYFfu2yPdCqv8VBc7
xce0FX0L3sREHOiUy6+6lqGzalyOVXtK+jn4tQAIOVWBghagPtdoYBkC8uqZZXSN
NASkE2qeoSERStP3tJSK
=9MlA
-END PGP SIGNATURE-

Jonas Smedegaard (1):
  Imported Upstream version 0.05

---

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/libperl6-export-attrs-perl.git

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


[libpandoc-elements-perl] 01/01: pristine-tar data for libpandoc-elements-perl_0.15.orig.tar.gz

2015-12-27 Thread Jonas Smedegaard
This is an automated email from the git hooks/post-receive script.

js pushed a commit to branch pristine-tar
in repository libpandoc-elements-perl.

commit 3f28414bfc2529be53794b1020fcc937827a42fd
Author: Jonas Smedegaard 
Date:   Mon Dec 28 00:58:36 2015 +0530

pristine-tar data for libpandoc-elements-perl_0.15.orig.tar.gz
---
 libpandoc-elements-perl_0.15.orig.tar.gz.delta | Bin 0 -> 2582 bytes
 libpandoc-elements-perl_0.15.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libpandoc-elements-perl_0.15.orig.tar.gz.delta 
b/libpandoc-elements-perl_0.15.orig.tar.gz.delta
new file mode 100644
index 000..d7dece1
Binary files /dev/null and b/libpandoc-elements-perl_0.15.orig.tar.gz.delta 
differ
diff --git a/libpandoc-elements-perl_0.15.orig.tar.gz.id 
b/libpandoc-elements-perl_0.15.orig.tar.gz.id
new file mode 100644
index 000..83638fe
--- /dev/null
+++ b/libpandoc-elements-perl_0.15.orig.tar.gz.id
@@ -0,0 +1 @@
+1a888713ba87402c6841e40b514d9ced971fec05

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

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


[libpandoc-elements-perl] 01/02: Merge tag 'upstream/0.15'

2015-12-27 Thread Jonas Smedegaard
This is an automated email from the git hooks/post-receive script.

js pushed a commit to branch master
in repository libpandoc-elements-perl.

commit c97d9d84d40a723c710d9b662e2325ed44e016a8
Merge: f2dcacf aa0a6a8
Author: Jonas Smedegaard 
Date:   Mon Dec 28 00:58:39 2015 +0530

Merge tag 'upstream/0.15'

Upstream version 0.15

# gpg: Underskrift lavet man 28 dec 2015 00:58:36 IST
# gpg:bruger RSA nøgle 0x2C7C3146C1A00121
# gpg: God underskrift fra »Jonas Smedegaard «
# gpg:også kendt som »Jonas Smedegaard «
# gpg:også kendt som »Jonas Smedegaard «
# gpg:også kendt som »[jpeg image of size 4165]«

 Changes|  18 ++
 MANIFEST   |  13 +-
 META.json  |   6 +-
 META.yml   |   6 +-
 README |  30 ++-
 cpanfile   |   7 +
 examples/comments.pl   |   0
 examples/deemph.pl |   0
 examples/myemph.pl |  31 +++
 examples/remove-unnumbered-sections.pl |  28 +++
 examples/theorem.pl|  52 
 lib/Pandoc/Elements.pm | 327 -
 lib/Pandoc/Filter.pm   | 103 
 lib/Pandoc/Filter/Lazy.pm  | 114 +
 lib/Pandoc/Walker.pm   | 160 +++-
 lib/Pod/Simple/Pandoc.pm   | 432 +
 script/{pandoc-walk => pandocwalk} |  40 ++-
 script/pod2pandoc  | 100 
 t/filter.t |  36 ++-
 t/lazy.t   |  45 
 t/match.t  |  30 +++
 t/outline  |   2 +-
 t/{pandoc-walk.t => pandocwalk.t}  |  12 +-
 t/pod-simple-pandoc.t  |  31 +++
 t/stringify.t  |   7 +-
 t/walker.t |  23 +-
 26 files changed, 1370 insertions(+), 283 deletions(-)

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

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

[libpandoc-elements-perl] branch master updated (f2dcacf -> 9d41d28)

2015-12-27 Thread Jonas Smedegaard
This is an automated email from the git hooks/post-receive script.

js pushed a change to branch master
in repository libpandoc-elements-perl.

  from  f2dcacf   Prepare for release: Update changelog and copyright hints.
  adds  fbce251   Adjust documentation
  adds  3f62137   Add draft of Pod::Simple::Pandoc
  adds  7ddc2e1   Finish Pod::Simple::Pandoc and pod2pandoc
  adds  7a29ecf   Add string method and tidy code
  adds  611c728   0.12
  adds  cae2e12   0.12
  adds  644ddcb   Test and example of filter with format
  adds  0f89ff9   Add method match and examples
  adds  42e3759   Documentation
  adds  b4f3b58   Renamed script pandoc-walk to pandocwalk
  adds  b67b68e   0.13
  adds  cbc719b   0.13
  adds  37f5404   Add missing Pod NAME
  adds  eb4aaf3   Refactor and introduce Pandoc::Filter::Lazy
  adds  e66808f   0.14
  adds  fad4c8c   0.14
  adds  7402bef   fix Pod::Simple::Pandoc for old Pod::Simple
  adds  6b707fc   Support more lazy filter scripts
  adds  fa4e9cb   Add example to remove unnumbered sections
  adds  1458d62   0.15
  adds  fc41f52   0.15
  adds  aa0a6a8   Imported Upstream version 0.15
   new  c97d9d8   Merge tag 'upstream/0.15'
   new  9d41d28   Prepare for release: Update changelog and copyright hints.

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|  18 ++
 MANIFEST   |  13 +-
 META.json  |   6 +-
 META.yml   |   6 +-
 README |  30 ++-
 cpanfile   |   7 +
 debian/changelog   |  17 ++
 debian/copyright_hints |  15 +-
 examples/comments.pl   |   0
 examples/deemph.pl |   0
 examples/myemph.pl |  31 +++
 examples/remove-unnumbered-sections.pl |  28 +++
 examples/theorem.pl|  52 
 lib/Pandoc/Elements.pm | 327 -
 lib/Pandoc/Filter.pm   | 103 
 lib/Pandoc/Filter/Lazy.pm  | 114 +
 lib/Pandoc/Walker.pm   | 160 +++-
 lib/Pod/Simple/Pandoc.pm   | 432 +
 script/{pandoc-walk => pandocwalk} |  40 ++-
 script/pod2pandoc  | 100 
 t/filter.t |  36 ++-
 t/lazy.t   |  45 
 t/match.t  |  30 +++
 t/outline  |   2 +-
 t/{pandoc-walk.t => pandocwalk.t}  |  12 +-
 t/pod-simple-pandoc.t  |  31 +++
 t/stringify.t  |   7 +-
 t/walker.t |  23 +-
 28 files changed, 1399 insertions(+), 286 deletions(-)
 mode change 100644 => 100755 examples/comments.pl
 mode change 100644 => 100755 examples/deemph.pl
 create mode 100644 examples/myemph.pl
 create mode 100644 examples/remove-unnumbered-sections.pl
 create mode 100644 examples/theorem.pl
 create mode 100644 lib/Pandoc/Filter/Lazy.pm
 create mode 100644 lib/Pod/Simple/Pandoc.pm
 rename script/{pandoc-walk => pandocwalk} (52%)
 create mode 100755 script/pod2pandoc
 create mode 100644 t/lazy.t
 create mode 100644 t/match.t
 rename t/{pandoc-walk.t => pandocwalk.t} (62%)
 create mode 100644 t/pod-simple-pandoc.t

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

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


[libpandoc-elements-perl] annotated tag upstream/0.15 created (now 8315cef)

2015-12-27 Thread Jonas Smedegaard
This is an automated email from the git hooks/post-receive script.

js pushed a change to annotated tag upstream/0.15
in repository libpandoc-elements-perl.

at  8315cef   (tag)
   tagging  aa0a6a8bb63ec6de85d1aecef9f90b96960c9855 (commit)
  replaces  upstream/0.11
 tagged by  Jonas Smedegaard
on  Mon Dec 28 00:58:36 2015 +0530

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

iQIcBAABAgAGBQJWgDvkAAoJECx8MUbBoAEhEUoP/0cUW5ts2178TQeCGv4cD+fE
QK4ZRuQG8NAIge4MQOKtMgCbDPz7NmYIBJF2V4prVzgpdW2sld1qGNRg8vIIzgu8
7c0rclDg4OQJuEfUTJCItk3Nh3lDaj4Ko2fnzdZgB3/J4yHcCy5D4XJ4Nql7YZze
GkHzpVjpM6/wFDqaMH1TTk6xwnojlHbS3IRixbc/FG4q3zC5Obq3pgBeDnEupHTQ
EyCaYU+Q2DoeHku12pvZVv704B8y+jVWb4tU1R0rFPwy/p2L5ajfsJJe4h4mUtUU
3jSJGLqV1+O49O63v5Kmw1ndQnJhjq59llbxo13T8e863R3lhkGuh2rubov886XG
1KN5RdXM+45IRGTsRJHJ7xe/l5v0NnFw+L+vZdNxC57ZzLj6jESCxnxM6oiKr77W
P9qEEnjvHk9lQGJ2XQsSeUyUa1hifgyeTBuHDRBTyhoCk4Pe6+3uOQuXTdhigQIb
q9kP/nkOXk5kO3fXbguGJmBcfGPKryM+Ln/cKYxPAHZMAB50HlTOJ+QW22t8iLaj
/In5icAeAdTTKrzIsoZfubOPOzvAk6LpGwn+XyLqRdyDXTglBHJ+jgSkiStVIBCV
4DPTmxTMYb70ptbztZiQoA91jwy1LRTyjABXr9bqscugr4f71ZGRyOj4ci5TsOcW
8Yt6jdhn2DXuejBzwVJS
=9baZ
-END PGP SIGNATURE-

Jakob Voss (21):
  Adjust documentation
  Add draft of Pod::Simple::Pandoc
  Finish Pod::Simple::Pandoc and pod2pandoc
  Add string method and tidy code
  0.12
  0.12
  Test and example of filter with format
  Add method match and examples
  Documentation
  Renamed script pandoc-walk to pandocwalk
  0.13
  0.13
  Add missing Pod NAME
  Refactor and introduce Pandoc::Filter::Lazy
  0.14
  0.14
  fix Pod::Simple::Pandoc for old Pod::Simple
  Support more lazy filter scripts
  Add example to remove unnumbered sections
  0.15
  0.15

Jonas Smedegaard (1):
  Imported Upstream version 0.15

---

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

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


[libpandoc-elements-perl] annotated tag debian/0.15-1 created (now 5822fd0)

2015-12-27 Thread Jonas Smedegaard
This is an automated email from the git hooks/post-receive script.

js pushed a change to annotated tag debian/0.15-1
in repository libpandoc-elements-perl.

at  5822fd0   (tag)
   tagging  9d41d289195cfa53b54dc8324ecb78dbe5c99aae (commit)
  replaces  upstream/0.15
 tagged by  Jonas Smedegaard
on  Mon Dec 28 01:10:19 2015 +0530

- Log -
libpandoc-elements-perl Debian release 0.15-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJWgD6jAAoJECx8MUbBoAEhbNYP/3naIx7+Am7m4+sVVdhw0XDM
xX8EFSUBQzix5xCm8GgwMjOA5di8ecTFAgAVgyecg2ZyHcpVADg+4piPIdA7soYC
53qK5C9aJSaVg7kH9wdCROHzl/t6dkMD1NYqz6RNKsgbQvn3htLR4OIX1MiDXqR0
FYaAzJ9MkRHNCoW95aoGZ+gCYfYDGn/o3ywJECQXMG8MPi1voO7ahFjfFNyq1O+o
Ci0TCXgCD4GWFU1T5SqALX9g/u3omraRlVtBvleA3KCIBxPCsc0bQ6bQOrdUqQVi
nhdkdjZZMSMaO3KB5qqM5JA3H0mf6cH9hbwIBSgEB3j3apBEpvbsl2YfW2vBSPzd
C9+OVrX4KBEexH0A4mPELRPnHF+E3/hTyTSSCk/3PyRzCeRYebbNdWvuzulOhZsD
sQ/fdn1kIdtKp2P7sWVSLi39s2nZuTntVzqwCowu0T9yDIDeRj5B1byQ72VYQ4+i
oSkGLaGxg+6lM3h/cTloUkUmhdmUd0trfju9mF5SZx24zJXx6wbGSP/qTbXhEzcC
w80Vmy9yJW8KuViJ+CmxGHfjMHUS5Aqwtn/HCOx6CiQBluZfhootcO13bElwz/Bc
NAbW98gCJDu61evzxcRs/ZMUjFmPWEZDwVHhI1bMx+wwut0Ly6yeriq8T7AexULj
MN5U+Q6WqivwocZVfq+2
=rsm4
-END PGP SIGNATURE-

Jonas Smedegaard (17):
  Initial packaging.
  Update copyright file: Fix list upstream license as GPL-2.
  Update copyright info: Use License-Grant and License-Reference fields. 
Thanks to Ben Finney.
  Add lintian overrides regarding license in License-Reference field. See 
bug#786450.
  Prepare for release: Update changelog and copyright hints.
  Merge tag 'upstream/0.08'
  Update copyright info: Extend coverage of packaging, and relax packaging 
license to GPL-2+.
  Fix lintian overrides.
  Bump debhelper compatibility level to 9.
  Tidy rules file: Suppress versioned debhelper build-dependency.
  Add lintian override regarding debhelper 9.
  Prepare for release: Update changelog and copyright hints.
  Merge tag 'upstream/0.11'
  Update copyright info: Tighten licensing of packaging to GPL-3+.
  Prepare for release: Update changelog and copyright hints.
  Merge tag 'upstream/0.15'
  Prepare for release: Update changelog and copyright hints.

---

This annotated tag includes the following new commits:

   new  c97d9d8   Merge tag 'upstream/0.15'
   new  9d41d28   Prepare for release: Update changelog and copyright hints.

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


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

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


[libpandoc-elements-perl] branch pristine-tar updated (508e70e -> 3f28414)

2015-12-27 Thread Jonas Smedegaard
This is an automated email from the git hooks/post-receive script.

js pushed a change to branch pristine-tar
in repository libpandoc-elements-perl.

  from  508e70e   pristine-tar data for 
libpandoc-elements-perl_0.11.orig.tar.gz
   new  3f28414   pristine-tar data for 
libpandoc-elements-perl_0.15.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:
 libpandoc-elements-perl_0.15.orig.tar.gz.delta | Bin 0 -> 2582 bytes
 libpandoc-elements-perl_0.15.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libpandoc-elements-perl_0.15.orig.tar.gz.delta
 create mode 100644 libpandoc-elements-perl_0.15.orig.tar.gz.id

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

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


[libpandoc-elements-perl] 02/02: Prepare for release: Update changelog and copyright hints.

2015-12-27 Thread Jonas Smedegaard
This is an automated email from the git hooks/post-receive script.

js pushed a commit to branch master
in repository libpandoc-elements-perl.

commit 9d41d289195cfa53b54dc8324ecb78dbe5c99aae
Author: Jonas Smedegaard 
Date:   Mon Dec 28 01:06:17 2015 +0530

Prepare for release: Update changelog and copyright hints.
---
 debian/changelog   | 17 +
 debian/copyright_hints | 15 ---
 2 files changed, 29 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 61521f4..241feec 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,20 @@
+libpandoc-elements-perl (0.15-1) unstable; urgency=medium
+
+  [ upstream ]
+  * New release(s).
++ Add pod2pandoc script and Pod::Simple::Pandoc.
++ Add string as method to replace function stringify.
++ Fix nasty bug in Pandoc::Element constructor reuse.
++ Fix passing of output format.
++ Add method match (experimental).
++ Add examples myemph.pl and theorem.pl.
++ Refactor and introduce Pandoc::Filter::Lazy.
++ Fix Pod::Simple::Pandoc for old Pod::Simple.
++ Allow more lazy filter scripting.
++ Add example to remove unnumbered sections.
+
+ -- Jonas Smedegaard   Mon, 28 Dec 2015 01:03:10 +0530
+
 libpandoc-elements-perl (0.11-1) unstable; urgency=medium
 
   [ upstream ]
diff --git a/debian/copyright_hints b/debian/copyright_hints
index 18528bf..8b7adda 100644
--- a/debian/copyright_hints
+++ b/debian/copyright_hints
@@ -23,7 +23,13 @@ Files: Build.PL
  examples/comments.pl
  examples/deemph.pl
  examples/deflist.pl
- script/pandoc-walk
+ examples/myemph.pl
+ examples/remove-unnumbered-sections.pl
+ examples/theorem.pl
+ lib/Pandoc/Filter/Lazy.pm
+ lib/Pod/Simple/Pandoc.pm
+ script/pandocwalk
+ script/pod2pandoc
  t/accessors.t
  t/ast.t
  t/attributes.t
@@ -36,9 +42,12 @@ Files: Build.PL
  t/examples/deemph.in.md
  t/examples/deemph.out.md
  t/filter.t
+ t/lazy.t
+ t/match.t
  t/outline
- t/pandoc-walk.t
  t/pandoc_filter.t
+ t/pandocwalk.t
+ t/pod-simple-pandoc.t
  t/release-pod-syntax.t
  t/stringify.t
  t/synopsis.t
@@ -58,7 +67,7 @@ License: UNKNOWN
 
 Files: debian/rules
 Copyright: 2015, Jonas Smedegaard 
-License: GPL-2+
+License: GPL-3+
  FIXME
 
 Files: LICENSE

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

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


[libtime-olsontz-download-perl] 02/02: releasing package libtime-olsontz-download-perl version 0.004-3 to unstable

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libtime-olsontz-download-perl.

commit 364b5e44d27b1dabf0b648faae01c3ad6b873319
Author: Niko Tyni 
Date:   Sun Dec 27 22:13:50 2015 +0200

releasing package libtime-olsontz-download-perl version 0.004-3 to unstable
---
 debian/changelog | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index faa0287..b6289ea 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libtime-olsontz-download-perl (0.004-3) unstable; urgency=medium
+
+  * Team upload.
+  * Fix regexp syntax for Perl 5.22. (Closes: #809108)
+
+ -- Niko Tyni   Sun, 27 Dec 2015 22:13:45 +0200
+
 libtime-olsontz-download-perl (0.004-2) unstable; urgency=medium
 
   [ gregor herrmann ]

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

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


[libtime-olsontz-download-perl] annotated tag debian/0.004-3 created (now c3903e9)

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to annotated tag debian/0.004-3
in repository libtime-olsontz-download-perl.

at  c3903e9   (tag)
   tagging  364b5e44d27b1dabf0b648faae01c3ad6b873319 (commit)
  replaces  debian/0.004-2
 tagged by  Niko Tyni
on  Sun Dec 27 22:15:23 2015 +0200

- Log -
Debian release 0.004-3
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJWgEbbAAoJEC7A/7O3MBsfRpwP/1Me0zBJNk+JEa0th7fGLItW
8khCE1u+ububjgyevvuGARO/Q9AGxc1RBwgOk0Ax3kw1qN0IjmC1DL8uTN/DxuEh
6qydjcG6FIohaSni7EflpW7ibDS6ZvjxAXnlCirx9m5BXsR74lodSI0lu+ceMCnB
g9Ak6k0geksBYiNtjoCD19lGHVn88gWS2ccReYCFgPGyOS4jERKFvbitkKl1h0Vr
PD/GNdUedfawYwWn1aNnnxbazdV6571PPSwLd8RnHZkx8wUSobTEdL+2hEXsbsPv
7ccT7S5KgZkhMfS3jpJ2yCHbGGNg3vIVyWfOp0aPeBTl7KQJ3Z1PwcIMNgQIU9Vf
5gSNJxRNwGveIgAncvIQYt1tjTpiQ7Mut7tf4rFjM69R1i/4QMYe2awel4bOBIpO
albZDldvWDc48ba8qPMpZkYrn5PJtWSWDfyXRlWutsHC2HQgKH0QORTeeb364tWk
boiB5Zq4+38nO5LSTjHsY0VHQlGAfEpIisHrYcec2Te5/LLDir9sHoWsgl5dpU9x
IsauEmbQN8Av5xfEQZDlsgrUs6JGEgp8ZFFyKdmBjGtDe1YPHozq3l6twiJsJ5p3
xQEQhGC1s4cTlG+hwBpJwvoso6bmSS3sVL0F7DVIWXmTf0PLfhWDIS2fudECQT4K
WS9BetxJrf63sh3rh8MI
=n3eq
-END PGP SIGNATURE-

Niko Tyni (2):
  Fix regexp syntax for Perl 5.22
  releasing package libtime-olsontz-download-perl version 0.004-3 to 
unstable

---

This annotated tag includes the following new commits:

   new  effbc2f   Fix regexp syntax for Perl 5.22
   new  364b5e4   releasing package libtime-olsontz-download-perl version 
0.004-3 to unstable

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


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

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


[libtime-olsontz-download-perl] branch master updated (ea403cb -> 364b5e4)

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to branch master
in repository libtime-olsontz-download-perl.

  from  ea403cb   releasing package libtime-olsontz-download-perl version 
0.004-2
   new  effbc2f   Fix regexp syntax for Perl 5.22
   new  364b5e4   releasing package libtime-olsontz-download-perl version 
0.004-3 to unstable

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


Summary of changes:
 debian/changelog   |  7 ++
 .../0001-Fix-regexp-syntax-for-Perl-5.22.patch | 29 ++
 debian/patches/series  |  1 +
 3 files changed, 37 insertions(+)
 create mode 100644 debian/patches/0001-Fix-regexp-syntax-for-Perl-5.22.patch
 create mode 100644 debian/patches/series

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

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


[libtime-olsontz-download-perl] 01/02: Fix regexp syntax for Perl 5.22

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository libtime-olsontz-download-perl.

commit effbc2f5001791b829181e8db52fe961d77d3619
Author: Niko Tyni 
Date:   Sun Dec 27 21:26:24 2015 +0200

Fix regexp syntax for Perl 5.22

Closes: #809108
---
 .../0001-Fix-regexp-syntax-for-Perl-5.22.patch | 29 ++
 debian/patches/series  |  1 +
 2 files changed, 30 insertions(+)

diff --git a/debian/patches/0001-Fix-regexp-syntax-for-Perl-5.22.patch 
b/debian/patches/0001-Fix-regexp-syntax-for-Perl-5.22.patch
new file mode 100644
index 000..aaf9fd1
--- /dev/null
+++ b/debian/patches/0001-Fix-regexp-syntax-for-Perl-5.22.patch
@@ -0,0 +1,29 @@
+From 5c2231bdf863d48a1c3034239bb689f9d452dc6d Mon Sep 17 00:00:00 2001
+From: Niko Tyni 
+Date: Sun, 27 Dec 2015 21:26:24 +0200
+Subject: [PATCH] Fix regexp syntax for Perl 5.22
+
+Unescaped left brace in regex is deprecated, passed through in regex
+
+Bug-Debian: https://bugs.debian.org/809108
+Bug: https://rt.cpan.org/Public/Bug/Display.html?id=110676
+---
+ lib/Time/OlsonTZ/Download.pm | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/lib/Time/OlsonTZ/Download.pm b/lib/Time/OlsonTZ/Download.pm
+index 1fc64a7..e66c59f 100644
+--- a/lib/Time/OlsonTZ/Download.pm
 b/lib/Time/OlsonTZ/Download.pm
+@@ -711,7 +711,7 @@ sub _ensure_standard_zonenames {
+   \nzonenames:[\ \t]+\$\(TDATA\)[\ \t]*\n
+   \t[\ \t]*\@\$\(AWK\)\ '
+   /\^Zone/\ \{\ print\ \$\$2\ \}
+-  \ /\^Link/\ {\ print\ \$\$3\ }
++  \ /\^Link/\ \{\ print\ \$\$3\ }
+   '\ \$\(TDATA\)[\ \t]*\n\n
+   #x);
+   }
+-- 
+2.6.4
+
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..bd90738
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+0001-Fix-regexp-syntax-for-Perl-5.22.patch

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

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


[liblatex-decode-perl] branch master updated (c8eddc8 -> 147edfc)

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to branch master
in repository liblatex-decode-perl.

  from  c8eddc8   releasing package liblatex-decode-perl version 0.04-1
   new  2d3d010   Fix regexp syntax for Perl 5.22
   new  147edfc   releasing package liblatex-decode-perl version 0.04-2 to 
unstable

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


Summary of changes:
 debian/changelog   |  7 ++
 .../0001-Fix-regexp-syntax-for-Perl-5.22.patch | 29 ++
 debian/patches/series  |  1 +
 3 files changed, 37 insertions(+)
 create mode 100644 debian/patches/0001-Fix-regexp-syntax-for-Perl-5.22.patch
 create mode 100644 debian/patches/series

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

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


[liblatex-decode-perl] 01/02: Fix regexp syntax for Perl 5.22

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository liblatex-decode-perl.

commit 2d3d0102cd2b984ce13004af04763f086ddac1e1
Author: Niko Tyni 
Date:   Sun Dec 27 22:23:19 2015 +0200

Fix regexp syntax for Perl 5.22

Closes: #809098
---
 .../0001-Fix-regexp-syntax-for-Perl-5.22.patch | 29 ++
 debian/patches/series  |  1 +
 2 files changed, 30 insertions(+)

diff --git a/debian/patches/0001-Fix-regexp-syntax-for-Perl-5.22.patch 
b/debian/patches/0001-Fix-regexp-syntax-for-Perl-5.22.patch
new file mode 100644
index 000..2303dde
--- /dev/null
+++ b/debian/patches/0001-Fix-regexp-syntax-for-Perl-5.22.patch
@@ -0,0 +1,29 @@
+From e6a481d4cf632a837135937f4f0995b9fd69ab99 Mon Sep 17 00:00:00 2001
+From: Niko Tyni 
+Date: Sun, 27 Dec 2015 22:23:19 +0200
+Subject: [PATCH] Fix regexp syntax for Perl 5.22
+
+Unescaped left brace in regex is deprecated, passed through in regex
+
+Bug-Debian: https://bugs.debian.org/809098
+Bug: https://rt.cpan.org/Public/Bug/Display.html?id=110678
+---
+ lib/LaTeX/Decode.pm | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/lib/LaTeX/Decode.pm b/lib/LaTeX/Decode.pm
+index 7741405..92fef90 100644
+--- a/lib/LaTeX/Decode.pm
 b/lib/LaTeX/Decode.pm
+@@ -130,7 +130,7 @@ sub latex_decode {
+ $text =~ s/\\not\\($NEG_SYMB_RE)/$NEGATEDSYMBOLS{$1}/ge;
+ $text =~ s/\\textsuperscript{($SUPER_RE)}/$SUPERSCRIPTS{$1}/ge;
+ $text =~ 
s/\\textsuperscript{\\($SUPERCMD_RE)}/$CMDSUPERSCRIPTS{$1}/ge;
+-$text =~ s/\\dings{([2-9AF][0-9A-F])}/$DINGS{$1}/ge;
++$text =~ s/\\dings\{([2-9AF][0-9A-F])}/$DINGS{$1}/ge;
+ }
+ 
+ $text =~ s/(\\[a-zA-Z]+)\\(\s+)/$1\{\}$2/g;# \foo\ bar -> \foo{} bar
+-- 
+2.6.4
+
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..bd90738
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+0001-Fix-regexp-syntax-for-Perl-5.22.patch

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

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


[liblatex-decode-perl] annotated tag debian/0.04-2 created (now 8a4a145)

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a change to annotated tag debian/0.04-2
in repository liblatex-decode-perl.

at  8a4a145   (tag)
   tagging  147edfc8baad375cd901a0afa612c2220fefa4cc (commit)
  replaces  debian/0.04-1
 tagged by  Niko Tyni
on  Sun Dec 27 22:29:18 2015 +0200

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

iQIcBAABCAAGBQJWgEoeAAoJEC7A/7O3MBsfNBEP/2f3bnPJR/TwGJ0Ywe3f2NKM
/g1/bwYmxfZXinpaLRRleNYWTm1sMDY6HHfBlvdsV1C0d1ei1op66UsYt17yXcsP
FM4Q9xw9oloLIwZicNC3Fi32J9qiA5JRMzz+2C5tasvZAtPpLR4by2NihdyTzniY
OFdUfCp1B4pKs776XvPlt9TCIjslpPO7WC4qxw0B+RzbLeEgqu8tUFxlg39a7FX2
bffTd2Beqj0Sq7Ec3dh1OaEW2Ea8XCWpSobrdlQeh9VjkD8Z8SL09T8X1bV2GOZ5
Rv89o6jm4Y+JL/e8HNBmqIHlqlQ8bGpmhiuX8QiR9XxiDZaOetj28x0mjfOqzSPG
WwKfBZFj2LIdRTQKxyCIcf8aDQvyFk7YOCG5Qr111sXllFgkPxh+NWfdjqebo7s4
WUvQoyeTwwfg4FKHJDgZ+U5EXCoeIbY/6XMvHvev0i9LI1ucoXD2sLTn7auMRivM
r9cir225+KpErB2d0uIccBwg0Yq8PrsJZmd6BoK6bvdovkofo6bil5OuDhxQPJ4r
B9Ya99fgElPcQnQHSyvfZEefxuWCVj/G+ks/9AHVhjP8r0SJ1KNBXQudj2PYdcSW
kuPS8hyEJVySwS7fjTOF5iSyhAXe2TI6dIlT05fFkYel3SPzLYhBrp6O1ENzcSsd
05F4siJhTAvO6qdeLLli
=/eu9
-END PGP SIGNATURE-

Niko Tyni (2):
  Fix regexp syntax for Perl 5.22
  releasing package liblatex-decode-perl version 0.04-2 to unstable

---

This annotated tag includes the following new commits:

   new  2d3d010   Fix regexp syntax for Perl 5.22
   new  147edfc   releasing package liblatex-decode-perl version 0.04-2 to 
unstable

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


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

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


[liblatex-decode-perl] 02/02: releasing package liblatex-decode-perl version 0.04-2 to unstable

2015-12-27 Thread Niko Tyni
This is an automated email from the git hooks/post-receive script.

ntyni pushed a commit to branch master
in repository liblatex-decode-perl.

commit 147edfc8baad375cd901a0afa612c2220fefa4cc
Author: Niko Tyni 
Date:   Sun Dec 27 22:28:08 2015 +0200

releasing package liblatex-decode-perl version 0.04-2 to unstable
---
 debian/changelog | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 589e950..c022016 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+liblatex-decode-perl (0.04-2) unstable; urgency=medium
+
+  * Team upload.
+  * Fix regexp syntax for Perl 5.22. (Closes: #809098)
+
+ -- Niko Tyni   Sun, 27 Dec 2015 22:28:01 +0200
+
 liblatex-decode-perl (0.04-1) unstable; urgency=medium
 
   * Team upload.

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

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


[libdbix-class-schema-loader-perl] 02/03: control: depends on perl 5.22 for Sub::Util module

2015-12-27 Thread dod
This is an automated email from the git hooks/post-receive script.

dod pushed a commit to branch master
in repository libdbix-class-schema-loader-perl.

commit c2947d71e4f12b1aef791c66e1acf2f414718671
Author: Dominique Dumont 
Date:   Sun Dec 27 21:20:37 2015 +0100

control: depends on perl 5.22 for Sub::Util module

With this module, dh_perl only generates 'perl' dependency.
Using dh_perl -V may not be the best option because dh_perl
creates a versioned dep using current perl version. I.e perl 5.24
in a year or so.
---
 debian/control | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/debian/control b/debian/control
index e1a1f89..dfd555f 100644
--- a/debian/control
+++ b/debian/control
@@ -5,6 +5,7 @@ Uploaders: Krzysztof Krzyżaniak (eloy) ,
gregor herrmann ,
Dominique Dumont 
 Section: perl
+Testsuite: autopkgtest-pkg-perl
 Priority: optional
 Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: libcarp-clan-perl,
@@ -43,11 +44,10 @@ Build-Depends-Indep: libcarp-clan-perl,
  libtry-tiny-perl,
  libuniversal-require-perl,
  perl (>= 5.17.3) | libpod-simple-perl (>= 3.22),
- perl
+ perl (>= 5.22)
 Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libdbix-class-schema-loader-perl.git
 Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/libdbix-class-schema-loader-perl.git
-Testsuite: autopkgtest-pkg-perl
 Homepage: https://metacpan.org/release/DBIx-Class-Schema-Loader
 
 Package: libdbix-class-schema-loader-perl
@@ -78,7 +78,8 @@ Depends: ${misc:Depends},
  libstring-toidentifier-en-perl,
  libsub-name-perl,
  libtry-tiny-perl,
- libuniversal-require-perl
+ libuniversal-require-perl,
+ perl (>= 5.22)
 Recommends: libmoose-perl (>= 1.12),
 libmoosex-nonmoose-perl
 Description: module to automate definition of a DBIx::Class::Schema
@@ -91,4 +92,3 @@ Description: module to automate definition of a 
DBIx::Class::Schema
  is somewhat heuristic, especially with respect to choosing relationship types
  and names, as well as join types. The relationships generated by this module
  will probably never be as well-defined as hand-generated ones.
-

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdbix-class-schema-loader-perl.git

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

[libdbix-class-schema-loader-perl] branch master updated (3da6ac5 -> 25bc3d2)

2015-12-27 Thread dod
This is an automated email from the git hooks/post-receive script.

dod pushed a change to branch master
in repository libdbix-class-schema-loader-perl.

  from  3da6ac5   update changelog
   new  32b797e   control: updated std-version to 3.9.6
   new  c2947d7   control: depends on perl 5.22 for Sub::Util module
   new  25bc3d2   prepare release

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 | 16 ++--
 debian/control   | 10 +-
 2 files changed, 11 insertions(+), 15 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdbix-class-schema-loader-perl.git

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


[libdbix-class-schema-loader-perl] 03/03: prepare release

2015-12-27 Thread dod
This is an automated email from the git hooks/post-receive script.

dod pushed a commit to branch master
in repository libdbix-class-schema-loader-perl.

commit 25bc3d23074a50c5f1ad92402fb9b1479b6c5084
Author: Dominique Dumont 
Date:   Sun Dec 27 21:23:35 2015 +0100

prepare release
---
 debian/changelog | 16 ++--
 1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 7241827..2c8dde9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,20 +1,16 @@
-libdbix-class-schema-loader-perl (0.07043-1~1.gbp321b87) UNRELEASED; 
urgency=medium
-
-  ** SNAPSHOT build @321b87417a170a6844cbdfd862853780d1478252 **
+libdbix-class-schema-loader-perl (0.07043-1) unstable; urgency=medium
 
   [ gregor herrmann ]
   * Update {Upstream-,}Contact in debian/{copyright,upstream/metadata}.
+  * Rename autopkgtest configuration file(s) as per new pkg-perl-
+autopkgtest schema.
 
   [ Dominique Dumont ]
   * Imported Upstream version 0.07043
-  * TODO: package new dependency Sub::Util or wait for perl 5.22 which
-brings Sub::Util as a core module
-
-  [ gregor herrmann ]
-  * Rename autopkgtest configuration file(s) as per new pkg-perl-
-autopkgtest schema.
+  * control: updated std-version to 3.9.6
+  * control: depends on perl 5.22 for Sub::Util module
 
- -- Dominique Dumont   Tue, 15 Sep 2015 10:41:15 +0200
+ -- Dominique Dumont   Sun, 27 Dec 2015 21:22:23 +0100
 
 libdbix-class-schema-loader-perl (0.07042-2) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdbix-class-schema-loader-perl.git

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


[libdbix-class-schema-loader-perl] annotated tag upstream/0.07043 created (now 90da6e5)

2015-12-27 Thread dod
This is an automated email from the git hooks/post-receive script.

dod pushed a change to annotated tag upstream/0.07043
in repository libdbix-class-schema-loader-perl.

at  90da6e5   (tag)
   tagging  37adba7c2f6d270c6fff29684c156f7d14853f63 (commit)
  replaces  upstream/0.07042
 tagged by  Dominique Dumont
on  Tue Sep 15 10:41:10 2015 +0200

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

iQIcBAABAgAGBQJV99mmAAoJEMMfT9lJqyts6cgP+QF7moRxtBXfubQvgdi8GIhH
ohcmDS+XwmckINFXbxLmvgTGgnHHLawF6/bEWvbh4s4uQ+HqcWKBTSe1yVRXwUz7
u6/ekApeZZXO7y4cYO8Pr0O133JHQNt27GIwYghUXAQkP1UPA+q6Lft6hF0BIF/Q
4PjTo+XAS12uUpakcU/+dswdfEGg/ctBlsCu6wfC8UDYJiFcvgGW0zTxtTdQLNhV
jiIZNySFNoEd1piVGw1VT0VVlpr/Y5pqvb5Eur/8comE6jMq262ng1hO+mY0rgrk
b3GDo/UivUPNc9iXbO3f43YCgUKMgwnFr/RDXeaCtp4XVumf5iWKcDKQSfFGwBaM
NOuWYsWXhCfw1E0Se7vqtscwfVNyOqopX+nAQvRnUJOelUNN+jsqKQvElgyD6csU
SgzFHjFK49GZ5oDw5L8L2HtyazzufOcTYwiCNPNrXkGa0s4KQhNnORuUmuoD2C5V
+6wO1aW/ahG+JN+9TtRtppmQJExZB/G9VfgmjLNPwYEhMBJI2bdn16DUm7dGpFXA
Y6/QbgadU99new3+M23C5YWauEawnEGXyBGzoBq1XZsX0y9YvTczrgYte316dZi5
fiz/Cys8MIyZmbZXMtWwDCUkYLW+xWucxLtIQXN+mcLFJeBWSzScciPlitSInXba
dW67XbG6ENsjuEWfyzoc
=F3AS
-END PGP SIGNATURE-

Dominique Dumont (1):
  Imported Upstream version 0.07043

---

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/libdbix-class-schema-loader-perl.git

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


[libdbix-class-schema-loader-perl] annotated tag debian/0.07043-1 created (now 7dd1e8d)

2015-12-27 Thread dod
This is an automated email from the git hooks/post-receive script.

dod pushed a change to annotated tag debian/0.07043-1
in repository libdbix-class-schema-loader-perl.

at  7dd1e8d   (tag)
   tagging  25bc3d23074a50c5f1ad92402fb9b1479b6c5084 (commit)
  replaces  upstream/0.07043
 tagged by  Dominique Dumont
on  Sun Dec 27 21:47:57 2015 +0100

- Log -
libdbix-class-schema-loader-perl Debian release 0.07043-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJWgE59AAoJEMMfT9lJqytsDhQP/11/G0/wtqg+qlacR3YszSgV
9LAyjqe5e7EiwTltU30YFBYNmXVNxZO45OUWIht+v60aKr4JYFECI/PG8J5WO7br
aFRyz4IvXLQ8vpy5cudj3mN9RonXd51bIK45hJFacOI54qeeSKR1id6dsQK0rHND
LqZKVeIKTVZyT6yDtyXIZfpU2OvsqqhHV5Kyz5RFQYDPHTDbIAHSVso/XZI1HmJ6
gzsgjpZq+d9fzGRjtzPeKin0e7d5K5eZz8gLxtMTTsK+Xl8awkElRU9CXjcc28sb
pup9FueeCl+FnjenBDCc0JxrMmXoZYrrSmNKaOgW7jqP1ca5YAraVaMgLaVC5nM9
Tbvb1bkDuTtX4lfWSwTA83cfgEqsa3L/jF5w43EFQGwCklZqUkpDpEhe/XDgmL25
68LI8Y6NZMzQANzK9M4woYCo02EIKrT+pROdMNXgwjbPk3htdPHVROymGJEDZsMo
1xSxTmUdwZUzyANqutuPMw73FJEJxu5T7XQ90OPVRYciz0JTZakxhj9Ou9lcLvEN
kcfC5Lg8FiD06kc1bclICymjMRznMdE/hB8YZa9AyD3fqsnh0ftBcSP1Mi07gr84
palOJII6rNwU5bp3EA9Qmhl/iw7Mtdb+QFNwKpg2TbkHciNfmI7NwNZN6Q6MfN4O
XUDxew//wg7tV6gAbeAM
=sfq0
-END PGP SIGNATURE-

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

Axel Beckert (1):
  Remove trailing whitespace

Chris Butler (2):
  no longer waiting for liblingua-en-inflect-phrase-perl
  FTBFS with liblingua-en-tagger-perl fixed in 0.16-1, removing note from 
changelog

Damyan Ivanov (6):
  Merge tag 'upstream/0.07037'
  Imported Upstream version 0.07037
  reverse order of libpod-simple-perl (>= 3.22) | perl (>= 5.17.3) 
build-dependency
  drop trailing slash from metacpan URLs
  claim conformance with Policy 3.9.5
  releasing package libdbix-class-schema-loader-perl version 0.07037-1

Dominique Dumont (21):
  added /me to uploaders. Added new dependencies 
(libmoosex-markasmethods-perl libstring-toidentifier-en-perl)
  added /me in debian files
  prepare release
  added build-dep on libdbix-class-introspectablem2m-perl
  Merge tag 'upstream/0.07019'
  new upstream release
  spelling patch: applied upstream, removed
  copyright: refreshed copyright years for 2012
  control: updated standards-version
  dch -r
  Merge tag 'upstream/0.07036'
  control: updated dependencies according to upstream changes
  copyright: updated years
  compat: bumped to 9
  dch -r
  Merge tag 'upstream/0.07043'
  imported new version
  updated TODO in changelog
  control: updated std-version to 3.9.6
  control: depends on perl 5.22 for Sub::Util module
  prepare release

Gregor Herrmann (22):
  [mass commit] switch Vcs-Browser from from WebSVN to ViewSVN
  WAITS-FOR libclass-accessor-grouped-perl 0.09002
  debian/copyright: add additional copyright holders.
  sort and sync B-D-I and Depends
  releasing version 0.05001-1
  Add build and runtime dependency on liblist-moreutils-perl
  New upstream release 0.06001.
  New upstream release 0.07000.
  (Build) depend on perl >= 5.10.1 (for Exporter 5.63).
  Update build dependencies (test suite).
  Update list of upstream copyright holders.
  PROBLEM:
  add note to changelog
  releasing version 0.07000-1
  New upstream release.
  WAITS-FOR: libmoosex-nonmoose-perl
  debian/control: remove libclass-c3-perl, bump
  releasing version 0.07002-1
  and another new copyright holder
  Add (build) dependency on libcarp-clan-perl (closes: #633742).
  * Set Standards-Version to 3.9.2 (no changes).
  releasing version 0.07010-2

Jonathan Yu (14):
  * New upstream release
  * Add dependency on File::Slurp per upstream
  ...
  dch -r, looks good
  * New upstream release
  looks good, dch -r
  New upstream release
  looks good, dch -r
  WAITS-FOR: liblingua-en-inflect-phrase-perl
  New upstream release
  * New upstream release
  WAITS-FOR: libclass-c3-componentised-perl 1.0008
  Integrate new upstream release
  builds clean, dch -r

Krzysztof Krzyzaniak (7):
  [svn-inject] Applying Debian modifications to trunk
  * (NOT RELEASED YET) New upstream release
  UNRELEASED/unstable
  new upstream version
  s/UNRELEASED/unstable/
  new upstream version
  libclass-unload-perl added to dependencies

Niko Tyni (2):
  Fix autopkgtest failures.
  releasing package libdbix-class-schema-loader-perl version 0.07042-2 to 
unstable

Salvatore Bonaccorso (7):
  [packagecheck] fixed Vcs-(Git|Browser)/Homepage field(s) in 
debian/control and/or URL in debian/watch and/or rmdir /usr/{lib|share}/perl5 
in debian/rules.
  Change Vcs-Git to canonical URI (git://anonscm.debian.org)
  update changelog
  Change search.cp

[libdbix-class-schema-loader-perl] 01/03: control: updated std-version to 3.9.6

2015-12-27 Thread dod
This is an automated email from the git hooks/post-receive script.

dod pushed a commit to branch master
in repository libdbix-class-schema-loader-perl.

commit 32b797edec8ce519f6b89fe4e490455bc055330e
Author: Dominique Dumont 
Date:   Sun Dec 27 21:09:49 2015 +0100

control: updated std-version to 3.9.6
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index fe62dc3..e1a1f89 100644
--- a/debian/control
+++ b/debian/control
@@ -44,7 +44,7 @@ Build-Depends-Indep: libcarp-clan-perl,
  libuniversal-require-perl,
  perl (>= 5.17.3) | libpod-simple-perl (>= 3.22),
  perl
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libdbix-class-schema-loader-perl.git
 Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/libdbix-class-schema-loader-perl.git
 Testsuite: autopkgtest-pkg-perl

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdbix-class-schema-loader-perl.git

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


[libtest-synopsis-perl] 02/02: Update debian/changelog

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libtest-synopsis-perl.

commit 10ba94f0a079c14b21595033a1ad3e226e40c3fd
Author: Salvatore Bonaccorso 
Date:   Sun Dec 27 23:20:05 2015 +0100

Update debian/changelog

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

diff --git a/debian/changelog b/debian/changelog
index c95cd40..52d211a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,13 @@
-libtest-synopsis-perl (0.11-3) UNRELEASED; urgency=medium
+libtest-synopsis-perl (0.12-1) UNRELEASED; urgency=medium
 
+  [ gregor herrmann ]
   * Rename autopkgtest configuration file(s) as per new pkg-perl-
 autopkgtest schema.
 
- -- gregor herrmann   Sat, 24 Oct 2015 13:47:03 +0200
+  [ Salvatore Bonaccorso ]
+  * Import upstream version 0.12
+
+ -- Salvatore Bonaccorso   Sun, 27 Dec 2015 23:20:05 +0100
 
 libtest-synopsis-perl (0.11-2) unstable; urgency=medium
 

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

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


[libtest-synopsis-perl] branch master updated (17d3bbd -> 10ba94f)

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to branch master
in repository libtest-synopsis-perl.

  from  17d3bbd   update changelog
  adds  33f601b   Add [MetaJSON] tag to dist.ini.
  adds  cb985a2   Merge pull request #16 from monsieurp/meta.json
  adds  9af9107   Update changes
  adds  76f0953   Imported Upstream version 0.12
   new  1530184   Merge tag 'upstream/0.12'
   new  10ba94f   Update debian/changelog

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


Summary of changes:
 Changes|   3 +
 INSTALL|   1 -
 LICENSE|   8 +-
 MANIFEST   |  16 +-
 META.json  | 654 +
 META.yml   | 271 --
 Makefile.PL|  18 +-
 README |   6 +-
 README.md  |  16 +-
 debian/changelog   |   8 +-
 dist.ini   |   2 +
 lib/Test/Synopsis.pm   |   2 +-
 t/00-compile.t |  12 +-
 xt/{release/no-tabs.t => author/eol.t} |   6 +-
 xt/author/mojibake.t   |   9 +
 xt/{release => author}/no-tabs.t   |   2 +-
 xt/{release => author}/pod-coverage.t  |   0
 xt/author/pod-spell.t  |   5 +-
 xt/{release => author}/pod-syntax.t|   1 +
 xt/author/test-eol.t   |   8 -
 xt/{release => author}/test-version.t  |  12 +-
 xt/release/kwalitee.t  |   2 +-
 xt/release/meta-json.t |   4 +
 xt/release/mojibake.t  |  12 -
 xt/release/portability.t   |   1 +
 25 files changed, 896 insertions(+), 183 deletions(-)
 create mode 100644 META.json
 copy xt/{release/no-tabs.t => author/eol.t} (85%)
 create mode 100644 xt/author/mojibake.t
 rename xt/{release => author}/no-tabs.t (92%)
 rename xt/{release => author}/pod-coverage.t (100%)
 rename xt/{release => author}/pod-syntax.t (84%)
 delete mode 100644 xt/author/test-eol.t
 rename xt/{release => author}/test-version.t (54%)
 create mode 100644 xt/release/meta-json.t
 delete mode 100644 xt/release/mojibake.t

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

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


[libtest-synopsis-perl] branch pristine-tar updated (d45acd3 -> 663bcb0)

2015-12-27 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 libtest-synopsis-perl.

  from  d45acd3   pristine-tar data for 
libtest-synopsis-perl_0.11.orig.tar.gz
   new  663bcb0   pristine-tar data for 
libtest-synopsis-perl_0.12.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:
 libtest-synopsis-perl_0.12.orig.tar.gz.delta | Bin 0 -> 2977 bytes
 libtest-synopsis-perl_0.12.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libtest-synopsis-perl_0.12.orig.tar.gz.delta
 create mode 100644 libtest-synopsis-perl_0.12.orig.tar.gz.id

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

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


[libtest-synopsis-perl] 01/01: pristine-tar data for libtest-synopsis-perl_0.12.orig.tar.gz

2015-12-27 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 libtest-synopsis-perl.

commit 663bcb0f12c0e264da31928cf4d867f4be468869
Author: Salvatore Bonaccorso 
Date:   Sun Dec 27 23:20:05 2015 +0100

pristine-tar data for libtest-synopsis-perl_0.12.orig.tar.gz
---
 libtest-synopsis-perl_0.12.orig.tar.gz.delta | Bin 0 -> 2977 bytes
 libtest-synopsis-perl_0.12.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libtest-synopsis-perl_0.12.orig.tar.gz.delta 
b/libtest-synopsis-perl_0.12.orig.tar.gz.delta
new file mode 100644
index 000..21b4429
Binary files /dev/null and b/libtest-synopsis-perl_0.12.orig.tar.gz.delta differ
diff --git a/libtest-synopsis-perl_0.12.orig.tar.gz.id 
b/libtest-synopsis-perl_0.12.orig.tar.gz.id
new file mode 100644
index 000..e5e46f5
--- /dev/null
+++ b/libtest-synopsis-perl_0.12.orig.tar.gz.id
@@ -0,0 +1 @@
+5c97d5fd5a92f5ecd7030654ccf6c1c78e679a50

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

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


[libtest-synopsis-perl] 01/02: Merge tag 'upstream/0.12'

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to branch master
in repository libtest-synopsis-perl.

commit 153018470863749b18de67eccfed88f826472d53
Merge: 17d3bbd 76f0953
Author: Salvatore Bonaccorso 
Date:   Sun Dec 27 23:20:05 2015 +0100

Merge tag 'upstream/0.12'

Upstream version 0.12

 Changes|   3 +
 INSTALL|   1 -
 LICENSE|   8 +-
 MANIFEST   |  16 +-
 META.json  | 654 +
 META.yml   | 271 --
 Makefile.PL|  18 +-
 README |   6 +-
 README.md  |  16 +-
 dist.ini   |   2 +
 lib/Test/Synopsis.pm   |   2 +-
 t/00-compile.t |  12 +-
 xt/{release/no-tabs.t => author/eol.t} |   6 +-
 xt/author/mojibake.t   |   9 +
 xt/{release => author}/no-tabs.t   |   2 +-
 xt/{release => author}/pod-coverage.t  |   0
 xt/author/pod-spell.t  |   5 +-
 xt/{release => author}/pod-syntax.t|   1 +
 xt/author/test-eol.t   |   8 -
 xt/{release => author}/test-version.t  |  12 +-
 xt/release/kwalitee.t  |   2 +-
 xt/release/meta-json.t |   4 +
 xt/release/mojibake.t  |  12 -
 xt/release/portability.t   |   1 +
 24 files changed, 890 insertions(+), 181 deletions(-)

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

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


[libtest-synopsis-perl] annotated tag upstream/0.12 created (now 4d6ccc9)

2015-12-27 Thread Salvatore Bonaccorso
This is an automated email from the git hooks/post-receive script.

carnil pushed a change to annotated tag upstream/0.12
in repository libtest-synopsis-perl.

at  4d6ccc9   (tag)
   tagging  76f0953542c672cd40c1ecd7c6f2040bffdd35c4 (commit)
  replaces  upstream/0.11
 tagged by  Salvatore Bonaccorso
on  Sun Dec 27 23:20:05 2015 +0100

- Log -
Upstream version 0.12

Patrice Clement (1):
  Add [MetaJSON] tag to dist.ini.

Salvatore Bonaccorso (1):
  Imported Upstream version 0.12

Zoffix Znet (2):
  Merge pull request #16 from monsieurp/meta.json
  Update changes

---

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

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


[libencode-arabic-perl] 01/04: Add more fixes to patch typos.diff.

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

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

commit 89484cfe9a7fef7bd9b553a1c1ee8c93719495d2
Author: gregor herrmann 
Date:   Mon Dec 28 02:08:50 2015 +0100

Add more fixes to patch typos.diff.
---
 debian/patches/typos.diff | 46 --
 1 file changed, 28 insertions(+), 18 deletions(-)

diff --git a/debian/patches/typos.diff b/debian/patches/typos.diff
index 3dfd185..15c7b1f 100644
--- a/debian/patches/typos.diff
+++ b/debian/patches/typos.diff
@@ -5,12 +5,10 @@ Description: Fix typos
 Forwarded: https://sourceforge.net/apps/trac/encode-arabic/ticket/1 (partly)
 Author: أحمد المحمودي (Ahmed El-Mahmoudy) 
 Reviewed-by: gregor herrmann 
-Last-Update: 2014-07-30
+Last-Update: 2015-12-28
 
-Index: libencode-arabic-perl/lib/Encode/Arabic.pm
-===
 libencode-arabic-perl.orig/lib/Encode/Arabic.pm2014-10-11 
03:05:25.763275371 +0200
-+++ libencode-arabic-perl/lib/Encode/Arabic.pm 2014-10-11 03:05:25.763275371 
+0200
+--- a/lib/Encode/Arabic.pm
 b/lib/Encode/Arabic.pm
 @@ -188,7 +188,7 @@
  =back
  
@@ -20,10 +18,8 @@ Index: libencode-arabic-perl/lib/Encode/Arabic.pm
  
  Note that the standard L module already deals with several 
other single-byte encoding
  schemes for Arabic popular with whichever operating system, be it *n*x, 
Windows, DOS or Macintosh.
-Index: libencode-arabic-perl/bin/decode.pl
-===
 libencode-arabic-perl.orig/bin/decode.pl   2014-10-11 03:05:25.763275371 
+0200
-+++ libencode-arabic-perl/bin/decode.pl2014-10-11 03:05:25.763275371 
+0200
+--- a/bin/decode.pl
 b/bin/decode.pl
 @@ -56,7 +56,7 @@
  The L library provides a unified interface for converting 
strings
  from different encodings into a common representation, and vice versa.
@@ -33,10 +29,8 @@ Index: libencode-arabic-perl/bin/decode.pl
  the C and C methods, respectively.
  
  For the list of supported encoding schemes, please refer to L 
and
-Index: libencode-arabic-perl/bin/encode.pl
-===
 libencode-arabic-perl.orig/bin/encode.pl   2014-10-11 03:05:25.763275371 
+0200
-+++ libencode-arabic-perl/bin/encode.pl2014-10-11 03:05:25.763275371 
+0200
+--- a/bin/encode.pl
 b/bin/encode.pl
 @@ -56,7 +56,7 @@
  The L library provides a unified interface for converting 
strings
  from different encodings into a common representation, and vice versa.
@@ -46,11 +40,9 @@ Index: libencode-arabic-perl/bin/encode.pl
  the C and C methods, respectively.
  
  For the list of supported encoding schemes, please refer to L 
and
-Index: libencode-arabic-perl/lib/Encode/Mapper.pm
-===
 libencode-arabic-perl.orig/lib/Encode/Mapper.pm2014-10-11 
03:05:25.763275371 +0200
-+++ libencode-arabic-perl/lib/Encode/Mapper.pm 2014-10-11 03:05:25.763275371 
+0200
-@@ -648,7 +648,7 @@
+--- a/lib/Encode/Mapper.pm
 b/lib/Encode/Mapper.pm
+@@ -648,13 +648,13 @@
  
  =head2 INTRO AND RULE TYPES
  
@@ -59,3 +51,21 @@ Index: libencode-arabic-perl/lib/Encode/Mapper.pm
  transducer, i.e. an engine performing greedy search in the input stream and 
producing output
  data and side effects relevant to the results of the search. Transducers may 
be linked one with
  another, thus forming multi-level devices suitable for nontrivial 
encoding/decoding tasks.
+ 
+ The rules declare which input sequences of L to search for, and 
what to do upon their
+-occurence. If the left-hand side (LHS) of a rule is the longest left-most 
string out of those
++occurrence. If the left-hand side (LHS) of a rule is the longest left-most 
string out of those
+ applicable on the input, the righ-hand side (RHS) of the rule is evaluated. 
The RHS defines the
+ corresponding output string, and possibly controls the engine as if the extra 
text were prepended
+ before the rest of the input:
+--- a/lib/Encode/Arabic/Buckwalter.pm
 b/lib/Encode/Arabic/Buckwalter.pm
+@@ -324,7 +324,7 @@
+ The module exports as if C also appeared in the package. The 
other C options are
+ just delegated to L and imports performed properly.
+ 
+-The B of this module allow to override the setting of the 
C<:xml> option, in addition to
++The B of this module allow one to override the setting of 
the C<:xml> option, in addition to
+ filtering out diacritical marks and stripping off I. The modes and 
aliases relate like this:
+ 
+ our %Encode::Arabic::Buckwalter::modemap = (

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

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

[libencode-arabic-perl] branch master updated (48e8b05 -> f1dd7da)

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

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

  from  48e8b05   update changelog
   new  89484cf   Add more fixes to patch typos.diff.
   new  425f4a4   Add patch to fix "Unescaped left brace in regex is 
deprecated" warning.
   new  af99f6c   Bump debhelper compatibility level to 9.
   new  f1dd7da   update changelog

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


Summary of changes:
 debian/changelog  |   7 ++
 debian/compat |   2 +-
 debian/control|   2 +-
 debian/patches/series |   1 +
 debian/patches/typos.diff |  46 +
 debian/patches/unescaped_left_brace.patch | 157 ++
 6 files changed, 195 insertions(+), 20 deletions(-)
 create mode 100644 debian/patches/unescaped_left_brace.patch

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

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


[libencode-arabic-perl] 04/04: update changelog

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

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

commit f1dd7dadf020e7789a3b4bb823571aa52250494e
Author: gregor herrmann 
Date:   Mon Dec 28 02:28:39 2015 +0100

update changelog

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

diff --git a/debian/changelog b/debian/changelog
index d5f1d32..44f74b9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,14 @@
 libencode-arabic-perl (14.1-4) UNRELEASED; urgency=medium
 
+  TODO: 3x
+  # Replacement list is longer than search list at (eval ) line 6.
+
   * Rename autopkgtest configuration file(s) as per new pkg-perl-
 autopkgtest schema.
+  * Add more fixes to patch typos.diff.
+  * Add patch to fix "Unescaped left brace in regex is deprecated"
+warning. (Closes: #809094)
+  * Bump debhelper compatibility level to 9.
 
  -- gregor herrmann   Sat, 24 Oct 2015 13:45:16 +0200
 

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

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


[libencode-arabic-perl] 03/04: Bump debhelper compatibility level to 9.

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

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

commit af99f6ca92aa109ffc056039d941098db4ca48a5
Author: gregor herrmann 
Date:   Mon Dec 28 02:27:53 2015 +0100

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 979a338..a372c8e 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Maintainer: Debian Perl Group 

 Uploaders: أحمد المحمودي (Ahmed El-Mahmoudy) 
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 8),
+Build-Depends: debhelper (>= 9),
libmodule-build-perl
 Build-Depends-Indep: perl,
  libtest-pod-coverage-perl,

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

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

[libhtml-wikiconverter-mediawiki-perl] 06/09: Add year of upstream copyright.

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

gregoa pushed a commit to branch master
in repository libhtml-wikiconverter-mediawiki-perl.

commit 31158ecbdc0bde7f4f11f350c747bc86e7603cce
Author: gregor herrmann 
Date:   Mon Dec 28 02:32:24 2015 +0100

Add year of upstream copyright.
---
 debian/copyright | 24 +---
 1 file changed, 13 insertions(+), 11 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index 92dad30..5155727 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,7 +4,7 @@ Upstream-Contact: David J. Iberri 
 Source: https://metacpan.org/release/HTML-WikiConverter-MediaWiki
 
 Files: *
-Copyright: Copyright (c) David J. Iberri
+Copyright: 2006, David J. Iberri
 License: Artistic or GPL-1+
 
 Files: debian/*
@@ -14,15 +14,17 @@ Copyright: 2008, Ansgar Burchardt 
 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 GNU/Linux systems, the complete text of the Artistic License
-can be found in `/usr/share/common-licenses/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 GNU/Linux systems, the complete text of the GNU General
-Public License can be found in `/usr/share/common-licenses/GPL'
+ 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'.

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

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


[libhtml-wikiconverter-mediawiki-perl] 03/09: Declare compliance with Debian Policy 3.9.6.

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

gregoa pushed a commit to branch master
in repository libhtml-wikiconverter-mediawiki-perl.

commit 27910f6aa2187dbc0acd097e9a45ccc1532829de
Author: gregor herrmann 
Date:   Mon Dec 28 02:31:14 2015 +0100

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 723ef6a..8081726 100644
--- a/debian/control
+++ b/debian/control
@@ -14,7 +14,7 @@ Build-Depends-Indep: perl,
  libhtml-parser-perl,
  liburi-perl,
  libhtml-wikiconverter-perl
-Standards-Version: 3.9.1
+Standards-Version: 3.9.6
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libhtml-wikiconverter-mediawiki-perl.git
 Vcs-Git: 
git://anonscm.debian.org/pkg-perl/packages/libhtml-wikiconverter-mediawiki-perl.git
 Homepage: https://metacpan.org/release/HTML-WikiConverter-MediaWiki

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

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


[libhtml-wikiconverter-mediawiki-perl] 02/09: Mark package as autopkgtest-able.

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

gregoa pushed a commit to branch master
in repository libhtml-wikiconverter-mediawiki-perl.

commit ac0997fca9aa6876bec5dc402a0f27bce253447e
Author: gregor herrmann 
Date:   Mon Dec 28 02:31:13 2015 +0100

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

diff --git a/debian/control b/debian/control
index 170adf0..723ef6a 100644
--- a/debian/control
+++ b/debian/control
@@ -5,6 +5,7 @@ Uploaders: Rene Mayorga ,
Ansgar Burchardt ,
Ryan Niebur 
 Section: perl
+Testsuite: autopkgtest-pkg-perl
 Priority: optional
 Build-Depends: debhelper (>= 7)
 Build-Depends-Indep: perl,

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

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


[libhtml-wikiconverter-mediawiki-perl] branch master updated (6f1b0dc -> 67543dc)

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

gregoa pushed a change to branch master
in repository libhtml-wikiconverter-mediawiki-perl.

  from  6f1b0dc   update changelog
   new  45a94b2   Reformat debian/control with cme
   new  ac0997f   Mark package as autopkgtest-able.
   new  27910f6   Declare compliance with Debian Policy 3.9.6.
   new  548061d   Switch to source format "3.0 (quilt)".
   new  4ed46ef   Bump debhelper compatibility level to 9.
   new  31158ec   Add year of upstream copyright.
   new  07121c9   Drop Breaks/Replaces on ancient 
libhtml-wikiconverter-perl version.
   new  40d819c   Add patch to fix warning "Unescaped left brace in regex 
is deprecated".
   new  67543dc   releasing package libhtml-wikiconverter-mediawiki-perl 
version 0.59-2

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


Summary of changes:
 debian/changelog  | 20 
 debian/compat |  2 +-
 debian/control|  8 +++-
 debian/copyright  | 24 +---
 debian/patches/series |  1 +
 debian/patches/unescaped_left_brace.patch | 19 +++
 debian/source/format  |  1 +
 7 files changed, 54 insertions(+), 21 deletions(-)
 create mode 100644 debian/patches/series
 create mode 100644 debian/patches/unescaped_left_brace.patch
 create mode 100644 debian/source/format

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

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


[libhtml-wikiconverter-mediawiki-perl] 01/09: Reformat debian/control with cme

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

gregoa pushed a commit to branch master
in repository libhtml-wikiconverter-mediawiki-perl.

commit 45a94b2984b176dd0176c123b4de8b89e4fa28a3
Author: gregor herrmann 
Date:   Mon Dec 28 02:31:11 2015 +0100

Reformat debian/control with cme

Gbp-Dch: ignore
---
 debian/control | 1 -
 1 file changed, 1 deletion(-)

diff --git a/debian/control b/debian/control
index c0bec4b..170adf0 100644
--- a/debian/control
+++ b/debian/control
@@ -30,4 +30,3 @@ Description: Perl module to add MediaWiki markup support to 
HTML::WikiConverter
  HTML::WikiConverter::MediaWiki contains rules for converting HTML into
  MediaWiki markup, used by HTML::WikiConverter and 'html2wiki' command.
  See the libhtml-wikiconverter-perl package for more information.
-

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

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


[libhtml-wikiconverter-mediawiki-perl] 07/09: Drop Breaks/Replaces on ancient libhtml-wikiconverter-perl version.

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

gregoa pushed a commit to branch master
in repository libhtml-wikiconverter-mediawiki-perl.

commit 07121c9c97d0e95303d68a6595aa92ad2a10e964
Author: gregor herrmann 
Date:   Mon Dec 28 02:35:37 2015 +0100

Drop Breaks/Replaces on ancient libhtml-wikiconverter-perl version.
---
 debian/control | 2 --
 1 file changed, 2 deletions(-)

diff --git a/debian/control b/debian/control
index dc0d69e..eed3462 100644
--- a/debian/control
+++ b/debian/control
@@ -24,9 +24,7 @@ Architecture: all
 Depends: ${perl:Depends},
  ${misc:Depends},
  libhtml-wikiconverter-perl
-Breaks: libhtml-wikiconverter-perl (<< 0.50)
 Provides: libhtml-wikiconverter-dialect
-Replaces: libhtml-wikiconverter-perl (<< 0.50)
 Description: Perl module to add MediaWiki markup support to HTML::WikiConverter
  HTML::WikiConverter::MediaWiki contains rules for converting HTML into
  MediaWiki markup, used by HTML::WikiConverter and 'html2wiki' command.

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

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


[libhtml-wikiconverter-mediawiki-perl] 08/09: Add patch to fix warning "Unescaped left brace in regex is deprecated".

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

gregoa pushed a commit to branch master
in repository libhtml-wikiconverter-mediawiki-perl.

commit 40d819c138c760d95369cd6692c321b8d004462a
Author: gregor herrmann 
Date:   Mon Dec 28 02:39:33 2015 +0100

Add patch to fix warning "Unescaped left brace in regex is deprecated".

Closes: #809097
---
 debian/patches/series |  1 +
 debian/patches/unescaped_left_brace.patch | 19 +++
 2 files changed, 20 insertions(+)

diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..e481e7c
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+unescaped_left_brace.patch
diff --git a/debian/patches/unescaped_left_brace.patch 
b/debian/patches/unescaped_left_brace.patch
new file mode 100644
index 000..d43879a
--- /dev/null
+++ b/debian/patches/unescaped_left_brace.patch
@@ -0,0 +1,19 @@
+Description: fix warning "Unescaped left brace in regex is deprecated, passed 
through in regex"
+Origin: vendor
+Bug-Debian: https://bugs.debian.org/809097
+Author: gregor herrmann 
+Last-Update: 2015-12-28
+Forwarded: https://rt.cpan.org/Ticket/Display.html?id=110685
+Bug: https://rt.cpan.org/Ticket/Display.html?id=110685
+
+--- a/lib/HTML/WikiConverter/MediaWiki.pm
 b/lib/HTML/WikiConverter/MediaWiki.pm
+@@ -344,7 +344,7 @@
+ rule => { pattern => qr/^/m, location => 'start_of_line' },
+ table=> { pattern => qr/^\{\|/m, location => 'start_of_line' },
+ link => { pattern => qr/\[\[/m,  location => 'anywhere' },
+-template => { pattern => qr/{{/m,location => 'anywhere' },
++template => { pattern => qr/\{\{/m,  location => 'anywhere' },
+   );
+ 
+   delete $wikitext_patterns{template} if $self->preserve_templates;

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

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


[libhtml-wikiconverter-mediawiki-perl] 04/09: Switch to source format "3.0 (quilt)".

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

gregoa pushed a commit to branch master
in repository libhtml-wikiconverter-mediawiki-perl.

commit 548061dac5c81f4eb4fdc8f64304a5df409951f0
Author: gregor herrmann 
Date:   Mon Dec 28 02:31:14 2015 +0100

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

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

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

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


[libhtml-wikiconverter-mediawiki-perl] 05/09: Bump debhelper compatibility level to 9.

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

gregoa pushed a commit to branch master
in repository libhtml-wikiconverter-mediawiki-perl.

commit 4ed46ef335f3211cb7b4e3197ac879639b629447
Author: gregor herrmann 
Date:   Mon Dec 28 02:31:14 2015 +0100

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 7f8f011..ec63514 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-7
+9
diff --git a/debian/control b/debian/control
index 8081726..dc0d69e 100644
--- a/debian/control
+++ b/debian/control
@@ -7,7 +7,7 @@ Uploaders: Rene Mayorga ,
 Section: perl
 Testsuite: autopkgtest-pkg-perl
 Priority: optional
-Build-Depends: debhelper (>= 7)
+Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: perl,
  libtest-pod-coverage-perl,
  libtest-pod-perl,

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

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


[libhtml-wikiconverter-mediawiki-perl] 09/09: releasing package libhtml-wikiconverter-mediawiki-perl version 0.59-2

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

gregoa pushed a commit to branch master
in repository libhtml-wikiconverter-mediawiki-perl.

commit 67543dcc80fceb8c631e538011004b75737cf0c0
Author: gregor herrmann 
Date:   Mon Dec 28 02:42:46 2015 +0100

releasing package libhtml-wikiconverter-mediawiki-perl version 0.59-2
---
 debian/changelog | 20 
 1 file changed, 16 insertions(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 265bd8b..aba7e61 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,16 +1,18 @@
-libhtml-wikiconverter-mediawiki-perl (0.59-2) UNRELEASED; urgency=low
+libhtml-wikiconverter-mediawiki-perl (0.59-2) unstable; urgency=low
+
+  * Team upload.
 
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
 
   [ Ryan Niebur ]
-  * Update ryan52's email address
+  * Email change: Ryan Niebur -> r...@debian.org
 
   [ gregor herrmann ]
   * Set Standards-Version to 3.9.1; replace Conflicts with Breaks.
 
   [ Ansgar Burchardt ]
-  * Update my email address.
+  * Email change: Ansgar Burchardt -> ans...@debian.org
   * debian/control: Convert Vcs-* fields to Git.
 
   [ gregor herrmann ]
@@ -30,7 +32,17 @@ libhtml-wikiconverter-mediawiki-perl (0.59-2) UNRELEASED; 
urgency=low
   [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
 
- -- Ryan Niebur   Fri, 25 Sep 2009 00:25:09 -0700
+  [ gregor herrmann ]
+  * Mark package as autopkgtest-able.
+  * Declare compliance with Debian Policy 3.9.6.
+  * Switch to source format "3.0 (quilt)".
+  * Bump debhelper compatibility level to 9.
+  * Add year of upstream copyright.
+  * Drop Breaks/Replaces on ancient libhtml-wikiconverter-perl version.
+  * Add patch to fix warning "Unescaped left brace in regex is
+deprecated". (Closes: #809097)
+
+ -- gregor herrmann   Mon, 28 Dec 2015 02:39:55 +0100
 
 libhtml-wikiconverter-mediawiki-perl (0.59-1) unstable; urgency=low
 

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

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