[libnet-ssleay-perl] 01/01: Update OpenSSL patch to latest from Subversion

2016-07-28 Thread dom
This is an automated email from the git hooks/post-receive script.

dom pushed a commit to branch experimental
in repository libnet-ssleay-perl.

commit 29b1148ef6aaf48032cefe9f442cec68baf48a89
Author: Dominic Hargreaves 
Date:   Thu Jul 28 11:01:27 2016 +0100

Update OpenSSL patch to latest from Subversion
---
 debian/changelog   |   4 +-
 debian/patches/series  |   2 +-
 .../patches/{openssl-1.1.patch => svn-r472.patch}  | 684 +++--
 3 files changed, 641 insertions(+), 49 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 4dd3150..9d69e60 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libnet-ssleay-perl (1.74-2) experimental; urgency=medium
+libnet-ssleay-perl (1.74-1+svn472) experimental; urgency=medium
 
   [ gregor herrmann ]
   * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
@@ -7,7 +7,7 @@ libnet-ssleay-perl (1.74-2) experimental; urgency=medium
   * OpenSSL 1.1 patch from upstream SVN (Closes: #828401)
   * Remove Franck Joncourt from Uploaders (Closes: #831307)
 
- -- Dominic Hargreaves   Sat, 09 Jul 2016 00:02:40 +0200
+ -- Dominic Hargreaves   Thu, 28 Jul 2016 11:01:20 +0100
 
 libnet-ssleay-perl (1.74-1) unstable; urgency=medium
 
diff --git a/debian/patches/series b/debian/patches/series
index 9cc133e..3d5191d 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,3 @@
 0001-fix-typo-in-manpage.patch
 20no-stray-libz-link.patch
-openssl-1.1.patch
+svn-r472.patch
diff --git a/debian/patches/openssl-1.1.patch b/debian/patches/svn-r472.patch
similarity index 54%
rename from debian/patches/openssl-1.1.patch
rename to debian/patches/svn-r472.patch
index 806f90e..322ec9f 100644
--- a/debian/patches/openssl-1.1.patch
+++ b/debian/patches/svn-r472.patch
@@ -1,7 +1,33 @@
 Subject: OpenSSL 1.1 support
 Author: Mike McCauley 
-Origin: svn://svn.debian.org/svn/net-ssleay@469
+Origin: svn://svn.debian.org/svn/net-ssleay@472
 
+Removed patched ext/Module/Install/PRIVATE/Net/SSLeay.pm which doesn't
+exist in released version
+
+Index: inc/Module/Install/PRIVATE/Net/SSLeay.pm
+===
+--- a/inc/Module/Install/PRIVATE/Net/SSLeay.pm (revision 465)
 b/inc/Module/Install/PRIVATE/Net/SSLeay.pm (working copy)
+@@ -1,5 +1,4 @@
+ #line 1
+-#line 1
+ package Module::Install::PRIVATE::Net::SSLeay;
+ 
+ use strict;
+Index: Makefile.PL
+===
+--- a/Makefile.PL  (revision 465)
 b/Makefile.PL  (working copy)
+@@ -8,7 +8,7 @@
+ use File::Spec;
+ 
+ name('Net-SSLeay');
+-license'perl';
++license('perl');
+ all_from('lib/Net/SSLeay.pm');
+ 
+ ssleay();
 Index: SSLeay.xs
 ===
 --- a/SSLeay.xs(revision 465)
@@ -93,7 +119,109 @@ Index: SSLeay.xs
  }
  
  PUTBACK;
-@@ -1404,8 +1421,10 @@
+@@ -1221,7 +1238,101 @@
+ LEAVE;
+ }
+ 
++/* 
++ * Support for tlsext_ticket_key_cb_invoke was already in 0.9.8 but it was
++ * broken in various ways during the various 1.0.0* versions.
++ * Better enable it only starting with 1.0.1.
++*/
++#if defined(SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB) && OPENSSL_VERSION_NUMBER >= 
0x10001000L && !defined(OPENSSL_NO_TLSEXT)
++#define NET_SSLEAY_CAN_TICKET_KEY_CB
+ 
++int tlsext_ticket_key_cb_invoke(
++SSL *ssl,
++unsigned char *key_name,
++unsigned char *iv,
++EVP_CIPHER_CTX *ectx,
++HMAC_CTX *hctx,
++int enc
++){
++
++dSP;
++int count;
++SV *cb_func, *cb_data;
++SV *sv_name, *sv_key;
++STRLEN svlen;
++unsigned char *key;  /* key[0..15] aes, key[16..32] hmac */
++unsigned char *name;
++SSL_CTX *ctx = SSL_get_SSL_CTX(ssl);
++
++PR1("STARTED: tlsext_ticket_key_cb_invoke\n");
++cb_func = cb_data_advanced_get(ctx, "tlsext_ticket_key_cb!!func");
++cb_data = cb_data_advanced_get(ctx, "tlsext_ticket_key_cb!!data");
++
++if (!SvROK(cb_func) || (SvTYPE(SvRV(cb_func)) != SVt_PVCV))
++  croak("callback must be a code reference");
++
++ENTER;
++SAVETMPS;
++PUSHMARK(SP);
++XPUSHs(sv_2mortal(newSVsv(cb_data)));
++
++if (!enc) {
++  /* call as getkey(data,this_name) -> (key,current_name) */
++  XPUSHs(sv_2mortal(newSVpv(key_name,16)));
++} else {
++  /* call as getkey(data) -> (key,current_name) */
++}
++
++
++PUTBACK;
++count = call_sv( cb_func, G_ARRAY );
++
++SPAGAIN;
++if (count>0) sv_name = POPs;
++if (count>1) sv_key = POPs;
++
++if (!enc && ( !count || !SvOK(sv_key) )) {
++  TRACE(2,"no key returned for ticket");
++  return 0;
++}
++
++if (count != 2)
++  croak("key functions needs to return (key,name)");
++key = SvPV(sv_key,svlen);
++if (svlen < 32)
++  croak("key must be at least 32 random bytes, got %d",svlen);
++name = SvPV(sv_name,svlen);
++if (svlen != 16)

[libnet-ssleay-perl] annotated tag debian/1.74-1+svn472 created (now e766f61)

2016-07-28 Thread dom
This is an automated email from the git hooks/post-receive script.

dom pushed a change to annotated tag debian/1.74-1+svn472
in repository libnet-ssleay-perl.

at  e766f61   (tag)
   tagging  29b1148ef6aaf48032cefe9f442cec68baf48a89 (commit)
  replaces  debian/1.74-1
 tagged by  Dominic Hargreaves
on  Thu Jul 28 15:47:10 2016 +0100

- Log -
tagging package libnet-ssleay-perl version debian/1.74-1+svn472
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJXmhruAAoJEMAFfnFNaU+yglIQAJ/i4NN5bo8YEEf7XTi89NmM
VKKehOqeSYcxX5gNrdvt9gBTW3FtASVKEMDZ2kwrjSfOPkvPpw8DSbIIw7niSEq4
3EUNKdLpP1lm+V/xKHNFA5rgoOWVNEKCYuJFgW31MOnmkRGDS8I9oBVHWP0y3JK4
WAUKIce3k4hNzavWCYTHzrnHEbRP2J9dyq9PUKgH6YfVaT04SmYahwOxjWBbaJNz
STT84zBUESis3TyVaiQ5zjVbee/t0OadET01/0kNftRJ6DtsMtFJrNNjH14Ax+sz
1U9iIkc+nKauFXKoaxsIT+avLBm/O6X4m7Jx7CXnZXaO8zL0mTRFkBRMDxDcMxjA
yOYsS7QiRTDf9MVTafwIkFQJ0dO5chD991LnpssptgCR+k3f4hfSqLlUQJZMSCpi
Fb0RE/yy3m4vWfvhT5RKPpZeziTCYuZ1bri/Kcx+w7QmZU44rT+zbh2Vzs24wxgL
cPUJ9cKQOC/Hm8t567fVrs5enyyiEiTu3GoBWgHRqbmQ7Uh3eXoXcFgPC7M78rRp
3BmSPIij0d30qsBiIVGhWDEM5KlZIt7gmk3X0VjiOCt3g+GHQfRf8BCOiGpRdffn
yiOC+Sq2UpUjgENxswsu5Y511gKyNoudbShJ/5gUmme9kLmcPiM4rLrYV8OFSMq3
h8TBp4rSh0AjMWti9N3+
=c4ti
-END PGP SIGNATURE-

Dominic Hargreaves (3):
  OpenSSL 1.1 patch from upstream SVN (Closes: #828401)
  Remove Franck Joncourt from Uploaders (Closes: #831307)
  Update OpenSSL patch to latest from Subversion

gregor herrmann (2):
  debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
  update changelog

---

No new revisions were added by this update.

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

___
Pkg-perl-cvs-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-ssleay-perl] branch experimental updated (9c46b17 -> 29b1148)

2016-07-28 Thread dom
This is an automated email from the git hooks/post-receive script.

dom pushed a change to branch experimental
in repository libnet-ssleay-perl.

  from  9c46b17   Remove Franck Joncourt from Uploaders (Closes: #831307)
   new  29b1148   Update OpenSSL patch to latest from Subversion

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


Summary of changes:
 debian/changelog   |   4 +-
 debian/patches/series  |   2 +-
 .../patches/{openssl-1.1.patch => svn-r472.patch}  | 684 +++--
 3 files changed, 641 insertions(+), 49 deletions(-)
 rename debian/patches/{openssl-1.1.patch => svn-r472.patch} (54%)

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

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


[libmath-basecnv-perl] branch master updated (801017c -> 34cd058)

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

carnil pushed a change to branch master
in repository libmath-basecnv-perl.

  from  801017c   Update debian/changelog file
   new  eca7fc2   Drop Build-Depends-Indep on libtest-pod(-coverage)-perl
   new  34cd058   Prepare changelog for release

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


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

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

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


[libmath-basecnv-perl] 01/02: Drop Build-Depends-Indep on libtest-pod(-coverage)-perl

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

carnil pushed a commit to branch master
in repository libmath-basecnv-perl.

commit eca7fc208df00b4c405a97945f31bf75a1abccf5
Author: Salvatore Bonaccorso 
Date:   Thu Jul 28 18:33:20 2016 +0200

Drop Build-Depends-Indep on libtest-pod(-coverage)-perl
---
 debian/control | 2 --
 1 file changed, 2 deletions(-)

diff --git a/debian/control b/debian/control
index 3e7c317..b18904a 100644
--- a/debian/control
+++ b/debian/control
@@ -8,8 +8,6 @@ Priority: optional
 Build-Depends: debhelper (>= 9),
libmodule-build-perl,
perl
-Build-Depends-Indep: libtest-pod-coverage-perl,
- libtest-pod-perl
 Standards-Version: 3.9.8
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libmath-basecnv-perl.git
 Vcs-Git: 
https://anonscm.debian.org/git/pkg-perl/packages/libmath-basecnv-perl.git

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

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


[libdigest-sha-perl] 02/02: Update debian/changelog file

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

carnil pushed a commit to branch master
in repository libdigest-sha-perl.

commit de43da510069412c4eda7b0f8e07d6493ca0d02c
Author: Salvatore Bonaccorso 
Date:   Thu Jul 28 20:59:25 2016 +0200

Update debian/changelog file

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

diff --git a/debian/changelog b/debian/changelog
index 642b823..63200ad 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,10 @@ libdigest-sha-perl (5.95-3) UNRELEASED; urgency=medium
   [ gregor herrmann ]
   * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
 
+  [ Salvatore Bonaccorso ]
+  * Imported Upstream version 5.96
+- Contains mitigation fix related to CVE-2016-1238 in Perl.
+
  -- gregor herrmann   Sat, 24 Oct 2015 13:45:11 +0200
 
 libdigest-sha-perl (5.95-2) unstable; urgency=medium

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

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


[libdigest-sha-perl] branch master updated (08b9bc6 -> de43da5)

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

carnil pushed a change to branch master
in repository libdigest-sha-perl.

  from  08b9bc6   update changelog
  adds  7361e4f   Imported Upstream version 5.96
   new  c6e2ccf   Merge tag 'upstream/5.96'
   new  de43da5   Update debian/changelog file

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


Summary of changes:
 Changes   |  7 +++
 META.yml  |  4 ++--
 README|  4 ++--
 debian/changelog  |  4 
 lib/Digest/SHA.pm |  8 
 shasum| 12 +++-
 src/sha.c | 12 ++--
 src/sha.h |  6 +++---
 src/sha64bit.c|  6 +++---
 src/sha64bit.h|  6 +++---
 10 files changed, 41 insertions(+), 28 deletions(-)

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

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


[libdigest-sha-perl] 01/01: pristine-tar data for libdigest-sha-perl_5.96.orig.tar.gz

2016-07-28 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 libdigest-sha-perl.

commit edbde0fcbc609be686abfbca333eab0f7084d019
Author: Salvatore Bonaccorso 
Date:   Thu Jul 28 20:57:19 2016 +0200

pristine-tar data for libdigest-sha-perl_5.96.orig.tar.gz
---
 libdigest-sha-perl_5.96.orig.tar.gz.delta | Bin 0 -> 1904 bytes
 libdigest-sha-perl_5.96.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libdigest-sha-perl_5.96.orig.tar.gz.delta 
b/libdigest-sha-perl_5.96.orig.tar.gz.delta
new file mode 100644
index 000..cc83406
Binary files /dev/null and b/libdigest-sha-perl_5.96.orig.tar.gz.delta differ
diff --git a/libdigest-sha-perl_5.96.orig.tar.gz.id 
b/libdigest-sha-perl_5.96.orig.tar.gz.id
new file mode 100644
index 000..75e36ba
--- /dev/null
+++ b/libdigest-sha-perl_5.96.orig.tar.gz.id
@@ -0,0 +1 @@
+a5bc25f367a67299d1c1643179b4a6b93f1c5df0

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

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


[libdigest-sha-perl] 01/02: Merge tag 'upstream/5.96'

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

carnil pushed a commit to branch master
in repository libdigest-sha-perl.

commit c6e2ccf49d5080545da7b1c2b9548b681f26bafd
Merge: 08b9bc6 7361e4f
Author: Salvatore Bonaccorso 
Date:   Thu Jul 28 20:57:19 2016 +0200

Merge tag 'upstream/5.96'

Upstream version 5.96

 Changes   |  7 +++
 META.yml  |  4 ++--
 README|  4 ++--
 lib/Digest/SHA.pm |  8 
 shasum| 12 +++-
 src/sha.c | 12 ++--
 src/sha.h |  6 +++---
 src/sha64bit.c|  6 +++---
 src/sha64bit.h|  6 +++---
 9 files changed, 37 insertions(+), 28 deletions(-)

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

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


[libdigest-sha-perl] annotated tag upstream/5.96 created (now f53ebad)

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

carnil pushed a change to annotated tag upstream/5.96
in repository libdigest-sha-perl.

at  f53ebad   (tag)
   tagging  7361e4f2519f1d15a3e83974c11757e5780e21d4 (commit)
  replaces  upstream/5.95
 tagged by  Salvatore Bonaccorso
on  Thu Jul 28 20:57:19 2016 +0200

- Log -
Upstream version 5.96

Salvatore Bonaccorso (1):
  Imported Upstream version 5.96

---

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

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


[libdigest-sha3-perl] 02/02: Update debian/changelog file

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

carnil pushed a commit to branch master
in repository libdigest-sha3-perl.

commit 7f4afe715ecbe742be90a26c906d0a603fadf5d5
Author: Salvatore Bonaccorso 
Date:   Thu Jul 28 21:01:46 2016 +0200

Update debian/changelog file

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

diff --git a/debian/changelog b/debian/changelog
index 922615b..6a20999 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libdigest-sha3-perl (0.24-3) UNRELEASED; urgency=medium
+libdigest-sha3-perl (0.25-1) UNRELEASED; urgency=medium
 
   [ Salvatore Bonaccorso ]
   * debian/control: Use HTTPS transport protocol for Vcs-Git URI
@@ -6,6 +6,10 @@ libdigest-sha3-perl (0.24-3) UNRELEASED; urgency=medium
   [ gregor herrmann ]
   * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
 
+  [ Salvatore Bonaccorso ]
+  * Imported Upstream version 0.25
+- Contains mitigation fix related to CVE-2016-1238 in Perl.
+
  -- Salvatore Bonaccorso   Sat, 30 Jan 2016 20:04:06 +0100
 
 libdigest-sha3-perl (0.24-2) unstable; urgency=medium

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

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


[libdigest-sha3-perl] annotated tag upstream/0.25 created (now 68ac231)

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

carnil pushed a change to annotated tag upstream/0.25
in repository libdigest-sha3-perl.

at  68ac231   (tag)
   tagging  df552d6385f35758ae2a6b89bc95a7bdfba41e5d (commit)
  replaces  upstream/0.24
 tagged by  Salvatore Bonaccorso
on  Thu Jul 28 21:00:19 2016 +0200

- Log -
Upstream version 0.25

Salvatore Bonaccorso (1):
  Imported Upstream version 0.25

---

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

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


[libdigest-sha3-perl] 01/02: Merge tag 'upstream/0.25'

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

carnil pushed a commit to branch master
in repository libdigest-sha3-perl.

commit 2fc8f56c4e87c1a5bde6643a26bf80ef10b39f24
Merge: 64e80a8 df552d6
Author: Salvatore Bonaccorso 
Date:   Thu Jul 28 21:00:19 2016 +0200

Merge tag 'upstream/0.25'

Upstream version 0.25

 Changes|  7 +++
 META.yml   |  4 ++--
 README |  9 -
 lib/Digest/SHA3.pm | 16 
 sha3sum| 12 +++-
 src/sha3.c | 12 ++--
 src/sha3.h |  6 +++---
 7 files changed, 37 insertions(+), 29 deletions(-)

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

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


[libdigest-sha-perl] 01/06: Update copyright years for upstream files

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

carnil pushed a commit to branch master
in repository libdigest-sha-perl.

commit 589524e7e349a696a6a049f6a18b3f700df3a86b
Author: Salvatore Bonaccorso 
Date:   Thu Jul 28 21:12:47 2016 +0200

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

diff --git a/debian/copyright b/debian/copyright
index 7c65a2c..d968259 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,7 +4,7 @@ Upstream-Contact: Mark Shelor 
 Source: https://metacpan.org/release/Digest-SHA
 
 Files: *
-Copyright: 2003-2015, Mark Shelor
+Copyright: 2003-2016, Mark Shelor
 License: Artistic or GPL-1+
 
 Files: debian/*

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

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


[libdigest-sha-perl] 04/06: Update debian/changelog file

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

carnil pushed a commit to branch master
in repository libdigest-sha-perl.

commit 06c03373927eaa10e1ece4c959d4ae2a7018d9b9
Author: Salvatore Bonaccorso 
Date:   Thu Jul 28 21:16:54 2016 +0200

Update debian/changelog file

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

diff --git a/debian/changelog b/debian/changelog
index 63200ad..e7dee59 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libdigest-sha-perl (5.95-3) UNRELEASED; urgency=medium
+libdigest-sha-perl (5.96-1) UNRELEASED; urgency=medium
 
   [ gregor herrmann ]
   * Rename autopkgtest configuration file(s) as per new pkg-perl-
@@ -13,8 +13,11 @@ libdigest-sha-perl (5.95-3) UNRELEASED; urgency=medium
   [ Salvatore Bonaccorso ]
   * Imported Upstream version 5.96
 - Contains mitigation fix related to CVE-2016-1238 in Perl.
+  * Update copyright years for upstream files
+  * Update copyright years for debian/* packaging files
+  * Declare compliance with Debian policy 3.9.8
 
- -- gregor herrmann   Sat, 24 Oct 2015 13:45:11 +0200
+ -- Salvatore Bonaccorso   Thu, 28 Jul 2016 21:16:43 +0200
 
 libdigest-sha-perl (5.95-2) unstable; urgency=medium
 

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

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


[libdigest-sha-perl] 06/06: Prepare changelog for release

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

carnil pushed a commit to branch master
in repository libdigest-sha-perl.

commit 638e1459e4e7de86bfbc7af16c18b7aa06af88a1
Author: Salvatore Bonaccorso 
Date:   Thu Jul 28 21:21:39 2016 +0200

Prepare changelog for release

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

diff --git a/debian/changelog b/debian/changelog
index e7dee59..dc8ebba 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libdigest-sha-perl (5.96-1) UNRELEASED; urgency=medium
+libdigest-sha-perl (5.96-1) unstable; urgency=medium
 
   [ gregor herrmann ]
   * Rename autopkgtest configuration file(s) as per new pkg-perl-
@@ -16,8 +16,9 @@ libdigest-sha-perl (5.96-1) UNRELEASED; urgency=medium
   * Update copyright years for upstream files
   * Update copyright years for debian/* packaging files
   * Declare compliance with Debian policy 3.9.8
+  * debian/rules: Build enabling all hardening flags
 
- -- Salvatore Bonaccorso   Thu, 28 Jul 2016 21:16:43 +0200
+ -- Salvatore Bonaccorso   Thu, 28 Jul 2016 21:21:32 +0200
 
 libdigest-sha-perl (5.95-2) unstable; urgency=medium
 

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

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


[libdigest-sha-perl] annotated tag debian/5.96-1 created (now be044fe)

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

carnil pushed a change to annotated tag debian/5.96-1
in repository libdigest-sha-perl.

at  be044fe   (tag)
   tagging  638e1459e4e7de86bfbc7af16c18b7aa06af88a1 (commit)
  replaces  debian/5.95-2
 tagged by  Salvatore Bonaccorso
on  Thu Jul 28 21:24:16 2016 +0200

- Log -
tagging package libdigest-sha-perl version debian/5.96-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCgAGBQJXmlvgAAoJEAVMuPMTQ89EWgMQAJBxCYNDKxfx2V3QA88y1/up
Z7WiBHZJXU33/VfWetFGKNTo9qoL4a3PwQsvUUkm8RiXlRFTZvp+Zelt1Bi0i8gE
lvgdmKntGFiEMnXZBH3oRyiL5rklbQqRFoAlXzRypDeYYDSijHCbvBMk403YjTFb
+kp2vLF4NLZCbuZSPb0OfhnKl3p4LzqLlbuKA5uCmvPKGPx+zhD9lmhQ+Pt7nNN9
5z9eMS4svEZzuDP9i2Jm9dXDFVQgkRi3ZDIRaHwtOhjVAliQXd1+1zjW4y97iDAQ
hbdHfR5BBOxVJyT8V/XT9Oq3h1v/cp9vFZy8p8quWQKjhm2pEUcYqL8awO+tL1v0
rgU9z3jU2kx3W+c2kN8tgOGwDg+2CTpjQcX61dD/L8jTrpktjMJuYq2xD3rE9YXz
+JsEuK2Y7z10SuuqPC+ShJyPGu2hAV08TykXtUKLpAx4lVp9cJfFhcriWxSn9Wox
2pZ6XefRBLDMNfMLqfJ8fYi89TrjmWoNb6BxQY5Io3dmEQmj1rDHxW9lMWEPEV80
OaITSQvDOGsOFeiDYraDZgJUi2iTrXUuMUe4LD0+rmfmHFn+ACAS/ffSoqqa4kTP
Hrpgwk5JJRqUBDPts1Y48n2xzY+WUJcGtqyfoQZvejw2Jn/f0Bcj6l+NW69E+Zqg
WGhtafeSnXQYa5Ep/BUp
=+IhX
-END PGP SIGNATURE-

Salvatore Bonaccorso (11):
  debian/control: Use HTTPS transport protocol for Vcs-Git URI
  update changelog
  Imported Upstream version 5.96
  Merge tag 'upstream/5.96'
  Update debian/changelog file
  Update copyright years for upstream files
  Update copyright years for debian/* packaging files
  Declare compliance with Debian policy 3.9.8
  Update debian/changelog file
  debian/rules: Build enabling all hardening flags
  Prepare changelog for release

gregor herrmann (4):
  Rename autopkgtest configuration file(s) as per new pkg-perl-autopkgtest 
schema.
  update changelog
  debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
  update changelog

---

This annotated tag includes the following new commits:

   new  589524e   Update copyright years for upstream files
   new  80f1465   Update copyright years for debian/* packaging files
   new  8867fad   Declare compliance with Debian policy 3.9.8
   new  06c0337   Update debian/changelog file
   new  9ffa4fa   debian/rules: Build enabling all hardening flags
   new  638e145   Prepare changelog for release

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


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

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


[libdigest-sha3-perl] 04/05: debian/rules: Build enabling all hardening flags

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

carnil pushed a commit to branch master
in repository libdigest-sha3-perl.

commit 139d2ce30fb485435ff7535b970d757c4aa803eb
Author: Salvatore Bonaccorso 
Date:   Thu Jul 28 21:43:43 2016 +0200

debian/rules: Build enabling all hardening flags
---
 debian/rules | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/debian/rules b/debian/rules
index d54da6d..11c5909 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,5 +1,7 @@
 #!/usr/bin/make -f
 
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+
 PACKAGE = $(shell dh_listpackages)
 TMP = $(CURDIR)/debian/$(PACKAGE)
 

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

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


[libdigest-sha3-perl] 05/05: Prepare changelog for release

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

carnil pushed a commit to branch master
in repository libdigest-sha3-perl.

commit e7d15f495786501e5d853a921982926a89369c8a
Author: Salvatore Bonaccorso 
Date:   Thu Jul 28 21:44:01 2016 +0200

Prepare changelog for release

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

diff --git a/debian/changelog b/debian/changelog
index 6a20999..b032014 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libdigest-sha3-perl (0.25-1) UNRELEASED; urgency=medium
+libdigest-sha3-perl (0.25-1) unstable; urgency=medium
 
   [ Salvatore Bonaccorso ]
   * debian/control: Use HTTPS transport protocol for Vcs-Git URI
@@ -9,8 +9,12 @@ libdigest-sha3-perl (0.25-1) UNRELEASED; urgency=medium
   [ Salvatore Bonaccorso ]
   * Imported Upstream version 0.25
 - Contains mitigation fix related to CVE-2016-1238 in Perl.
+  * Update copyright years for upstream files
+  * Update copyright years for debian/* packaging files
+  * Declare compliance with Debian policy 3.9.8
+  * debian/rules: Build enabling all hardening flags
 
- -- Salvatore Bonaccorso   Sat, 30 Jan 2016 20:04:06 +0100
+ -- Salvatore Bonaccorso   Thu, 28 Jul 2016 21:43:53 +0200
 
 libdigest-sha3-perl (0.24-2) unstable; urgency=medium
 

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

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


[libdigest-sha3-perl] 01/05: Update copyright years for upstream files

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

carnil pushed a commit to branch master
in repository libdigest-sha3-perl.

commit 0f9db30b0b8631975124e82872ce6d044d3d9816
Author: Salvatore Bonaccorso 
Date:   Thu Jul 28 21:41:08 2016 +0200

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

diff --git a/debian/copyright b/debian/copyright
index 7eee214..636193f 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,7 +4,7 @@ Upstream-Contact: Mark Shelor 
 Upstream-Name: Digest-SHA3
 
 Files: *
-Copyright: 2012-2015, Mark Shelor 
+Copyright: 2012-2016, Mark Shelor 
 License: Artistic or GPL-1+
 
 Files: debian/*

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

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


[libdigest-sha3-perl] branch master updated (7f4afe7 -> e7d15f4)

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

carnil pushed a change to branch master
in repository libdigest-sha3-perl.

  from  7f4afe7   Update debian/changelog file
   new  0f9db30   Update copyright years for upstream files
   new  5485c79   Update copyright years for debian/* packaging files
   new  6087eff   Declare compliance with Debian policy 3.9.8
   new  139d2ce   debian/rules: Build enabling all hardening flags
   new  e7d15f4   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 | 8 ++--
 debian/control   | 2 +-
 debian/copyright | 4 ++--
 debian/rules | 2 ++
 4 files changed, 11 insertions(+), 5 deletions(-)

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

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


[libdigest-sha3-perl] annotated tag debian/0.25-1 created (now 41e1394)

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

carnil pushed a change to annotated tag debian/0.25-1
in repository libdigest-sha3-perl.

at  41e1394   (tag)
   tagging  e7d15f495786501e5d853a921982926a89369c8a (commit)
  replaces  debian/0.24-2
 tagged by  Salvatore Bonaccorso
on  Thu Jul 28 21:44:15 2016 +0200

- Log -
tagging package libdigest-sha3-perl version debian/0.25-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCgAGBQJXmmCPAAoJEAVMuPMTQ89Ezz0P/iQelyq1Re/ev0jrXXrQuXoY
fshhhXB/+gaFmZUx5zJ3O56gj+lGc6Dk8y4uWo/TbVs/7gXbeplXEDfMN6LcSSEj
UVHQjKogxvOcpQYCgKrzwAJrzcX2AIE304JKWBSbYH058oJDEw3RIcMvHtQcLrRZ
lTJj+fYbidF8t+4FYanJRb3P0XLruvCp1Rc61mtkX2dXXNbCsgM/KDxmTok26gbV
NAMwISE4lH1LoTDVR2T4b2cWDANAdB7UqTpPD1U/RYYiQvpmA2MybYZ9zFZ2tWmD
ZLueXy59sw96VBf+JuCqOnfI3mhIHOBZC9VIY9tsd+r1LmWlqok7GYCGNl5/aeFM
68KkJxilp+J/D5NPyLSO+RrBaNKT4LxzjAz3h5dSiW6c1sqmVRcL0pU5gSWhlIsf
PrtUUhEI0asmTdvFSzbKLz2BMG9G1LFX0Xw040hhpxPybrw0yqNhClt2CnX4ik0s
r065npdikB2VkUfIDPYnIhRYTmxaLtBcIuTgnsJOnzJ8v1icZwt7FMX9zyOVJcC7
LlzdUZmp6ogNsTjjne/WbCxfGjQGUWUYYq1iG5M+nyJRpFOvX/Z5vAJRRN7mb7no
dqBa3ini+Paf1rWJJJQhU/iI3jzbQtgYtYjugT/fSSWI0o1Uh2h/fe6/MXUz6tft
vvHk7D+3I9/U3ivA4fxD
=f8qq
-END PGP SIGNATURE-

Salvatore Bonaccorso (10):
  debian/control: Use HTTPS transport protocol for Vcs-Git URI
  update changelog
  Imported Upstream version 0.25
  Merge tag 'upstream/0.25'
  Update debian/changelog file
  Update copyright years for upstream files
  Update copyright years for debian/* packaging files
  Declare compliance with Debian policy 3.9.8
  debian/rules: Build enabling all hardening flags
  Prepare changelog for release

gregor herrmann (2):
  debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
  update changelog

---

This annotated tag includes the following new commits:

   new  0f9db30   Update copyright years for upstream files
   new  5485c79   Update copyright years for debian/* packaging files
   new  6087eff   Declare compliance with Debian policy 3.9.8
   new  139d2ce   debian/rules: Build enabling all hardening flags
   new  e7d15f4   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/libdigest-sha3-perl.git

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


[libcatalyst-perl] branch master updated (9e0b22c -> 91aba0f)

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

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

  from  9e0b22c   releasing package libcatalyst-perl version 5.90111-1
  adds  79d0cd0   Imported Upstream version 5.90112
   new  eee1ad1   Merge tag 'upstream/5.90112'
   new  bf4ec7e   Remove spelling.patch (applied upstream)
   new  91aba0f   Releasing package libcatalyst-perl version 5.90112-1

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


Summary of changes:
 Changes   |  5 +
 MANIFEST  |  1 +
 META.yml  |  2 +-
 debian/changelog  |  7 +++
 debian/patches/series |  1 -
 debian/patches/spelling.patch | 29 -
 lib/Catalyst.pm   |  5 -
 lib/Catalyst/Delta.pod|  2 +-
 lib/Catalyst/Runtime.pm   |  2 +-
 lib/Catalyst/Upgrading.pod|  2 +-
 t/undef_encoding_regression.t | 42 ++
 11 files changed, 63 insertions(+), 35 deletions(-)
 delete mode 100644 debian/patches/series
 delete mode 100644 debian/patches/spelling.patch
 create mode 100644 t/undef_encoding_regression.t

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

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


[libcatalyst-perl] annotated tag upstream/5.90112 created (now 101c83a)

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a change to annotated tag upstream/5.90112
in repository libcatalyst-perl.

at  101c83a   (tag)
   tagging  79d0cd034434e7de039d8f97766e41050df888e6 (commit)
  replaces  upstream/5.90111
 tagged by  Nick Morrott
on  Thu Jul 28 23:35:48 2016 +0100

- Log -
Upstream version 5.90112

Nick Morrott (1):
  Imported Upstream version 5.90112

---

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

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


[libcatalyst-perl] 03/03: Releasing package libcatalyst-perl version 5.90112-1

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

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

commit 91aba0fd6cd1cb35a7ea5c4fa8221f1201790456
Author: Nick Morrott 
Date:   Thu Jul 28 23:43:05 2016 +0100

Releasing package libcatalyst-perl version 5.90112-1
---
 debian/changelog | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index fc90702..00df171 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libcatalyst-perl (5.90112-1) unstable; urgency=medium
+
+  * Import upstream version 5.90112.
+  * Drop spelling.patch (applied upstream)
+
+ -- Nick Morrott   Thu, 28 Jul 2016 23:41:18 +0100
+
 libcatalyst-perl (5.90111-1) unstable; urgency=medium
 
   * Team upload

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

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


[libcatalyst-perl] 01/03: Merge tag 'upstream/5.90112'

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

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

commit eee1ad1ae4225a9f429ad55e4959824e0e247347
Merge: 9e0b22c 79d0cd0
Author: Nick Morrott 
Date:   Thu Jul 28 23:35:48 2016 +0100

Merge tag 'upstream/5.90112'

Upstream version 5.90112

 Changes   |  5 +
 MANIFEST  |  1 +
 META.yml  |  2 +-
 lib/Catalyst.pm   |  5 -
 lib/Catalyst/Delta.pod|  2 +-
 lib/Catalyst/Runtime.pm   |  2 +-
 lib/Catalyst/Upgrading.pod|  2 +-
 t/undef_encoding_regression.t | 42 ++
 8 files changed, 56 insertions(+), 5 deletions(-)

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

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


[libcatalyst-perl] 01/01: pristine-tar data for libcatalyst-perl_5.90112.orig.tar.gz

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch pristine-tar
in repository libcatalyst-perl.

commit 9896325a2ef3f8363d80b8d5ca5057c9ea7bb323
Author: Nick Morrott 
Date:   Thu Jul 28 23:35:48 2016 +0100

pristine-tar data for libcatalyst-perl_5.90112.orig.tar.gz
---
 libcatalyst-perl_5.90112.orig.tar.gz.delta | Bin 0 -> 20293 bytes
 libcatalyst-perl_5.90112.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libcatalyst-perl_5.90112.orig.tar.gz.delta 
b/libcatalyst-perl_5.90112.orig.tar.gz.delta
new file mode 100644
index 000..0f8475c
Binary files /dev/null and b/libcatalyst-perl_5.90112.orig.tar.gz.delta differ
diff --git a/libcatalyst-perl_5.90112.orig.tar.gz.id 
b/libcatalyst-perl_5.90112.orig.tar.gz.id
new file mode 100644
index 000..ea85142
--- /dev/null
+++ b/libcatalyst-perl_5.90112.orig.tar.gz.id
@@ -0,0 +1 @@
+1d96a2aaccf2be88fdecdaa672a9419a619dd1fa

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

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


[libcatalyst-perl] 02/03: Remove spelling.patch (applied upstream)

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

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

commit bf4ec7e3ffdc5baab9cc419adbf27dbfa57d2fd1
Author: Nick Morrott 
Date:   Thu Jul 28 23:40:49 2016 +0100

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

diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 5299247..000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-spelling.patch
diff --git a/debian/patches/spelling.patch b/debian/patches/spelling.patch
deleted file mode 100644
index 60213bf..000
--- a/debian/patches/spelling.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Description: fix a typo in the POD
-Origin: vendor
-Author: gregor herrmann 
-Last-Update: 2016-07-25
-Forwarded: https://rt.cpan.org/Ticket/Display.html?id=109401
-Bug: https://rt.cpan.org/Ticket/Display.html?id=109401
-
 a/lib/Catalyst/Upgrading.pod
-+++ b/lib/Catalyst/Upgrading.pod
-@@ -72,7 +72,7 @@
- synchronized to the core method first.  We reserve the right to cease support
- of the non core version should we reach a point in time where it cannot be
- properly supported as an external module.  Luckily this should be a trivial
--search and replace.  Change all occurences of:
-+search and replace.  Change all occurrences of:
- 
- CatalystX::InjectComponent->inject(...)
- 
 a/lib/Catalyst/Delta.pod
-+++ b/lib/Catalyst/Delta.pod
-@@ -22,7 +22,7 @@
- application setup, rather than for each request.  This reduced request 
overhead
- when you are composing lots of traits.  It possible this may break some code 
that
- was adding traits after the application setup was finalized.  Please shout 
out if
--this actually causes you trouble and we'll do the best to accomodate.
-+this actually causes you trouble and we'll do the best to accommodate.
- 
- =head2 VERSION 5.90102 - 5.90103
- 

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

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


[libcatalyst-perl] branch pristine-tar updated (196ffa2 -> 9896325)

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a change to branch pristine-tar
in repository libcatalyst-perl.

  from  196ffa2   pristine-tar data for libcatalyst-perl_5.90111.orig.tar.gz
   new  9896325   pristine-tar data for libcatalyst-perl_5.90112.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:
 libcatalyst-perl_5.90112.orig.tar.gz.delta | Bin 0 -> 20293 bytes
 libcatalyst-perl_5.90112.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libcatalyst-perl_5.90112.orig.tar.gz.delta
 create mode 100644 libcatalyst-perl_5.90112.orig.tar.gz.id

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

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


[libcatalyst-perl] annotated tag debian/5.90112-1 created (now ac6bff5)

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

gregoa pushed a change to annotated tag debian/5.90112-1
in repository libcatalyst-perl.

at  ac6bff5   (tag)
   tagging  91aba0fd6cd1cb35a7ea5c4fa8221f1201790456 (commit)
  replaces  debian/5.90111-1
 tagged by  gregor herrmann
on  Fri Jul 29 01:20:37 2016 +0200

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

iQJ8BAABCgBmBQJXmpNFXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoGyYUP/3WAd6t48rpqx3bSgrRDWmS7
Xm0CZoI08ob5U3WPIGvPmOSv87ZXXegrviHPUhJC7qa6DiRUBsnqVxbSvQrp1Sob
ANUdm9ydHGdBGEd3jf/MQtoabxBoH/+HhhdGVmGXSPMX3gZR3xXUx3ReS1jEdsOG
CbbnGnFFl3hImEP2TCQuacPlfvLr8Tj6LDPdEFw+Ieqd9L6keFBtlyEDG6ErfJB3
/DoiOtFA7jfce26IyPEIALZxL7s8po7ZgpWa5GYQ4jW3zvESCOUKsA3dkG/EU6Nw
UgCtSrS7GCiiGgtst1FJds2/8ZmfaMyNgOscB4BZbLMhzxqCCjPcMFYzVD4uy6vs
BPCDUUW2jFv1bEPzy5JwvrFPcJiAcRnlytYcDMipqfqdvhe1TtmZ+d9ixv5SVDb+
ZbLziKRRMtnvzJn6y7qqLi7122hn4VQF82ddIPcMYEORHxFVT/FO+bYWdml3UXLn
SEL6Kf+9/wnKZhwgP4DbYbwma2I3AHPEmvz48nRmjgpNAoFGWTWEkxck8ESHCPiW
1BVC3YES7hJuMCmXuqXnIah/rI745Z1GBHsUdZEgpr1cc/mNrRt0IV3UrvONPYKy
3uDW/Ab1XNFCvWeGpOh+ieYSM8WBGO7C6IaJmd3kM5vPiw5xOBmlu15cuAL56+Cb
yC59vqiN6Sbu0m8U+jMS
=/Y5Y
-END PGP SIGNATURE-

Nick Morrott (4):
  Imported Upstream version 5.90112
  Merge tag 'upstream/5.90112'
  Remove spelling.patch (applied upstream)
  Releasing package libcatalyst-perl version 5.90112-1

---

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

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


[libcatalystx-simplelogin-perl] 07/11: Update lintian override

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcatalystx-simplelogin-perl.

commit ca39ca2a96568a50f2ce868bf3e4062dc1e5
Author: Nick Morrott 
Date:   Mon Jul 25 14:14:38 2016 +0100

Update lintian override
---
 debian/libcatalystx-simplelogin-perl.lintian-overrides | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/libcatalystx-simplelogin-perl.lintian-overrides 
b/debian/libcatalystx-simplelogin-perl.lintian-overrides
index c066fab..330399b 100644
--- a/debian/libcatalystx-simplelogin-perl.lintian-overrides
+++ b/debian/libcatalystx-simplelogin-perl.lintian-overrides
@@ -1,2 +1,2 @@
 # bad luck, this is a real long module name
-libcatalystx-simplelogin-perl: manpage-has-errors-from-man 
usr/share/man/man3/CatalystX::SimpleLogin.3pm.gz 229: warning [p 2, 3.2i]: 
can't break line
+libcatalystx-simplelogin-perl: manpage-has-errors-from-man 
usr/share/man/man3/CatalystX::SimpleLogin.3pm.gz 167: warning [p 2, 3.2i]: 
can't break line

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

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


[libcatalystx-simplelogin-perl] 05/11: Bump Standards-Version to 3.9.8 (no changes)

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcatalystx-simplelogin-perl.

commit 17d450139f083393d6ece850ca28d9d13e146ea8
Author: Nick Morrott 
Date:   Mon Jul 25 14:04:04 2016 +0100

Bump Standards-Version to 3.9.8 (no changes)
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 12e758b..43b4c64 100644
--- a/debian/control
+++ b/debian/control
@@ -30,7 +30,7 @@ Build-Depends-Indep: perl,
  libsql-translator-perl,
  libtest-exception-perl,
  libtry-tiny-perl (>= 0.24)
-Standards-Version: 3.9.5
+Standards-Version: 3.9.8
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libcatalystx-simplelogin-perl.git
 Vcs-Git: 
https://anonscm.debian.org/git/pkg-perl/packages/libcatalystx-simplelogin-perl.git
 Homepage: https://metacpan.org/release/CatalystX-SimpleLogin

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

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


[libcatalystx-simplelogin-perl] 11/11: Releasing package libcatalystx-simplelogin-perl version 0.19-1

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcatalystx-simplelogin-perl.

commit dff4b1654156f6bd03c280caebb83b3867ecadf4
Author: Nick Morrott 
Date:   Mon Jul 25 14:09:18 2016 +0100

Releasing package libcatalystx-simplelogin-perl version 0.19-1
---
 debian/changelog | 18 --
 1 file changed, 16 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index acbcc87..f7bcb4e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,6 @@
-libcatalystx-simplelogin-perl (0.18-3) UNRELEASED; urgency=medium
+libcatalystx-simplelogin-perl (0.19-1) unstable; urgency=medium
+
+  * Team upload
 
   [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
@@ -7,7 +9,19 @@ libcatalystx-simplelogin-perl (0.18-3) UNRELEASED; 
urgency=medium
   [ gregor herrmann ]
   * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
 
- -- Salvatore Bonaccorso   Sat, 16 Aug 2014 09:30:06 +0200
+  [ Nick Morrott ]
+  * Imported Upstream version 0.19
+  * Correct typo in package long description
+  * Update build and runtime dependencies
+  * Bump debhelper compatibility to version 9
+  * Bump Standards-Version to 3.9.8 (no changes)
+  * Add Testsuite header to make package autopkgtest-able
+  * Update lintian override (manpage-has-errors-from-man)
+  * Add 0001-spelling-error-in-manpage.patch
+  * Add debian/upstream/metadata file
+  * Add debian/tests/pkg-perl/syntax-skip (OpenID is optional)
+
+ -- Nick Morrott   Fri, 29 Jul 2016 02:05:29 +0100
 
 libcatalystx-simplelogin-perl (0.18-2) unstable; urgency=medium
 

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

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


[libcatalystx-simplelogin-perl] 10/11: Add debian/tests/pkg-perl/syntax-skip (OpenID is optional)

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcatalystx-simplelogin-perl.

commit 73bcd706f31120b1bea2332be27a557322ceb254
Author: Nick Morrott 
Date:   Fri Jul 29 02:02:48 2016 +0100

Add debian/tests/pkg-perl/syntax-skip (OpenID is optional)
---
 debian/tests/pkg-perl/syntax-skip | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/debian/tests/pkg-perl/syntax-skip 
b/debian/tests/pkg-perl/syntax-skip
new file mode 100644
index 000..738350d
--- /dev/null
+++ b/debian/tests/pkg-perl/syntax-skip
@@ -0,0 +1,2 @@
+# OpenID support is optional (and experimental!)
+CatalystX/SimpleLogin/Form/LoginOpenID.pm

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

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


[libcatalystx-simplelogin-perl] 09/11: Add debian/upstream/metadata file

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcatalystx-simplelogin-perl.

commit 77ce3e9cdd3285e05e1f0b7bcdafda0897b02f99
Author: Nick Morrott 
Date:   Fri Jul 29 01:31:37 2016 +0100

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

diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 000..7338197
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,7 @@
+---
+Archive: CPAN
+Bug-Database: 
https://rt.cpan.org/Public/Dist/Display.html?Name=CatalystX-SimpleLogin
+Contact: Tomas Doran 
+Name: CatalystX-SimpleLogin
+Repository: https://github.com/bobtfish/catalystx-simplelogin.git
+Repository-Browse: https://github.com/bobtfish/catalystx-simplelogin

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

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


[libcatalystx-simplelogin-perl] branch pristine-tar updated (8346c9b -> 3c03e81)

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a change to branch pristine-tar
in repository libcatalystx-simplelogin-perl.

  from  8346c9b   pristine-tar data for 
libcatalystx-simplelogin-perl_0.18.orig.tar.gz
   new  3c03e81   pristine-tar data for 
libcatalystx-simplelogin-perl_0.19.orig.tar.gz

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


Summary of changes:
 libcatalystx-simplelogin-perl_0.19.orig.tar.gz.delta | Bin 0 -> 4695 bytes
 libcatalystx-simplelogin-perl_0.19.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libcatalystx-simplelogin-perl_0.19.orig.tar.gz.delta
 create mode 100644 libcatalystx-simplelogin-perl_0.19.orig.tar.gz.id

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

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


[libcatalystx-simplelogin-perl] 08/11: Add 0001-spelling-error-in-manpage.patch

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcatalystx-simplelogin-perl.

commit 82216ea05eccbcf35a6f32c35616efcc4eeb0329
Author: Nick Morrott 
Date:   Mon Jul 25 14:21:57 2016 +0100

Add 0001-spelling-error-in-manpage.patch
---
 debian/patches/0001-spelling-error-in-manpage.patch | 16 
 debian/patches/series   |  1 +
 2 files changed, 17 insertions(+)

diff --git a/debian/patches/0001-spelling-error-in-manpage.patch 
b/debian/patches/0001-spelling-error-in-manpage.patch
new file mode 100644
index 000..d50a617
--- /dev/null
+++ b/debian/patches/0001-spelling-error-in-manpage.patch
@@ -0,0 +1,16 @@
+Description: Correct typos detected by lintian
+Author: Nick Morrott 
+Bug: https://rt.cpan.org/Ticket/Display.html?id=116452
+Last-Update: 2016-07-25
+---
+--- a/lib/CatalystX/SimpleLogin/Controller/Login.pm
 b/lib/CatalystX/SimpleLogin/Controller/Login.pm
+@@ -292,7 +292,7 @@
+ An action that is called to deal with whether the remember me flag has
+ been set or not.  If it has been it extends the session expiry time.
+ 
+-This is only called if there was a succesful login so if you want a
++This is only called if there was a successful login so if you want a
+ hook into that part of the process this is a good place to hook into.
+ 
+ It is also obviously a good place to hook into if you want to change
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..9e56726
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+0001-spelling-error-in-manpage.patch

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

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


[libcatalystx-simplelogin-perl] 01/11: Merge tag 'upstream/0.19'

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcatalystx-simplelogin-perl.

commit e1d2acfc8944b139e3f67787305b626fd4c30191
Merge: 8d1a4e8 e0c706b
Author: Nick Morrott 
Date:   Mon Jul 25 13:43:49 2016 +0100

Merge tag 'upstream/0.19'

Upstream version 0.19

 Changes|  7 
 META.yml   | 45 +++---
 Makefile.PL|  7 ++--
 README |  4 +-
 inc/Module/AutoInstall.pm  | 44 +++--
 inc/Module/Install.pm  | 22 ++-
 inc/Module/Install/AutoInstall.pm  |  2 +-
 inc/Module/Install/Base.pm |  2 +-
 inc/Module/Install/Can.pm  |  2 +-
 inc/Module/Install/Fetch.pm|  2 +-
 inc/Module/Install/Include.pm  |  2 +-
 inc/Module/Install/Makefile.pm |  4 +-
 inc/Module/Install/Metadata.pm |  6 +--
 inc/Module/Install/Win32.pm|  2 +-
 inc/Module/Install/WriteAll.pm |  2 +-
 lib/CatalystX/SimpleLogin.pm   |  6 +--
 lib/CatalystX/SimpleLogin/Controller/Login.pm  | 42 +---
 lib/CatalystX/SimpleLogin/Form/Login.pm| 23 ---
 lib/CatalystX/SimpleLogin/Manual.pod   | 13 ++-
 .../TraitFor/Controller/Login/Logout.pm|  1 +
 t/01-live-test.t   | 38 ++
 t/02-redirect-test.t   |  1 +
 t/06-rendertt.t| 13 ---
 t/08-dbic-mappedfields.t   |  4 +-
 t/09-clearsession.t|  1 +
 t/lib/TestAppBase.pm   |  2 +-
 26 files changed, 188 insertions(+), 109 deletions(-)

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

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


[libcatalystx-simplelogin-perl] 04/11: Bump debhelper compatibility to version 9

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcatalystx-simplelogin-perl.

commit 028e94d9a29666adbe884607c366cdb307ac046b
Author: Nick Morrott 
Date:   Mon Jul 25 14:03:39 2016 +0100

Bump debhelper compatibility to version 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 d2463e0..12e758b 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Maintainer: Debian Perl Group 

 Uploaders: gregor herrmann 
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 8)
+Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: perl,
  libcatalyst-action-rest-perl,
  libcatalyst-actionrole-acl-perl,

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

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


[libcatalystx-simplelogin-perl] 03/11: Update build and runtime dependencies

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcatalystx-simplelogin-perl.

commit 860e99cc2ad4da972193dec65b5a0b088e22b210
Author: Nick Morrott 
Date:   Mon Jul 25 14:01:05 2016 +0100

Update build and runtime dependencies
---
 debian/control | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/debian/control b/debian/control
index 68268d8..d2463e0 100644
--- a/debian/control
+++ b/debian/control
@@ -11,12 +11,13 @@ Build-Depends-Indep: perl,
  libcatalyst-authentication-store-dbix-class-perl,
  libcatalyst-model-dbic-schema-perl,
  libcatalyst-plugin-authentication-perl,
+ libcatalyst-plugin-session-perl (>= 0.35),
  libcatalyst-plugin-session-state-cookie-perl,
- libcatalyst-plugin-session-store-file-perl,
  libcatalyst-perl (>= 5.90013),
  libcatalyst-view-tt-perl,
  libcatalystx-injectcomponent-perl,
  libcatalystx-component-traits-perl,
+ libclass-load-perl (>= 0.20),
  libhtml-formhandler-perl,
  libhttp-message-perl,
  libmoose-autobox-perl,
@@ -27,7 +28,8 @@ Build-Depends-Indep: perl,
  libmoosex-types-perl,
  libnamespace-autoclean-perl,
  libsql-translator-perl,
- libtest-exception-perl
+ libtest-exception-perl,
+ libtry-tiny-perl (>= 0.24)
 Standards-Version: 3.9.5
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libcatalystx-simplelogin-perl.git
 Vcs-Git: 
https://anonscm.debian.org/git/pkg-perl/packages/libcatalystx-simplelogin-perl.git
@@ -41,8 +43,8 @@ Depends: ${misc:Depends},
  libcatalyst-action-renderview-perl,
  libcatalyst-actionrole-acl-perl,
  libcatalyst-plugin-authentication-perl,
+ libcatalyst-plugin-session-perl (>= 0.35),
  libcatalyst-plugin-session-state-cookie-perl,
- libcatalyst-plugin-session-store-file-perl,
  libcatalyst-perl (>= 5.90013),
  libcatalyst-view-tt-perl,
  libcatalystx-injectcomponent-perl,
@@ -54,7 +56,8 @@ Depends: ${misc:Depends},
  libmoosex-relatedclassroles-perl,
  libmoosex-types-common-perl,
  libmoosex-types-perl,
- libnamespace-autoclean-perl
+ libnamespace-autoclean-perl,
+ libtry-tiny-perl (>= 0.24)
 Description: simple and reusable login controller
  CatalystX::SimpleLogin is an application class Moose::Role which will inject
  an instance of CatalystX::SimpleLogin::Controller::Login into your

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

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


[libcatalystx-simplelogin-perl] 02/11: Correct typo in package long description

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcatalystx-simplelogin-perl.

commit a0665dba4f00edade7f2b91b0b1f65c91f7e30c1
Author: Nick Morrott 
Date:   Mon Jul 25 13:47:29 2016 +0100

Correct typo in package long description
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index af873e4..68268d8 100644
--- a/debian/control
+++ b/debian/control
@@ -60,5 +60,5 @@ Description: simple and reusable login controller
  an instance of CatalystX::SimpleLogin::Controller::Login into your
  application.
  .
- This provides a simple login and logout page with the adition of only one
+ This provides a simple login and logout page with the addition of only one
  line of code and one template to your application.

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

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


[libcatalystx-simplelogin-perl] 01/01: pristine-tar data for libcatalystx-simplelogin-perl_0.19.orig.tar.gz

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch pristine-tar
in repository libcatalystx-simplelogin-perl.

commit 3c03e81067cc7ac6ced92390fffc262c783ce7d0
Author: Nick Morrott 
Date:   Mon Jul 25 13:43:48 2016 +0100

pristine-tar data for libcatalystx-simplelogin-perl_0.19.orig.tar.gz
---
 libcatalystx-simplelogin-perl_0.19.orig.tar.gz.delta | Bin 0 -> 4695 bytes
 libcatalystx-simplelogin-perl_0.19.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libcatalystx-simplelogin-perl_0.19.orig.tar.gz.delta 
b/libcatalystx-simplelogin-perl_0.19.orig.tar.gz.delta
new file mode 100644
index 000..0d59c30
Binary files /dev/null and 
b/libcatalystx-simplelogin-perl_0.19.orig.tar.gz.delta differ
diff --git a/libcatalystx-simplelogin-perl_0.19.orig.tar.gz.id 
b/libcatalystx-simplelogin-perl_0.19.orig.tar.gz.id
new file mode 100644
index 000..a36465d
--- /dev/null
+++ b/libcatalystx-simplelogin-perl_0.19.orig.tar.gz.id
@@ -0,0 +1 @@
+d9f429ced701116234cecbd857ea23daa5af2db8

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

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


[libcatalystx-simplelogin-perl] branch master updated (8d1a4e8 -> dff4b16)

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a change to branch master
in repository libcatalystx-simplelogin-perl.

  from  8d1a4e8   update changelog
  adds  e0c706b   Imported Upstream version 0.19
   new  e1d2acf   Merge tag 'upstream/0.19'
   new  a0665db   Correct typo in package long description
   new  860e99c   Update build and runtime dependencies
   new  028e94d   Bump debhelper compatibility to version 9
   new  17d4501   Bump Standards-Version to 3.9.8 (no changes)
   new  5a105b8   Add Testsuite header to make package autopkgtest-able
   new  ca39ca2   Update lintian override
   new  82216ea   Add 0001-spelling-error-in-manpage.patch
   new  77ce3e9   Add debian/upstream/metadata file
   new  73bcd70   Add debian/tests/pkg-perl/syntax-skip (OpenID is optional)
   new  dff4b16   Releasing package libcatalystx-simplelogin-perl version 
0.19-1

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


Summary of changes:
 Changes|  7 
 META.yml   | 45 +++---
 Makefile.PL|  7 ++--
 README |  4 +-
 debian/changelog   | 18 -
 debian/compat  |  2 +-
 debian/control | 18 +
 ...libcatalystx-simplelogin-perl.lintian-overrides |  2 +-
 .../patches/0001-spelling-error-in-manpage.patch   | 16 
 debian/patches/series  |  1 +
 debian/tests/pkg-perl/syntax-skip  |  2 +
 debian/upstream/metadata   |  7 
 inc/Module/AutoInstall.pm  | 44 +++--
 inc/Module/Install.pm  | 22 ++-
 inc/Module/Install/AutoInstall.pm  |  2 +-
 inc/Module/Install/Base.pm |  2 +-
 inc/Module/Install/Can.pm  |  2 +-
 inc/Module/Install/Fetch.pm|  2 +-
 inc/Module/Install/Include.pm  |  2 +-
 inc/Module/Install/Makefile.pm |  4 +-
 inc/Module/Install/Metadata.pm |  6 +--
 inc/Module/Install/Win32.pm|  2 +-
 inc/Module/Install/WriteAll.pm |  2 +-
 lib/CatalystX/SimpleLogin.pm   |  6 +--
 lib/CatalystX/SimpleLogin/Controller/Login.pm  | 42 +---
 lib/CatalystX/SimpleLogin/Form/Login.pm| 23 ---
 lib/CatalystX/SimpleLogin/Manual.pod   | 13 ++-
 .../TraitFor/Controller/Login/Logout.pm|  1 +
 t/01-live-test.t   | 38 ++
 t/02-redirect-test.t   |  1 +
 t/06-rendertt.t| 13 ---
 t/08-dbic-mappedfields.t   |  4 +-
 t/09-clearsession.t|  1 +
 t/lib/TestAppBase.pm   |  2 +-
 34 files changed, 243 insertions(+), 120 deletions(-)
 create mode 100644 debian/patches/0001-spelling-error-in-manpage.patch
 create mode 100644 debian/patches/series
 create mode 100644 debian/tests/pkg-perl/syntax-skip
 create mode 100644 debian/upstream/metadata

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

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


[libcatalystx-simplelogin-perl] 06/11: Add Testsuite header to make package autopkgtest-able

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcatalystx-simplelogin-perl.

commit 5a105b888de9de4eee2e8440127103bc66ec
Author: Nick Morrott 
Date:   Mon Jul 25 14:13:05 2016 +0100

Add Testsuite header to make package autopkgtest-able
---
 debian/control | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/control b/debian/control
index 43b4c64..82358f3 100644
--- a/debian/control
+++ b/debian/control
@@ -2,6 +2,7 @@ Source: libcatalystx-simplelogin-perl
 Maintainer: Debian Perl Group 
 Uploaders: gregor herrmann 
 Section: perl
+Testsuite: autopkgtest-pkg-perl
 Priority: optional
 Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: perl,

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

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


[libcatalystx-simplelogin-perl] annotated tag upstream/0.19 created (now 834e05e)

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a change to annotated tag upstream/0.19
in repository libcatalystx-simplelogin-perl.

at  834e05e   (tag)
   tagging  e0c706bf78ec305f4a5de1d4d03f8fc3f33956cb (commit)
  replaces  upstream/0.18
 tagged by  Nick Morrott
on  Mon Jul 25 13:43:48 2016 +0100

- Log -
Upstream version 0.19

Nick Morrott (1):
  Imported Upstream version 0.19

---

No new revisions were added by this update.

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

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


[libwww-search-perl] 01/01: pristine-tar data for libwww-search-perl_2.51.60.orig.tar.gz

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch pristine-tar
in repository libwww-search-perl.

commit e7766051be7baa578fa2f485e05108cd2b494cff
Author: Nick Morrott 
Date:   Tue Jul 26 10:50:56 2016 +0100

pristine-tar data for libwww-search-perl_2.51.60.orig.tar.gz
---
 libwww-search-perl_2.51.60.orig.tar.gz.delta | Bin 0 -> 1978 bytes
 libwww-search-perl_2.51.60.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libwww-search-perl_2.51.60.orig.tar.gz.delta 
b/libwww-search-perl_2.51.60.orig.tar.gz.delta
new file mode 100644
index 000..1aa8a5d
Binary files /dev/null and b/libwww-search-perl_2.51.60.orig.tar.gz.delta differ
diff --git a/libwww-search-perl_2.51.60.orig.tar.gz.id 
b/libwww-search-perl_2.51.60.orig.tar.gz.id
new file mode 100644
index 000..15be210
--- /dev/null
+++ b/libwww-search-perl_2.51.60.orig.tar.gz.id
@@ -0,0 +1 @@
+f1c5f7c1ce505498a61d248d2fef6e1215d66143

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

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


[libwww-search-perl] 06/11: Update WWW::Search::Lycos to 2.225

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libwww-search-perl.

commit 4a66e592dfd37847b2c87a61a3ea6cec8faefe51
Author: Nick Morrott 
Date:   Tue Jul 26 13:32:17 2016 +0100

Update WWW::Search::Lycos to 2.225
---
 lycos/{ChangeLog => Changes} |  6 +++
 lycos/MANIFEST   |  5 +-
 lycos/META.yml   |  4 +-
 lycos/MYMETA.json| 50 
 lycos/MYMETA.yml | 28 ---
 lycos/README.md  |  2 +
 lycos/inc/Module/Install.pm  | 22 +
 lycos/inc/Module/Install/Base.pm |  2 +-
 lycos/inc/Module/Install/Can.pm  |  2 +-
 lycos/inc/Module/Install/Fetch.pm|  2 +-
 lycos/inc/Module/Install/Makefile.pm |  4 +-
 lycos/inc/Module/Install/Metadata.pm |  6 +--
 lycos/inc/Module/Install/Win32.pm|  2 +-
 lycos/inc/Module/Install/WriteAll.pm |  2 +-
 lycos/lib/WWW/Search/Lycos.pm| 92 +---
 lycos/t/basic.t  | 31 +---
 16 files changed, 91 insertions(+), 169 deletions(-)

diff --git a/lycos/ChangeLog b/lycos/Changes
similarity index 94%
rename from lycos/ChangeLog
rename to lycos/Changes
index 47c7db0..df3dcff 100644
--- a/lycos/ChangeLog
+++ b/lycos/Changes
@@ -1,3 +1,9 @@
+2016-02-06  Kingpin  
+
+   * t/basic.t: updated tests
+
+   * lib/WWW/Search/Lycos.pm (_parse_tree): fixed parser for current HTML
+
 2004-01-17  Kingpin  
 
* Lycos.pm (parse_tree): parse size and date for each result; 
gui_query() is the only query we do now
diff --git a/lycos/MANIFEST b/lycos/MANIFEST
index bc6b451..2085ec0 100644
--- a/lycos/MANIFEST
+++ b/lycos/MANIFEST
@@ -1,4 +1,4 @@
-ChangeLog
+Changes
 inc/Module/Install.pm
 inc/Module/Install/Base.pm
 inc/Module/Install/Can.pm
@@ -12,7 +12,6 @@ LICENSE
 Makefile.PL
 MANIFEST   This list of files
 META.yml
-MYMETA.json
-MYMETA.yml
 README
+README.md
 t/basic.t
diff --git a/lycos/META.yml b/lycos/META.yml
index 3d2fc59..c5009cd 100644
--- a/lycos/META.yml
+++ b/lycos/META.yml
@@ -10,7 +10,7 @@ configure_requires:
   ExtUtils::MakeMaker: 6.36
 distribution_type: module
 dynamic_config: 1
-generated_by: 'Module::Install version 1.06'
+generated_by: 'Module::Install version 1.16'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -27,4 +27,4 @@ requires:
   perl: 5.004
 resources:
   license: http://dev.perl.org/licenses/
-version: 2.224
+version: '2.225'
diff --git a/lycos/MYMETA.json b/lycos/MYMETA.json
deleted file mode 100644
index 31178aa..000
--- a/lycos/MYMETA.json
+++ /dev/null
@@ -1,50 +0,0 @@
-{
-   "abstract" : "class for searching www.lycos.com",
-   "author" : [
-  "As of 1998-12-07, C is maintained by Martin Thurn",
-  "Martin Thurn "
-   ],
-   "dynamic_config" : 0,
-   "generated_by" : "Module::Install version 1.06, CPAN::Meta::Converter 
version 2.120921",
-   "license" : [
-  "perl_5"
-   ],
-   "meta-spec" : {
-  "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec";,
-  "version" : "2"
-   },
-   "name" : "WWW-Search-Lycos",
-   "no_index" : {
-  "directory" : [
- "inc",
- "t"
-  ]
-   },
-   "prereqs" : {
-  "build" : {
- "requires" : {
-"ExtUtils::MakeMaker" : "6.36",
-"Test::More" : "0"
- }
-  },
-  "configure" : {
- "requires" : {
-"ExtUtils::MakeMaker" : "6.36"
- }
-  },
-  "runtime" : {
- "requires" : {
-"HTML::TreeBuilder" : "0",
-"WWW::Search::Test" : "2.21"
- }
-  }
-   },
-   "release_status" : "stable",
-   "resources" : {
-  "license" : [
- "http://dev.perl.org/licenses/";
-  ]
-   },
-   "version" : "2.223",
-   "x_module_name" : "WWW::Search::Lycos"
-}
diff --git a/lycos/MYMETA.yml b/lycos/MYMETA.yml
deleted file mode 100644
index e04c21a..000
--- a/lycos/MYMETA.yml
+++ /dev/null
@@ -1,28 +0,0 @@

-abstract: 'class for searching www.lycos.com'
-author:
-  - 'As of 1998-12-07, C is maintained by Martin Thurn'
-  - 'Martin Thurn '
-build_requires:
-  ExtUtils::MakeMaker: 6.36
-  Test::More: 0
-configure_requires:
-  ExtUtils::MakeMaker: 6.36
-dynamic_config: 0
-generated_by: 'Module::Install version 1.06, CPAN::Meta::Converter version 
2.120921'
-license: perl
-meta-spec:
-  url: http://module-build.sourceforge.net/META-spec-v1.4.html
-  version: 1.4
-name: WWW-Search-Lycos
-no_index:
-  directory:
-- inc
-- t
-requires:
-  HTML::TreeBuilder: 0
-  WWW::Search::Test: 2.21
-resources:
-  license: http://dev.perl.org/licenses/
-version: 2.223
-x_module_name: WWW::Search::Lycos
diff --git a/lycos/README.md b/lycos/README.md
new file mode 100644
index 000..2e16559
--- /dev/null
+++ b/lycos/README.md
@@ -0,0 +1,2 @@
+# WWW-Search-Lycos
+Perl module distribution WWW::Search::Lycos

[libwww-search-perl] 11/11: Releasing package libwww-search-perl version 2.51.60-1

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libwww-search-perl.

commit 6e70f1759a58e731efda1a0b0b9df43663c560d7
Author: Nick Morrott 
Date:   Tue Jul 26 10:53:06 2016 +0100

Releasing package libwww-search-perl version 2.51.60-1
---
 debian/changelog | 17 +++--
 1 file changed, 15 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 16b9a3c..33b79fd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,6 @@
-libwww-search-perl (2.51.50-2) UNRELEASED; urgency=medium
+libwww-search-perl (2.51.60-1) unstable; urgency=medium
+
+  * Team upload.
 
   [ Salvatore Bonaccorso ]
   * debian/control: Use HTTPS transport protocol for Vcs-Git URI
@@ -6,7 +8,18 @@ libwww-search-perl (2.51.50-2) UNRELEASED; urgency=medium
   [ gregor herrmann ]
   * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
 
- -- Salvatore Bonaccorso   Sat, 30 Jan 2016 20:07:25 +0100
+  [ Nick Morrott ]
+  * Imported Upstream version 2.51.60 (Closes: #826495)
+  * bump version in debian/components/ebay/version
+  * bump version in debian/components/lycos/version
+  * bump version of main module in debian/update.sh
+  * Update WWW::Search::Ebay to 3.046
+  * Update WWW::Search::Lycos to 2.225
+  * Update d/clean
+  * Update copyright years for ebay component
+  * Add debian/upstream/metadata
+
+ -- Nick Morrott   Fri, 29 Jul 2016 02:21:03 +0100
 
 libwww-search-perl (2.51.50-1) unstable; urgency=medium
 

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

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


[libwww-search-perl] branch pristine-tar updated (07e4449 -> e776605)

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a change to branch pristine-tar
in repository libwww-search-perl.

  from  07e4449   pristine-tar data for 
libwww-search-perl_2.51.50.orig.tar.gz
   new  e776605   pristine-tar data for 
libwww-search-perl_2.51.60.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:
 libwww-search-perl_2.51.60.orig.tar.gz.delta | Bin 0 -> 1978 bytes
 libwww-search-perl_2.51.60.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libwww-search-perl_2.51.60.orig.tar.gz.delta
 create mode 100644 libwww-search-perl_2.51.60.orig.tar.gz.id

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

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


[libwww-search-perl] 02/11: bump version in debian/components/ebay/version

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libwww-search-perl.

commit 749d97daff094285f8e20117a1c4245611a3c922
Author: Nick Morrott 
Date:   Tue Jul 26 11:12:30 2016 +0100

bump version in debian/components/ebay/version
---
 debian/components/ebay/version | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/components/ebay/version b/debian/components/ebay/version
index 6375dd1..7801827 100644
--- a/debian/components/ebay/version
+++ b/debian/components/ebay/version
@@ -1 +1 @@
-3.042
+3.046

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

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


[libwww-search-perl] 04/11: bump version of main module in debian/update.sh

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libwww-search-perl.

commit 3c3de134cbbe34f625f7e197e583ae71bdfd973a
Author: Nick Morrott 
Date:   Tue Jul 26 11:15:37 2016 +0100

bump version of main module in debian/update.sh
---
 debian/update.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/update.sh b/debian/update.sh
index 643ce76..e40bfbf 100755
--- a/debian/update.sh
+++ b/debian/update.sh
@@ -5,7 +5,7 @@ set -e
 DESTDIR=${DESTDIR:-..}
 MODULE=WWW-Search
 PACKAGE=libwww-search-perl
-VERSION=2.51.50
+VERSION=2.51.60
 EBAY_VERS=`cat debian/components/ebay/version`
 ALTAVISTA_VERS=`cat debian/components/altavista/version`
 FIRSTGOV_VERS=`cat debian/components/firstgov/version`

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

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


[libwww-search-perl] branch master updated (7a03216 -> 6e70f17)

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a change to branch master
in repository libwww-search-perl.

  from  7a03216   update changelog
  adds  57aeea7   Imported Upstream version 2.51.60
   new  20b0d3b   Merge tag 'upstream/2.51.60'
   new  749d97d   bump version in debian/components/ebay/version
   new  a9ea231   bump version in debian/components/lycos/version
   new  3c3de13   bump version of main module in debian/update.sh
   new  6536ec2   Update WWW::Search::Ebay to 3.046
   new  4a66e59   Update WWW::Search::Lycos to 2.225
   new  0139c9f   Update d/clean
   new  4520b05   Update copyright years for ebay component
   new  a62ccdb   Whitespace
   new  2b86b74   Add debian/upstream/metadata
   new  6e70f17   Releasing package libwww-search-perl version 2.51.60-1

The 11 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  |  4 ++
 META.yml |  2 +-
 Makefile.PL  |  6 +--
 debian/README.source | 12 ++---
 debian/changelog | 17 ++-
 debian/clean |  3 ++
 debian/components/ebay/copyright |  2 +-
 debian/components/ebay/version   |  2 +-
 debian/components/lycos/version  |  2 +-
 debian/copyright |  2 +-
 debian/update.sh |  2 +-
 debian/upstream/metadata |  5 ++
 ebay/Changes |  8 
 ebay/MANIFEST|  7 ++-
 ebay/META.yml|  7 +--
 ebay/Makefile.PL |  8 ++--
 ebay/inc/Module/Install.pm   |  2 +-
 ebay/inc/Module/Install/Base.pm  |  2 +-
 ebay/inc/Module/Install/Can.pm   |  2 +-
 ebay/inc/Module/Install/Fetch.pm |  2 +-
 ebay/inc/Module/Install/Makefile.pm  |  2 +-
 ebay/inc/Module/Install/Metadata.pm  |  2 +-
 ebay/inc/Module/Install/PerlTar.pm   | 45 --
 ebay/inc/Module/Install/Win32.pm |  2 +-
 ebay/inc/Module/Install/WriteAll.pm  |  2 +-
 ebay/lib/WWW/Search/Ebay.pm  | 20 ++--
 ebay/t/ebay.t|  4 +-
 ebay/{t => xt}/pod-coverage.t|  0
 ebay/{t => xt}/pod.t |  0
 lycos/{ChangeLog => Changes} |  6 +++
 lycos/MANIFEST   |  5 +-
 lycos/META.yml   |  4 +-
 lycos/MYMETA.json| 50 
 lycos/MYMETA.yml | 28 ---
 lycos/README.md  |  2 +
 lycos/inc/Module/Install.pm  | 22 +
 lycos/inc/Module/Install/Base.pm |  2 +-
 lycos/inc/Module/Install/Can.pm  |  2 +-
 lycos/inc/Module/Install/Fetch.pm|  2 +-
 lycos/inc/Module/Install/Makefile.pm |  4 +-
 lycos/inc/Module/Install/Metadata.pm |  6 +--
 lycos/inc/Module/Install/Win32.pm|  2 +-
 lycos/inc/Module/Install/WriteAll.pm |  2 +-
 lycos/lib/WWW/Search/Lycos.pm| 92 +---
 lycos/t/basic.t  | 31 +---
 45 files changed, 176 insertions(+), 258 deletions(-)
 create mode 100644 debian/upstream/metadata
 delete mode 100644 ebay/inc/Module/Install/PerlTar.pm
 rename ebay/{t => xt}/pod-coverage.t (100%)
 rename ebay/{t => xt}/pod.t (100%)
 rename lycos/{ChangeLog => Changes} (94%)
 delete mode 100644 lycos/MYMETA.json
 delete mode 100644 lycos/MYMETA.yml
 create mode 100644 lycos/README.md

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

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


[libwww-search-perl] annotated tag upstream/2.51.60 created (now 5513e69)

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a change to annotated tag upstream/2.51.60
in repository libwww-search-perl.

at  5513e69   (tag)
   tagging  57aeea774fbf47b9b4ca905b9bb193048e250d37 (commit)
  replaces  upstream/2.51.50
 tagged by  Nick Morrott
on  Tue Jul 26 10:50:56 2016 +0100

- Log -
Upstream version 2.51.60

Nick Morrott (1):
  Imported Upstream version 2.51.60

---

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

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


[libwww-search-perl] 01/11: Merge tag 'upstream/2.51.60'

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libwww-search-perl.

commit 20b0d3b8335e59c12aff83c122d1f6a1af243940
Merge: 7a03216 57aeea7
Author: Nick Morrott 
Date:   Tue Jul 26 10:50:56 2016 +0100

Merge tag 'upstream/2.51.60'

Upstream version 2.51.60

 Changes | 4 
 META.yml| 2 +-
 Makefile.PL | 6 +++---
 3 files changed, 8 insertions(+), 4 deletions(-)

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

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


[libwww-search-perl] 09/11: Whitespace

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libwww-search-perl.

commit a62ccdbe6603e43b8a0914b6ba98ffeabf47535f
Author: Nick Morrott 
Date:   Fri Jul 29 02:19:14 2016 +0100

Whitespace
---
 debian/README.source | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/debian/README.source b/debian/README.source
index 4482781..31dea46 100644
--- a/debian/README.source
+++ b/debian/README.source
@@ -1,29 +1,29 @@
 For most purposes this package is a standard Debian Perl Group package.
 The aspect in which it is special is that some related modules are bundled
-together with the package. So long as you have the appropriate tar balls
+together with the package. So long as you have the appropriate tarballs
 in the correct place you can build using dpkg-buildpackage as you would
 normally.
 
-If you have a fresh checkout from the git repository and you wish 
+If you have a fresh checkout from the git repository and you wish
 to download all the tarballs to build under dpkg-buildpackage, then from the
 package root directory run:
 
 ./debian/update.sh update
 
 To check for new updates drop the "update" argument. If you are building
-under dpkg-buildpackage you need to tell the script about the 
+under dpkg-buildpackage you need to tell the script about the
 alternative build directory so run
 
 DESTDIR=.. ./debian/update.sh update
 
 There are a couple of important caveats about the update.sh script.
 First of all when used in update mode it will DELETE the existing tarballs.
-Secondly when you do update one of the components, the update.sh script 
-will need to be updated. These limitations arise because it is 
+Secondly when you do update one of the components, the update.sh script
+will need to be updated. These limitations arise because it is
 a temporary work around until pkg-components (or even uscan) provides
 something more substantial.
 
-Note also that the binary copyright file is a merger of 
+Note also that the binary copyright file is a merger of
 debian/components/copyright.in and debian/components/*/copyright.
 Various Debian tools require a static file in debian/copyright.
 If for some reason the generated copyright file changes

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

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


[libwww-search-perl] 03/11: bump version in debian/components/lycos/version

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libwww-search-perl.

commit a9ea231af9071cb6c968bf6080cf3961af304df7
Author: Nick Morrott 
Date:   Tue Jul 26 11:13:02 2016 +0100

bump version in debian/components/lycos/version
---
 debian/components/lycos/version | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/components/lycos/version b/debian/components/lycos/version
index 26e450c..5eb704c 100644
--- a/debian/components/lycos/version
+++ b/debian/components/lycos/version
@@ -1 +1 @@
-2.224
+2.225

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

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


[libwww-search-perl] 05/11: Update WWW::Search::Ebay to 3.046

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libwww-search-perl.

commit 6536ec2a45bbcd3570f2e9e69e7057acb8ea1b91
Author: Nick Morrott 
Date:   Tue Jul 26 13:30:54 2016 +0100

Update WWW::Search::Ebay to 3.046
---
 ebay/Changes|  8 +++
 ebay/MANIFEST   |  7 +++---
 ebay/META.yml   |  7 ++
 ebay/Makefile.PL|  8 +++
 ebay/inc/Module/Install.pm  |  2 +-
 ebay/inc/Module/Install/Base.pm |  2 +-
 ebay/inc/Module/Install/Can.pm  |  2 +-
 ebay/inc/Module/Install/Fetch.pm|  2 +-
 ebay/inc/Module/Install/Makefile.pm |  2 +-
 ebay/inc/Module/Install/Metadata.pm |  2 +-
 ebay/inc/Module/Install/PerlTar.pm  | 45 -
 ebay/inc/Module/Install/Win32.pm|  2 +-
 ebay/inc/Module/Install/WriteAll.pm |  2 +-
 ebay/lib/WWW/Search/Ebay.pm | 20 +
 ebay/t/ebay.t   |  4 +++-
 ebay/{t => xt}/pod-coverage.t   |  0
 ebay/{t => xt}/pod.t|  0
 17 files changed, 43 insertions(+), 72 deletions(-)

diff --git a/ebay/Changes b/ebay/Changes
index 97ef7cc..ac5 100644
--- a/ebay/Changes
+++ b/ebay/Changes
@@ -1,3 +1,11 @@
+2016-02-07  Kingpin  
+
+   * lib/WWW/Search/Ebay.pm (_parse_shipping): allow shipping to be 
"unknown"
+
+2015-09-22  Kingpin  
+
+   * lib/WWW/Search/Ebay.pm (_parse_tree): try harder to avoid returning 
"other" items
+
 2015-09-13  Kingpin  
 
* lib/WWW/Search/Ebay.pm: added warning if no results count found
diff --git a/ebay/MANIFEST b/ebay/MANIFEST
index 3fd8962..32603a9 100644
--- a/ebay/MANIFEST
+++ b/ebay/MANIFEST
@@ -6,7 +6,6 @@ inc/Module/Install/Can.pm
 inc/Module/Install/Fetch.pm
 inc/Module/Install/Makefile.pm
 inc/Module/Install/Metadata.pm
-inc/Module/Install/PerlTar.pm
 inc/Module/Install/Win32.pm
 inc/Module/Install/WriteAll.pm
 lib/WWW/Search/Ebay.pm
@@ -19,7 +18,7 @@ lib/WWW/Search/Ebay/Motors.pm
 lib/WWW/Search/Ebay/Stores.pm
 LICENSE
 Makefile.PL
-MANIFEST   This list of files
+MANIFEST
 META.yml
 README
 README.md
@@ -28,7 +27,7 @@ t/coverage.t
 t/ebay.t
 t/enddate.t
 t/itemnumber.t
-t/pod-coverage.t
-t/pod.t
 xt/buyitnow.t
 xt/bysellerid.t
+xt/pod-coverage.t
+xt/pod.t
diff --git a/ebay/META.yml b/ebay/META.yml
index 30fb789..5c4fcf9 100644
--- a/ebay/META.yml
+++ b/ebay/META.yml
@@ -13,7 +13,7 @@ configure_requires:
   ExtUtils::MakeMaker: 6.36
 distribution_type: module
 dynamic_config: 1
-generated_by: 'Module::Install version 1.14'
+generated_by: 'Module::Install version 1.16'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -25,9 +25,6 @@ no_index:
 - inc
 - t
 - xt
-recommends:
-  Test::Pod: 0
-  Test::Pod::Coverage: 0
 requires:
   Date::Manip: 0
   HTML::TreeBuilder: 0
@@ -37,4 +34,4 @@ requires:
   perl: 5.005
 resources:
   license: http://dev.perl.org/licenses/
-version: 3.042
+version: 3.046
diff --git a/ebay/Makefile.PL b/ebay/Makefile.PL
index df64420..ba2ea8a 100644
--- a/ebay/Makefile.PL
+++ b/ebay/Makefile.PL
@@ -3,7 +3,7 @@
 
 use inc::Module::Install;
 
-version(3.042);
+version(3.046);
 all_from('lib/WWW/Search/Ebay.pm');
 
 requires(perl => 5.005);
@@ -16,8 +16,6 @@ test_requires('IO::Capture::Stderr');
 requires('LWP::Simple');
 # Test::More is needed for `make test`:
 test_requires('Test::More');
-recommends('Test::Pod');
-recommends('Test::Pod::Coverage');
 # We need the version that has methods named with leading underscore:
 requires('WWW::Search' => 2.557);
 # We need the version that has the bidder and seller methods:
@@ -53,11 +51,11 @@ if (0 && $ENV{MTHURN_PERL_DEV})
 {
 warn " EEE did not find DIRFILESEP in Makefile\n";
 } # if
-  if ($s !~ s/(pm_to_blib\(){{\@ARGV}}/$1 . '{@ARGV}'/e)
+  if ($s !~ s/(pm_to_blib\()\{\{\@ARGV\}\}/$1 . '{@ARGV}'/e)
 {
 warn " EEE did not find pm_to_blib@ARGV in Makefile\n";
 } # if
-  if ($s !~ s/(from_to\s+=>\s+){{\@ARGV}}/$1 . '{@ARGV}'/e)
+  if ($s !~ s/(from_to\s+=>\s+)\{\{\@ARGV\}\}/$1 . '{@ARGV}'/e)
 {
 warn " EEE did not find from_to@ARGV in Makefile\n";
 } # if
diff --git a/ebay/inc/Module/Install.pm b/ebay/inc/Module/Install.pm
index ff767fa..f44ab4d 100644
--- a/ebay/inc/Module/Install.pm
+++ b/ebay/inc/Module/Install.pm
@@ -31,7 +31,7 @@ BEGIN {
# This is not enforced yet, but will be some time in the next few
# releases once we can make sure it won't clash with custom
# Module::Install extensions.
-   $VERSION = '1.14';
+   $VERSION = '1.16';
 
# Storage for the pseudo-singleton
$MAIN= undef;
diff --git a/ebay/inc/Module/Install/Base.pm b/ebay/inc/Module/Install/Base.pm
index 4206347..5762a74 100644
--- a/ebay/inc/Module/Install/Base.pm
+++ b/ebay/inc/Module/Install/Base.pm
@@ -4,7 +4,7 @@ package Module::Install::Base;
 use strict 'vars';
 use vars 

[libwww-search-perl] 10/11: Add debian/upstream/metadata

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libwww-search-perl.

commit 2b86b74920664f6899b1300cf992f36312f5bf1e
Author: Nick Morrott 
Date:   Fri Jul 29 02:38:56 2016 +0100

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

diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 000..d949c9b
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,5 @@
+---
+Archive: CPAN
+Bug-Database: https://rt.cpan.org/Public/Dist/Display.html?Name=WWW-Search
+Contact: Martin Thurn 
+Name: WWW-Search

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

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


[libwww-search-perl] 07/11: Update d/clean

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libwww-search-perl.

commit 0139c9fdefc52d39f7c2611d31107ad610ae8ca5
Author: Nick Morrott 
Date:   Tue Jul 26 14:02:32 2016 +0100

Update d/clean
---
 debian/clean | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/debian/clean b/debian/clean
index 6871053..6886499 100644
--- a/debian/clean
+++ b/debian/clean
@@ -6,5 +6,8 @@ firstgov/Makefile
 googlism/Makefile
 jobserve/Makefile
 lycos/Makefile
+news/Makefile
+pagesjaunes/Makefile
+yahoo/Makefile
 Makefile.old
 Makefile

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

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


[libwww-search-perl] 08/11: Update copyright years for ebay component

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libwww-search-perl.

commit 4520b058d7125f799ff539d6ea54c31fc6ffc887
Author: Nick Morrott 
Date:   Wed Jul 27 01:37:13 2016 +0100

Update copyright years for ebay component
---
 debian/components/ebay/copyright | 2 +-
 debian/copyright | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/components/ebay/copyright b/debian/components/ebay/copyright
index 41dc128..3ee3820 100644
--- a/debian/components/ebay/copyright
+++ b/debian/components/ebay/copyright
@@ -1,5 +1,5 @@
 Files: ebay/*
-Copyright: 1998-2009, Martin 'Kingpin' Thurn
+Copyright: 1998-2015, Martin 'Kingpin' Thurn
 License: Artistic or GPL-1+
 
 Files: ebay/inc/Module/*
diff --git a/debian/copyright b/debian/copyright
index baae1e1..5492f71 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -60,7 +60,7 @@ Copyright: 2002-2011, Adam Kennedy 
 License: Artistic or GPL-1+
 
 Files: ebay/*
-Copyright: 1998-2009, Martin 'Kingpin' Thurn
+Copyright: 1998-2015, Martin 'Kingpin' Thurn
 License: Artistic or GPL-1+
 
 Files: ebay/inc/Module/*

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

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


[libcrypt-hcesha-perl] 01/09: Merge tag 'upstream/0.75'

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcrypt-hcesha-perl.

commit 2246d40e8959a598777584c0fa5d83c2ea619d80
Merge: 4eed18f 2a27461
Author: Nick Morrott 
Date:   Fri Jul 29 03:06:04 2016 +0100

Merge tag 'upstream/0.75'

Upstream version 0.75

 Changes|  7 +++
 HCE_SHA.pm | 52 ++--
 MANIFEST   |  1 +
 META.json  | 42 ++
 META.yml   | 33 ++---
 Makefile.PL|  2 +-
 README |  6 +++---
 examples/Client.pm |  8 
 examples/Server.pm | 12 ++--
 test.pl| 24 
 10 files changed, 128 insertions(+), 59 deletions(-)

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

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


[libcrypt-hcesha-perl] branch master updated (4eed18f -> b77961e)

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a change to branch master
in repository libcrypt-hcesha-perl.

  from  4eed18f   update changelog
  adds  2a27461   Imported Upstream version 0.75
   new  2246d40   Merge tag 'upstream/0.75'
   new  14628cc   Drop remove_deprecated_defined.patch and 
use-Digest-SHA.patch (applied upstream)
   new  94b60ff   Add debian/upstream/metadata
   new  aaf4200   dch
   new  ed57b54   Bump debhelper compatibility to version 9
   new  af2d11f   Bump Standards-Version to 3.9.8 (no changes)
   new  36f3461   Add Testsuite header to make package autopkgtest-able
   new  a6d6ddc   Drop explicit (build-) dep on MIME::Base64 (core module)
   new  b77961e   dch

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


Summary of changes:
 Changes|  7 
 HCE_SHA.pm | 52 +++---
 MANIFEST   |  1 +
 META.json  | 42 +
 META.yml   | 33 ++--
 Makefile.PL|  2 +-
 README |  6 +--
 debian/changelog   | 15 +++-
 debian/compat  |  2 +-
 debian/control |  9 +++--
 debian/patches/remove_deprecated_defined.patch | 24 
 debian/patches/series  |  2 -
 debian/patches/use-Digest-SHA.patch| 48 
 debian/upstream/metadata   |  5 +++
 examples/Client.pm |  8 ++--
 examples/Server.pm | 12 +++---
 test.pl| 24 ++--
 17 files changed, 152 insertions(+), 140 deletions(-)
 create mode 100644 META.json
 delete mode 100644 debian/patches/remove_deprecated_defined.patch
 delete mode 100644 debian/patches/series
 delete mode 100644 debian/patches/use-Digest-SHA.patch
 create mode 100644 debian/upstream/metadata

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

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


[libcrypt-hcesha-perl] 07/09: Add Testsuite header to make package autopkgtest-able

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcrypt-hcesha-perl.

commit 36f34615996d3b2b780b3fe4bfec8a815d0c886f
Author: Nick Morrott 
Date:   Fri Jul 29 03:19:17 2016 +0100

Add Testsuite header to make package autopkgtest-able
---
 debian/control | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/control b/debian/control
index 39bae96..b8be7e8 100644
--- a/debian/control
+++ b/debian/control
@@ -9,6 +9,7 @@ Standards-Version: 3.9.8
 Homepage: https://metacpan.org/release/Crypt-HCE_SHA
 Vcs-Git: 
https://anonscm.debian.org/git/pkg-perl/packages/libcrypt-hcesha-perl.git
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libcrypt-hcesha-perl.git
+Testsuite: autopkgtest-pkg-perl
 
 Package: libcrypt-hcesha-perl
 Architecture: all

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

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


[libcrypt-hcesha-perl] 06/09: Bump Standards-Version to 3.9.8 (no changes)

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcrypt-hcesha-perl.

commit af2d11f570dc8bc35494b6457c1d240a1a391c50
Author: Nick Morrott 
Date:   Fri Jul 29 03:17:06 2016 +0100

Bump Standards-Version to 3.9.8 (no changes)
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 8c71584..39bae96 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,7 @@ Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: perl, libmime-base64-perl
 Maintainer: Debian Perl Group 
 Uploaders: Jonas Genannt 
-Standards-Version: 3.9.6
+Standards-Version: 3.9.8
 Homepage: https://metacpan.org/release/Crypt-HCE_SHA
 Vcs-Git: 
https://anonscm.debian.org/git/pkg-perl/packages/libcrypt-hcesha-perl.git
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libcrypt-hcesha-perl.git

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

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


[libcrypt-hcesha-perl] 09/09: dch

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcrypt-hcesha-perl.

commit b77961eb9c92bfefce7f51ba24989796690426c5
Author: Nick Morrott 
Date:   Fri Jul 29 03:23:27 2016 +0100

dch
---
 debian/changelog | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 98c1b1c..65a2090 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,6 @@
-libcrypt-hcesha-perl (0.75-1) UNRELEASED; urgency=medium
+libcrypt-hcesha-perl (0.75-1) unstable; urgency=medium
+
+  * Team upload
 
   [ Salvatore Bonaccorso ]
   * debian/control: Use HTTPS transport protocol for Vcs-Git URI
@@ -10,6 +12,10 @@ libcrypt-hcesha-perl (0.75-1) UNRELEASED; urgency=medium
   * Imported Upstream version 0.75
   * Drop patches (applied upstream)
   * Add debian/upstream/metadata
+  * Bump debhelper compatibility to version 9
+  * Bump Standards-Version to 3.9.8 (no changes)
+  * Add Testsuite header to make package autopkgtest-able
+  * Drop explicit (build-) dep on MIME::Base64 (core module)
 
  -- Nick Morrott   Fri, 29 Jul 2016 03:13:47 +0100
 

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

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


[libcrypt-hcesha-perl] annotated tag upstream/0.75 created (now df27aa8)

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a change to annotated tag upstream/0.75
in repository libcrypt-hcesha-perl.

at  df27aa8   (tag)
   tagging  2a274612779b4bad8675f8aa97da37451fc5750e (commit)
  replaces  upstream/0.70
 tagged by  Nick Morrott
on  Fri Jul 29 03:06:04 2016 +0100

- Log -
Upstream version 0.75

Nick Morrott (1):
  Imported Upstream version 0.75

---

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

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


[libcrypt-hcesha-perl] 08/09: Drop explicit (build-) dep on MIME::Base64 (core module)

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcrypt-hcesha-perl.

commit a6d6ddc4566cd4adde3ed729e05f12146e6e0081
Author: Nick Morrott 
Date:   Fri Jul 29 03:22:35 2016 +0100

Drop explicit (build-) dep on MIME::Base64 (core module)
---
 debian/control | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/control b/debian/control
index b8be7e8..c7e18c0 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: libcrypt-hcesha-perl
 Section: perl
 Priority: optional
 Build-Depends: debhelper (>= 9)
-Build-Depends-Indep: perl, libmime-base64-perl
+Build-Depends-Indep: perl
 Maintainer: Debian Perl Group 
 Uploaders: Jonas Genannt 
 Standards-Version: 3.9.8
@@ -13,7 +13,7 @@ Testsuite: autopkgtest-pkg-perl
 
 Package: libcrypt-hcesha-perl
 Architecture: all
-Depends: ${misc:Depends}, ${perl:Depends}, libmime-base64-perl
+Depends: ${misc:Depends}, ${perl:Depends}
 Description: Perl extension for one way hash chaining encryption using SHA
  This module implements a chaining block cipher using a one way hash. This
  method of encryption is the same that is used by radius (RFC2138) and is also

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

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


[libcrypt-hcesha-perl] branch pristine-tar updated (e57f648 -> 690953c)

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a change to branch pristine-tar
in repository libcrypt-hcesha-perl.

  from  e57f648   pristine-tar data for 
libcrypt-hcesha-perl_0.70.orig.tar.gz
   new  690953c   pristine-tar data for 
libcrypt-hcesha-perl_0.75.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:
 libcrypt-hcesha-perl_0.75.orig.tar.gz.delta | Bin 0 -> 1074 bytes
 libcrypt-hcesha-perl_0.75.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libcrypt-hcesha-perl_0.75.orig.tar.gz.delta
 create mode 100644 libcrypt-hcesha-perl_0.75.orig.tar.gz.id

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

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


[libcrypt-hcesha-perl] 02/09: Drop remove_deprecated_defined.patch and use-Digest-SHA.patch (applied upstream)

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcrypt-hcesha-perl.

commit 14628cceda42aeba8cb23fdf6e705a160070e54a
Author: Nick Morrott 
Date:   Fri Jul 29 03:07:40 2016 +0100

Drop remove_deprecated_defined.patch and use-Digest-SHA.patch (applied 
upstream)
---
 debian/patches/remove_deprecated_defined.patch | 24 -
 debian/patches/series  |  2 --
 debian/patches/use-Digest-SHA.patch| 48 --
 3 files changed, 74 deletions(-)

diff --git a/debian/patches/remove_deprecated_defined.patch 
b/debian/patches/remove_deprecated_defined.patch
deleted file mode 100644
index 016bf06..000
--- a/debian/patches/remove_deprecated_defined.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Author: Jonas Genannt 
-Description: removed deprecated defined in Perl 5.22 (Closes: #789139)
-Bug: https://rt.cpan.org/Ticket/Display.html?id=105384
-
 a/test.pl
-+++ b/test.pl
-@@ -186,7 +186,7 @@
-   last if ($_ eq '+END_OF_LIST');
-   push @response, $_;
-   };
--  if (!defined(@response)) {
-+  if (!@response) {
-   return;
-   } else {
-   return @response;
-@@ -202,7 +202,7 @@
-   last if ($dec_data eq "+END_OF_LIST");
-   push @response, $dec_data;
-   };
--  if (!defined(@response)) {
-+  if (!@response) {
-   return;
-   } else {
-   return @response;
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index d3f4851..000
--- a/debian/patches/series
+++ /dev/null
@@ -1,2 +0,0 @@
-use-Digest-SHA.patch
-remove_deprecated_defined.patch
diff --git a/debian/patches/use-Digest-SHA.patch 
b/debian/patches/use-Digest-SHA.patch
deleted file mode 100644
index e0c02a2..000
--- a/debian/patches/use-Digest-SHA.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-Author: Salvatore Bonaccorso 
-Description: digest-sha-perl-transition (Closes: #635178)
-Bug: https://rt.cpan.org/Public/Bug/Display.html?id=67841
-
-diff -urN libcrypt-hcesha-perl-0.70.orig//HCE_SHA.pm 
libcrypt-hcesha-perl-0.70/HCE_SHA.pm
 libcrypt-hcesha-perl-0.70.orig//HCE_SHA.pm 2004-03-26 16:27:58.0 
+0100
-+++ libcrypt-hcesha-perl-0.70/HCE_SHA.pm   2011-04-29 20:42:11.309252526 
+0200
-@@ -10,7 +10,7 @@
- use strict;
- use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
- 
--use Digest::SHA1;
-+use Digest::SHA;
- use MIME::Base64;
- use Carp;
- 
-@@ -46,7 +46,7 @@
- my $self = shift;
- my ($rnd) = @_;
-  
--my $context = new Digest::SHA1;
-+my $context = new Digest::SHA;
- $context->add($self->{SKEY}, $rnd);
- my $digest = $context->digest();
- my @e_block = unpack('C*', $digest);
-diff -urN libcrypt-hcesha-perl-0.70.orig//META.yml 
libcrypt-hcesha-perl-0.70/META.yml
 libcrypt-hcesha-perl-0.70.orig//META.yml   2004-03-26 16:28:13.0 
+0100
-+++ libcrypt-hcesha-perl-0.70/META.yml 2011-04-29 20:42:17.622499154 +0200
-@@ -5,7 +5,7 @@
- version_from: HCE_SHA.pm
- installdirs:  site
- requires:
--Digest::SHA1:  0
-+Digest::SHA:  0
- MIME::Base64:  2
- 
- distribution_type: module
-diff -urN libcrypt-hcesha-perl-0.70.orig//Makefile.PL 
libcrypt-hcesha-perl-0.70/Makefile.PL
 libcrypt-hcesha-perl-0.70.orig//Makefile.PL2003-11-13 
00:24:46.0 +0100
-+++ libcrypt-hcesha-perl-0.70/Makefile.PL  2011-04-29 20:42:25.417251532 
+0200
-@@ -4,6 +4,6 @@
- WriteMakefile(
- 'NAME'=> 'Crypt::HCE_SHA',
- 'VERSION_FROM' => 'HCE_SHA.pm', # finds $VERSION
--'PREREQ_PM' => {'Digest::SHA1' => 0,
-+'PREREQ_PM' => {'Digest::SHA' => 0,
-   'MIME::Base64' => 2}
- );

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

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


[libcrypt-hcesha-perl] 04/09: dch

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcrypt-hcesha-perl.

commit aaf42001ad5cd1aae2e3cd5ae105777895ba0194
Author: Nick Morrott 
Date:   Fri Jul 29 03:14:52 2016 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 9294700..98c1b1c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libcrypt-hcesha-perl (0.70-5) UNRELEASED; urgency=medium
+libcrypt-hcesha-perl (0.75-1) UNRELEASED; urgency=medium
 
   [ Salvatore Bonaccorso ]
   * debian/control: Use HTTPS transport protocol for Vcs-Git URI
@@ -6,7 +6,12 @@ libcrypt-hcesha-perl (0.70-5) UNRELEASED; urgency=medium
   [ gregor herrmann ]
   * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
 
- -- Salvatore Bonaccorso   Sat, 30 Jan 2016 20:03:38 +0100
+  [ Nick Morrott ]
+  * Imported Upstream version 0.75
+  * Drop patches (applied upstream)
+  * Add debian/upstream/metadata
+
+ -- Nick Morrott   Fri, 29 Jul 2016 03:13:47 +0100
 
 libcrypt-hcesha-perl (0.70-4) unstable; urgency=medium
 

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

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


[libcrypt-hcesha-perl] 05/09: Bump debhelper compatibility to version 9

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcrypt-hcesha-perl.

commit ed57b54dd1405fa4c379cc807a73b63ac146111f
Author: Nick Morrott 
Date:   Fri Jul 29 03:16:44 2016 +0100

Bump debhelper compatibility to version 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 d64437f..8c71584 100644
--- a/debian/control
+++ b/debian/control
@@ -1,7 +1,7 @@
 Source: libcrypt-hcesha-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 8)
+Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: perl, libmime-base64-perl
 Maintainer: Debian Perl Group 
 Uploaders: Jonas Genannt 

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

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


[libcrypt-hcesha-perl] 01/01: pristine-tar data for libcrypt-hcesha-perl_0.75.orig.tar.gz

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch pristine-tar
in repository libcrypt-hcesha-perl.

commit 690953cd7a22f88ed2d69fa343916a212b4129f6
Author: Nick Morrott 
Date:   Fri Jul 29 03:06:04 2016 +0100

pristine-tar data for libcrypt-hcesha-perl_0.75.orig.tar.gz
---
 libcrypt-hcesha-perl_0.75.orig.tar.gz.delta | Bin 0 -> 1074 bytes
 libcrypt-hcesha-perl_0.75.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libcrypt-hcesha-perl_0.75.orig.tar.gz.delta 
b/libcrypt-hcesha-perl_0.75.orig.tar.gz.delta
new file mode 100644
index 000..551d15e
Binary files /dev/null and b/libcrypt-hcesha-perl_0.75.orig.tar.gz.delta differ
diff --git a/libcrypt-hcesha-perl_0.75.orig.tar.gz.id 
b/libcrypt-hcesha-perl_0.75.orig.tar.gz.id
new file mode 100644
index 000..7ce26a3
--- /dev/null
+++ b/libcrypt-hcesha-perl_0.75.orig.tar.gz.id
@@ -0,0 +1 @@
+4b24e8f24f524a32fd576a8a276883cdc7106d52

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

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


[libcrypt-hcesha-perl] 03/09: Add debian/upstream/metadata

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcrypt-hcesha-perl.

commit 94b60ff5540ad4e8b5d7162750782c5d14e14930
Author: Nick Morrott 
Date:   Fri Jul 29 03:11:32 2016 +0100

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

diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 000..5781f01
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,5 @@
+---
+Archive: CPAN
+Bug-Database: https://rt.cpan.org/Public/Dist/Display.html?Name=Crypt-HCE_SHA
+Contact: Eric Estabrooks 
+Name: Crypt-HCE_SHA

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

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


[libcrypt-hcesha-perl] branch master updated (b77961e -> eb953b7)

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a change to branch master
in repository libcrypt-hcesha-perl.

  from  b77961e   dch
   new  eb953b7   Releasing package libcrypt-hcesha-perl version 0.75-1

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


Summary of changes:
 debian/changelog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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

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


[libcrypt-hcesha-perl] 01/01: Releasing package libcrypt-hcesha-perl version 0.75-1

2016-07-28 Thread Nick Morrott
This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libcrypt-hcesha-perl.

commit eb953b7b72c7f42d0428140c4c0d192df56431ec
Author: Nick Morrott 
Date:   Fri Jul 29 03:34:56 2016 +0100

Releasing package libcrypt-hcesha-perl version 0.75-1
---
 debian/changelog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 65a2090..75f10c5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -17,7 +17,7 @@ libcrypt-hcesha-perl (0.75-1) unstable; urgency=medium
   * Add Testsuite header to make package autopkgtest-able
   * Drop explicit (build-) dep on MIME::Base64 (core module)
 
- -- Nick Morrott   Fri, 29 Jul 2016 03:13:47 +0100
+ -- Nick Morrott   Fri, 29 Jul 2016 03:30:47 +0100
 
 libcrypt-hcesha-perl (0.70-4) unstable; urgency=medium
 

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

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