r28984 - in /trunk/libdbd-pg-perl: Changes META.yml Makefile.PL Pg.pm README SIGNATURE debian/changelog lib/Bundle/DBD/Pg.pm t/08async.t t/12placeholders.t

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Wed Dec 31 19:05:44 UTC 2008


Author: gregoa
Date: Wed Dec 31 19:05:41 2008
New Revision: 28984

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=28984
Log:
NOTE:
no need to upload, just a minor fix in a test

* New upstream release.

Modified:
    trunk/libdbd-pg-perl/Changes
    trunk/libdbd-pg-perl/META.yml
    trunk/libdbd-pg-perl/Makefile.PL
    trunk/libdbd-pg-perl/Pg.pm
    trunk/libdbd-pg-perl/README
    trunk/libdbd-pg-perl/SIGNATURE
    trunk/libdbd-pg-perl/debian/changelog
    trunk/libdbd-pg-perl/lib/Bundle/DBD/Pg.pm
    trunk/libdbd-pg-perl/t/08async.t
    trunk/libdbd-pg-perl/t/12placeholders.t

Modified: trunk/libdbd-pg-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbd-pg-perl/Changes?rev=28984&op=diff
==============================================================================
--- trunk/libdbd-pg-perl/Changes (original)
+++ trunk/libdbd-pg-perl/Changes Wed Dec 31 19:05:41 2008
@@ -1,6 +1,10 @@
 ('GSM' is Greg Sabino Mullane, greg at turnstep.com)
 
-2.11.7 Released December 13, 2008
+2.11.8 Released December 28, 2008
+
+  - Fix minor bug in t/12placeholders.t test (CPAN bug #41723)
+
+2.11.7 Released December 13, 2008 (subversion r12158)
 
   - Fix placeholder parsing logic (CPAN bug #41582)
 

Modified: trunk/libdbd-pg-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbd-pg-perl/META.yml?rev=28984&op=diff
==============================================================================
--- trunk/libdbd-pg-perl/META.yml (original)
+++ trunk/libdbd-pg-perl/META.yml Wed Dec 31 19:05:41 2008
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name                        : DBD-Pg
-version                     : 2.11.7
+version                     : 2.11.8
 abstract                    : DBI PostgreSQL interface
 author:              
   - Greg Sabino Mullane <greg at turnstep.com>
@@ -39,10 +39,10 @@
 provides:
   DBD::Pg:
     file                    : Pg.pm
-    version                 : 2.11.7
+    version                 : 2.11.8
   Bundle::DBD::Pg:
     file                    : lib/Bundle/DBD/Pg.pm
-    version                 : 2.11.7
+    version                 : 2.11.8
 
 keywords:
   - Postgres

Modified: trunk/libdbd-pg-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbd-pg-perl/Makefile.PL?rev=28984&op=diff
==============================================================================
--- trunk/libdbd-pg-perl/Makefile.PL (original)
+++ trunk/libdbd-pg-perl/Makefile.PL Wed Dec 31 19:05:41 2008
@@ -1,4 +1,4 @@
-# $Id: Makefile.PL 12157 2008-12-13 16:58:36Z turnstep $
+# $Id: Makefile.PL 12161 2008-12-15 18:26:52Z turnstep $
 
 use ExtUtils::MakeMaker;
 use Config;
@@ -7,7 +7,7 @@
 use 5.006001;
 
 ## No version.pm for this one, as the prereqs are not loaded yet.
-my $VERSION = '2.11.7';
+my $VERSION = '2.11.8';
 
 my $lib;
 BEGIN {

Modified: trunk/libdbd-pg-perl/Pg.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbd-pg-perl/Pg.pm?rev=28984&op=diff
==============================================================================
--- trunk/libdbd-pg-perl/Pg.pm (original)
+++ trunk/libdbd-pg-perl/Pg.pm Wed Dec 31 19:05:41 2008
@@ -1,5 +1,5 @@
 #  -*-cperl-*-
-#  $Id: Pg.pm 12157 2008-12-13 16:58:36Z turnstep $
+#  $Id: Pg.pm 12161 2008-12-15 18:26:52Z turnstep $
 #
 #  Copyright (c) 2002-2008 Greg Sabino Mullane and others: see the Changes file
 #  Portions Copyright (c) 2002 Jeffrey W. Baker
@@ -17,7 +17,7 @@
 {
 	package DBD::Pg;
 
-	use version; our $VERSION = qv('2.11.7');
+	use version; our $VERSION = qv('2.11.8');
 
 	use DBI ();
 	use DynaLoader ();
@@ -1703,7 +1703,7 @@
 
 =head1 VERSION
 
-This documents version 2.11.7 of the DBD::Pg module
+This documents version 2.11.8 of the DBD::Pg module
 
 =head1 DESCRIPTION
 

Modified: trunk/libdbd-pg-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbd-pg-perl/README?rev=28984&op=diff
==============================================================================
--- trunk/libdbd-pg-perl/README (original)
+++ trunk/libdbd-pg-perl/README Wed Dec 31 19:05:41 2008
@@ -1,12 +1,12 @@
 
 DBD::Pg  --  the DBI PostgreSQL interface for Perl
 
-# $Id: README 12157 2008-12-13 16:58:36Z turnstep $
+# $Id: README 12161 2008-12-15 18:26:52Z turnstep $
 
 DESCRIPTION:
 ------------
 
-This is version 2.11.7 of DBD::Pg, the Perl interface to Postgres using DBI. 
+This is version 2.11.8 of DBD::Pg, the Perl interface to Postgres using DBI. 
 The web site for this interface, and the latest version, can be found at:
 
 	http://search.cpan.org/dist/DBD-Pg/

Modified: trunk/libdbd-pg-perl/SIGNATURE
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbd-pg-perl/SIGNATURE?rev=28984&op=diff
==============================================================================
--- trunk/libdbd-pg-perl/SIGNATURE (original)
+++ trunk/libdbd-pg-perl/SIGNATURE Wed Dec 31 19:05:41 2008
@@ -15,22 +15,22 @@
 Hash: RIPEMD160
 
 SHA1 2f324889a0b126216bf45a04d74803557c4a404e .perlcriticrc
-SHA1 b76de2d63c091ed89270c2086ff0e4ebfd6c2802 Changes
+SHA1 ef2363a4e3d2cb10822cb79ceea913fd7e2c4e48 Changes
 SHA1 4d91c71e5dbb19ece1505ab75c36d00a744bb076 MANIFEST
 SHA1 6fd98d850a9a67911c047e7f0a8752fd15be98d7 MANIFEST.SKIP
-SHA1 59e79c2f4bf6177f2442a82f3276e74dcff630b6 META.yml
-SHA1 10ed04aa160d2ab23b0e399c22dc0b34167cdb60 Makefile.PL
+SHA1 0f9f3deff3c0408cf816ed80cfde4b779f4a5f34 META.yml
+SHA1 a9d5d86bcfa9d9e06facd5f6cdf04433b4bc5a39 Makefile.PL
 SHA1 c51356c52c139265e20a2ad33bc8d3ee04f6ff48 Pg.h
-SHA1 4ee9b41b85dd8ca450867180cc56fb348cb5ead2 Pg.pm
+SHA1 4278c7a44268b502496ce492e61f547c37fdfaa8 Pg.pm
 SHA1 ff0fb11360e79db3c86e8b312cf58f62c5f19d2d Pg.xs
-SHA1 8f4abad643aa77b17a4452d6ed4ff2b4b553c4e2 README
+SHA1 9fd084c2ce1636b0be747ef2c83ec0ce7540601d README
 SHA1 8f20ecd6822bce2a39504beb087bdd341ace06f4 README.dev
 SHA1 968d5fad61bce160b31a9cb1a21dd240b9df930f README.win32
 SHA1 fe7a42afdeec6a218c45f76e875cc3324b870956 TODO
 SHA1 e7af4e19b3c02046a5e545bc169d5e6b7cf4b39b dbdimp.c
 SHA1 cf577f22e9dc3c591daa32c51ebd83dd38f55a8f dbdimp.h
 SHA1 6c33bcf138e577722283bef02fceb8cbce4d100d dbivport.h
-SHA1 34423f202eba056955cc93616378163ee3a93819 lib/Bundle/DBD/Pg.pm
+SHA1 e4b50b7f1e04a6519e3deaa6e3ac1ba4afa273fe lib/Bundle/DBD/Pg.pm
 SHA1 dbe8b0bd24538a61d4c617848e7fca27fd4ea3eb quote.c
 SHA1 0a1fdd0406c5c367a9aba366d1d35cfa8d5272ae quote.h
 SHA1 93aa7e8cae0a361d1e6163dea0281ebff41f3c5f t/00-signature.t
@@ -43,9 +43,9 @@
 SHA1 910d6c2234d77a74a49cf189b6c799e13bf75280 t/04misc.t
 SHA1 ee7ecab04b202d5cd8816fbb8c2703971161dd53 t/06bytea.t
 SHA1 99aac4b46da5b138c42358854f8f9682b742c44d t/07copy.t
-SHA1 1413c886eaf1714db1cf8abfb989dabfd86dee87 t/08async.t
+SHA1 3aa283c6065bc2a7b734fc4c7d1f21ac79acfdde t/08async.t
 SHA1 5027751944bdca8f0fe63c20c790c4c3beccf433 t/09arrays.t
-SHA1 46e3c5a05ba8a527cdd72fc4c9a392812ded4208 t/12placeholders.t
+SHA1 146b62df6ee672af20cfb377f9c0503bfaaf26f7 t/12placeholders.t
 SHA1 85b5df8ef0c78b1d2d0018d874c62af7ef01a28f t/20savepoints.t
 SHA1 711a85cb938c6aa8a2b4200c0836a7caa397bf9f t/99_perlcritic.t
 SHA1 3b22d5db94ca05d1fa1a8ea25d9c2ce866c36642 t/99_pod.t
@@ -65,7 +65,7 @@
 SHA1 f07cd5ecaeb854c81ceb9206364979cf607e6546 win32.mak
 -----BEGIN PGP SIGNATURE-----
 
-iEYEAREDAAYFAklD6l4ACgkQvJuQZxSWSshDWwCfQXYcz7FCXjWRn+bnyQSz5IXr
-0XkAoIu2cKhYZr6dlHhEvW4GiZBm/Gof
-=vClT
+iEYEAREDAAYFAklXyqQACgkQvJuQZxSWSsi6ZQCgiu2nMHUuaL8JpcE0L3wdn8Wd
+gJUAoKig/FZ2ArJPKTvxrluZhJpZ9LIZ
+=7CAG
 -----END PGP SIGNATURE-----

Modified: trunk/libdbd-pg-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbd-pg-perl/debian/changelog?rev=28984&op=diff
==============================================================================
--- trunk/libdbd-pg-perl/debian/changelog (original)
+++ trunk/libdbd-pg-perl/debian/changelog Wed Dec 31 19:05:41 2008
@@ -1,3 +1,12 @@
+libdbd-pg-perl (2.11.8-1) UNRELEASED; urgency=low
+
+  NOTE:
+  no need to upload, just a minor fix in a test
+  
+  * New upstream release.
+
+ -- gregor herrmann <gregoa at debian.org>  Wed, 31 Dec 2008 20:03:57 +0100
+
 libdbd-pg-perl (2.11.7-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/libdbd-pg-perl/lib/Bundle/DBD/Pg.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbd-pg-perl/lib/Bundle/DBD/Pg.pm?rev=28984&op=diff
==============================================================================
--- trunk/libdbd-pg-perl/lib/Bundle/DBD/Pg.pm (original)
+++ trunk/libdbd-pg-perl/lib/Bundle/DBD/Pg.pm Wed Dec 31 19:05:41 2008
@@ -4,7 +4,7 @@
 use strict;
 use warnings;
 
-$VERSION = '2.11.7';
+$VERSION = '2.11.8';
 
 1;
 

Modified: trunk/libdbd-pg-perl/t/08async.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbd-pg-perl/t/08async.t?rev=28984&op=diff
==============================================================================
--- trunk/libdbd-pg-perl/t/08async.t (original)
+++ trunk/libdbd-pg-perl/t/08async.t Wed Dec 31 19:05:41 2008
@@ -82,6 +82,7 @@
 $res = $dbh->{pg_async_status};
 is ($res, +1, $t);
 
+sleep 1;
 $t=q{Cancelling an async do() query works };
 eval {
 	$res = $dbh->pg_cancel();

Modified: trunk/libdbd-pg-perl/t/12placeholders.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbd-pg-perl/t/12placeholders.t?rev=28984&op=diff
==============================================================================
--- trunk/libdbd-pg-perl/t/12placeholders.t (original)
+++ trunk/libdbd-pg-perl/t/12placeholders.t Wed Dec 31 19:05:41 2008
@@ -271,6 +271,8 @@
 }
 
 $t='Backslash quoting inside double quotes is parsed correctly';
+$dbh->do(q{SET backslash_quote = 'on'});
+$dbh->commit();
 eval {
 	$sth = $dbh->prepare(q{SELECT * FROM "\" WHERE a=?});
 	$sth->execute(1);
@@ -280,7 +282,7 @@
 $dbh->rollback();
 
 SKIP: {
-	skip 'Setting standard_conforming_strings not available', 2 if ! defined $scs;
+	skip 'Cannot adjust standard_conforming_strings for testing on this version of Postgres', 2 if $pgversion < 80200;
 	$t='Backslash quoting inside single quotes is parsed correctly with standard_conforming_strings off';
 	eval {
 		$dbh->do(q{SET standard_conforming_strings = 'off'});




More information about the Pkg-perl-cvs-commits mailing list