[libdbd-sqlite3-perl] 11/43: make sure to set internal unicode mode before registering default callbacks (REGEXP function etc)

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 7ae3f655d0812a4d79bebc83654a71c5d0ddfa32
Author: Kenichi Ishigaki 
Date:   Sat Feb 20 09:45:11 2016 +0900

make sure to set internal unicode mode before registering default callbacks 
(REGEXP function etc)
---
 dbdimp.c   | 11 +++-
 t/62_regexp_multibyte_char_class.t | 56 ++
 2 files changed, 66 insertions(+), 1 deletion(-)

diff --git a/dbdimp.c b/dbdimp.c
index 00e959b..a4ee8fe 100644
--- a/dbdimp.c
+++ b/dbdimp.c
@@ -405,6 +405,7 @@ sqlite_db_login6(SV *dbh, imp_dbh_t *imp_dbh, char *dbname, 
char *user, char *pa
 SV **val;
 int extended = 0;
 int flag = 0;
+int unicode = 0;
 
 sqlite_trace(dbh, imp_dbh, 3, form("login '%s' (version %s)", dbname, 
sqlite3_version));
 
@@ -427,6 +428,14 @@ sqlite_db_login6(SV *dbh, imp_dbh_t *imp_dbh, char 
*dbname, char *user, char *pa
 hv_stores(hv, "ReadOnly", newSViv(1));
 }
 }
+/* sqlite_unicode should be detected earlier, to register default 
functions correctly */
+if (hv_exists(hv, "sqlite_unicode", 14)) {
+val = hv_fetch(hv, "sqlite_unicode", 14, 0);
+unicode = (val && SvOK(*val)) ? SvIV(*val) : 0;
+} else if (hv_exists(hv, "unicode", 7)) {
+val = hv_fetch(hv, "unicode", 7, 0);
+unicode = (val && SvOK(*val)) ? SvIV(*val) : 0;
+}
 }
 rc = sqlite_open2(dbname, &(imp_dbh->db), flag, extended);
 if ( rc != SQLITE_OK ) {
@@ -434,7 +443,7 @@ sqlite_db_login6(SV *dbh, imp_dbh_t *imp_dbh, char *dbname, 
char *user, char *pa
 }
 DBIc_IMPSET_on(imp_dbh);
 
-imp_dbh->unicode   = FALSE;
+imp_dbh->unicode   = unicode;
 imp_dbh->functions = newAV();
 imp_dbh->aggregates= newAV();
 imp_dbh->collation_needed_callback = newSVsv( _sv_undef );
diff --git a/t/62_regexp_multibyte_char_class.t 
b/t/62_regexp_multibyte_char_class.t
new file mode 100644
index 000..5ed5fc9
--- /dev/null
+++ b/t/62_regexp_multibyte_char_class.t
@@ -0,0 +1,56 @@
+#!/usr/bin/perl
+
+use strict;
+BEGIN {
+   $|  = 1;
+   $^W = 1;
+}
+
+use t::lib::Test qw/connect_ok @CALL_FUNCS/;
+use Test::More;
+BEGIN {
+   if ($] < 5.008005) {
+   plan skip_all => 'Unicode is not supported before 5.8.5';
+   }
+}
+use Test::NoWarnings;
+
+# special case for multibyte (non-ASCII) character class,
+# which only works correctly under the unicode mode
+my @words = qw{ テスト テント };
+my $regex = 'テ[スン]ト';
+
+
+plan tests => 2 * 2 * @CALL_FUNCS + 1;
+
+foreach my $call_func (@CALL_FUNCS) {
+
+  for my $use_unicode (0, 1) {
+
+# connect
+my $dbh = connect_ok( RaiseError => 1, sqlite_unicode => $use_unicode );
+
+# populate test data
+my @vals = @words;
+my $re = $regex;
+if ($use_unicode) {
+  utf8::decode($_) foreach @vals;
+  utf8::decode($re);
+}
+
+$dbh->do( 'CREATE TEMP TABLE regexp_test ( txt )' );
+$dbh->do( "INSERT INTO regexp_test VALUES ( '$_' )" ) foreach @vals;
+
+my $sql = "SELECT txt from regexp_test WHERE txt REGEXP '$re' ";
+my $db_match = $dbh->selectcol_arrayref($sql);
+
+if ($use_unicode) {
+  is @$db_match => 2;
+  note explain $db_match;
+} else {
+  is @$db_match => 0;
+  note explain $db_match;
+}
+  }
+}
+

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

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

[libdbd-sqlite3-perl] 04/43: two-arg fts3_tokenizer() is disabled by default for security concerns as of SQLite 3.11.0, unless DBD::SQLite is compiled with -DSQLITE_ENABLE_FTS3_TOKENIZER

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit abed684c431beab32d20da69e344bf3075102a1e
Author: Kenichi Ishigaki 
Date:   Tue Feb 16 11:55:27 2016 +0900

two-arg fts3_tokenizer() is disabled by default for security concerns as of 
SQLite 3.11.0, unless DBD::SQLite is compiled with 
-DSQLITE_ENABLE_FTS3_TOKENIZER
---
 t/43_fts3.t | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/t/43_fts3.t b/t/43_fts3.t
index 7af6c2e..64910ee 100644
--- a/t/43_fts3.t
+++ b/t/43_fts3.t
@@ -33,6 +33,9 @@ BEGIN {
if (!grep /ENABLE_FTS3/, DBD::SQLite::compile_options()) {
plan skip_all => 'FTS3 is disabled for this DBD::SQLite';
}
+   if ($DBD::SQLite::sqlite_version_number >= 3011000 and !grep 
/ENABLE_FTS3_TOKENIZER/, DBD::SQLite::compile_options()) {
+   plan skip_all => 'FTS3 tokenizer is disabled for this 
DBD::SQLite';
+   }
 }
 use Test::NoWarnings;
 

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

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


[libdbd-sqlite3-perl] 08/43: add 5.22 to .travis.yml

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 65ac52d817237234c37e55005b075ccc75ae01a4
Author: Kenichi Ishigaki 
Date:   Tue Feb 16 12:59:33 2016 +0900

add 5.22 to .travis.yml
---
 .travis.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.travis.yml b/.travis.yml
index 9256de6..b3c9522 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,6 +8,7 @@ perl:
   - "5.16"
   - "5.18"
   - "5.20"
+  - "5.22"
 #  - "blead"
 env:
   - DBI_VERSION=

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

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


[libdbd-sqlite3-perl] 02/43: updated Changes

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit cee7a582f3957c02ab25c0ff20d8b5e2f446c0a1
Author: Kenichi Ishigaki 
Date:   Mon Feb 15 01:28:44 2016 +0900

updated Changes
---
 Changes | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Changes b/Changes
index 550b8de..1bafdcc 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Changes for Perl extension DBD-SQLite
 
+1.51_01 to be released
+- Applied a doc patch by Salvatore Bonaccorso
+
 1.50 2016-02-11
 - Switched to a production version.
 

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

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


[libdbd-sqlite3-perl] branch master updated (266d222 -> b9c1c98)

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

carnil pushed a change to branch master
in repository libdbd-sqlite3-perl.

  from  266d222   update changelog
   new  d17fe98   applied a doc patch by Salvatore Bonaccorso (fix #15)
   new  cee7a58   updated Changes
   new  0c5895c   added a brief description to ::Constants (fix #16, 
Salvatore++)
   new  abed684   two-arg fts3_tokenizer() is disabled by default for 
security concerns as of SQLite 3.11.0, unless DBD::SQLite is compiled with 
-DSQLITE_ENABLE_FTS3_TOKENIZER
   new  e9ae705   split dbdimp.c and move tokenizer/virtual table-related 
code into .inc files
   new  37034d0   updated SQLite to 3.11.0
   new  d1fd612   register perl tokenizer only if DBD::SQLite is compiled 
with -DSQLITE_ENABLE_FTS3_TOKENIZER
   new  65ac52d   add 5.22 to .travis.yml
   new  58ba45f   see if SQLITE_ENABLE_FTS3_TOKENIZER environmental 
variable is set, for those who do need perl tokenizer
   new  20f57e8   updated Changes
   new  7ae3f65   make sure to set internal unicode mode before registering 
default callbacks (REGEXP function etc)
   new  f351137   updated MANIFEST
   new  b4cfca7   enabled (experimental) FTS5
   new  000a351   releng 1.51_01
   new  95bd200   not to use Japanese multibyte characters directly
   new  8a50806   try Encode for older perls
   new  c716e6b   compare perl_match and db_match
   new  90dc44a   releng 1.51_02
   new  bb93e93   skip no warnings test because it's known to fail under 
perl >= 5.22 and non-utf8 locale (RT-112220)
   new  42007c9   respect also SQLITE_INC/SQLITE_LIB when necessary
   new  2db5167   releng 1.51_03
   new  6939112   updated SQLite to 3.11.1
   new  996562e   releng 1.51_04
   new  093875d   updated SQLite to 3.12.0
   new  84092c5   add 2 missing function declarations
   new  c91398e   Merge pull request #17 from rurban/master
   new  67c5927   updated SQLite to 3.12.2
   new  25321bf   fixed RT-115465: column_info doesn't parse sizes with 
spaces (ilmari++)
   new  4c7b071   updated SQLite to 3.13.0
   new  473a3bf   releng 1.51_05
   new  c48fbb7   upgraded SQLite to 3.14.0
   new  f8d05bf   updated Changes
   new  5131f9f   updated SQLite to 3.15.0
   new  5bd465f   releng 1.51_06
   new  0c4d048   downgraded SQLite to 3.13.0 (RT-118395)
   new  a9afbcc   releng 1.51_07
   new  8878009   releng 1.52
   new  1615890   New upstream version 1.52
   new  9b701a1   Merge tag 'upstream/1.52'
   new  595add9   Update debian/changelog
   new  5588ee5   Drop spelling-error-in-manpage.patch patch
   new  31eae56   Declare compliance with Debian policy 3.9.8
   new  b9c1c98   Update debian/changelog file

The 43 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:
 .travis.yml| 1 +
 Changes|41 +
 MANIFEST   | 4 +
 META.json  | 2 +-
 META.yml   | 2 +-
 Makefile.PL|16 +-
 SQLite.xs  | 4 +
 dbdimp.c   |  1143 +-
 dbdimp.h   | 2 +
 dbdimp_tokenizer.inc   |   289 +
 dbdimp_virtual_table.inc   |   835 +
 debian/changelog   |10 +-
 debian/control | 2 +-
 debian/patches/series  | 1 -
 debian/patches/spelling-error-in-manpage.patch |27 -
 lib/DBD/SQLite.pm  | 6 +-
 lib/DBD/SQLite/Constants.pm| 2 +-
 lib/DBD/SQLite/VirtualTable.pm | 6 +-
 sqlite3.c  | 28593 ---
 sqlite3.h  |  1620 +-
 sqlite3ext.h   | 4 +
 t/43_fts3.t| 3 +
 t/62_regexp_multibyte_char_class.t |53 +
 t/lib/Test.pm  | 2 +-
 t/rt_115465_column_info_with_spaces.t  |37 +
 25 files changed, 22608 insertions(+), 10097 deletions(-)
 create mode 100644 dbdimp_tokenizer.inc
 create mode 100644 dbdimp_virtual_table.inc
 delete mode 100644 debian/patches/spelling-error-in-manpage.patch
 create mode 100644 t/62_regexp_multibyte_char_class.t
 create mode 100644 t/rt_115465_column_info_with_spaces.t

-- 
Alioth's /usr/local/bin/git-commit-notice on 

[libdbd-mysql-perl] branch pristine-tar updated (be31b7e -> 42c7ae5)

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

carnil pushed a change to branch pristine-tar
in repository libdbd-mysql-perl.

  from  be31b7e   pristine-tar data for libdbd-mysql-perl_4.037.orig.tar.gz
   new  42c7ae5   pristine-tar data for libdbd-mysql-perl_4.039.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:
 libdbd-mysql-perl_4.039.orig.tar.gz.delta | Bin 0 -> 3905 bytes
 libdbd-mysql-perl_4.039.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libdbd-mysql-perl_4.039.orig.tar.gz.delta
 create mode 100644 libdbd-mysql-perl_4.039.orig.tar.gz.id

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

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


[libdbd-mysql-perl] 01/01: pristine-tar data for libdbd-mysql-perl_4.039.orig.tar.gz

2016-11-15 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 libdbd-mysql-perl.

commit 42c7ae5dce051733c328373752c865bd75dc1380
Author: Salvatore Bonaccorso 
Date:   Wed Nov 16 06:37:59 2016 +0100

pristine-tar data for libdbd-mysql-perl_4.039.orig.tar.gz
---
 libdbd-mysql-perl_4.039.orig.tar.gz.delta | Bin 0 -> 3905 bytes
 libdbd-mysql-perl_4.039.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libdbd-mysql-perl_4.039.orig.tar.gz.delta 
b/libdbd-mysql-perl_4.039.orig.tar.gz.delta
new file mode 100644
index 000..512844e
Binary files /dev/null and b/libdbd-mysql-perl_4.039.orig.tar.gz.delta differ
diff --git a/libdbd-mysql-perl_4.039.orig.tar.gz.id 
b/libdbd-mysql-perl_4.039.orig.tar.gz.id
new file mode 100644
index 000..07b7c31
--- /dev/null
+++ b/libdbd-mysql-perl_4.039.orig.tar.gz.id
@@ -0,0 +1 @@
+9ef2cc83efd0c419fa380e99659cee207e46bb01

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

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


[libdbd-mysql-perl] branch master updated (f5e9147 -> 020aa95)

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

carnil pushed a change to branch master
in repository libdbd-mysql-perl.

  from  f5e9147   releasing package libdbd-mysql-perl version 4.037-5
  adds  c6bce90   New upstream version 4.039
   new  84d132b   Merge tag 'upstream/4.039'
   new  697c31b   Update debian/changelog
   new  020aa95   Prepare changelog for release

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


Summary of changes:
 Changes|  41 -
 MANIFEST   |   2 +
 MANIFEST.SKIP  |   1 +
 META.json  |  10 +-
 META.yml   |  30 ++--
 Makefile.PL|  29 +++-
 dbdimp.c   | 271 ++---
 dbdimp.h   |  18 +--
 debian/changelog   |  11 ++
 lib/Bundle/DBD/mysql.pm|   2 +-
 lib/DBD/mysql.pm   |   2 +-
 mysql.xs   | 173 +
 t/05dbcreate.t |   2 +-
 t/40server_prepare_crash.t |  39 +
 t/40types.t|  56 ++-
 t/60leaks.t|  96 +++-
 t/rt61849-bind-param-buffer-overflow.t |  19 +++
 t/rt88006-bit-prepare.t|  46 +-
 18 files changed, 535 insertions(+), 313 deletions(-)
 create mode 100644 t/40server_prepare_crash.t
 create mode 100644 t/rt61849-bind-param-buffer-overflow.t

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

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


[libdbd-mysql-perl] 02/03: Update debian/changelog

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

carnil pushed a commit to branch master
in repository libdbd-mysql-perl.

commit 697c31b52cd80ca9349221a8cb264d28a6e2baec
Author: Salvatore Bonaccorso 
Date:   Wed Nov 16 06:37:59 2016 +0100

Update debian/changelog

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

diff --git a/debian/changelog b/debian/changelog
index 063e817..6161e20 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+libdbd-mysql-perl (4.039-1) UNRELEASED; urgency=medium
+
+  * Import upstream version 4.039
+- CVE-2016-1249: Fixes out-of-bounds read when using server side
+  prepared statements with an unaligned number of placeholders in
+  WHERE condition and output fields in SELECT expression.
+  (Closes: #844475)
+
+ -- Salvatore Bonaccorso   Wed, 16 Nov 2016 06:37:59 +0100
+
 libdbd-mysql-perl (4.037-5) unstable; urgency=medium
 
   * debian/tests/pkg-perl/smoke-setup: initialize MySQL server with

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

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


[libdbd-mysql-perl] 03/03: Prepare changelog for release

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

carnil pushed a commit to branch master
in repository libdbd-mysql-perl.

commit 020aa9582ea9b09945c993a055572df7e4464033
Author: Salvatore Bonaccorso 
Date:   Wed Nov 16 06:42:40 2016 +0100

Prepare changelog for release

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

diff --git a/debian/changelog b/debian/changelog
index 6161e20..5cc9463 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,12 +1,13 @@
-libdbd-mysql-perl (4.039-1) UNRELEASED; urgency=medium
+libdbd-mysql-perl (4.039-1) unstable; urgency=medium
 
+  * Team upload.
   * Import upstream version 4.039
 - CVE-2016-1249: Fixes out-of-bounds read when using server side
   prepared statements with an unaligned number of placeholders in
   WHERE condition and output fields in SELECT expression.
   (Closes: #844475)
 
- -- Salvatore Bonaccorso   Wed, 16 Nov 2016 06:37:59 +0100
+ -- Salvatore Bonaccorso   Wed, 16 Nov 2016 06:42:33 +0100
 
 libdbd-mysql-perl (4.037-5) unstable; urgency=medium
 

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

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


[libdbd-mysql-perl] 01/03: Merge tag 'upstream/4.039'

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

carnil pushed a commit to branch master
in repository libdbd-mysql-perl.

commit 84d132b55c7e0dffd6f31c58c666fb42b95970ac
Merge: f5e9147 c6bce90
Author: Salvatore Bonaccorso 
Date:   Wed Nov 16 06:37:59 2016 +0100

Merge tag 'upstream/4.039'

Upstream version 4.039

 Changes|  41 -
 MANIFEST   |   2 +
 MANIFEST.SKIP  |   1 +
 META.json  |  10 +-
 META.yml   |  30 ++--
 Makefile.PL|  29 +++-
 dbdimp.c   | 271 ++---
 dbdimp.h   |  18 +--
 lib/Bundle/DBD/mysql.pm|   2 +-
 lib/DBD/mysql.pm   |   2 +-
 mysql.xs   | 173 +
 t/05dbcreate.t |   2 +-
 t/40server_prepare_crash.t |  39 +
 t/40types.t|  56 ++-
 t/60leaks.t|  96 +++-
 t/rt61849-bind-param-buffer-overflow.t |  19 +++
 t/rt88006-bit-prepare.t|  46 +-
 17 files changed, 524 insertions(+), 313 deletions(-)

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

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


[libdbd-mysql-perl] annotated tag upstream/4.039 created (now d51d9fb)

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

carnil pushed a change to annotated tag upstream/4.039
in repository libdbd-mysql-perl.

at  d51d9fb   (tag)
   tagging  c6bce90d7bece3daa14bc01a8620df33f1456d34 (commit)
  replaces  upstream/4.037
 tagged by  Salvatore Bonaccorso
on  Wed Nov 16 06:37:59 2016 +0100

- Log -
Upstream version 4.039

Salvatore Bonaccorso (1):
  New upstream version 4.039

---

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

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


[libdbd-sqlite3-perl] 30/43: releng 1.51_05

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 473a3bf4bf663673fe6269ea210a06b95bba0229
Author: Kenichi Ishigaki 
Date:   Thu Jun 23 10:19:58 2016 +0900

releng 1.51_05
---
 Changes| 6 ++
 MANIFEST   | 1 +
 lib/DBD/SQLite.pm  | 2 +-
 lib/DBD/SQLite/VirtualTable.pm | 2 +-
 t/lib/Test.pm  | 2 +-
 5 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/Changes b/Changes
index 60bb43a..6edfaa7 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Changes for Perl extension DBD-SQLite
 
+1.51_05 2016-06-23
+- Updated SQLite to 3.13.0
+- Resolved #115465: column_info doesn't parse sizes with spaces
+  (ilmari++)
+- Added two missing function declarations (rurban++)
+
 1.51_04 2016-03-07
 - Updated SQLite to 3.11.1, which fixed an FTS5 index
   corruption issue
diff --git a/MANIFEST b/MANIFEST
index adaaa31..b9ed20e 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -90,6 +90,7 @@ t/cookbook_variance.t
 t/lib/Test.pm
 t/rt_106151_outermost_savepoint.t
 t/rt_106950_extra_warnings_with_savepoints.t
+t/rt_115465_column_info_with_spaces.t
 t/rt_15186_prepcached.t
 t/rt_21406_auto_finish.t
 t/rt_25371_asymmetric_unicode.t
diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm
index 0a04e98..4dc604e 100644
--- a/lib/DBD/SQLite.pm
+++ b/lib/DBD/SQLite.pm
@@ -5,7 +5,7 @@ use strict;
 use DBI   1.57 ();
 use DynaLoader ();
 
-our $VERSION = '1.51_04';
+our $VERSION = '1.51_05';
 our @ISA = 'DynaLoader';
 
 # sqlite_version cache (set in the XS bootstrap)
diff --git a/lib/DBD/SQLite/VirtualTable.pm b/lib/DBD/SQLite/VirtualTable.pm
index 7d4f46e..fa33ef1 100644
--- a/lib/DBD/SQLite/VirtualTable.pm
+++ b/lib/DBD/SQLite/VirtualTable.pm
@@ -5,7 +5,7 @@ use strict;
 use warnings;
 use Scalar::Utilqw/weaken/;
 
-our $VERSION = '1.51_04';
+our $VERSION = '1.51_05';
 our @ISA;
 
 
diff --git a/t/lib/Test.pm b/t/lib/Test.pm
index e6cca99..a5dcc71 100644
--- a/t/lib/Test.pm
+++ b/t/lib/Test.pm
@@ -7,7 +7,7 @@ use Exporter   ();
 use File::Spec ();
 use Test::More ();
 
-our $VERSION = '1.51_04';
+our $VERSION = '1.51_05';
 our @ISA = 'Exporter';
 our @EXPORT  = qw/connect_ok dies dbfile @CALL_FUNCS $sqlite_call has_sqlite 
requires_sqlite/;
 our @CALL_FUNCS;

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

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


[libdbd-sqlite3-perl] 26/43: Merge pull request #17 from rurban/master

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit c91398e2e0908c9ccc9d7e87aa336489b379a6dd
Merge: 093875d 84092c5
Author: Kenichi Ishigaki 
Date:   Wed Mar 30 23:37:02 2016 +0900

Merge pull request #17 from rurban/master

add 2 missing function declarations

 dbdimp.h | 2 ++
 1 file changed, 2 insertions(+)

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

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


[libdbd-sqlite3-perl] 28/43: fixed RT-115465: column_info doesn't parse sizes with spaces (ilmari++)

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 25321bfda15e0f0996fa9b202d5243918f620786
Author: Kenichi Ishigaki 
Date:   Thu Jun 23 10:07:09 2016 +0900

fixed RT-115465: column_info doesn't parse sizes with spaces (ilmari++)
---
 lib/DBD/SQLite.pm |  2 +-
 t/rt_115465_column_info_with_spaces.t | 37 +++
 2 files changed, 38 insertions(+), 1 deletion(-)

diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm
index a28a57c..609ccce 100644
--- a/lib/DBD/SQLite.pm
+++ b/lib/DBD/SQLite.pm
@@ -855,7 +855,7 @@ END_SQL
 );
 
 my $type = $col_info->{type};
-if ( $type =~ s/(\w+) ?\((\d+)(?:,(\d+))?\)/$1/ ) {
+if ( $type =~ s/(\w+)\s*\(\s*(\d+)(?:\s*,\s*(\d+))?\s*\)/$1/ ) {
 $col{COLUMN_SIZE}= $2;
 $col{DECIMAL_DIGITS} = $3;
 }
diff --git a/t/rt_115465_column_info_with_spaces.t 
b/t/rt_115465_column_info_with_spaces.t
new file mode 100644
index 000..3d6c0c6
--- /dev/null
+++ b/t/rt_115465_column_info_with_spaces.t
@@ -0,0 +1,37 @@
+#!/usr/bin/perl
+
+use strict;
+BEGIN {
+   $|  = 1;
+   $^W = 1;
+}
+
+use t::lib::Test;
+use Test::More;
+
+plan tests => 14;
+use Test::NoWarnings;
+
+{
+   my $dbh = connect_ok();
+   $dbh->do('create table test ( foo varchar(10), bar varchar( 15 ), baz 
decimal(3,3), bat decimal(4, 4))');
+   my %info = map {
+   $_->{COLUMN_NAME} => [@$_{qw/TYPE_NAME COLUMN_SIZE 
DECIMAL_DIGITS/}]
+   } @{$dbh->column_info(undef, undef, 'test', 
'%')->fetchall_arrayref({})};
+
+   is $info{foo}[0] => 'varchar';
+   is $info{foo}[1] => '10';
+   is $info{foo}[2] => undef;
+
+   is $info{bar}[0] => 'varchar';
+   is $info{bar}[1] => '15';
+   is $info{bar}[2] => undef;
+
+   is $info{baz}[0] => 'decimal';
+   is $info{baz}[1] => 3;
+   is $info{baz}[2] => 3;
+
+   is $info{bat}[0] => 'decimal';
+   is $info{bat}[1] => 4;
+   is $info{bat}[2] => 4;
+}

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

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


[libdbd-sqlite3-perl] 34/43: releng 1.51_06

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 5bd465fc07e48b5e3c1952e7217b09a44e62d233
Author: Kenichi Ishigaki 
Date:   Sat Oct 15 09:17:54 2016 +0900

releng 1.51_06
---
 Changes| 4 ++--
 lib/DBD/SQLite.pm  | 2 +-
 lib/DBD/SQLite/VirtualTable.pm | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Changes b/Changes
index 23a9523..6776ac7 100644
--- a/Changes
+++ b/Changes
@@ -1,7 +1,7 @@
 Changes for Perl extension DBD-SQLite
 
-1.51_06 to be released
-- Updated SQLite to 3.14.0
+1.51_06 2016-10-15
+- Updated SQLite to 3.15.0
 
 1.51_05 2016-06-23
 - Updated SQLite to 3.13.0
diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm
index 2440004..657baf6 100644
--- a/lib/DBD/SQLite.pm
+++ b/lib/DBD/SQLite.pm
@@ -5,7 +5,7 @@ use strict;
 use DBI   1.57 ();
 use DynaLoader ();
 
-our $VERSION = '1.51_05';
+our $VERSION = '1.51_06';
 our @ISA = 'DynaLoader';
 
 # sqlite_version cache (set in the XS bootstrap)
diff --git a/lib/DBD/SQLite/VirtualTable.pm b/lib/DBD/SQLite/VirtualTable.pm
index fa33ef1..270a86c 100644
--- a/lib/DBD/SQLite/VirtualTable.pm
+++ b/lib/DBD/SQLite/VirtualTable.pm
@@ -5,7 +5,7 @@ use strict;
 use warnings;
 use Scalar::Utilqw/weaken/;
 
-our $VERSION = '1.51_05';
+our $VERSION = '1.51_06';
 our @ISA;
 
 

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

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


[libdbd-sqlite3-perl] 42/43: Declare compliance with Debian policy 3.9.8

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 31eae56984fb2f0dc748a18b5c82d6bd357d9357
Author: Salvatore Bonaccorso 
Date:   Tue Nov 15 16:09:40 2016 +0100

Declare compliance with Debian policy 3.9.8
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 71ecc42..372701c 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ Build-Depends: debhelper (>= 9.20120312~),
libdbi-perl,
libsqlite3-dev,
perl
-Standards-Version: 3.9.7
+Standards-Version: 3.9.8
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libdbd-sqlite3-perl.git
 Vcs-Git: 
https://anonscm.debian.org/git/pkg-perl/packages/libdbd-sqlite3-perl.git
 Homepage: https://metacpan.org/release/DBD-SQLite

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

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


[libdbd-sqlite3-perl] 40/43: Update debian/changelog

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 595add9eb42e6bc43749404c6fc022fd148bb240
Author: Salvatore Bonaccorso 
Date:   Tue Nov 15 15:28:23 2016 +0100

Update debian/changelog

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

diff --git a/debian/changelog b/debian/changelog
index 6610a48..098135a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,15 @@
-libdbd-sqlite3-perl (1.50-2) UNRELEASED; urgency=medium
+libdbd-sqlite3-perl (1.52-1) UNRELEASED; urgency=medium
 
+  [ gregor herrmann ]
   * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
   * debian/upstream/metadata: change GitHub/CPAN URL(s) to HTTPS.
   * Remove Jonathan Yu from Uploaders. Thanks for your work!
   * Remove Ryan Niebur from Uploaders. Thanks for your work!
 
- -- gregor herrmann   Fri, 20 May 2016 12:03:41 +0200
+  [ Salvatore Bonaccorso ]
+  * Import upstream version 1.52
+
+ -- Salvatore Bonaccorso   Tue, 15 Nov 2016 15:28:23 +0100
 
 libdbd-sqlite3-perl (1.50-1) unstable; urgency=medium
 

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

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


[libdbd-sqlite3-perl] 25/43: add 2 missing function declarations

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 84092c54df4a0978d4de34869e1bbd6a9452272f
Author: Reini Urban 
Date:   Wed Mar 30 14:46:29 2016 +0200

add 2 missing function declarations

repro with -Wimplicit-function-declaration
---
 dbdimp.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dbdimp.h b/dbdimp.h
index fa6acfe..880bf37 100644
--- a/dbdimp.h
+++ b/dbdimp.h
@@ -131,6 +131,8 @@ int sqlite_db_register_fts3_perl_tokenizer(pTHX_ SV *dbh);
 HV* _sqlite_status(int reset);
 HV* _sqlite_st_status(pTHX_ SV *sth, int reset);
 int sqlite_db_create_module(pTHX_ SV *dbh, const char *name, const char 
*perl_class);
+int sqlite_db_do_sv(SV *dbh, imp_dbh_t *imp_dbh, SV *sv_statement);
+void init_cxt();
 
 
 #ifdef SvUTF8_on

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

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


[libdbd-sqlite3-perl] 43/43: Update debian/changelog file

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit b9c1c98dd0c854976751355e65851c487b752a81
Author: Salvatore Bonaccorso 
Date:   Tue Nov 15 16:26:21 2016 +0100

Update debian/changelog file

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

diff --git a/debian/changelog b/debian/changelog
index 098135a..cf90249 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,8 @@ libdbd-sqlite3-perl (1.52-1) UNRELEASED; urgency=medium
 
   [ Salvatore Bonaccorso ]
   * Import upstream version 1.52
+  * Drop spelling-error-in-manpage.patch patch
+  * Declare compliance with Debian policy 3.9.8
 
  -- Salvatore Bonaccorso   Tue, 15 Nov 2016 15:28:23 +0100
 

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

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


[libdbd-sqlite3-perl] 36/43: releng 1.51_07

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit a9afbccd6aa726856f1318bd7f526521460d71bd
Author: Kenichi Ishigaki 
Date:   Sun Oct 16 14:14:06 2016 +0900

releng 1.51_07
---
 Changes| 3 +++
 lib/DBD/SQLite.pm  | 4 ++--
 lib/DBD/SQLite/VirtualTable.pm | 2 +-
 t/lib/Test.pm  | 2 +-
 4 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/Changes b/Changes
index 6776ac7..35ef7b7 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Changes for Perl extension DBD-SQLite
 
+1.51_07 2016-10-16
+- Downgraded SQLite to 3.13.0 (RT#118395)
+
 1.51_06 2016-10-15
 - Updated SQLite to 3.15.0
 
diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm
index 657baf6..97d7472 100644
--- a/lib/DBD/SQLite.pm
+++ b/lib/DBD/SQLite.pm
@@ -5,7 +5,7 @@ use strict;
 use DBI   1.57 ();
 use DynaLoader ();
 
-our $VERSION = '1.51_06';
+our $VERSION = '1.51_07';
 our @ISA = 'DynaLoader';
 
 # sqlite_version cache (set in the XS bootstrap)
@@ -977,7 +977,7 @@ are limited by the typeless nature of the SQLite database.
 =head1 SQLITE VERSION
 
 DBD::SQLite is usually compiled with a bundled SQLite library
-(SQLite version S<3.15.0> as of this release) for consistency.
+(SQLite version S<3.13.0> as of this release) for consistency.
 However, a different version of SQLite may sometimes be used for
 some reasons like security, or some new experimental features.
 
diff --git a/lib/DBD/SQLite/VirtualTable.pm b/lib/DBD/SQLite/VirtualTable.pm
index 270a86c..f44e2e1 100644
--- a/lib/DBD/SQLite/VirtualTable.pm
+++ b/lib/DBD/SQLite/VirtualTable.pm
@@ -5,7 +5,7 @@ use strict;
 use warnings;
 use Scalar::Utilqw/weaken/;
 
-our $VERSION = '1.51_06';
+our $VERSION = '1.51_07';
 our @ISA;
 
 
diff --git a/t/lib/Test.pm b/t/lib/Test.pm
index a5dcc71..cbba953 100644
--- a/t/lib/Test.pm
+++ b/t/lib/Test.pm
@@ -7,7 +7,7 @@ use Exporter   ();
 use File::Spec ();
 use Test::More ();
 
-our $VERSION = '1.51_05';
+our $VERSION = '1.51_07';
 our @ISA = 'Exporter';
 our @EXPORT  = qw/connect_ok dies dbfile @CALL_FUNCS $sqlite_call has_sqlite 
requires_sqlite/;
 our @CALL_FUNCS;

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

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


[libdbd-sqlite3-perl] 39/43: Merge tag 'upstream/1.52'

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 9b701a12ff9dc2fd17af3602fb4ea2adbffd1b95
Merge: 266d222 1615890
Author: Salvatore Bonaccorso 
Date:   Tue Nov 15 15:28:23 2016 +0100

Merge tag 'upstream/1.52'

Upstream version 1.52

 .travis.yml   | 1 +
 Changes   |41 +
 MANIFEST  | 4 +
 META.json | 2 +-
 META.yml  | 2 +-
 Makefile.PL   |16 +-
 SQLite.xs | 4 +
 dbdimp.c  |  1143 +-
 dbdimp.h  | 2 +
 dbdimp_tokenizer.inc  |   289 +
 dbdimp_virtual_table.inc  |   835 +
 lib/DBD/SQLite.pm | 6 +-
 lib/DBD/SQLite/Constants.pm   | 2 +-
 lib/DBD/SQLite/VirtualTable.pm| 6 +-
 sqlite3.c | 28593 ++--
 sqlite3.h |  1620 +-
 sqlite3ext.h  | 4 +
 t/43_fts3.t   | 3 +
 t/62_regexp_multibyte_char_class.t|53 +
 t/lib/Test.pm | 2 +-
 t/rt_115465_column_info_with_spaces.t |37 +
 21 files changed, 22599 insertions(+), 10066 deletions(-)

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

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


[libdbd-sqlite3-perl] 37/43: releng 1.52

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 8878009ede59bb18a64d2005afd076923d8b2592
Author: Kenichi Ishigaki 
Date:   Tue Nov 15 22:02:40 2016 +0900

releng 1.52
---
 Changes| 3 +++
 lib/DBD/SQLite.pm  | 2 +-
 lib/DBD/SQLite/VirtualTable.pm | 2 +-
 t/lib/Test.pm  | 2 +-
 4 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/Changes b/Changes
index 35ef7b7..2aece23 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Changes for Perl extension DBD-SQLite
 
+1.52 2016-11-15
+- Switched to a production version.
+
 1.51_07 2016-10-16
 - Downgraded SQLite to 3.13.0 (RT#118395)
 
diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm
index 97d7472..cdd0a5e 100644
--- a/lib/DBD/SQLite.pm
+++ b/lib/DBD/SQLite.pm
@@ -5,7 +5,7 @@ use strict;
 use DBI   1.57 ();
 use DynaLoader ();
 
-our $VERSION = '1.51_07';
+our $VERSION = '1.52';
 our @ISA = 'DynaLoader';
 
 # sqlite_version cache (set in the XS bootstrap)
diff --git a/lib/DBD/SQLite/VirtualTable.pm b/lib/DBD/SQLite/VirtualTable.pm
index f44e2e1..186bd6b 100644
--- a/lib/DBD/SQLite/VirtualTable.pm
+++ b/lib/DBD/SQLite/VirtualTable.pm
@@ -5,7 +5,7 @@ use strict;
 use warnings;
 use Scalar::Utilqw/weaken/;
 
-our $VERSION = '1.51_07';
+our $VERSION = '1.52';
 our @ISA;
 
 
diff --git a/t/lib/Test.pm b/t/lib/Test.pm
index cbba953..4fe1dee 100644
--- a/t/lib/Test.pm
+++ b/t/lib/Test.pm
@@ -7,7 +7,7 @@ use Exporter   ();
 use File::Spec ();
 use Test::More ();
 
-our $VERSION = '1.51_07';
+our $VERSION = '1.52';
 our @ISA = 'Exporter';
 our @EXPORT  = qw/connect_ok dies dbfile @CALL_FUNCS $sqlite_call has_sqlite 
requires_sqlite/;
 our @CALL_FUNCS;

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

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


[libdbd-sqlite3-perl] annotated tag upstream/1.52 created (now 89c551b)

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

carnil pushed a change to annotated tag upstream/1.52
in repository libdbd-sqlite3-perl.

at  89c551b   (tag)
   tagging  1615890e938c58c6ec36c8da4ddb43e7d87d0907 (commit)
  replaces  upstream/1.50
 tagged by  Salvatore Bonaccorso
on  Tue Nov 15 15:28:23 2016 +0100

- Log -
Upstream version 1.52

Kenichi Ishigaki (36):
  applied a doc patch by Salvatore Bonaccorso (fix #15)
  updated Changes
  added a brief description to ::Constants (fix #16, Salvatore++)
  two-arg fts3_tokenizer() is disabled by default for security concerns as 
of SQLite 3.11.0, unless DBD::SQLite is compiled with 
-DSQLITE_ENABLE_FTS3_TOKENIZER
  split dbdimp.c and move tokenizer/virtual table-related code into .inc 
files
  updated SQLite to 3.11.0
  register perl tokenizer only if DBD::SQLite is compiled with 
-DSQLITE_ENABLE_FTS3_TOKENIZER
  add 5.22 to .travis.yml
  see if SQLITE_ENABLE_FTS3_TOKENIZER environmental variable is set, for 
those who do need perl tokenizer
  updated Changes
  make sure to set internal unicode mode before registering default 
callbacks (REGEXP function etc)
  updated MANIFEST
  enabled (experimental) FTS5
  releng 1.51_01
  not to use Japanese multibyte characters directly
  try Encode for older perls
  compare perl_match and db_match
  releng 1.51_02
  skip no warnings test because it's known to fail under perl >= 5.22 and 
non-utf8 locale (RT-112220)
  respect also SQLITE_INC/SQLITE_LIB when necessary
  releng 1.51_03
  updated SQLite to 3.11.1
  releng 1.51_04
  updated SQLite to 3.12.0
  Merge pull request #17 from rurban/master
  updated SQLite to 3.12.2
  fixed RT-115465: column_info doesn't parse sizes with spaces (ilmari++)
  updated SQLite to 3.13.0
  releng 1.51_05
  upgraded SQLite to 3.14.0
  updated Changes
  updated SQLite to 3.15.0
  releng 1.51_06
  downgraded SQLite to 3.13.0 (RT-118395)
  releng 1.51_07
  releng 1.52

Reini Urban (1):
  add 2 missing function declarations

Salvatore Bonaccorso (1):
  New upstream version 1.52

---

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

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


[libdbd-sqlite3-perl] branch master updated (b9c1c98 -> eb31f30)

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

carnil pushed a change to branch master
in repository libdbd-sqlite3-perl.

  from  b9c1c98   Update debian/changelog file
   new  2079013   Remove unused lintian-overrides
   new  41886fa   debian/rules: Build enabling all hardening flags
   new  eb31f30   Prepare changelog for release

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


Summary of changes:
 debian/changelog| 6 --
 debian/rules| 2 ++
 debian/source/lintian-overrides | 3 ---
 3 files changed, 6 insertions(+), 5 deletions(-)
 delete mode 100644 debian/source/lintian-overrides

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

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


[libdbd-sqlite3-perl] annotated tag debian/1.52-1 created (now d65082d)

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

carnil pushed a change to annotated tag debian/1.52-1
in repository libdbd-sqlite3-perl.

at  d65082d   (tag)
   tagging  eb31f30959b967e46d9a4b095c72ef3410b31a1b (commit)
  replaces  debian/1.50-1
 tagged by  Salvatore Bonaccorso
on  Tue Nov 15 16:36:37 2016 +0100

- Log -
tagging package libdbd-sqlite3-perl version debian/1.52-1
-BEGIN PGP SIGNATURE-

iQKmBAABCgCQFiEERkRAmAjBceBVMd3uBUy48xNDz0QFAlgrK4VfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDQ2
NDQ0MDk4MDhDMTcxRTA1NTMxRERFRTA1NENCOEYzMTM0M0NGNDQSHGNhcm5pbEBk
ZWJpYW4ub3JnAAoJEAVMuPMTQ89EAw0P/REeAgPD+8joOo1zZZGppRJhQZRHcBPr
XTkXY/GqtsTMy/+e5ZtWbvj7NpvJ5Px40Ll3Rjn6kGw1rAYfCbC5ZZBbzX/G4QYC
ApLzQIXJgKLsPkSo8z/rLwANSbHC8UViN8rTv6rjjvJRZLg9ShQsn3wY0C9KtBJA
aZKoE9ZaEN4rsRd8nm/DgJiudX+VfHn3yPgjdYQHG83c2k0l23yp9kJTgjA/MswU
rDb+hW6ukSejKUngC5TuX+V8yAu1w6LtGevOm4ozpUQhW2AtEKnlkdp3/hGTPeWV
RZF+HMKqSeWI/jorGHYadS4p+eBBjzi0GZD59EIPPfOlSRM/utJYO1AmFJ6kzE8Z
Nv9Qfmf33avZQUl8QdbTwuDt/0NmzRQZBpR0E1N8TzZ4Op6ZKq8231aGBGKic5B9
fHjxMl+/RUouPIaN9s2vfzGSWcHh7DUD28QC4ZQ8GD9YVKizat87+kdTmM8l26vr
qTXX6Xw4zgYq0bRyN7shpQMKtV5akdfE5/XLxSJKB4nC/0XrvVFghJNzZu8LrUmg
oGg3LJiF5tWEjVkOIKkHQifn8hlZ0khR7Jicw+pEVqwcTZw9GmM30yFtugXgaHn/
jNf7qXCn9NOkxVmFho7m1T3Y7EvG/bQCo0PVp620w20hn9V0VXtVFQ+d/9QMoQC2
xVnDNhqcy0O/
=n/IE
-END PGP SIGNATURE-

Kenichi Ishigaki (36):
  applied a doc patch by Salvatore Bonaccorso (fix #15)
  updated Changes
  added a brief description to ::Constants (fix #16, Salvatore++)
  two-arg fts3_tokenizer() is disabled by default for security concerns as 
of SQLite 3.11.0, unless DBD::SQLite is compiled with 
-DSQLITE_ENABLE_FTS3_TOKENIZER
  split dbdimp.c and move tokenizer/virtual table-related code into .inc 
files
  updated SQLite to 3.11.0
  register perl tokenizer only if DBD::SQLite is compiled with 
-DSQLITE_ENABLE_FTS3_TOKENIZER
  add 5.22 to .travis.yml
  see if SQLITE_ENABLE_FTS3_TOKENIZER environmental variable is set, for 
those who do need perl tokenizer
  updated Changes
  make sure to set internal unicode mode before registering default 
callbacks (REGEXP function etc)
  updated MANIFEST
  enabled (experimental) FTS5
  releng 1.51_01
  not to use Japanese multibyte characters directly
  try Encode for older perls
  compare perl_match and db_match
  releng 1.51_02
  skip no warnings test because it's known to fail under perl >= 5.22 and 
non-utf8 locale (RT-112220)
  respect also SQLITE_INC/SQLITE_LIB when necessary
  releng 1.51_03
  updated SQLite to 3.11.1
  releng 1.51_04
  updated SQLite to 3.12.0
  Merge pull request #17 from rurban/master
  updated SQLite to 3.12.2
  fixed RT-115465: column_info doesn't parse sizes with spaces (ilmari++)
  updated SQLite to 3.13.0
  releng 1.51_05
  upgraded SQLite to 3.14.0
  updated Changes
  updated SQLite to 3.15.0
  releng 1.51_06
  downgraded SQLite to 3.13.0 (RT-118395)
  releng 1.51_07
  releng 1.52

Reini Urban (1):
  add 2 missing function declarations

Salvatore Bonaccorso (9):
  New upstream version 1.52
  Merge tag 'upstream/1.52'
  Update debian/changelog
  Drop spelling-error-in-manpage.patch patch
  Declare compliance with Debian policy 3.9.8
  Update debian/changelog file
  Remove unused lintian-overrides
  debian/rules: Build enabling all hardening flags
  Prepare changelog for release

gregor herrmann (8):
  debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
  update changelog
  debian/upstream/metadata: change GitHub/CPAN URL(s) to HTTPS.
  update changelog
  Remove Jonathan Yu from Uploaders. Thanks for your work!
  update changelog
  Remove Ryan Niebur from Uploaders. Thanks for your work!
  update changelog

---

This annotated tag includes the following new commits:

   new  2079013   Remove unused lintian-overrides
   new  41886fa   debian/rules: Build enabling all hardening flags
   new  eb31f30   Prepare changelog for release

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


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

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


[libdbd-sqlite3-perl] 02/03: debian/rules: Build enabling all hardening flags

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 41886fad5606cb0bfcc4ae23052ec8e10be665b7
Author: Salvatore Bonaccorso 
Date:   Tue Nov 15 16:30:05 2016 +0100

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

diff --git a/debian/rules b/debian/rules
index 9338117..c21cef9 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,5 +1,7 @@
 #!/usr/bin/make -f
 
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+
 ARCHLIB := $(shell perl -MConfig -e 'print $$Config{vendorarch}')
 
 %:

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

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


[libdbd-sqlite3-perl] branch pristine-tar updated (1f6d4af -> c9ba3ad)

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

carnil pushed a change to branch pristine-tar
in repository libdbd-sqlite3-perl.

  from  1f6d4af   pristine-tar data for libdbd-sqlite3-perl_1.50.orig.tar.gz
   new  c9ba3ad   pristine-tar data for libdbd-sqlite3-perl_1.52.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:
 libdbd-sqlite3-perl_1.52.orig.tar.gz.delta | Bin 0 -> 6306 bytes
 libdbd-sqlite3-perl_1.52.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libdbd-sqlite3-perl_1.52.orig.tar.gz.delta
 create mode 100644 libdbd-sqlite3-perl_1.52.orig.tar.gz.id

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

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


[libdbd-sqlite3-perl] 01/03: Remove unused lintian-overrides

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 20790138acfdeaf881553aa7e055a754de87907e
Author: Salvatore Bonaccorso 
Date:   Tue Nov 15 16:29:06 2016 +0100

Remove unused lintian-overrides
---
 debian/source/lintian-overrides | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/debian/source/lintian-overrides b/debian/source/lintian-overrides
deleted file mode 100644
index 1369ba3..000
--- a/debian/source/lintian-overrides
+++ /dev/null
@@ -1,3 +0,0 @@
-# Files are in public-domain
-libdbd-sqlite3-perl source: missing-field-in-dep5-copyright copyright 
(paragraph at line 15)
-libdbd-sqlite3-perl source: missing-field-in-dep5-copyright copyright 
(paragraph at line 25)

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

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


[libdbd-sqlite3-perl] 03/03: Prepare changelog for release

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit eb31f30959b967e46d9a4b095c72ef3410b31a1b
Author: Salvatore Bonaccorso 
Date:   Tue Nov 15 16:31:01 2016 +0100

Prepare changelog for release

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

diff --git a/debian/changelog b/debian/changelog
index cf90249..4485f2f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libdbd-sqlite3-perl (1.52-1) UNRELEASED; urgency=medium
+libdbd-sqlite3-perl (1.52-1) unstable; urgency=medium
 
   [ gregor herrmann ]
   * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
@@ -10,8 +10,10 @@ libdbd-sqlite3-perl (1.52-1) UNRELEASED; urgency=medium
   * Import upstream version 1.52
   * Drop spelling-error-in-manpage.patch patch
   * Declare compliance with Debian policy 3.9.8
+  * Remove unused lintian-overrides
+  * debian/rules: Build enabling all hardening flags
 
- -- Salvatore Bonaccorso   Tue, 15 Nov 2016 15:28:23 +0100
+ -- Salvatore Bonaccorso   Tue, 15 Nov 2016 16:30:54 +0100
 
 libdbd-sqlite3-perl (1.50-1) unstable; urgency=medium
 

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

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


[libdbd-sqlite3-perl] 01/01: pristine-tar data for libdbd-sqlite3-perl_1.52.orig.tar.gz

2016-11-15 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 libdbd-sqlite3-perl.

commit c9ba3add656c398fa44d489a67e36dbe78d19a38
Author: Salvatore Bonaccorso 
Date:   Tue Nov 15 15:28:23 2016 +0100

pristine-tar data for libdbd-sqlite3-perl_1.52.orig.tar.gz
---
 libdbd-sqlite3-perl_1.52.orig.tar.gz.delta | Bin 0 -> 6306 bytes
 libdbd-sqlite3-perl_1.52.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libdbd-sqlite3-perl_1.52.orig.tar.gz.delta 
b/libdbd-sqlite3-perl_1.52.orig.tar.gz.delta
new file mode 100644
index 000..53bfd3a
Binary files /dev/null and b/libdbd-sqlite3-perl_1.52.orig.tar.gz.delta differ
diff --git a/libdbd-sqlite3-perl_1.52.orig.tar.gz.id 
b/libdbd-sqlite3-perl_1.52.orig.tar.gz.id
new file mode 100644
index 000..0b88581
--- /dev/null
+++ b/libdbd-sqlite3-perl_1.52.orig.tar.gz.id
@@ -0,0 +1 @@
+ba406664b791f6ab834b9fa65f5573d7e21f9b15

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

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


[libdbd-sqlite3-perl] 27/43: updated SQLite to 3.12.2

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 67c59272148bf76917591ab1ce6350bb7162c8e4
Author: Kenichi Ishigaki 
Date:   Tue Apr 19 12:18:33 2016 +0900

updated SQLite to 3.12.2
---
 lib/DBD/SQLite.pm |   2 +-
 sqlite3.c | 189 ++
 sqlite3.h |   6 +-
 3 files changed, 123 insertions(+), 74 deletions(-)

diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm
index b39b281..a28a57c 100644
--- a/lib/DBD/SQLite.pm
+++ b/lib/DBD/SQLite.pm
@@ -977,7 +977,7 @@ are limited by the typeless nature of the SQLite database.
 =head1 SQLITE VERSION
 
 DBD::SQLite is usually compiled with a bundled SQLite library
-(SQLite version S<3.12.0> as of this release) for consistency.
+(SQLite version S<3.12.2> as of this release) for consistency.
 However, a different version of SQLite may sometimes be used for
 some reasons like security, or some new experimental features.
 
diff --git a/sqlite3.c b/sqlite3.c
index 1954637..7b82c55 100644
--- a/sqlite3.c
+++ b/sqlite3.c
@@ -1,6 +1,6 @@
 /**
 ** This file is an amalgamation of many separate C source files from SQLite
-** version 3.12.0.  By combining all the individual C code files into this 
+** version 3.12.2.  By combining all the individual C code files into this 
 ** single large file, the entire code can be compiled as a single translation
 ** unit.  This allows many compilers to do optimizations that would not be
 ** possible if the files were compiled separately.  Performance improvements
@@ -336,9 +336,9 @@ extern "C" {
 ** [sqlite3_libversion_number()], [sqlite3_sourceid()],
 ** [sqlite_version()] and [sqlite_source_id()].
 */
-#define SQLITE_VERSION"3.12.0"
-#define SQLITE_VERSION_NUMBER 3012000
-#define SQLITE_SOURCE_ID  "2016-03-29 10:14:15 
e9bb4cf40f4971974a74468ef922bdee481c988b"
+#define SQLITE_VERSION"3.12.2"
+#define SQLITE_VERSION_NUMBER 3012002
+#define SQLITE_SOURCE_ID  "2016-04-18 17:30:31 
92dc59fd5ad66f64042eb04195e3a61a9e8e"
 
 /*
 ** CAPI3REF: Run-Time Library Version Numbers
@@ -14393,6 +14393,7 @@ SQLITE_PRIVATE void 
sqlite3CollapseDatabaseArray(sqlite3*);
 SQLITE_PRIVATE void sqlite3CommitInternalChanges(sqlite3*);
 SQLITE_PRIVATE void sqlite3DeleteColumnNames(sqlite3*,Table*);
 SQLITE_PRIVATE int sqlite3ColumnsFromExprList(Parse*,ExprList*,i16*,Column**);
+SQLITE_PRIVATE void 
sqlite3SelectAddColumnTypeAndCollation(Parse*,Table*,Select*);
 SQLITE_PRIVATE Table *sqlite3ResultSetOfSelect(Parse*,Select*);
 SQLITE_PRIVATE void sqlite3OpenMasterTable(Parse *, int);
 SQLITE_PRIVATE Index *sqlite3PrimaryKeyIndex(Table*);
@@ -63940,6 +63941,28 @@ SQLITE_PRIVATE int sqlite3BtreeDelete(BtCursor *pCur, 
u8 flags){
   pPage = pCur->apPage[iCellDepth];
   pCell = findCell(pPage, iCellIdx);
 
+  /* If the bPreserve flag is set to true, then the cursor position must
+  ** be preserved following this delete operation. If the current delete
+  ** will cause a b-tree rebalance, then this is done by saving the cursor
+  ** key and leaving the cursor in CURSOR_REQUIRESEEK state before 
+  ** returning. 
+  **
+  ** Or, if the current delete will not cause a rebalance, then the cursor
+  ** will be left in CURSOR_SKIPNEXT state pointing to the entry immediately
+  ** before or after the deleted entry. In this case set bSkipnext to true.  */
+  if( bPreserve ){
+if( !pPage->leaf 
+ || (pPage->nFree+cellSizePtr(pPage,pCell)+2)>(int)(pBt->usableSize*2/3)
+){
+  /* A b-tree rebalance will be required after deleting this entry.
+  ** Save the cursor key.  */
+  rc = saveCursorKey(pCur);
+  if( rc ) return rc;
+}else{
+  bSkipnext = 1;
+}
+  }
+
   /* If the page containing the entry to delete is not a leaf page, move
   ** the cursor to the largest entry in the tree that is smaller than
   ** the entry being deleted. This cell will replace the cell being deleted
@@ -63966,28 +63989,6 @@ SQLITE_PRIVATE int sqlite3BtreeDelete(BtCursor *pCur, 
u8 flags){
 invalidateIncrblobCursors(p, pCur->info.nKey, 0);
   }
 
-  /* If the bPreserve flag is set to true, then the cursor position must
-  ** be preserved following this delete operation. If the current delete
-  ** will cause a b-tree rebalance, then this is done by saving the cursor
-  ** key and leaving the cursor in CURSOR_REQUIRESEEK state before 
-  ** returning. 
-  **
-  ** Or, if the current delete will not cause a rebalance, then the cursor
-  ** will be left in CURSOR_SKIPNEXT state pointing to the entry immediately
-  ** before or after the deleted entry. In this case set bSkipnext to true.  */
-  if( bPreserve ){
-if( !pPage->leaf 
- || (pPage->nFree+cellSizePtr(pPage,pCell)+2)>(int)(pBt->usableSize*2/3)
-){
-  /* A b-tree rebalance will be required after deleting this 

[libdbd-sqlite3-perl] 22/43: updated SQLite to 3.11.1

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 6939112accd13b458495938ff4905caf5c2e1ed7
Author: Kenichi Ishigaki 
Date:   Mon Mar 7 13:27:42 2016 +0900

updated SQLite to 3.11.1
---
 lib/DBD/SQLite.pm |  2 +-
 sqlite3.c | 31 +--
 sqlite3.h |  6 +++---
 3 files changed, 29 insertions(+), 10 deletions(-)

diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm
index 3931c74..5708eaf 100644
--- a/lib/DBD/SQLite.pm
+++ b/lib/DBD/SQLite.pm
@@ -977,7 +977,7 @@ are limited by the typeless nature of the SQLite database.
 =head1 SQLITE VERSION
 
 DBD::SQLite is usually compiled with a bundled SQLite library
-(SQLite version S<3.11.0> as of this release) for consistency.
+(SQLite version S<3.11.1> as of this release) for consistency.
 However, a different version of SQLite may sometimes be used for
 some reasons like security, or some new experimental features.
 
diff --git a/sqlite3.c b/sqlite3.c
index 93537eb..123c65e 100644
--- a/sqlite3.c
+++ b/sqlite3.c
@@ -1,6 +1,6 @@
 /**
 ** This file is an amalgamation of many separate C source files from SQLite
-** version 3.11.0.  By combining all the individual C code files into this 
+** version 3.11.1.  By combining all the individual C code files into this 
 ** single large file, the entire code can be compiled as a single translation
 ** unit.  This allows many compilers to do optimizations that would not be
 ** possible if the files were compiled separately.  Performance improvements
@@ -328,9 +328,9 @@ extern "C" {
 ** [sqlite3_libversion_number()], [sqlite3_sourceid()],
 ** [sqlite_version()] and [sqlite_source_id()].
 */
-#define SQLITE_VERSION"3.11.0"
-#define SQLITE_VERSION_NUMBER 3011000
-#define SQLITE_SOURCE_ID  "2016-02-15 17:29:24 
3d862f207e3adc00f78066799ac5a8c282430a5f"
+#define SQLITE_VERSION"3.11.1"
+#define SQLITE_VERSION_NUMBER 3011001
+#define SQLITE_SOURCE_ID  "2016-03-03 16:17:53 
f047920ce16971e573bc6ec9a48b118c9de2b3a7"
 
 /*
 ** CAPI3REF: Run-Time Library Version Numbers
@@ -176167,6 +176167,7 @@ static Fts5Data *fts5DataRead(Fts5Index *p, i64 
iRowid){
   return pRet;
 }
 
+
 /*
 ** Release a reference to data record returned by an earlier call to
 ** fts5DataRead().
@@ -177623,6 +177624,10 @@ static void fts5LeafSeek(
   iPgidx = szLeaf;
   iPgidx += fts5GetVarint32([iPgidx], iTermOff);
   iOff = iTermOff;
+  if( iOff>n ){
+p->rc = FTS5_CORRUPT;
+return;
+  }
 
   while( 1 ){
 
@@ -179968,7 +179973,10 @@ static int sqlite3Fts5IndexOptimize(Fts5Index *p){
 if( pLvl->aSeg ){
   int iLvl, iSeg;
   int iSegOut = 0;
-  for(iLvl=0; iLvlnLevel; iLvl++){
+  /* Iterate through all segments, from oldest to newest. Add them to
+  ** the new Fts5Level object so that pLvl->aSeg[0] is the oldest
+  ** segment in the data structure.  */
+  for(iLvl=pStruct->nLevel-1; iLvl>=0; iLvl--){
 for(iSeg=0; iSegaLevel[iLvl].nSeg; iSeg++){
   pLvl->aSeg[iSegOut] = pStruct->aLevel[iLvl].aSeg[iSeg];
   iSegOut++;
@@ -184355,7 +184363,7 @@ static void fts5SourceIdFunc(
 ){
   assert( nArg==0 );
   UNUSED_PARAM2(nArg, apUnused);
-  sqlite3_result_text(pCtx, "fts5: 2016-02-15 17:29:24 
3d862f207e3adc00f78066799ac5a8c282430a5f", -1, SQLITE_TRANSIENT);
+  sqlite3_result_text(pCtx, "fts5: 2016-03-03 16:17:53 
f047920ce16971e573bc6ec9a48b118c9de2b3a7", -1, SQLITE_TRANSIENT);
 }
 
 static int fts5Init(sqlite3 *db){
@@ -184416,6 +184424,17 @@ static int fts5Init(sqlite3 *db){
   );
 }
   }
+
+  /* If SQLITE_FTS5_ENABLE_TEST_MI is defined, assume that the file
+  ** fts5_test_mi.c is compiled and linked into the executable. And call
+  ** its entry point to enable the matchinfo() demo.  */
+#ifdef SQLITE_FTS5_ENABLE_TEST_MI
+  if( rc==SQLITE_OK ){
+extern int sqlite3Fts5TestRegisterMatchinfo(sqlite3*);
+rc = sqlite3Fts5TestRegisterMatchinfo(db);
+  }
+#endif
+
   return rc;
 }
 
diff --git a/sqlite3.h b/sqlite3.h
index 4372029..37d1024 100644
--- a/sqlite3.h
+++ b/sqlite3.h
@@ -111,9 +111,9 @@ extern "C" {
 ** [sqlite3_libversion_number()], [sqlite3_sourceid()],
 ** [sqlite_version()] and [sqlite_source_id()].
 */
-#define SQLITE_VERSION"3.11.0"
-#define SQLITE_VERSION_NUMBER 3011000
-#define SQLITE_SOURCE_ID  "2016-02-15 17:29:24 
3d862f207e3adc00f78066799ac5a8c282430a5f"
+#define SQLITE_VERSION"3.11.1"
+#define SQLITE_VERSION_NUMBER 3011001
+#define SQLITE_SOURCE_ID  "2016-03-03 16:17:53 
f047920ce16971e573bc6ec9a48b118c9de2b3a7"
 
 /*
 ** CAPI3REF: Run-Time Library Version Numbers

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

___
Pkg-perl-cvs-commits mailing list

[libdbd-sqlite3-perl] 14/43: releng 1.51_01

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 000a35104645abe494355191d3bc4d225f6b3653
Author: Kenichi Ishigaki 
Date:   Sat Feb 20 10:02:10 2016 +0900

releng 1.51_01
---
 Changes| 7 +--
 lib/DBD/SQLite.pm  | 2 +-
 lib/DBD/SQLite/VirtualTable.pm | 2 +-
 t/lib/Test.pm  | 2 +-
 4 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/Changes b/Changes
index a8c636b..3068e71 100644
--- a/Changes
+++ b/Changes
@@ -1,14 +1,17 @@
 Changes for Perl extension DBD-SQLite
 
-1.51_01 to be released
+1.51_01 2016-02-20
 *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS ***
 - Updated to SQLite 3.11.0.
   As upstream disabled two-arg fts3_tokenizer() for security concern,
   DBD::SQLite also stopped enabling it by default. If you do need
   perl tokenizer, compile/install with SQLITE_ENABLE_FTS3_TOKENIZER
-  environmental vairable.
+  environmental variable.
 
 - Applied a doc patch by Salvatore Bonaccorso
+- Enabled (experimental) FTS5
+- Fixed REGEXP function to work under sqlite_unicode correctly
+  (András Farkas++)
 
 1.50 2016-02-11
 - Switched to a production version.
diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm
index d3a4d5d..26ea8bd 100644
--- a/lib/DBD/SQLite.pm
+++ b/lib/DBD/SQLite.pm
@@ -5,7 +5,7 @@ use strict;
 use DBI   1.57 ();
 use DynaLoader ();
 
-our $VERSION = '1.50';
+our $VERSION = '1.51_01';
 our @ISA = 'DynaLoader';
 
 # sqlite_version cache (set in the XS bootstrap)
diff --git a/lib/DBD/SQLite/VirtualTable.pm b/lib/DBD/SQLite/VirtualTable.pm
index 1069b81..97eb503 100644
--- a/lib/DBD/SQLite/VirtualTable.pm
+++ b/lib/DBD/SQLite/VirtualTable.pm
@@ -5,7 +5,7 @@ use strict;
 use warnings;
 use Scalar::Utilqw/weaken/;
 
-our $VERSION = '1.50';
+our $VERSION = '1.51_01';
 our @ISA;
 
 
diff --git a/t/lib/Test.pm b/t/lib/Test.pm
index 3aab453..7a32e3f 100644
--- a/t/lib/Test.pm
+++ b/t/lib/Test.pm
@@ -7,7 +7,7 @@ use Exporter   ();
 use File::Spec ();
 use Test::More ();
 
-our $VERSION = '1.50';
+our $VERSION = '1.51_01';
 our @ISA = 'Exporter';
 our @EXPORT  = qw/connect_ok dies dbfile @CALL_FUNCS $sqlite_call has_sqlite 
requires_sqlite/;
 our @CALL_FUNCS;

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

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

[libdbd-sqlite3-perl] 17/43: compare perl_match and db_match

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit c716e6b56a6409e0ac77d8f999615760485c54f0
Author: Kenichi Ishigaki 
Date:   Sat Feb 20 10:43:33 2016 +0900

compare perl_match and db_match
---
 t/62_regexp_multibyte_char_class.t | 18 ++
 1 file changed, 6 insertions(+), 12 deletions(-)

diff --git a/t/62_regexp_multibyte_char_class.t 
b/t/62_regexp_multibyte_char_class.t
index 8c4b685..103d88e 100644
--- a/t/62_regexp_multibyte_char_class.t
+++ b/t/62_regexp_multibyte_char_class.t
@@ -12,9 +12,6 @@ BEGIN {
if ($] < 5.008005) {
plan skip_all => 'Unicode is not supported before 5.8.5';
}
-if (!eval "require Encode; 1") {
-   plan skip_all => 'requires Encode for this test';
-}
 }
 use Test::NoWarnings;
 
@@ -37,9 +34,10 @@ foreach my $call_func (@CALL_FUNCS) {
 my @vals = @words;
 my $re = $regex;
 if ($use_unicode) {
-  @vals = map {Encode::decode_utf8($_)} @vals;
-  $re = Encode::decode_utf8($re);
+  utf8::decode($_) foreach @vals;
+  utf8::decode($re);
 }
+my @perl_match = grep {$_ =~ /$re/} @vals;
 
 $dbh->do( 'CREATE TEMP TABLE regexp_test ( txt )' );
 $dbh->do( "INSERT INTO regexp_test VALUES ( '$_' )" ) foreach @vals;
@@ -47,13 +45,9 @@ foreach my $call_func (@CALL_FUNCS) {
 my $sql = "SELECT txt from regexp_test WHERE txt REGEXP '$re' ";
 my $db_match = $dbh->selectcol_arrayref($sql);
 
-if ($use_unicode) {
-  is @$db_match => 2;
-  note explain $db_match;
-} else {
-  is @$db_match => 0;
-  note explain $db_match;
-}
+is_deeply \@perl_match => $db_match;
+note explain \@perl_match;
+note explain $db_match;
   }
 }
 

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

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


[libdbd-sqlite3-perl] 10/43: updated Changes

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 20f57e8eb0d938c709895147047f48f01d04c3b1
Author: Kenichi Ishigaki 
Date:   Tue Feb 16 13:13:29 2016 +0900

updated Changes
---
 Changes | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/Changes b/Changes
index 1bafdcc..a8c636b 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,13 @@
 Changes for Perl extension DBD-SQLite
 
 1.51_01 to be released
+*** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS ***
+- Updated to SQLite 3.11.0.
+  As upstream disabled two-arg fts3_tokenizer() for security concern,
+  DBD::SQLite also stopped enabling it by default. If you do need
+  perl tokenizer, compile/install with SQLITE_ENABLE_FTS3_TOKENIZER
+  environmental vairable.
+
 - Applied a doc patch by Salvatore Bonaccorso
 
 1.50 2016-02-11

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

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


[libdbd-sqlite3-perl] 09/43: see if SQLITE_ENABLE_FTS3_TOKENIZER environmental variable is set, for those who do need perl tokenizer

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 58ba45f1797370e220eb627e6b7aec1d567db257
Author: Kenichi Ishigaki 
Date:   Tue Feb 16 13:06:51 2016 +0900

see if SQLITE_ENABLE_FTS3_TOKENIZER environmental variable is set, for 
those who do need perl tokenizer
---
 Makefile.PL | 5 +
 1 file changed, 5 insertions(+)

diff --git a/Makefile.PL b/Makefile.PL
index db5ddb5..dde27d9 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -230,6 +230,11 @@ my @CC_DEFINE = (
'-DNDEBUG=1',
 );
 
+# for upstream security concern, this should be set only if requested
+if ($ENV{SQLITE_ENABLE_FTS3_TOKENIZER}) {
+   push @CC_DEFINE, '-DSQLITE_ENABLE_FTS3_TOKENIZER'; # for sqlite >= 
3.11.0
+}
+
 if (DEVELOPER_ONLY) {
# for sqlite >= 3.8.8
push @CC_DEFINE, '-DSQLITE_ENABLE_API_ARMOR';

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

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


[libdbd-sqlite3-perl] 13/43: enabled (experimental) FTS5

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit b4cfca77724b724ce7157021bc1b5f6a9cc3871a
Author: Kenichi Ishigaki 
Date:   Sat Feb 20 09:54:56 2016 +0900

enabled (experimental) FTS5
---
 Makefile.PL | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Makefile.PL b/Makefile.PL
index dde27d9..67cfc3b 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -227,6 +227,7 @@ my @CC_DEFINE = (
'-DSQLITE_ENABLE_STAT3',# for sqlite >= 3.7.9
'-DSQLITE_ENABLE_STAT4',# for sqlite >= 3.8.3.1
'-DSQLITE_ENABLE_JSON1',# for sqlite >= 3.9.0
+   '-DSQLITE_ENABLE_FTS5', # for sqlite >= 3.9.0
'-DNDEBUG=1',
 );
 

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

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


[libdbd-sqlite3-perl] 07/43: register perl tokenizer only if DBD::SQLite is compiled with -DSQLITE_ENABLE_FTS3_TOKENIZER

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit d1fd6128e315fc5dd29dca32ed9eff0e166bddf0
Author: Kenichi Ishigaki 
Date:   Tue Feb 16 12:55:38 2016 +0900

register perl tokenizer only if DBD::SQLite is compiled with 
-DSQLITE_ENABLE_FTS3_TOKENIZER
---
 SQLite.xs | 4 
 dbdimp.c  | 7 ++-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/SQLite.xs b/SQLite.xs
index 5b51aef..f20e511 100644
--- a/SQLite.xs
+++ b/SQLite.xs
@@ -288,7 +288,11 @@ register_fts3_perl_tokenizer(dbh)
 ALIAS:
 DBD::SQLite::db::sqlite_register_fts3_perl_tokenizer = 1
 CODE:
+#if SQLITE_ENABLE_FTS3_TOKENIZER
 RETVAL = sqlite_db_register_fts3_perl_tokenizer(aTHX_ dbh);
+#else
+RETVAL = 0;
+#endif
 OUTPUT:
 RETVAL
 
diff --git a/dbdimp.c b/dbdimp.c
index d01f728..00e959b 100644
--- a/dbdimp.c
+++ b/dbdimp.c
@@ -2623,7 +2623,12 @@ sqlite_db_backup_to_file(pTHX_ SV *dbh, char *filename)
 #endif
 }
 
-#include "dbdimp_tokenizer.inc"
+#if SQLITE_VERSION_NUMBER < 3011000
+#include "dbdimp_tokenizer.inc"
+#elif SQLITE_ENABLE_FTS3_TOKENIZER
+#include "dbdimp_tokenizer.inc"
+#endif
+
 #include "dbdimp_virtual_table.inc"
 
 /* end */

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

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


[libdbd-sqlite3-perl] 05/43: split dbdimp.c and move tokenizer/virtual table-related code into .inc files

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit e9ae705fb67f51a5550ede09cf443d596b869ae1
Author: Kenichi Ishigaki 
Date:   Tue Feb 16 12:23:09 2016 +0900

split dbdimp.c and move tokenizer/virtual table-related code into .inc files
---
 MANIFEST |2 +
 dbdimp.c | 1131 +-
 dbdimp_tokenizer.inc |  289 
 dbdimp_virtual_table.inc |  835 ++
 4 files changed, 1128 insertions(+), 1129 deletions(-)

diff --git a/MANIFEST b/MANIFEST
index 145f8c9..8845088 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -3,6 +3,8 @@ Changes
 constants.inc
 dbdimp.c
 dbdimp.h
+dbdimp_tokenizer.inc
+dbdimp_virtual_table.inc
 fts3_tokenizer.h
 inc/Test/NoWarnings.pm
 inc/Test/NoWarnings/Warning.pm
diff --git a/dbdimp.c b/dbdimp.c
index 6a6924b..d01f728 100644
--- a/dbdimp.c
+++ b/dbdimp.c
@@ -2623,1134 +2623,7 @@ sqlite_db_backup_to_file(pTHX_ SV *dbh, char *filename)
 #endif
 }
 
-typedef struct perl_tokenizer {
-sqlite3_tokenizer base;
-SV *coderef; /* the perl tokenizer is a coderef that takes
-a string and returns a cursor coderef */
-} perl_tokenizer;
-
-typedef struct perl_tokenizer_cursor {
-sqlite3_tokenizer_cursor base;
-SV *coderef; /* ref to the closure that returns terms */
-char *pToken;/* storage for a copy of the last token */
-int nTokenAllocated; /* space allocated to pToken buffer */
-
-/* members below are only used if the input string is in utf8 */
-const char *pInput;  /* input we are tokenizing */
-const char *lastByteOffset;  /* offset into pInput */
-int lastCharOffset;  /* char offset corresponding to 
lastByteOffset */
-} perl_tokenizer_cursor;
-
-/*
-** Create a new tokenizer instance.
-** Will be called whenever a FTS3 table is created with
-**   CREATE .. USING fts3( ... , tokenize=perl qualified::function::name)
-** where qualified::function::name is a fully qualified perl function
-*/
-static int perl_tokenizer_Create(
-int argc, const char * const *argv,
-sqlite3_tokenizer **ppTokenizer
-){
-dTHX;
-dSP;
-int n_retval;
-SV *retval;
-perl_tokenizer *t;
-
-if (!argc) {
-return SQLITE_ERROR;
-}
-
-t = (perl_tokenizer *) sqlite3_malloc(sizeof(*t));
-if( t==NULL ) return SQLITE_NOMEM;
-memset(t, 0, sizeof(*t));
-
-ENTER;
-SAVETMPS;
-
-/* call the qualified::function::name */
-PUSHMARK(SP);
-PUTBACK;
-n_retval = call_pv(argv[0], G_SCALAR);
-SPAGAIN;
-
-/* store a copy of the returned coderef into the tokenizer structure */
-if (n_retval != 1) {
-warn("tokenizer_Create returned %d arguments", n_retval);
-}
-retval = POPs;
-t->coderef   = newSVsv(retval);
-*ppTokenizer = >base;
-
-PUTBACK;
-FREETMPS;
-LEAVE;
-
-return SQLITE_OK;
-}
-
-/*
-** Destroy a tokenizer
-*/
-static int perl_tokenizer_Destroy(sqlite3_tokenizer *pTokenizer){
-dTHX;
-perl_tokenizer *t = (perl_tokenizer *) pTokenizer;
-sv_free(t->coderef);
-sqlite3_free(t);
-return SQLITE_OK;
-}
-
-/*
-** Prepare to begin tokenizing a particular string.  The input
-** string to be tokenized is supposed to be pInput[0..nBytes-1] ..
-** except that nBytes passed by fts3 is -1 (don't know why) !
-** This is passed to the tokenizer instance, which then returns a
-** closure implementing the cursor (so the cursor is again a coderef).
-*/
-static int perl_tokenizer_Open(
-sqlite3_tokenizer *pTokenizer,   /* Tokenizer object */
-const char *pInput, int nBytes,  /* Input buffer */
-sqlite3_tokenizer_cursor **ppCursor  /* OUT: Created tokenizer cursor */
-){
-dTHX;
-dSP;
-dMY_CXT;
-U32 flags;
-SV *perl_string;
-int n_retval;
-
-perl_tokenizer *t = (perl_tokenizer *)pTokenizer;
-
-/* allocate and initialize the cursor struct */
-perl_tokenizer_cursor *c;
-c = (perl_tokenizer_cursor *) sqlite3_malloc(sizeof(*c));
-memset(c, 0, sizeof(*c));
-*ppCursor = >base;
-
-/* flags for creating the Perl SV containing the input string */
-flags = SVs_TEMP; /* will call sv_2mortal */
-
-/* special handling if working with utf8 strings */
-if (MY_CXT.last_dbh_is_unicode) {
-
-/* data to keep track of byte offsets */
-c->lastByteOffset = c->pInput = pInput;
-c->lastCharOffset = 0;
-
-/* string passed to Perl needs to be flagged as utf8 */
-flags |= SVf_UTF8;
-}
-
-ENTER;
-SAVETMPS;
-
-/* build a Perl copy of the input string */
-if (nBytes < 0) { /* we get -1 from fts3. Don't know why ! */
-nBytes = strlen(pInput);
-}
-perl_string = newSVpvn_flags(pInput, nBytes, flags);
-
-/* call the 

[libdbd-sqlite3-perl] 21/43: releng 1.51_03

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 2db5167b4393e8d8fa44f03af28f98366609482a
Author: Kenichi Ishigaki 
Date:   Sat Feb 20 20:05:59 2016 +0900

releng 1.51_03
---
 Changes| 5 +
 lib/DBD/SQLite.pm  | 2 +-
 lib/DBD/SQLite/VirtualTable.pm | 2 +-
 t/lib/Test.pm  | 2 +-
 4 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/Changes b/Changes
index b2d454a..d67f610 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Changes for Perl extension DBD-SQLite
 
+1.51_03 2016-02-20
+- No code change
+- Resolved #112220: t/62_regexp_multibyte_char_class.t fails
+  for perl >= 5.22.0 and non-utf8 locale (SREZIC++)
+
 1.51_02 2016-02-20
 - No code change; fixed a newly added test that only passed
   under recent perls (>= 5.18)
diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm
index 21daa82..3931c74 100644
--- a/lib/DBD/SQLite.pm
+++ b/lib/DBD/SQLite.pm
@@ -5,7 +5,7 @@ use strict;
 use DBI   1.57 ();
 use DynaLoader ();
 
-our $VERSION = '1.51_02';
+our $VERSION = '1.51_03';
 our @ISA = 'DynaLoader';
 
 # sqlite_version cache (set in the XS bootstrap)
diff --git a/lib/DBD/SQLite/VirtualTable.pm b/lib/DBD/SQLite/VirtualTable.pm
index a1fd8b5..45fc202 100644
--- a/lib/DBD/SQLite/VirtualTable.pm
+++ b/lib/DBD/SQLite/VirtualTable.pm
@@ -5,7 +5,7 @@ use strict;
 use warnings;
 use Scalar::Utilqw/weaken/;
 
-our $VERSION = '1.51_02';
+our $VERSION = '1.51_03';
 our @ISA;
 
 
diff --git a/t/lib/Test.pm b/t/lib/Test.pm
index 65edd89..4507ba8 100644
--- a/t/lib/Test.pm
+++ b/t/lib/Test.pm
@@ -7,7 +7,7 @@ use Exporter   ();
 use File::Spec ();
 use Test::More ();
 
-our $VERSION = '1.51_02';
+our $VERSION = '1.51_03';
 our @ISA = 'Exporter';
 our @EXPORT  = qw/connect_ok dies dbfile @CALL_FUNCS $sqlite_call has_sqlite 
requires_sqlite/;
 our @CALL_FUNCS;

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

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


[libdbd-sqlite3-perl] 01/43: applied a doc patch by Salvatore Bonaccorso (fix #15)

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit d17fe985b1de627746fe7d09c8ced7598c5f9899
Author: Kenichi Ishigaki 
Date:   Mon Feb 15 01:26:58 2016 +0900

applied a doc patch by Salvatore Bonaccorso (fix #15)
---
 lib/DBD/SQLite/VirtualTable.pm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/DBD/SQLite/VirtualTable.pm b/lib/DBD/SQLite/VirtualTable.pm
index 5bb2584..1069b81 100644
--- a/lib/DBD/SQLite/VirtualTable.pm
+++ b/lib/DBD/SQLite/VirtualTable.pm
@@ -612,7 +612,7 @@ An integer giving the estimated number of rows returned by 
that query.
 
 =head3 OPEN
 
-Called to instanciate a new cursor.
+Called to instantiate a new cursor.
 The default implementation appends C<"::Cursor"> to the current
 classname and calls C within that cursor class.
 
@@ -736,7 +736,7 @@ the current virtual table.
 
   my $cursor = $cursor_class->NEW($vtable, @args)
 
-Instanciates a new cursor. 
+Instantiates a new cursor. 
 The default implementation just returns a blessed hashref
 with keys C and C.
 

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

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


[libdbd-sqlite3-perl] 03/43: added a brief description to ::Constants (fix #16, Salvatore++)

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 0c5895c77f95a9ab70592d09cd4ec2d3fb05ece6
Author: Kenichi Ishigaki 
Date:   Mon Feb 15 21:58:23 2016 +0900

added a brief description to ::Constants (fix #16, Salvatore++)
---
 lib/DBD/SQLite/Constants.pm | 2 +-
 util/constants.pl   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/DBD/SQLite/Constants.pm b/lib/DBD/SQLite/Constants.pm
index d657947..faa7b55 100644
--- a/lib/DBD/SQLite/Constants.pm
+++ b/lib/DBD/SQLite/Constants.pm
@@ -494,7 +494,7 @@ __END__
 
 =head1 NAME
 
-DBD::SQLite::Constants
+DBD::SQLite::Constants - common SQLite constants
 
 =head1 SYNOPSIS
 
diff --git a/util/constants.pl b/util/constants.pl
index 79bd93f..4ed7165 100644
--- a/util/constants.pl
+++ b/util/constants.pl
@@ -201,7 +201,7 @@ END
 
 \=head1 NAME
 
-DBD::SQLite::Constants
+DBD::SQLite::Constants - common SQLite constants
 
 \=head1 SYNOPSIS
 

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

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


[libdbd-sqlite3-perl] 18/43: releng 1.51_02

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 90dc44a63b47556503525663c4c0dd36dc4a314b
Author: Kenichi Ishigaki 
Date:   Sat Feb 20 10:49:35 2016 +0900

releng 1.51_02
---
 Changes| 4 
 lib/DBD/SQLite.pm  | 2 +-
 lib/DBD/SQLite/VirtualTable.pm | 2 +-
 t/lib/Test.pm  | 2 +-
 4 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/Changes b/Changes
index 3068e71..b2d454a 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Changes for Perl extension DBD-SQLite
 
+1.51_02 2016-02-20
+- No code change; fixed a newly added test that only passed
+  under recent perls (>= 5.18)
+
 1.51_01 2016-02-20
 *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS ***
 - Updated to SQLite 3.11.0.
diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm
index 26ea8bd..21daa82 100644
--- a/lib/DBD/SQLite.pm
+++ b/lib/DBD/SQLite.pm
@@ -5,7 +5,7 @@ use strict;
 use DBI   1.57 ();
 use DynaLoader ();
 
-our $VERSION = '1.51_01';
+our $VERSION = '1.51_02';
 our @ISA = 'DynaLoader';
 
 # sqlite_version cache (set in the XS bootstrap)
diff --git a/lib/DBD/SQLite/VirtualTable.pm b/lib/DBD/SQLite/VirtualTable.pm
index 97eb503..a1fd8b5 100644
--- a/lib/DBD/SQLite/VirtualTable.pm
+++ b/lib/DBD/SQLite/VirtualTable.pm
@@ -5,7 +5,7 @@ use strict;
 use warnings;
 use Scalar::Utilqw/weaken/;
 
-our $VERSION = '1.51_01';
+our $VERSION = '1.51_02';
 our @ISA;
 
 
diff --git a/t/lib/Test.pm b/t/lib/Test.pm
index 7a32e3f..65edd89 100644
--- a/t/lib/Test.pm
+++ b/t/lib/Test.pm
@@ -7,7 +7,7 @@ use Exporter   ();
 use File::Spec ();
 use Test::More ();
 
-our $VERSION = '1.51_01';
+our $VERSION = '1.51_02';
 our @ISA = 'Exporter';
 our @EXPORT  = qw/connect_ok dies dbfile @CALL_FUNCS $sqlite_call has_sqlite 
requires_sqlite/;
 our @CALL_FUNCS;

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

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


[libdbd-sqlite3-perl] 20/43: respect also SQLITE_INC/SQLITE_LIB when necessary

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 42007c9118e5c42a3a6e1dd497a20bf3170a7b7c
Author: Kenichi Ishigaki 
Date:   Sat Feb 20 20:04:00 2016 +0900

respect also SQLITE_INC/SQLITE_LIB when necessary
---
 Makefile.PL | 10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/Makefile.PL b/Makefile.PL
index 67cfc3b..9cb81f6 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -146,6 +146,14 @@ if ( 0 ) {
undef $sqlite_inc;
}
}
+   if ( my $my_inc = (grep /SQLITE_INC=.*/, @ARGV)[0] ) {
+   $my_inc =~ /=(.*)/;
+   $sqlite_inc = $1;
+   }
+   if ( my $my_lib = (grep /SQLITE_LIB=.*/, @ARGV)[0] ) {
+   $my_lib =~ /=(.*)/;
+   $sqlite_lib = $1;
+   }
 
# Now check for a compatible sqlite3
unless ( $sqlite_local ) {
@@ -194,7 +202,7 @@ if ( 0 ) {
print "We're using the bundled sqlite library.\n" if 
$ENV{AUTOMATED_TESTING};
 }
 
-@ARGV = grep( ! /SQLITE_LOCATION|USE_LOCAL_SQLITE/, @ARGV );
+@ARGV = grep( ! /SQLITE_LOCATION|USE_LOCAL_SQLITE|SQLITE_LIB|SQLITE_INC/, 
@ARGV );
 
 
 

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

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


[libdbd-sqlite3-perl] 23/43: releng 1.51_04

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 996562ec28b5786b34d78676db55d97aff10f9cd
Author: Kenichi Ishigaki 
Date:   Mon Mar 7 13:31:27 2016 +0900

releng 1.51_04
---
 Changes| 4 
 lib/DBD/SQLite.pm  | 2 +-
 lib/DBD/SQLite/VirtualTable.pm | 2 +-
 t/lib/Test.pm  | 2 +-
 4 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/Changes b/Changes
index d67f610..60bb43a 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Changes for Perl extension DBD-SQLite
 
+1.51_04 2016-03-07
+- Updated SQLite to 3.11.1, which fixed an FTS5 index
+  corruption issue
+
 1.51_03 2016-02-20
 - No code change
 - Resolved #112220: t/62_regexp_multibyte_char_class.t fails
diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm
index 5708eaf..66f03e8 100644
--- a/lib/DBD/SQLite.pm
+++ b/lib/DBD/SQLite.pm
@@ -5,7 +5,7 @@ use strict;
 use DBI   1.57 ();
 use DynaLoader ();
 
-our $VERSION = '1.51_03';
+our $VERSION = '1.51_04';
 our @ISA = 'DynaLoader';
 
 # sqlite_version cache (set in the XS bootstrap)
diff --git a/lib/DBD/SQLite/VirtualTable.pm b/lib/DBD/SQLite/VirtualTable.pm
index 45fc202..7d4f46e 100644
--- a/lib/DBD/SQLite/VirtualTable.pm
+++ b/lib/DBD/SQLite/VirtualTable.pm
@@ -5,7 +5,7 @@ use strict;
 use warnings;
 use Scalar::Utilqw/weaken/;
 
-our $VERSION = '1.51_03';
+our $VERSION = '1.51_04';
 our @ISA;
 
 
diff --git a/t/lib/Test.pm b/t/lib/Test.pm
index 4507ba8..e6cca99 100644
--- a/t/lib/Test.pm
+++ b/t/lib/Test.pm
@@ -7,7 +7,7 @@ use Exporter   ();
 use File::Spec ();
 use Test::More ();
 
-our $VERSION = '1.51_03';
+our $VERSION = '1.51_04';
 our @ISA = 'Exporter';
 our @EXPORT  = qw/connect_ok dies dbfile @CALL_FUNCS $sqlite_call has_sqlite 
requires_sqlite/;
 our @CALL_FUNCS;

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

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


[libdbd-sqlite3-perl] 16/43: try Encode for older perls

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 8a50806e1780c7f43e1063119f05f72af4387bde
Author: Kenichi Ishigaki 
Date:   Sat Feb 20 10:33:14 2016 +0900

try Encode for older perls
---
 t/62_regexp_multibyte_char_class.t | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/t/62_regexp_multibyte_char_class.t 
b/t/62_regexp_multibyte_char_class.t
index 49eeff0..8c4b685 100644
--- a/t/62_regexp_multibyte_char_class.t
+++ b/t/62_regexp_multibyte_char_class.t
@@ -12,6 +12,9 @@ BEGIN {
if ($] < 5.008005) {
plan skip_all => 'Unicode is not supported before 5.8.5';
}
+if (!eval "require Encode; 1") {
+   plan skip_all => 'requires Encode for this test';
+}
 }
 use Test::NoWarnings;
 
@@ -34,8 +37,8 @@ foreach my $call_func (@CALL_FUNCS) {
 my @vals = @words;
 my $re = $regex;
 if ($use_unicode) {
-  utf8::decode($_) foreach @vals;
-  utf8::decode($re);
+  @vals = map {Encode::decode_utf8($_)} @vals;
+  $re = Encode::decode_utf8($re);
 }
 
 $dbh->do( 'CREATE TEMP TABLE regexp_test ( txt )' );

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

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


[libdbd-sqlite3-perl] 19/43: skip no warnings test because it's known to fail under perl >= 5.22 and non-utf8 locale (RT-112220)

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit bb93e93884fef6dfdc24d7bee43d99f8d7cc30a7
Author: Kenichi Ishigaki 
Date:   Sat Feb 20 19:57:02 2016 +0900

skip no warnings test because it's known to fail under perl >= 5.22 and 
non-utf8 locale (RT-112220)
---
 t/62_regexp_multibyte_char_class.t | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/t/62_regexp_multibyte_char_class.t 
b/t/62_regexp_multibyte_char_class.t
index 103d88e..47ef517 100644
--- a/t/62_regexp_multibyte_char_class.t
+++ b/t/62_regexp_multibyte_char_class.t
@@ -13,7 +13,7 @@ BEGIN {
plan skip_all => 'Unicode is not supported before 5.8.5';
}
 }
-use Test::NoWarnings;
+#use Test::NoWarnings; # see RT#112220
 
 # special case for multibyte (non-ASCII) character class,
 # which only works correctly under the unicode mode
@@ -21,7 +21,7 @@ my @words = 
("\x{e3}\x{83}\x{86}\x{e3}\x{82}\x{b9}\x{e3}\x{83}\x{88}", "\x{e3}\x
 
 my $regex = 
"\x{e3}\x{83}\x{86}[\x{e3}\x{82}\x{b9}\x{e3}\x{83}\x{b3}]\x{e3}\x{83}\x{88}"; # 
テ[スン]ト
 
-plan tests => 2 * 2 * @CALL_FUNCS + 1;
+plan tests => 2 * 2 * @CALL_FUNCS;
 
 foreach my $call_func (@CALL_FUNCS) {
 

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

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

[libdbd-sqlite3-perl] 12/43: updated MANIFEST

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit f351137d550b915444da93f46a4003d42ebb7d88
Author: Kenichi Ishigaki 
Date:   Sat Feb 20 09:48:42 2016 +0900

updated MANIFEST
---
 MANIFEST | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MANIFEST b/MANIFEST
index 8845088..adaaa31 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -85,6 +85,7 @@ t/58_see_if_its_a_number_and_explicit_binding.t
 t/59_extended_result_codes.t
 t/60_readonly.t
 t/61_strlike.t
+t/62_regexp_multibyte_char_class.t
 t/cookbook_variance.t
 t/lib/Test.pm
 t/rt_106151_outermost_savepoint.t

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

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


[libdbd-sqlite3-perl] 15/43: not to use Japanese multibyte characters directly

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 95bd2006741e260df1942397108aaf5ecae8f7b1
Author: Kenichi Ishigaki 
Date:   Sat Feb 20 10:21:36 2016 +0900

not to use Japanese multibyte characters directly
---
 t/62_regexp_multibyte_char_class.t | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/t/62_regexp_multibyte_char_class.t 
b/t/62_regexp_multibyte_char_class.t
index 5ed5fc9..49eeff0 100644
--- a/t/62_regexp_multibyte_char_class.t
+++ b/t/62_regexp_multibyte_char_class.t
@@ -17,9 +17,9 @@ use Test::NoWarnings;
 
 # special case for multibyte (non-ASCII) character class,
 # which only works correctly under the unicode mode
-my @words = qw{ テスト テント };
-my $regex = 'テ[スン]ト';
+my @words = ("\x{e3}\x{83}\x{86}\x{e3}\x{82}\x{b9}\x{e3}\x{83}\x{88}", 
"\x{e3}\x{83}\x{86}\x{e3}\x{83}\x{b3}\x{e3}\x{83}\x{88}"); # テスト テント
 
+my $regex = 
"\x{e3}\x{83}\x{86}[\x{e3}\x{82}\x{b9}\x{e3}\x{83}\x{b3}]\x{e3}\x{83}\x{88}"; # 
テ[スン]ト
 
 plan tests => 2 * 2 * @CALL_FUNCS + 1;
 

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

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

[libdbd-sqlite3-perl] 32/43: updated Changes

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit f8d05bf00ebd873d62a0acbae827f896172e6e93
Author: Kenichi Ishigaki 
Date:   Tue Aug 9 20:51:46 2016 +0900

updated Changes
---
 Changes | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Changes b/Changes
index 6edfaa7..23a9523 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Changes for Perl extension DBD-SQLite
 
+1.51_06 to be released
+- Updated SQLite to 3.14.0
+
 1.51_05 2016-06-23
 - Updated SQLite to 3.13.0
 - Resolved #115465: column_info doesn't parse sizes with spaces

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

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


[libdbd-sqlite3-perl] 38/43: New upstream version 1.52

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 1615890e938c58c6ec36c8da4ddb43e7d87d0907
Merge: 12640fd 8878009
Author: Salvatore Bonaccorso 
Date:   Tue Nov 15 15:28:22 2016 +0100

New upstream version 1.52

 .travis.yml   | 1 +
 Changes   |41 +
 MANIFEST  | 4 +
 META.json | 2 +-
 META.yml  | 2 +-
 Makefile.PL   |16 +-
 SQLite.xs | 4 +
 dbdimp.c  |  1143 +-
 dbdimp.h  | 2 +
 dbdimp_tokenizer.inc  |   289 +
 dbdimp_virtual_table.inc  |   835 +
 lib/DBD/SQLite.pm | 6 +-
 lib/DBD/SQLite/Constants.pm   | 2 +-
 lib/DBD/SQLite/VirtualTable.pm| 6 +-
 sqlite3.c | 28593 ++--
 sqlite3.h |  1620 +-
 sqlite3ext.h  | 4 +
 t/43_fts3.t   | 3 +
 t/62_regexp_multibyte_char_class.t|53 +
 t/lib/Test.pm | 2 +-
 t/rt_115465_column_info_with_spaces.t |37 +
 21 files changed, 22599 insertions(+), 10066 deletions(-)

diff --cc META.json
index be9b56f,000..485b708
mode 100644,00..100644
--- a/META.json
+++ b/META.json
@@@ -1,59 -1,0 +1,59 @@@
 +{
 +   "abstract" : "Self Contained SQLite RDBMS in a DBI Driver",
 +   "author" : [
 +  "Adam Kennedy "
 +   ],
 +   "dynamic_config" : 1,
 +   "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter 
version 2.143240",
 +   "license" : [
 +  "perl_5"
 +   ],
 +   "meta-spec" : {
 +  "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec;,
 +  "version" : "2"
 +   },
 +   "name" : "DBD-SQLite",
 +   "no_index" : {
 +  "directory" : [
 + "t",
 + "inc",
 + "util"
 +  ]
 +   },
 +   "prereqs" : {
 +  "build" : {
 + "requires" : {
 +"File::Spec" : "0.82",
 +"Test::More" : "0.42"
 + }
 +  },
 +  "configure" : {
 + "requires" : {
 +"DBI" : "1.57",
 +"ExtUtils::MakeMaker" : "6.48",
 +"File::Spec" : "0.82"
 + }
 +  },
 +  "runtime" : {
 + "requires" : {
 +"DBI" : "1.57",
 +"Scalar::Util" : "0",
 +"Tie::Hash" : "0"
 + }
 +  }
 +   },
 +   "release_status" : "stable",
 +   "resources" : {
 +  "bugtracker" : {
 + "web" : "http://rt.cpan.org/Public/Dist/Display.html?Name=DBD-SQLite;
 +  },
 +  "license" : [
 + "http://dev.perl.org/licenses/;
 +  ],
 +  "repository" : {
 + "url" : "https://github.com/DBD-SQLite/DBD-SQLite;
 +  },
 +  "x_MailingList" : 
"http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbd-sqlite;
 +   },
-"version" : "1.50"
++   "version" : "1.52"
 +}
diff --cc META.yml
index c29c6c7,000..4482916
mode 100644,00..100644
--- a/META.yml
+++ b/META.yml
@@@ -1,33 -1,0 +1,33 @@@
 +---
 +abstract: 'Self Contained SQLite RDBMS in a DBI Driver'
 +author:
 +  - 'Adam Kennedy '
 +build_requires:
 +  File::Spec: '0.82'
 +  Test::More: '0.42'
 +configure_requires:
 +  DBI: '1.57'
 +  ExtUtils::MakeMaker: '6.48'
 +  File::Spec: '0.82'
 +dynamic_config: 1
 +generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter 
version 2.143240'
 +license: perl
 +meta-spec:
 +  url: http://module-build.sourceforge.net/META-spec-v1.4.html
 +  version: '1.4'
 +name: DBD-SQLite
 +no_index:
 +  directory:
 +- t
 +- inc
 +- util
 +requires:
 +  DBI: '1.57'
 +  Scalar::Util: '0'
 +  Tie::Hash: '0'
 +resources:
 +  MailingList: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbd-sqlite
 +  bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=DBD-SQLite
 +  license: http://dev.perl.org/licenses/
 +  repository: https://github.com/DBD-SQLite/DBD-SQLite
- version: '1.50'
++version: '1.52'

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

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


[libdbd-sqlite3-perl] 41/43: Drop spelling-error-in-manpage.patch patch

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

carnil pushed a commit to branch master
in repository libdbd-sqlite3-perl.

commit 5588ee549d9280dc0af4b674e25664474ae71e61
Author: Salvatore Bonaccorso 
Date:   Tue Nov 15 16:08:48 2016 +0100

Drop spelling-error-in-manpage.patch patch
---
 debian/patches/series  |  1 -
 debian/patches/spelling-error-in-manpage.patch | 27 --
 2 files changed, 28 deletions(-)

diff --git a/debian/patches/series b/debian/patches/series
index 26de65d..65230e8 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1 @@
 use_system_sqlite
-spelling-error-in-manpage.patch
diff --git a/debian/patches/spelling-error-in-manpage.patch 
b/debian/patches/spelling-error-in-manpage.patch
deleted file mode 100644
index fde1bc8..000
--- a/debian/patches/spelling-error-in-manpage.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-Description: Fix spelling error in manpage
-Origin: vendor
-Author: Salvatore Bonaccorso 
-Last-Update: 2016-02-14
-Forwarded: https://github.com/DBD-SQLite/DBD-SQLite/issues/15
-Bug: https://github.com/DBD-SQLite/DBD-SQLite/issues/15
-
 a/lib/DBD/SQLite/VirtualTable.pm
-+++ b/lib/DBD/SQLite/VirtualTable.pm
-@@ -612,7 +612,7 @@ An integer giving the estimated number o
- 
- =head3 OPEN
- 
--Called to instanciate a new cursor.
-+Called to instantiate a new cursor.
- The default implementation appends C<"::Cursor"> to the current
- classname and calls C within that cursor class.
- 
-@@ -736,7 +736,7 @@ the current virtual table.
- 
-   my $cursor = $cursor_class->NEW($vtable, @args)
- 
--Instanciates a new cursor. 
-+Instantiates a new cursor. 
- The default implementation just returns a blessed hashref
- with keys C and C.
- 

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

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


[libpdf-create-perl] annotated tag debian/1.37-1 created (now 078a900)

2016-11-15 Thread Angel Abad
This is an automated email from the git hooks/post-receive script.

angel pushed a change to annotated tag debian/1.37-1
in repository libpdf-create-perl.

at  078a900   (tag)
   tagging  757953af29a1b40e1c8d3f6ac8e4e36c8b264946 (commit)
  replaces  debian/1.35-1
 tagged by  Angel Abad
on  Wed Nov 16 08:33:11 2016 +0100

- Log -
libpdf-create-perl Debian release 1.37-1
-BEGIN PGP SIGNATURE-

iQJIBAABCAAyFiEESgiXGRYhzPf77vdSptWIFgEKEJYFAlgsC7cUHGFuZ2VsYWJh
ZEBnbWFpbC5jb20ACgkQptWIFgEKEJatkhAAyDYl0Btd2N5/KWAAHMWVJJ/HUsDa
rpQ/pdTwAyy2npFllsIjVl3f5CG0GX8YBTgM6o9mPWVplPzwGIOdscWQ9c8216Ex
FAqFDD2OAFrhYAutAxF8CbGpv/BIML5hP+U92nGVKi6cAgGejOIIPKI2XEOvq9Sm
oDIZySxd3dAuL4v3ncqeZvwD8dyGYiyrhrU2TGZfs4NIqKUxXvQtiyqg3eo6QGMa
2oJFIHcPm5jv7UozyITIf9jULqYNhFwui6b0r0uIPNYPnxiQfao9E9nQIbBCJkId
PUt0mq6KfJeRxwxEMVMrwyO2tpHHFplcst6NYu3cMgfqqp4C4eFu0T86UT/yKumv
xjZmZHpTyzpYLXTqOcj1fvCsYvXFajH7O46Q0vKLD5fUVG4aRMVhnzrvPNMHcSMa
o2ZA4aQRrCkNY5Qbd+UOgcPsp9b4ppDw0VWTcm105v0nFiWHt+nb7mo0Xcz/c6lH
nVbcqEdJm7cG/feRgBGiGj32WA4YlEsH0qmmyIlTlWzmHZVzaItEJQ+6imGYUFgt
00TCj1fY3hqPGUYoy8qkifK1GK/MKl/Dq91sHR5TIyEsph8RusX9S01IYy6Jf7TZ
xiKUMQaBD7xh8v3EgEZ48aG0pKjCB8QI8LuYg1Hyvo+1Xy90ijbv2j2t7QuZOTk9
WXIWXAYJMhGrit8=
=26Il
-END PGP SIGNATURE-

Angel Abad (4):
  New upstream version 1.37
  Merge tag 'upstream/1.37'
  Update debian/changelog
  Update changelog.

---

This annotated tag includes the following new commits:

   new  1f2ea13   Merge tag 'upstream/1.37'
   new  7b89500   Update debian/changelog
   new  757953a   Update changelog.

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


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

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


[libpdf-create-perl] 03/03: Update changelog.

2016-11-15 Thread Angel Abad
This is an automated email from the git hooks/post-receive script.

angel pushed a commit to branch master
in repository libpdf-create-perl.

commit 757953af29a1b40e1c8d3f6ac8e4e36c8b264946
Author: Angel Abad 
Date:   Wed Nov 16 08:32:51 2016 +0100

Update changelog.

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

diff --git a/debian/changelog b/debian/changelog
index 59b0b49..2e9918b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
-libpdf-create-perl (1.37-1) UNRELEASED; urgency=medium
+libpdf-create-perl (1.37-1) unstable; urgency=medium
 
+  * Team upload.
   * Import upstream version 1.37
 
- -- Angel Abad   Wed, 16 Nov 2016 08:26:50 +0100
+ -- Angel Abad   Wed, 16 Nov 2016 08:31:03 +0100
 
 libpdf-create-perl (1.35-1) unstable; urgency=medium
 

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

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


[libpdf-create-perl] branch master updated (e897974 -> 757953a)

2016-11-15 Thread Angel Abad
This is an automated email from the git hooks/post-receive script.

angel pushed a change to branch master
in repository libpdf-create-perl.

  from  e897974   Update changelog.
  adds  0a8a9fb   New upstream version 1.37
   new  1f2ea13   Merge tag 'upstream/1.37'
   new  7b89500   Update debian/changelog
   new  757953a   Update changelog.

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


Summary of changes:
 Changes   |  6 ++
 MANIFEST  |  1 +
 META.json | 15 ---
 META.yml  | 15 ---
 Makefile.PL   | 13 +++--
 debian/changelog  |  7 +++
 lib/PDF/Create.pm | 31 +--
 lib/PDF/Create/Outline.pm |  2 +-
 lib/PDF/Create/Page.pm|  4 ++--
 lib/PDF/Font.pm   |  4 ++--
 lib/PDF/Image/GIF.pm  |  2 +-
 lib/PDF/Image/JPEG.pm |  6 +++---
 t/13-close.t  | 37 +
 13 files changed, 108 insertions(+), 35 deletions(-)
 create mode 100644 t/13-close.t

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

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


[libpdf-create-perl] 01/01: pristine-tar data for libpdf-create-perl_1.37.orig.tar.gz

2016-11-15 Thread Angel Abad
This is an automated email from the git hooks/post-receive script.

angel pushed a commit to branch pristine-tar
in repository libpdf-create-perl.

commit 7df92d180f26729a038a98359cc27f379b1bad9e
Author: Angel Abad 
Date:   Wed Nov 16 08:26:46 2016 +0100

pristine-tar data for libpdf-create-perl_1.37.orig.tar.gz
---
 libpdf-create-perl_1.37.orig.tar.gz.delta | Bin 0 -> 4753 bytes
 libpdf-create-perl_1.37.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libpdf-create-perl_1.37.orig.tar.gz.delta 
b/libpdf-create-perl_1.37.orig.tar.gz.delta
new file mode 100644
index 000..0e1fc22
Binary files /dev/null and b/libpdf-create-perl_1.37.orig.tar.gz.delta differ
diff --git a/libpdf-create-perl_1.37.orig.tar.gz.id 
b/libpdf-create-perl_1.37.orig.tar.gz.id
new file mode 100644
index 000..aa381c8
--- /dev/null
+++ b/libpdf-create-perl_1.37.orig.tar.gz.id
@@ -0,0 +1 @@
+828cd9e940fdbc3abec5d935093df018c0c18708

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

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


[libpdf-create-perl] annotated tag upstream/1.37 created (now 217b03a)

2016-11-15 Thread Angel Abad
This is an automated email from the git hooks/post-receive script.

angel pushed a change to annotated tag upstream/1.37
in repository libpdf-create-perl.

at  217b03a   (tag)
   tagging  0a8a9fb4918ad362eeea3ebfec5d77a1e7d48dad (commit)
  replaces  upstream/1.35
 tagged by  Angel Abad
on  Wed Nov 16 08:26:46 2016 +0100

- Log -
Upstream version 1.37
-BEGIN PGP SIGNATURE-

iQJIBAABCAAyFiEESgiXGRYhzPf77vdSptWIFgEKEJYFAlgsCjYUHGFuZ2VsYWJh
ZEBnbWFpbC5jb20ACgkQptWIFgEKEJZVsg/+LZj66hH7CsPeDSYK9fENQPrf2GB8
/2O4oEx+KrS/pbfOHkCu5G5qRcphyWCB0h5KAxhi023b2EsRI2G/njcK9qfNC6TU
jdmjM73tX677nGZx8r0lo3dmPJUMn5Uqh7ditHRAZqlTyphDuMGL0iquykYoR0jl
iNs8K1VtpDFuSgvafn1dy0WReDQ8z8pNSatdnOU3nSq98YQyS4nTfZHzXtXFXiOa
rlmfAEK1wGs7uwaBnmHGNE/0FPdMgRhZp8dJkpyKERovLLqvzIj53IKbgbz/TbQQ
hrfImGhYhvb/1EdtWJre54Q2PWR+O0qx3VBDGce6nMJF+Ih2JZ+/DwZSHqZZ3k7L
3jDDhOwrlMuUWeqq+VYy35yRySIneWYKdZ8fh90pA3CijNbnQaBeaKfMdMq8h640
VWwAkUEtO197PAPNmIjyknr4VUOoujVE6eRijlK1Yco7vhRb/ZKwkb3Uosz340hf
b+XuKUEVie3VThoZjxT5SjmnwC4cTANw0OYBkCD/FB1Rb2CQp4+1MsYzTdAiuGS4
5YaMZr9FkvNbEplPBRc4aJcaEh8cMr/hFuf9gayqzBiUEy1fPwwvNmykwVCFS4U1
yOTsZi6DOd74Y5IhcqFetuDtuD2FspqY3hjEfezxc+j3xfZt+rkjwSRnwtlwpGtS
9fB3Kpi/kyBekeE=
=RxIY
-END PGP SIGNATURE-

Angel Abad (1):
  New upstream version 1.37

---

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

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


[libpdf-create-perl] 01/03: Merge tag 'upstream/1.37'

2016-11-15 Thread Angel Abad
This is an automated email from the git hooks/post-receive script.

angel pushed a commit to branch master
in repository libpdf-create-perl.

commit 1f2ea1309041fced1844ae6792b3549942af1265
Merge: e897974 0a8a9fb
Author: Angel Abad 
Date:   Wed Nov 16 08:26:50 2016 +0100

Merge tag 'upstream/1.37'

Upstream version 1.37

# gpg: Firmado el mié 16 nov 2016 08:26:46 CET
# gpg:usando RSA clave 
4A0897191621CCF7FBEEF752A6D58816010A1096
# gpg:issuer "angela...@gmail.com"
# gpg: Firma correcta de "Angel Abad " [desconocido]
# gpg: alias "Angel Abad " [desconocido]
# gpg: alias "Angel Abad " 
[desconocido]
# gpg: ATENCIÓN: ¡Esta clave no está certificada por una firma de confianza!
# gpg:   No hay indicios de que la firma pertenezca al propietario.
# Huellas dactilares de la clave primaria: 4A08 9719 1621 CCF7 FBEE  F752 
A6D5 8816 010A 1096

 Changes   |  6 ++
 MANIFEST  |  1 +
 META.json | 15 ---
 META.yml  | 15 ---
 Makefile.PL   | 13 +++--
 lib/PDF/Create.pm | 31 +--
 lib/PDF/Create/Outline.pm |  2 +-
 lib/PDF/Create/Page.pm|  4 ++--
 lib/PDF/Font.pm   |  4 ++--
 lib/PDF/Image/GIF.pm  |  2 +-
 lib/PDF/Image/JPEG.pm |  6 +++---
 t/13-close.t  | 37 +
 12 files changed, 101 insertions(+), 35 deletions(-)

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

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

[libpdf-create-perl] branch pristine-tar updated (95742b4 -> 7df92d1)

2016-11-15 Thread Angel Abad
This is an automated email from the git hooks/post-receive script.

angel pushed a change to branch pristine-tar
in repository libpdf-create-perl.

  from  95742b4   pristine-tar data for libpdf-create-perl_1.35.orig.tar.gz
   new  7df92d1   pristine-tar data for libpdf-create-perl_1.37.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:
 libpdf-create-perl_1.37.orig.tar.gz.delta | Bin 0 -> 4753 bytes
 libpdf-create-perl_1.37.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libpdf-create-perl_1.37.orig.tar.gz.delta
 create mode 100644 libpdf-create-perl_1.37.orig.tar.gz.id

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

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


[libpdf-create-perl] 02/03: Update debian/changelog

2016-11-15 Thread Angel Abad
This is an automated email from the git hooks/post-receive script.

angel pushed a commit to branch master
in repository libpdf-create-perl.

commit 7b89500c06f75f03faa21c4c24c54a324355f024
Author: Angel Abad 
Date:   Wed Nov 16 08:26:50 2016 +0100

Update debian/changelog

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

diff --git a/debian/changelog b/debian/changelog
index 70e821d..59b0b49 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libpdf-create-perl (1.37-1) UNRELEASED; urgency=medium
+
+  * Import upstream version 1.37
+
+ -- Angel Abad   Wed, 16 Nov 2016 08:26:50 +0100
+
 libpdf-create-perl (1.35-1) unstable; urgency=medium
 
   * Team upload.

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

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


[libtest-lwp-useragent-perl] 02/04: Update debian/changelog

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

gregoa pushed a commit to branch master
in repository libtest-lwp-useragent-perl.

commit 60edf649eb8d6079edc63d35d4cb980039a1f59c
Author: gregor herrmann 
Date:   Tue Nov 15 20:28:39 2016 +0100

Update debian/changelog

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

diff --git a/debian/changelog b/debian/changelog
index 0eeb3c9..28a5fae 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libtest-lwp-useragent-perl (0.031-1) UNRELEASED; urgency=medium
+
+  * Import upstream version 0.031
+
+ -- gregor herrmann   Tue, 15 Nov 2016 20:28:39 +0100
+
 libtest-lwp-useragent-perl (0.030-2) unstable; urgency=medium
 
   [ Salvatore Bonaccorso ]

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

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


[libtest-lwp-useragent-perl] branch master updated (861a0d9 -> 0f189f0)

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

gregoa pushed a change to branch master
in repository libtest-lwp-useragent-perl.

  from  861a0d9   releasing package libtest-lwp-useragent-perl version 
0.030-2
  adds  0f8b86b   increment $VERSION after 0.030 release
  adds  5d4c246   this section is now generated by my weaver bundle
  adds  5fafe50   use simpler [DynamicPrereqs] syntax
  adds  0bcc2b4   use quotes for better version interpolation on all perls
  adds  0e7da8e   use latest [DynamicPrereqs] syntax
  adds  0e8de2e   no need to waste an op doing a shift
  adds  7bb91d2   fix Test::More prereq for done_testing
  adds  caa4068   switch from Test::Requires to Test::Needs
  adds  74c5fed   use preferred variable for making version checks
  adds  86e0b3a   ensure vim modeline is in the first 5 line
  adds  6d09555   switch from stringy to block eval
  adds  8dd6557   only check for warnings under AUTHOR_TESTING
  adds  ecfddcd   Test-LWP-UserAgent-0.031
  adds  876c4b4   New upstream version 0.031
   new  3a5cc32   Merge tag 'upstream/0.031'
   new  60edf64   Update debian/changelog
   new  3382063   Update build dependencies.
   new  0f189f0   releasing package libtest-lwp-useragent-perl version 
0.031-1

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


Summary of changes:
 CONTRIBUTING|  12 +-
 Changes |   4 +
 INSTALL |  14 +-
 MANIFEST|  10 +-
 META.json   | 455 ++--
 META.yml| 355 +
 Makefile.PL |  44 ++-
 README  |   4 +-
 debian/changelog|   7 +
 debian/control  |   2 +-
 dist.ini|  19 +-
 examples/application_client_test.t  |   7 +-
 examples/call_psgi.t|   4 +-
 lib/Test/LWP/UserAgent.pm   |  31 ++-
 t/00-report-prereqs.dd  |  45 ++--
 t/00-report-prereqs.t   |  14 +-
 t/01-basic.t|   2 +-
 t/02-overload.t |   4 +-
 t/03-handlers.t |   2 +-
 t/04-psgi.t |   4 +-
 t/05-exceptions.t   |   2 +-
 t/06-network-fallback.t |   2 +-
 t/07-mask-response.t|   2 +-
 t/08-isa-coderef.t  |   2 +-
 t/09-dispatch-to-request-method.t   |   2 +-
 t/10-request-args-network.t |   2 +-
 t/11-request-args-internal.t|   2 +-
 t/12-chained-method-call.t  |   4 +-
 t/50-examples-application_client_test.t |   7 +-
 t/51-call_psgi.t|   4 +-
 xt/author/00-compile.t  |  20 +-
 xt/author/eol.t |  12 +-
 xt/author/kwalitee.t|   2 +-
 xt/author/no-tabs.t |  10 +-
 xt/{release => author}/pod-coverage.t   |   0
 xt/{release => author}/pod-no404s.t |   0
 xt/author/pod-spell.t   |  17 +-
 xt/{release => author}/pod-syntax.t |   1 +
 xt/{release => author}/portability.t|   2 -
 xt/release/changes_has_content.t|   2 +-
 xt/release/cpan-changes.t   |   9 +-
 41 files changed, 637 insertions(+), 506 deletions(-)
 rename xt/{release => author}/pod-coverage.t (100%)
 rename xt/{release => author}/pod-no404s.t (100%)
 rename xt/{release => author}/pod-syntax.t (84%)
 rename xt/{release => author}/portability.t (95%)

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

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


[libtest-lwp-useragent-perl] 01/01: pristine-tar data for libtest-lwp-useragent-perl_0.031.orig.tar.gz

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

gregoa pushed a commit to branch pristine-tar
in repository libtest-lwp-useragent-perl.

commit b5e2bbc7bbf40140bae1d2e84bc83b2bfa802505
Author: gregor herrmann 
Date:   Tue Nov 15 20:28:39 2016 +0100

pristine-tar data for libtest-lwp-useragent-perl_0.031.orig.tar.gz
---
 libtest-lwp-useragent-perl_0.031.orig.tar.gz.delta | Bin 0 -> 2799 bytes
 libtest-lwp-useragent-perl_0.031.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libtest-lwp-useragent-perl_0.031.orig.tar.gz.delta 
b/libtest-lwp-useragent-perl_0.031.orig.tar.gz.delta
new file mode 100644
index 000..57f4cbe
Binary files /dev/null and b/libtest-lwp-useragent-perl_0.031.orig.tar.gz.delta 
differ
diff --git a/libtest-lwp-useragent-perl_0.031.orig.tar.gz.id 
b/libtest-lwp-useragent-perl_0.031.orig.tar.gz.id
new file mode 100644
index 000..617370e
--- /dev/null
+++ b/libtest-lwp-useragent-perl_0.031.orig.tar.gz.id
@@ -0,0 +1 @@
+25c8bb1b7c3c494b2462977536b9aad516222015

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

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


[libtest-lwp-useragent-perl] annotated tag debian/0.031-1 created (now 33bc382)

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

gregoa pushed a change to annotated tag debian/0.031-1
in repository libtest-lwp-useragent-perl.

at  33bc382   (tag)
   tagging  0f189f0b2b4f4d5f0c2115ea472e89bc4126f4d0 (commit)
  replaces  debian/0.030-2
 tagged by  gregor herrmann
on  Tue Nov 15 20:33:07 2016 +0100

- Log -
tagging package libtest-lwp-useragent-perl version debian/0.031-1
-BEGIN PGP SIGNATURE-

iQKTBAABCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlgrYvNfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgZJPQ//fsLYgTYCkXSTqCsOzOS4ja/nngM9084CVgLUviMfS7Ov0HWkIaDCVodD
0Bb7oO+FzR2djt9XnIUbByznHQ5S3zfXfy8XsdZGtGIOHJ3heNv4+S10Rbb0ZiU9
poFiVzo1Dyzd56o1gYu1GyKWuenOLzM7IuDuDBiLI/j/RoaP6BClzm+7AXSd5fYR
LqD5Y5C9b0xLYOYV1MxFHy/dlp6rpHawt8ZHJSFQH/+K4QB+VYn+QheLO9TtclCV
YlsTtuWDThOrsscIKLoog9BB9VC97WkgLdrye/7YsgKVD0eqqS+5yO1j8vjk7Z4Q
hi/Y0VwbdIFp5oe2V6EqIKQor+fGhgBUrTwYMs1s3VAJ2tbGgHHABvrVH9zeWJYO
pIMk7hA5sXqnxwoojGhfORl7jetH0qb7K14vz0apABLAIfMeCkXkKDg594XFcDAN
lEFvqw/ZJOLh0yJOqtNRhpr2kZ9Y9oed01r17Snv/ueeR2Ly92o8W36tloa3O9j2
L3/PJOUIRUZov/MtJid06XJssJOWji+8KBU/cFAlT/yuMZH9MvPJpg6WCRJMxUu+
/6M3rdvgNwJzXtrzYY2YZanJZIRFaTnWpACA0iCwkzCnlt08CJtF7XlFHcvLKCvT
i+dsvgylKfQML5k3LYJMqXG6bgDxhqNKv7N+upJuWEg4c+JJ7jc=
=k60S
-END PGP SIGNATURE-

Karen Etheridge (13):
  increment $VERSION after 0.030 release
  this section is now generated by my weaver bundle
  use simpler [DynamicPrereqs] syntax
  use quotes for better version interpolation on all perls
  use latest [DynamicPrereqs] syntax
  no need to waste an op doing a shift
  fix Test::More prereq for done_testing
  switch from Test::Requires to Test::Needs
  use preferred variable for making version checks
  ensure vim modeline is in the first 5 line
  switch from stringy to block eval
  only check for warnings under AUTHOR_TESTING
  Test-LWP-UserAgent-0.031

gregor herrmann (5):
  New upstream version 0.031
  Merge tag 'upstream/0.031'
  Update debian/changelog
  Update build dependencies.
  releasing package libtest-lwp-useragent-perl version 0.031-1

---

This annotated tag includes the following new commits:

   new  3a5cc32   Merge tag 'upstream/0.031'
   new  60edf64   Update debian/changelog
   new  3382063   Update build dependencies.
   new  0f189f0   releasing package libtest-lwp-useragent-perl version 
0.031-1

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


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

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


[libtest-lwp-useragent-perl] 04/04: releasing package libtest-lwp-useragent-perl version 0.031-1

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

gregoa pushed a commit to branch master
in repository libtest-lwp-useragent-perl.

commit 0f189f0b2b4f4d5f0c2115ea472e89bc4126f4d0
Author: gregor herrmann 
Date:   Tue Nov 15 20:33:07 2016 +0100

releasing package libtest-lwp-useragent-perl version 0.031-1
---
 debian/changelog | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 28a5fae..cdf93a4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
-libtest-lwp-useragent-perl (0.031-1) UNRELEASED; urgency=medium
+libtest-lwp-useragent-perl (0.031-1) unstable; urgency=medium
 
-  * Import upstream version 0.031
+  * Import upstream version 0.031.
+  * Update build dependencies.
 
- -- gregor herrmann   Tue, 15 Nov 2016 20:28:39 +0100
+ -- gregor herrmann   Tue, 15 Nov 2016 20:31:21 +0100
 
 libtest-lwp-useragent-perl (0.030-2) unstable; urgency=medium
 

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

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


[libtest-lwp-useragent-perl] 01/04: Merge tag 'upstream/0.031'

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

gregoa pushed a commit to branch master
in repository libtest-lwp-useragent-perl.

commit 3a5cc329e2887f5286d992034edd348593f0e1e7
Merge: 861a0d9 876c4b4
Author: gregor herrmann 
Date:   Tue Nov 15 20:28:39 2016 +0100

Merge tag 'upstream/0.031'

Upstream version 0.031

 CONTRIBUTING|  12 +-
 Changes |   4 +
 INSTALL |  14 +-
 MANIFEST|  10 +-
 META.json   | 455 ++--
 META.yml| 355 +
 Makefile.PL |  44 ++-
 README  |   4 +-
 dist.ini|  19 +-
 examples/application_client_test.t  |   7 +-
 examples/call_psgi.t|   4 +-
 lib/Test/LWP/UserAgent.pm   |  31 ++-
 t/00-report-prereqs.dd  |  45 ++--
 t/00-report-prereqs.t   |  14 +-
 t/01-basic.t|   2 +-
 t/02-overload.t |   4 +-
 t/03-handlers.t |   2 +-
 t/04-psgi.t |   4 +-
 t/05-exceptions.t   |   2 +-
 t/06-network-fallback.t |   2 +-
 t/07-mask-response.t|   2 +-
 t/08-isa-coderef.t  |   2 +-
 t/09-dispatch-to-request-method.t   |   2 +-
 t/10-request-args-network.t |   2 +-
 t/11-request-args-internal.t|   2 +-
 t/12-chained-method-call.t  |   4 +-
 t/50-examples-application_client_test.t |   7 +-
 t/51-call_psgi.t|   4 +-
 xt/author/00-compile.t  |  20 +-
 xt/author/eol.t |  12 +-
 xt/author/kwalitee.t|   2 +-
 xt/author/no-tabs.t |  10 +-
 xt/{release => author}/pod-coverage.t   |   0
 xt/{release => author}/pod-no404s.t |   0
 xt/author/pod-spell.t   |  17 +-
 xt/{release => author}/pod-syntax.t |   1 +
 xt/{release => author}/portability.t|   2 -
 xt/release/changes_has_content.t|   2 +-
 xt/release/cpan-changes.t   |   9 +-
 39 files changed, 629 insertions(+), 505 deletions(-)

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

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


[libtest-lwp-useragent-perl] 03/04: Update build dependencies.

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

gregoa pushed a commit to branch master
in repository libtest-lwp-useragent-perl.

commit 33820638bd3f14ce319f9381911c625cee904612
Author: gregor herrmann 
Date:   Tue Nov 15 20:30:33 2016 +0100

Update build dependencies.
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 437b7e2..4e0d820 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,7 @@ Build-Depends-Indep: libhttp-date-perl,
  libsafe-isa-perl,
  libtest-deep-perl,
  libtest-fatal-perl,
- libtest-requires-perl,
+ libtest-needs-perl,
  libtest-requiresinternet-perl,
  libtest-warnings-perl,
  libtry-tiny-perl,

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

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


[libtest-lwp-useragent-perl] branch pristine-tar updated (0ced55e -> b5e2bbc)

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

gregoa pushed a change to branch pristine-tar
in repository libtest-lwp-useragent-perl.

  from  0ced55e   pristine-tar data for 
libtest-lwp-useragent-perl_0.030.orig.tar.gz
   new  b5e2bbc   pristine-tar data for 
libtest-lwp-useragent-perl_0.031.orig.tar.gz

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


Summary of changes:
 libtest-lwp-useragent-perl_0.031.orig.tar.gz.delta | Bin 0 -> 2799 bytes
 libtest-lwp-useragent-perl_0.031.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libtest-lwp-useragent-perl_0.031.orig.tar.gz.delta
 create mode 100644 libtest-lwp-useragent-perl_0.031.orig.tar.gz.id

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

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


[libtest-lwp-useragent-perl] annotated tag upstream/0.031 created (now 04ea28b)

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

gregoa pushed a change to annotated tag upstream/0.031
in repository libtest-lwp-useragent-perl.

at  04ea28b   (tag)
   tagging  876c4b45dff3f9fb0ae1fc3649ce5fd2b15228ad (commit)
  replaces  upstream/0.030
 tagged by  gregor herrmann
on  Tue Nov 15 20:28:39 2016 +0100

- Log -
Upstream version 0.031

Karen Etheridge (13):
  increment $VERSION after 0.030 release
  this section is now generated by my weaver bundle
  use simpler [DynamicPrereqs] syntax
  use quotes for better version interpolation on all perls
  use latest [DynamicPrereqs] syntax
  no need to waste an op doing a shift
  fix Test::More prereq for done_testing
  switch from Test::Requires to Test::Needs
  use preferred variable for making version checks
  ensure vim modeline is in the first 5 line
  switch from stringy to block eval
  only check for warnings under AUTHOR_TESTING
  Test-LWP-UserAgent-0.031

gregor herrmann (1):
  New upstream version 0.031

---

No new revisions were added by this update.

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

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


[perlbrew] 06/06: releasing package perlbrew version 0.77-1

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

gregoa pushed a commit to branch master
in repository perlbrew.

commit e098f692691d6d6512ae8fb507fd143291eb0436
Author: gregor herrmann 
Date:   Tue Nov 15 20:20:52 2016 +0100

releasing package perlbrew version 0.77-1
---
 debian/changelog | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 7d61e68..5c034e3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,13 @@
-perlbrew (0.77-1) UNRELEASED; urgency=medium
+perlbrew (0.77-1) unstable; urgency=medium
 
+  * Team upload.
   * Import upstream version 0.77.
 Fixes "Unescaped left brace in regex is deprecated"
 (Closes: #826500)
+  * Drop 5.003_07.patch, fixed upstream.
+  * Update (build) dependencies.
 
- -- gregor herrmann   Tue, 15 Nov 2016 20:07:33 +0100
+ -- gregor herrmann   Tue, 15 Nov 2016 20:19:00 +0100
 
 perlbrew (0.76-2) unstable; urgency=medium
 

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

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


[perlbrew] 04/06: Drop 5.003_07.patch, fixed upstream.

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

gregoa pushed a commit to branch master
in repository perlbrew.

commit 488e208b09bcb005c312fd231b75ef0b7199477a
Author: gregor herrmann 
Date:   Tue Nov 15 20:11:09 2016 +0100

Drop 5.003_07.patch, fixed upstream.
---
 debian/patches/5.003_07.patch | 18 --
 debian/patches/series |  1 -
 2 files changed, 19 deletions(-)

diff --git a/debian/patches/5.003_07.patch b/debian/patches/5.003_07.patch
deleted file mode 100644
index efa1a46..000
--- a/debian/patches/5.003_07.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Description: perl 5.003_07 is gone from the CPAN
-Origin: vendor
-Bug: https://rt.cpan.org/Ticket/Display.html?id=116517
-Bug-Debian: https://bugs.debian.org/832832
-Author: gregor herrmann 
-Last-Update: 2016-07-30
-
 a/t/13.perl_release.t
-+++ b/t/13.perl_release.t
-@@ -16,7 +16,7 @@
- it "returns the perl dist tarball file name, and its download url" => 
sub {
- my $app = App::perlbrew->new;
- 
--for my $version (qw(5.14.2 5.10.1 5.10.0 5.003_07 5.004_05)) {
-+for my $version (qw(5.14.2 5.10.1 5.10.0 5.004_05)) {
- my ($ball, $url) = $app->perl_release($version);
- like $ball, qr/perl-?${version}.tar.(bz2|gz)/;
- like $url, qr/${ball}$/;
diff --git a/debian/patches/series b/debian/patches/series
index f5aea9f..7fbed8e 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1 @@
 autopkgtest-path.patch
-5.003_07.patch

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

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


[libtest2-plugin-nowarnings-perl] branch master updated (5be76e1 -> ed0da27)

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

gregoa pushed a change to branch master
in repository libtest2-plugin-nowarnings-perl.

  from  5be76e1   releasing package libtest2-plugin-nowarnings-perl version 
0.04-1
  adds  cb4f15d   Bump version after release
  adds  bddd248   Skip compile.t on Windows
  adds  7b4bc83   v0.05
  adds  d13ba65   New upstream version 0.05
   new  8f3d4a3   Merge tag 'upstream/0.05'
   new  aaf9258   Update debian/changelog
   new  ed0da27   releasing package libtest2-plugin-nowarnings-perl version 
0.05-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:
 CONTRIBUTING.md|  2 +-
 Changes|  6 
 META.json  | 78 +++---
 META.yml   | 76 +++-
 Makefile.PL|  2 +-
 README.md  |  2 +-
 debian/changelog   |  7 
 lib/Test2/Event/Warning.pm |  4 +--
 lib/Test2/Plugin/NoWarnings.pm |  4 +--
 t/compile.t|  2 ++
 xt/author/pod-spell.t  |  2 +-
 11 files changed, 94 insertions(+), 91 deletions(-)

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

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


[libtest2-plugin-nowarnings-perl] 02/03: Update debian/changelog

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

gregoa pushed a commit to branch master
in repository libtest2-plugin-nowarnings-perl.

commit aaf92585d676da9e44eaea4c8ec721733b860df5
Author: gregor herrmann 
Date:   Tue Nov 15 20:25:46 2016 +0100

Update debian/changelog

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

diff --git a/debian/changelog b/debian/changelog
index c421d07..9daffbc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libtest2-plugin-nowarnings-perl (0.05-1) UNRELEASED; urgency=medium
+
+  * Import upstream version 0.05
+
+ -- gregor herrmann   Tue, 15 Nov 2016 20:25:46 +0100
+
 libtest2-plugin-nowarnings-perl (0.04-1) unstable; urgency=medium
 
   * Team upload.

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

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


[libtest2-plugin-nowarnings-perl] branch pristine-tar updated (601c5c2 -> 76a18ce)

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

gregoa pushed a change to branch pristine-tar
in repository libtest2-plugin-nowarnings-perl.

  from  601c5c2   pristine-tar data for 
libtest2-plugin-nowarnings-perl_0.04.orig.tar.gz
   new  76a18ce   pristine-tar data for 
libtest2-plugin-nowarnings-perl_0.05.orig.tar.gz

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


Summary of changes:
 libtest2-plugin-nowarnings-perl_0.05.orig.tar.gz.delta | Bin 0 -> 1899 bytes
 libtest2-plugin-nowarnings-perl_0.05.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libtest2-plugin-nowarnings-perl_0.05.orig.tar.gz.delta
 create mode 100644 libtest2-plugin-nowarnings-perl_0.05.orig.tar.gz.id

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

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


[libtest2-plugin-nowarnings-perl] 01/01: pristine-tar data for libtest2-plugin-nowarnings-perl_0.05.orig.tar.gz

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

gregoa pushed a commit to branch pristine-tar
in repository libtest2-plugin-nowarnings-perl.

commit 76a18ceda4043c01fd8e52aa7acd2e6531762e62
Author: gregor herrmann 
Date:   Tue Nov 15 20:25:46 2016 +0100

pristine-tar data for libtest2-plugin-nowarnings-perl_0.05.orig.tar.gz
---
 libtest2-plugin-nowarnings-perl_0.05.orig.tar.gz.delta | Bin 0 -> 1899 bytes
 libtest2-plugin-nowarnings-perl_0.05.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libtest2-plugin-nowarnings-perl_0.05.orig.tar.gz.delta 
b/libtest2-plugin-nowarnings-perl_0.05.orig.tar.gz.delta
new file mode 100644
index 000..c51f9a4
Binary files /dev/null and 
b/libtest2-plugin-nowarnings-perl_0.05.orig.tar.gz.delta differ
diff --git a/libtest2-plugin-nowarnings-perl_0.05.orig.tar.gz.id 
b/libtest2-plugin-nowarnings-perl_0.05.orig.tar.gz.id
new file mode 100644
index 000..35b9b55
--- /dev/null
+++ b/libtest2-plugin-nowarnings-perl_0.05.orig.tar.gz.id
@@ -0,0 +1 @@
+28e1dfe38137c21b7a473c1a4379c7b5e205d6ac

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

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


[libtest2-plugin-nowarnings-perl] annotated tag upstream/0.05 created (now 7780ef6)

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

gregoa pushed a change to annotated tag upstream/0.05
in repository libtest2-plugin-nowarnings-perl.

at  7780ef6   (tag)
   tagging  d13ba65b56d7d920c89078d7da35795c59f8a9b8 (commit)
  replaces  upstream/0.04
 tagged by  gregor herrmann
on  Tue Nov 15 20:25:46 2016 +0100

- Log -
Upstream version 0.05

Dave Rolsky (3):
  Bump version after release
  Skip compile.t on Windows
  v0.05

gregor herrmann (1):
  New upstream version 0.05

---

No new revisions were added by this update.

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

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


[libtest2-plugin-nowarnings-perl] 03/03: releasing package libtest2-plugin-nowarnings-perl version 0.05-1

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

gregoa pushed a commit to branch master
in repository libtest2-plugin-nowarnings-perl.

commit ed0da27e2505b2f2f235d4210185c42eca196f4f
Author: gregor herrmann 
Date:   Tue Nov 15 20:27:49 2016 +0100

releasing package libtest2-plugin-nowarnings-perl version 0.05-1
---
 debian/changelog | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 9daffbc..eab7262 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
-libtest2-plugin-nowarnings-perl (0.05-1) UNRELEASED; urgency=medium
+libtest2-plugin-nowarnings-perl (0.05-1) unstable; urgency=medium
 
-  * Import upstream version 0.05
+  * Team upload.
+  * Import upstream version 0.05.
 
- -- gregor herrmann   Tue, 15 Nov 2016 20:25:46 +0100
+ -- gregor herrmann   Tue, 15 Nov 2016 20:26:36 +0100
 
 libtest2-plugin-nowarnings-perl (0.04-1) unstable; urgency=medium
 

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

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


[libtest2-plugin-nowarnings-perl] 01/03: Merge tag 'upstream/0.05'

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

gregoa pushed a commit to branch master
in repository libtest2-plugin-nowarnings-perl.

commit 8f3d4a3b33b338db3676e0c87472732798422e4b
Merge: 5be76e1 d13ba65
Author: gregor herrmann 
Date:   Tue Nov 15 20:25:46 2016 +0100

Merge tag 'upstream/0.05'

Upstream version 0.05

 CONTRIBUTING.md|  2 +-
 Changes|  6 
 META.json  | 78 +++---
 META.yml   | 76 +++-
 Makefile.PL|  2 +-
 README.md  |  2 +-
 lib/Test2/Event/Warning.pm |  4 +--
 lib/Test2/Plugin/NoWarnings.pm |  4 +--
 t/compile.t|  2 ++
 xt/author/pod-spell.t  |  2 +-
 10 files changed, 87 insertions(+), 91 deletions(-)

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

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


[libtest-exception-lessclever-perl] annotated tag debian/0.008-1 created (now 505cd84)

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

gregoa pushed a change to annotated tag debian/0.008-1
in repository libtest-exception-lessclever-perl.

at  505cd84   (tag)
   tagging  943cf3c0e964a3f269dcaf8fa3c3a67038c0690b (commit)
  replaces  debian/0.007-1
 tagged by  gregor herrmann
on  Tue Nov 15 20:37:25 2016 +0100

- Log -
tagging package libtest-exception-lessclever-perl version debian/0.008-1
-BEGIN PGP SIGNATURE-

iQKTBAABCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlgrY/VfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgYTew/8C7srf1X5r/Ssh0JIgpakxuKYM+2L95DDanw0R+2mUxOftxhzSUBrC2I3
Xag9d8aWdjYfZu4Nmz4tmqmnmLJFgXcOuKQXkrMyyv1jRjDWmqlWUcJqnDfoEZv6
RIUQo07a3Ttoj5Mn+Kxgr4PFWHxjs+C3zwX2PfrVxo0sLeKpCa/sH2eLFkyupApb
qZJK8PCU8C6Pc1h6oBGC5mG1ZDUa90Fs7nDJjrCfGWOzUiXPm0vC92EQvB4wlMN1
0mA/LvKrXs63Hhg66MMeYLgX39Ilg4oaygHaaoWbLTLjvIxBeqbX7H3xVThxdqzt
Y/aXt2aTjGRFU1tfv216KbvQ1a/ljkPkRWqafxw8imtphEe50YYwmuLzsDHMb2AZ
yVeWy+eCAeGBBs7DT8oXC3IcSXzkfiQ8a7IoQ1cl+ghSyqXIB2U4Vzmoz7odZi3x
VpSMP066h6iey2G81n5kYwrXZoOsifE09QRq+I81K7F0cm4yEBs+NYZuiZXkfqw3
v8HNRN/JPLE3oDjh+j4KdGwMF+gEi8tuaOr/PMcPMnIkbGVCZa/XWI9lDNrrV/66
LpObtYXXt2DPMNLy1BfUWWU+0RdOnPMIIELIeqRDob18+VPaEYifCJkmwhYo5pFR
jJ7V4gI6yJORUvpWmQbtDI8tMPJgcERdDj6qBI8xDiYzTWyu4sI=
=Noie
-END PGP SIGNATURE-

Chad Granum (13):
  Initial Commit
  Add readme
  Fixed $0 meta errors in windows - thanks Schwern
  Fix another windows test failure
  Final windows fix
  Fix perl 5.13+ testing
  Update for perl 5.14
  Merge pull request #2 from dsteinbrunner/patch-1
  Merge pull request #3 from dsteinbrunner/patch-2
  Deprecate
  Merge pull request #5 from choroba/master
  Version Bump
  Final release

David Steinbrunner (2):
  typo fixes
  Added repository cpan metadata

E. Choroba (1):
  Deprecate properly

gregor herrmann (7):
  New upstream version 0.008
  Merge tag 'upstream/0.008'
  Update debian/changelog
  Update years of packaging copyright.
  Fix version of libmodule-build-perl build dependency.
  Add deprecation notice to long description.
  releasing package libtest-exception-lessclever-perl version 0.008-1

---

This annotated tag includes the following new commits:

   new  ae72d81   Merge tag 'upstream/0.008'
   new  e22b994   Update debian/changelog
   new  c553edb   Update years of packaging copyright.
   new  592abab   Fix version of libmodule-build-perl build dependency.
   new  e356350   Add deprecation notice to long description.
   new  943cf3c   releasing package libtest-exception-lessclever-perl 
version 0.008-1

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


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

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


[libtest-exception-lessclever-perl] 04/06: Fix version of libmodule-build-perl build dependency.

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

gregoa pushed a commit to branch master
in repository libtest-exception-lessclever-perl.

commit 592ababc1ec2d3ebe7ca3793d2b2f5c2dd9d585c
Author: gregor herrmann 
Date:   Tue Nov 15 20:35:12 2016 +0100

Fix version of libmodule-build-perl build dependency.
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 999f4ca..02d69f0 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,7 @@ Section: perl
 Testsuite: autopkgtest-pkg-perl
 Priority: optional
 Build-Depends: debhelper (>= 9),
-   libmodule-build-perl (>= 0.42),
+   libmodule-build-perl (>= 0.42),
perl
 Build-Depends-Indep: libmock-quick-perl
 Standards-Version: 3.9.8

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

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


[libtest-exception-lessclever-perl] 06/06: releasing package libtest-exception-lessclever-perl version 0.008-1

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

gregoa pushed a commit to branch master
in repository libtest-exception-lessclever-perl.

commit 943cf3c0e964a3f269dcaf8fa3c3a67038c0690b
Author: gregor herrmann 
Date:   Tue Nov 15 20:37:25 2016 +0100

releasing package libtest-exception-lessclever-perl version 0.008-1
---
 debian/changelog | 9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index fb67bec..c3067ad 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,11 @@
-libtest-exception-lessclever-perl (0.008-1) UNRELEASED; urgency=medium
+libtest-exception-lessclever-perl (0.008-1) unstable; urgency=medium
 
-  * Import upstream version 0.008
+  * Import upstream version 0.008.
+  * Update years of packaging copyright.
+  * Fix version of libmodule-build-perl build dependency.
+  * Add deprecation notice to long description.
 
- -- gregor herrmann   Tue, 15 Nov 2016 20:33:56 +0100
+ -- gregor herrmann   Tue, 15 Nov 2016 20:36:18 +0100
 
 libtest-exception-lessclever-perl (0.007-1) unstable; urgency=medium
 

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

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


[libtest-exception-lessclever-perl] branch master updated (f1bb3ff -> 943cf3c)

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

gregoa pushed a change to branch master
in repository libtest-exception-lessclever-perl.

  from  f1bb3ff   release libtest-exception-lessclever-perl version 0.007-1
  adds  a8bab78   Initial Commit
  adds  b8ff488   Add readme
  adds  8d0ab1f   Fixed $0 meta errors in windows - thanks Schwern
  adds  d9d3905   Fix another windows test failure
  adds  426b73e   Final windows fix
  adds  f8ba190   Fix perl 5.13+ testing
  adds  bc5cf48   Update for perl 5.14
  adds  0345fd5   typo fixes
  adds  fa0e5f5   Merge pull request #2 from dsteinbrunner/patch-1
  adds  5617519   Added repository cpan metadata
  adds  134af98   Merge pull request #3 from dsteinbrunner/patch-2
  adds  31b3dab   Deprecate
  adds  d7d6eb9   Deprecate properly
  adds  add9f06   Merge pull request #5 from choroba/master
  adds  5983782   Version Bump
  adds  c5df6cc   Final release
  adds  79dfd33   New upstream version 0.008
   new  ae72d81   Merge tag 'upstream/0.008'
   new  e22b994   Update debian/changelog
   new  c553edb   Update years of packaging copyright.
   new  592abab   Fix version of libmodule-build-perl build dependency.
   new  e356350   Add deprecation notice to long description.
   new  943cf3c   releasing package libtest-exception-lessclever-perl 
version 0.008-1

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


Summary of changes:
 Build.PL |  1 +
 META.json| 10 ++
 META.yml | 10 ++
 README   |  2 +-
 debian/changelog |  9 +
 debian/control   |  4 +++-
 debian/copyright |  2 +-
 lib/Test/Exception/LessClever.pm |  4 ++--
 8 files changed, 29 insertions(+), 13 deletions(-)
 mode change 100644 => 100755 Build.PL

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

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


[libtest-exception-lessclever-perl] 03/06: Update years of packaging copyright.

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

gregoa pushed a commit to branch master
in repository libtest-exception-lessclever-perl.

commit c553edbbff7a85582e35cfd5c5afd8448013ea4c
Author: gregor herrmann 
Date:   Tue Nov 15 20:34:36 2016 +0100

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

diff --git a/debian/copyright b/debian/copyright
index 7ff9f78..ad78ca8 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -8,7 +8,7 @@ Copyright: 2010, Chad Granum 
 License: Artistic or GPL-1+
 
 Files: debian/*
-Copyright: 2012-2015, gregor herrmann 
+Copyright: 2012-2016, gregor herrmann 
 License: Artistic or GPL-1+
 
 License: Artistic

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

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


[libtest-exception-lessclever-perl] annotated tag upstream/0.008 created (now cf52ed6)

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

gregoa pushed a change to annotated tag upstream/0.008
in repository libtest-exception-lessclever-perl.

at  cf52ed6   (tag)
   tagging  79dfd33276742e2d2255568b150eccfaa4ed15fc (commit)
  replaces  upstream/0.007
 tagged by  gregor herrmann
on  Tue Nov 15 20:33:56 2016 +0100

- Log -
Upstream version 0.008

Chad Granum (13):
  Initial Commit
  Add readme
  Fixed $0 meta errors in windows - thanks Schwern
  Fix another windows test failure
  Final windows fix
  Fix perl 5.13+ testing
  Update for perl 5.14
  Merge pull request #2 from dsteinbrunner/patch-1
  Merge pull request #3 from dsteinbrunner/patch-2
  Deprecate
  Merge pull request #5 from choroba/master
  Version Bump
  Final release

David Steinbrunner (2):
  typo fixes
  Added repository cpan metadata

E. Choroba (1):
  Deprecate properly

gregor herrmann (1):
  New upstream version 0.008

---

No new revisions were added by this update.

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

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


[libtest-exception-lessclever-perl] 05/06: Add deprecation notice to long description.

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

gregoa pushed a commit to branch master
in repository libtest-exception-lessclever-perl.

commit e356350597ed9cf9255b18642b47b5c42bb17828
Author: gregor herrmann 
Date:   Tue Nov 15 20:36:04 2016 +0100

Add deprecation notice to long description.
---
 debian/control | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/debian/control b/debian/control
index 02d69f0..c5c9d6d 100644
--- a/debian/control
+++ b/debian/control
@@ -23,3 +23,5 @@ Description: simplified Test::Exception alternative
  idea here is to keep it simple. This also solves the Test::Exception bug
  where some dies will be hidden when a DESTROY method calls eval. If a DESTROY
  method masks $@ a warning will be generated as well.
+ .
+ This module is deprecated.

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

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


[libtest-exception-lessclever-perl] 01/01: pristine-tar data for libtest-exception-lessclever-perl_0.008.orig.tar.gz

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

gregoa pushed a commit to branch pristine-tar
in repository libtest-exception-lessclever-perl.

commit 27a4054f8eaa280469aa3c7108e9da0ee68e4398
Author: gregor herrmann 
Date:   Tue Nov 15 20:33:56 2016 +0100

pristine-tar data for libtest-exception-lessclever-perl_0.008.orig.tar.gz
---
 ...est-exception-lessclever-perl_0.008.orig.tar.gz.delta | Bin 0 -> 6990 bytes
 libtest-exception-lessclever-perl_0.008.orig.tar.gz.id   |   1 +
 2 files changed, 1 insertion(+)

diff --git a/libtest-exception-lessclever-perl_0.008.orig.tar.gz.delta 
b/libtest-exception-lessclever-perl_0.008.orig.tar.gz.delta
new file mode 100644
index 000..dab9acc
Binary files /dev/null and 
b/libtest-exception-lessclever-perl_0.008.orig.tar.gz.delta differ
diff --git a/libtest-exception-lessclever-perl_0.008.orig.tar.gz.id 
b/libtest-exception-lessclever-perl_0.008.orig.tar.gz.id
new file mode 100644
index 000..b2d1bb7
--- /dev/null
+++ b/libtest-exception-lessclever-perl_0.008.orig.tar.gz.id
@@ -0,0 +1 @@
+e4d8b9e39ffb68153312321537456e137d2639f0

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

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


[libtest-exception-lessclever-perl] 01/06: Merge tag 'upstream/0.008'

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

gregoa pushed a commit to branch master
in repository libtest-exception-lessclever-perl.

commit ae72d8195b20c44467e028c1aee5a823303d9742
Merge: f1bb3ff 79dfd33
Author: gregor herrmann 
Date:   Tue Nov 15 20:33:56 2016 +0100

Merge tag 'upstream/0.008'

Upstream version 0.008

 Build.PL |  1 +
 META.json| 10 ++
 META.yml | 10 ++
 README   |  2 +-
 lib/Test/Exception/LessClever.pm |  4 ++--
 5 files changed, 16 insertions(+), 11 deletions(-)

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

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


[libtest-exception-lessclever-perl] branch pristine-tar updated (018eadc -> 27a4054)

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

gregoa pushed a change to branch pristine-tar
in repository libtest-exception-lessclever-perl.

  from  018eadc   pristine-tar data for 
libtest-exception-lessclever-perl_0.007.orig.tar.gz
   new  27a4054   pristine-tar data for 
libtest-exception-lessclever-perl_0.008.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:
 ...est-exception-lessclever-perl_0.008.orig.tar.gz.delta | Bin 0 -> 6990 bytes
 libtest-exception-lessclever-perl_0.008.orig.tar.gz.id   |   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libtest-exception-lessclever-perl_0.008.orig.tar.gz.delta
 create mode 100644 libtest-exception-lessclever-perl_0.008.orig.tar.gz.id

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

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


[libtest-exception-lessclever-perl] 02/06: Update debian/changelog

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

gregoa pushed a commit to branch master
in repository libtest-exception-lessclever-perl.

commit e22b994f7475ebb538d163243efd445200b000ad
Author: gregor herrmann 
Date:   Tue Nov 15 20:33:56 2016 +0100

Update debian/changelog

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

diff --git a/debian/changelog b/debian/changelog
index 1c1107a..fb67bec 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libtest-exception-lessclever-perl (0.008-1) UNRELEASED; urgency=medium
+
+  * Import upstream version 0.008
+
+ -- gregor herrmann   Tue, 15 Nov 2016 20:33:56 +0100
+
 libtest-exception-lessclever-perl (0.007-1) unstable; urgency=medium
 
   * Team upload.

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

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


[libparams-validationcompiler-perl] 03/05: Update (build) dependencies.

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

gregoa pushed a commit to branch master
in repository libparams-validationcompiler-perl.

commit fd28d42f5f8bce7d5ba3e38c265eb8951982331f
Author: gregor herrmann 
Date:   Tue Nov 15 20:45:27 2016 +0100

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

diff --git a/debian/control b/debian/control
index 9d742b8..b05bd90 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,8 @@ Build-Depends-Indep: libeval-closure-perl,
  libtest2-plugin-nowarnings-perl,
  libtest2-suite-perl,
  libtype-tiny-perl,
- perl
+ perl,
+ perl (>= 5.19.3) | libscalar-list-utils-perl (>= 1:1.29)
 Standards-Version: 3.9.8
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libparams-validationcompiler-perl.git
 Vcs-Git: 
https://anonscm.debian.org/git/pkg-perl/packages/libparams-validationcompiler-perl.git
@@ -24,7 +25,8 @@ Architecture: all
 Depends: ${misc:Depends},
  ${perl:Depends},
  libeval-closure-perl,
- libexception-class-perl
+ libexception-class-perl,
+ perl (>= 5.19.3) | libscalar-list-utils-perl (>= 1:1.29)
 Description: Module to build an optimized subroutine parameter validator
  Params::ValidationCompiler creates a customized, optimized, non-lobotomized,
  uncompromised, and thoroughly specialized parameter checking subroutine.

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

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


[libparams-validationcompiler-perl] 04/05: Update long description

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

gregoa pushed a commit to branch master
in repository libparams-validationcompiler-perl.

commit b4b9439ba3f1f85ca0752c745c63afb2e2c7a09b
Author: gregor herrmann 
Date:   Tue Nov 15 20:47:05 2016 +0100

Update long description

from upstream's improved documentation.
---
 debian/control | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/debian/control b/debian/control
index b05bd90..5d44d74 100644
--- a/debian/control
+++ b/debian/control
@@ -27,9 +27,13 @@ Depends: ${misc:Depends},
  libeval-closure-perl,
  libexception-class-perl,
  perl (>= 5.19.3) | libscalar-list-utils-perl (>= 1:1.29)
-Description: Module to build an optimized subroutine parameter validator
- Params::ValidationCompiler creates a customized, optimized, non-lobotomized,
- uncompromised, and thoroughly specialized parameter checking subroutine.
+Description: module to build an optimized subroutine parameter validator
+ Params::ValidationCompiler creates a customized, highly efficient parameter
+ checking subroutine. It can handle named or positional parameters, and can
+ return the parameters as key/value pairs or a list of values.
+ .
+ In addition to type checks, it also supports parameter defaults, optional
+ parameters, and extra "slurpy" parameters.
  .
  A parameter specification can be provided as either an arrayref (which expects
  positional params) or a hashref (which expects named params). Parameter types

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

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


[libparams-validationcompiler-perl] 05/05: releasing package libparams-validationcompiler-perl version 0.18-1

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

gregoa pushed a commit to branch master
in repository libparams-validationcompiler-perl.

commit 923999e2b2c1fc70b694b65dcaa4263aba55b064
Author: gregor herrmann 
Date:   Tue Nov 15 20:50:20 2016 +0100

releasing package libparams-validationcompiler-perl version 0.18-1
---
 debian/changelog | 9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 7d41818..b7d62c8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,11 @@
-libparams-validationcompiler-perl (0.18-1) UNRELEASED; urgency=medium
+libparams-validationcompiler-perl (0.18-1) unstable; urgency=medium
 
-  * Import upstream version 0.18
+  * Team upload.
+  * Import upstream version 0.18.
+  * Update (build) dependencies.
+  * Update long description from upstream's improved documentation.
 
- -- gregor herrmann   Tue, 15 Nov 2016 20:42:31 +0100
+ -- gregor herrmann   Tue, 15 Nov 2016 20:47:45 +0100
 
 libparams-validationcompiler-perl (0.13-1) unstable; urgency=low
 

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

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


[libparams-validationcompiler-perl] 01/05: Merge tag 'upstream/0.18'

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

gregoa pushed a commit to branch master
in repository libparams-validationcompiler-perl.

commit 7ad83ec25a5662a6498f7792e50fca7622e49a59
Merge: 023ea6b 5f415aa
Author: gregor herrmann 
Date:   Tue Nov 15 20:42:31 2016 +0100

Merge tag 'upstream/0.18'

Upstream version 0.18

 CONTRIBUTING.md |   2 +-
 Changes |  43 +
 MANIFEST|   8 +-
 META.json   | 249 +---
 META.yml| 220 +++--
 Makefile.PL |   8 +-
 README.md   |  95 +++--
 cpanfile|   9 +-
 dist.ini|   1 +
 lib/Params/ValidationCompiler.pm|  99 --
 lib/Params/ValidationCompiler/Compiler.pm   | 286 +++-
 lib/Params/ValidationCompiler/Exceptions.pm |   6 +-
 t/00-report-prereqs.dd  |   9 +-
 t/moose.t   |  27 +++
 t/named/const-hash.t|   7 +-
 t/pairs-to-value-list.t |  39 
 t/positional/default.t  |  49 +
 t/self-check.t  |  31 ++-
 tidyall.ini |   3 +
 xt/author/00-compile.t  |  12 +-
 xt/author/eol.t |   2 +
 xt/author/no-tabs.t |   2 +
 xt/author/pod-no404s.t  |  21 --
 xt/author/pod-spell.t   |  24 ++-
 xt/{release => author}/tidyall.t|   3 +-
 xt/release/pod-linkcheck.t  |  20 --
 26 files changed, 889 insertions(+), 386 deletions(-)

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

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


[libparams-validationcompiler-perl] branch master updated (023ea6b -> 923999e)

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

gregoa pushed a change to branch master
in repository libparams-validationcompiler-perl.

  from  023ea6b   Releasing package libparams-validationcompiler-perl 
version 0.13-1
  adds  38b535d   Work in progress on a new parameter checking tool
  adds  081e389   Rename basic.t to required.t
  adds  612a158   Add support for Type::Tiny
  adds  0b31f8a   Add support for Moose types
  adds  77c5cf6   Add develop prereqs
  adds  21a8442   Add .travis.yml
  adds  cd16632   Add a $VERSION everywhere
  adds  1f6138a   Add .gitignore
  adds  f9aaab9   Add generated files
  adds  0525ffc   Remove double $myint definition
  adds  4555ee1   Make tidy & critic happy
  adds  860a68a   Skip Test::CleanNamespaces and add stopwords
  adds  4fb6218   Instead of ok(lives { }) use is(dies { }, undef)
  adds  a98538a   Add support for Specio
  adds  e71b80e   Remove debugging cruft
  adds  c796947   Allow spec to be 1 or 0 for required/optional
  adds  f0c1965   Add support for defaults
  adds  867415c   Test with Perl 5.24
  adds  d08450d   Use 5.24 for coverage
  adds  04eb3e6   Tidyall code
  adds  62e45cc   Rename "unknown" to "extra" and test returning of extra 
params
  adds  2048595   Don't check exists twice for required parameters
  adds  b27c92f   Require Types::Standard
  adds  3f91332   Require Specio 0.14 as a develop prereq
  adds  0b58d10   Optimize Specio constraints that don't have coercions
  adds  fe4736c   Add some benchmarks
  adds  a03cdad   Implement checks for various types of incorrect arguments 
(non hashref, odd number, etc.)
  adds  ca0e62c   Enable Test2::Plugin::NoWarnings for all tests
  adds  10b7e46   Make critic happy
  adds  b89243a   Add very minimal docs
  adds  70f899b   v0.01
  adds  ed84e1a   Bump version after release
  adds  b21109d   Add support for positional params and for type checking 
extra params (named or pos)
  adds  32c121d   Rename allow_extra to slurpy
  adds  e857e23   Use Types::Standard in SYNOPSIS instead of MX::Types
  adds  95c16d8   Add a benchmark for positional params
  adds  5561c55   Add slurpy to stopwords
  adds  959afef   Doc slurpy in Changes
  adds  d37b4de   v0.02
  adds  73bd9c2   Bump version after release
  adds  9442303   Sort keys when checking named params
  adds  76804ff   Use Sub::Name to optionally name generated subs
  adds  3d9cb70   Make sure Moose is not in test prereqs
  adds  e360505   v0.03
  adds  b70d377   Bump version after release
  adds  11ab36f   Remove more accidental test prereqs
  adds  fe17b16   Replace Throwable with Exception::Class
  adds  88eacda   v0.04
  adds  1e0e4f0   Bump version after release
  adds  325e507   Remove use of Moo
  adds  afc1c13   v0.05
  adds  d37fd42   Bump version after release
  adds  f58b3a9   Require Type::Tiny for tests
  adds  9220d39   Fix for Moose without Devel::PartialDump installed
  adds  84e2c17   v0.06
  adds  dfdce66   Bump version after release
  adds  17c14df   Make the named params check sub die if given an object as 
a single arg
  adds  f1a2153   Rename compile() to validation_for()
  adds  5d9de32   Do not check .t files with Test::Vars
  adds  5c8dbbf   v0.07
  adds  b17c23d   Bump version after release
  adds  4cb0c06   Replace pointless use of reftype with ref
  adds  edd892b   Rename distro to Params-ValidationCompiler
  adds  c109ea3   Make Sub::Name optional
  adds  cd30c3d   v0.08
  adds  527e267   Bump version after release
  adds  ae3c819   Make sure Sub::Name doesn't show up as a runtime prereq
  adds  8243670   v0.09
  adds  a87f981   Bump version after release
  adds  9722e41   Validate parameters to 
Params::ValidationCompiler::Compiler->new
  adds  be11c18   Include the param name that failed when a Moose type 
check fails
  adds  9965d04   Small SYNOPSIS tweak
  adds  2037334   v0.10
  adds  063d806   Bump version after release
  adds  83bc363   Replace Sub::Name with Sub::Util
  adds  4fceb59   v0.11
  adds  b8716df   Bump version after release
  adds  95a9f6a   Require Specio for tests instead of Type::Tiny
  adds  40e54df   No need for Moose::Util::TypeConstraint in self-check.t
  adds  8198b43   v0.12
  adds  74b8b87   Bump version after release
  adds  f8b428e   Handle both readonly & locked hashes in validation_for 
and test generated code
  adds  b7a7c5f   Disable Test2::Harness preload for name-fails.t
  adds  a795993   Remove List::SomeUtils prereq
  adds  e271a75   Show that we get eval_closure from Eval::Closure
  adds  796c0b3   Add name_is_optional parameter
  adds  8befbac   Make sure Const::Fast does not show up as a test prereq
  adds  

[libparams-validationcompiler-perl] annotated tag debian/0.18-1 created (now f562df5)

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

gregoa pushed a change to annotated tag debian/0.18-1
in repository libparams-validationcompiler-perl.

at  f562df5   (tag)
   tagging  923999e2b2c1fc70b694b65dcaa4263aba55b064 (commit)
  replaces  upstream/0.18
 tagged by  gregor herrmann
on  Tue Nov 15 20:50:20 2016 +0100

- Log -
tagging package libparams-validationcompiler-perl version debian/0.18-1
-BEGIN PGP SIGNATURE-

iQKTBAABCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlgrZvxfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgbygRAAieF6mXMmUUMfcmhVh+UcXEM7obamkKAphwqYMEJuDySsERz4H9x2Bt02
OztafZJHzO9MNx6FIeqDgZUlIVgoz5gWRHwbs1M20QmsM+SEXZw+WZQLtzhP02zu
63gVYdFcgVKSZQfOCNudhP3sgTGrh//T9ltAlsoHv1gkKLq0ksDH8h2FRfivv8mi
SuF6aNKDObnRAHK2viLv3YpdYu9knaRcEpyAdwQMB07DcAhSubZB22ckKW/Pumli
I4CAjNpFyCRqW9e3H2EFwbtKcTOhz7TnVVZDF9a//WSlBhyfRBg2kVtbrqBw24yn
xlKZrph3sZpxBfhZXuV1xbCbf3gWjRYZDaS5+38e+stTRahycAA7sq6lWN8cxOvm
72GvwLjpCqb9JNt9/fk6TQZfpuceimQQnFRfQpajbhQQKEGx4wKkOfQgwunVDzeX
fFo0HtT4C6ljd50c+VXsq+I5jRFOU30MxyCxVz+5+JwGDkOTQLNxXmj2WnZLFn/i
PExzN0lgPXi4UBQ375Uh4utAFi3Pc3CNu5xdn2j1HOaCmuJmVqRHSchnhTpKtLb1
2Q4Juke1th09ewZ5NxjLAk8PEE3IbfVuq8cM7z6hBvOi4m2/6mmgSpeQ4JoLZUuE
btLPq5h8ROP/4mFDNA/qLFMlxi8NeAJRI4jq1E92rU9aM9vdcNs=
=Nyy/
-END PGP SIGNATURE-

Nick Morrott (8):
  Initial packaging by dh-make-perl 0.91
  d/copyright
  d/libparams-validationcompiler-perl.docs
  d/u/metadata
  d/control
  d/tests/pkg-perl/smoke-tests
  d/libparams-validationcompiler-perl.lintian-overrides
  Releasing package libparams-validationcompiler-perl version 0.13-1

gregor herrmann (5):
  Merge tag 'upstream/0.18'
  Update debian/changelog
  Update (build) dependencies.
  Update long description
  releasing package libparams-validationcompiler-perl version 0.18-1

---

This annotated tag includes the following new commits:

   new  7ad83ec   Merge tag 'upstream/0.18'
   new  f083cad   Update debian/changelog
   new  fd28d42   Update (build) dependencies.
   new  b4b9439   Update long description
   new  923999e   releasing package libparams-validationcompiler-perl 
version 0.18-1

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

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


[libparams-validationcompiler-perl] 02/05: Update debian/changelog

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

gregoa pushed a commit to branch master
in repository libparams-validationcompiler-perl.

commit f083cad4463cd14829418174b7a070ad4e496a6c
Author: gregor herrmann 
Date:   Tue Nov 15 20:42:31 2016 +0100

Update debian/changelog

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

diff --git a/debian/changelog b/debian/changelog
index 8068f59..7d41818 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libparams-validationcompiler-perl (0.18-1) UNRELEASED; urgency=medium
+
+  * Import upstream version 0.18
+
+ -- gregor herrmann   Tue, 15 Nov 2016 20:42:31 +0100
+
 libparams-validationcompiler-perl (0.13-1) unstable; urgency=low
 
   * Initial Release. (Closes: #838612)

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

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


[perlbrew] annotated tag debian/0.77-1 created (now 1a789f3)

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

gregoa pushed a change to annotated tag debian/0.77-1
in repository perlbrew.

at  1a789f3   (tag)
   tagging  e098f692691d6d6512ae8fb507fd143291eb0436 (commit)
  replaces  upstream/0.77
 tagged by  gregor herrmann
on  Tue Nov 15 20:20:52 2016 +0100

- Log -
tagging package perlbrew version debian/0.77-1
-BEGIN PGP SIGNATURE-

iQKTBAABCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlgrYBRfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgbgfw//UwPp1Py8Q4dnGJ7Ja3pyK9Cx+gPJLFJh3dtfVC/RJGfYLjhZa37LWWGe
IrQ/uU16lFNwFCc48kRNplsDMeHlCzfshGfXxKAibIkt/K78/WeLquH10ofu6Jyl
4WgEn4F5UAohA64/nabS+6SWsRXQaO/6YhBlJ/g2I8EsGru+YMGDbXeQOiBc/2IW
W35J9R+SsPgBTN6xXJs5yucHcmV2uiTQvdo0QRWboJ662nx/eQ71to6Upj2wKhI5
HX7U6QbjYuPABrQ+xjyZqAagkVBtQMnv9BKeFVaQgkd2+SwyqyPHYgUoOXaPid6K
qEXY0Aqpvb122GFSiaATGHettqdZfBNnr5QzgowhHqOteUeyqdoM2jgVyF1a+7jJ
WGa53NiupBDEFtDCyY/wYjqSF+krBAB460ATE9xqqd0fVlcR2qWDEHRA6uBhADAC
pmY+pIONO/BUtSiFJ9BUg8p7d552ZYIwTfnd2K743BRXUqKExc8qvareKNZN4SI6
sEuLOP3XZRn7Tw9mLgdwWDnKZ57uxXI+hsDPfTdxl3Cciaup4iF5FrVdJsKsD17C
7NjVwy16++uFClBy9Is5JoqHlQvLCCZqaCjjWoj6sR5Wx4WK1v627sZQC7ry8et5
B6zgIuU/lz/eTZEWBc+iTU+l09QekKvtpoyMth+JmBLC+c4ZArQ=
=X+1A
-END PGP SIGNATURE-

Alessandro Ghedini (110):
  * New upstream release
  release to unstable
  New upstream release
  release to unstable
  new upstream release
  Bump Standards-Version to 3.9.2 (no changes needed)
  release to unstable
  New upstream release
  release to unstable
  New upstream release
  release to unstable
  * New upstream release
  fix typo in B-D-I
  Add libio-all-perl, libtry-tiny-perl, libpath-class-perl and
  release to unstable
  * New upstream release
  release to unstable
  WAITS-FOR: libtest-spec-perl
  add libtest-spec-perl to B-D-I
  release to unstable
  New upstream release
  add todo notice
  New upstream release
  release to unstable
  Merge commit 'upstream/0.28'
  New upstream release
  (Build-)Depends on libfile-path-tiny-perl
  Finalize changelog
  Add make and gcc to Depends (Closes: #638655)
  Finalize changelog
  Merge commit 'upstream/0.29'
  New upstream release
  Build depends on libtest-simple-perl (>= 0.98)
  Add also libc-dev to Depends (needed to build perl)
  Finalize changelog
  Switch order of new (Build-)Depends
  Finalize changelog
  Merge commit 'upstream/0.30'
  New upstream release
  Add liblocal-lib-perl and libtext-levenshtein-perl to 
(Build-)Depends(-Indep)
  Finalize changelog
  Fix long description (Closes: #645390)
  Finalize changelog
  Merge commit 'upstream/0.31'
  New upstream release
  Remove libtext-levenshtein-perl from (B-)D(-I)
  Add perl-doc to B-D-I and Recommends
  Finalize changelog
  Merge commit 'upstream/0.32'
  New upstream release
  Ignore version, no functional changes
  Merge commit 'upstream/0.33'
  New upstream release
  Ignore version, no functional changes
  Merge commit 'upstream/0.35'
  New upstream release
  (Build-)Depends on liblocal-lib-perl >= 1.008000
  Add fix-typo patch
  Finalize changelog
  Merge commit 'upstream/0.36'
  New upstream release
  Remove fix-typo.patch (merged upstream)
  Update changelog
  Merge commit 'upstream/0.37'
  New upstream release
  Add libcapture-tiny-perl to (Build-)Depends(-Indep)
  Finalize changelog
  Merge commit 'upstream/0.39'
  New upstream release
  Finalize changelog
  Merge tag 'upstream/0.42'
  New upstream release
  Update debian/copyright format as in Debian Policy 3.9.3
  Bump Standards-Version to 3.9.3
  Update copyright years for inc/Module/*
  Finalize changelog
  Email change: Alessandro Ghedini -> gh...@debian.org
  Merge tag 'upstream/0.43'
  New upstream release
  Update versioned (build) depends on libcapture-tiny-perl
  Finalize changelog
  Merge tag 'upstream/0.46'
  New upstream release
  Finalize changelog
  Merge tag 'upstream/0.50'
  New upstream release
  Update versioned (Build-)Depends
  Update changelog
  Add fix-spelling.patch
  Finalize changelog
  Merge tag 'upstream/0.51'
  New upstream release
  Bump versioned (build) depends on libcapture-tiny-perl and 
libcpan-perl-releases-perl
  Bump Standards-Version to 3.9.4 (no changes needed)
  Update changelog
  Finalize changelog
  Merge tag 'upstream/0.55'
  New upstream release
  libfile-path-tiny-perl is no longer required
  Bump versioned (build) depends libcpan-perl-releases-perl
  Drop fix-spelling.patch (no more needed)
  

[perlbrew] branch pristine-tar updated (5f5855d -> 2048914)

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

gregoa pushed a change to branch pristine-tar
in repository perlbrew.

  from  5f5855d   pristine-tar data for perlbrew_0.76.orig.tar.gz
   new  2048914   pristine-tar data for perlbrew_0.77.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:
 perlbrew_0.77.orig.tar.gz.delta | Bin 0 -> 90236 bytes
 perlbrew_0.77.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 perlbrew_0.77.orig.tar.gz.delta
 create mode 100644 perlbrew_0.77.orig.tar.gz.id

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

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


[perlbrew] 01/06: Merge tag 'upstream/0.77'

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

gregoa pushed a commit to branch master
in repository perlbrew.

commit 1f068e7d2292532476682a069d623f865adca7ab
Merge: e790e7b 0cfee62
Author: gregor herrmann 
Date:   Tue Nov 15 20:07:33 2016 +0100

Merge tag 'upstream/0.77'

Upstream version 0.77

 Changes|  6 ++
 META.yml   |  4 ++--
 inc/Module/Install.pm  | 35 ++-
 inc/Module/Install/Base.pm |  2 +-
 inc/Module/Install/Can.pm  | 13 ++--
 inc/Module/Install/Fetch.pm|  2 +-
 inc/Module/Install/Makefile.pm |  2 +-
 inc/Module/Install/Metadata.pm |  2 +-
 inc/Module/Install/Scripts.pm  |  2 +-
 inc/Module/Install/Win32.pm|  2 +-
 inc/Module/Install/WriteAll.pm |  2 +-
 lib/App/perlbrew.pm| 43 --
 t/13.perl_release.t|  2 +-
 t/17.release-detail-cperl-remote.t |  8 +++
 14 files changed, 69 insertions(+), 56 deletions(-)

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

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


  1   2   >