r27479 - in /branches/upstream/libdbd-pg-perl/current: Changes MANIFEST.SKIP META.yml Makefile.PL Pg.pm README SIGNATURE dbdimp.c lib/Bundle/DBD/Pg.pm t/dbdpg_test_setup.pl

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Nov 30 14:35:49 UTC 2008


Author: gregoa
Date: Sun Nov 30 14:35:46 2008
New Revision: 27479

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=27479
Log:
[svn-upgrade] Integrating new upstream version, libdbd-pg-perl (2.11.5)

Modified:
    branches/upstream/libdbd-pg-perl/current/Changes
    branches/upstream/libdbd-pg-perl/current/MANIFEST.SKIP
    branches/upstream/libdbd-pg-perl/current/META.yml
    branches/upstream/libdbd-pg-perl/current/Makefile.PL
    branches/upstream/libdbd-pg-perl/current/Pg.pm
    branches/upstream/libdbd-pg-perl/current/README
    branches/upstream/libdbd-pg-perl/current/SIGNATURE
    branches/upstream/libdbd-pg-perl/current/dbdimp.c
    branches/upstream/libdbd-pg-perl/current/lib/Bundle/DBD/Pg.pm
    branches/upstream/libdbd-pg-perl/current/t/dbdpg_test_setup.pl

Modified: branches/upstream/libdbd-pg-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdbd-pg-perl/current/Changes?rev=27479&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/Changes (original)
+++ branches/upstream/libdbd-pg-perl/current/Changes Sun Nov 30 14:35:46 2008
@@ -1,4 +1,9 @@
 ('GSM' is Greg Sabino Mullane, greg at turnstep.com)
+
+2.11.5 Released November 24, 2008
+
+	- Clear prepared_statement name on failure to prepare: prevents 
+		the wrong error when using prepare_cached. [GSM]
 
 2.11.4 Released November 12, 2008
 

Modified: branches/upstream/libdbd-pg-perl/current/MANIFEST.SKIP
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdbd-pg-perl/current/MANIFEST.SKIP?rev=27479&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/MANIFEST.SKIP (original)
+++ branches/upstream/libdbd-pg-perl/current/MANIFEST.SKIP Sun Nov 30 14:35:46 2008
@@ -1,24 +1,29 @@
-^_build
+
 ^Build$
 ^Makefile$
 ^Makefile.old$
+^MANIFEST\.SKIP$
+README.testdatabase
+^Pg.c$
+^Pg.bs$
+^Pg.xsi$
+^pm_to_blib$
+
+^_build
+^DBD-Pg
 ^blib
+^testrun
+
 ~$
 \.bak$
-^MANIFEST\.SKIP$
-^DBD-Pg
-Pg.o
-Pg.c
-Pg.bs
-Pg.xsi
-quote.o
-types.o
-dbdimp.o
-pm_to_blib
+\.o$
 \.tmp$
+\.log$
+\.blame$
+
 \.svn/*
-\.blame$
 ^tmp/*
 cover_db/
-README.testdatabase
 dbdpg_test_database/*
+versiontest/*
+

Modified: branches/upstream/libdbd-pg-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdbd-pg-perl/current/META.yml?rev=27479&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/META.yml (original)
+++ branches/upstream/libdbd-pg-perl/current/META.yml Sun Nov 30 14:35:46 2008
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name                        : DBD-Pg
-version                     : 2.11.4
+version                     : 2.11.5
 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.4
+    version                 : 2.11.5
   Bundle::DBD::Pg:
     file                    : lib/Bundle/DBD/Pg.pm
-    version                 : 2.11.4
+    version                 : 2.11.5
 
 keywords:
   - Postgres

Modified: branches/upstream/libdbd-pg-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdbd-pg-perl/current/Makefile.PL?rev=27479&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/Makefile.PL (original)
+++ branches/upstream/libdbd-pg-perl/current/Makefile.PL Sun Nov 30 14:35:46 2008
@@ -1,4 +1,4 @@
-# $Id: Makefile.PL 12070 2008-11-12 20:43:07Z turnstep $
+# $Id: Makefile.PL 12100 2008-11-22 16:13:46Z 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.4';
+my $VERSION = '2.11.5';
 
 my $lib;
 BEGIN {

Modified: branches/upstream/libdbd-pg-perl/current/Pg.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdbd-pg-perl/current/Pg.pm?rev=27479&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/Pg.pm (original)
+++ branches/upstream/libdbd-pg-perl/current/Pg.pm Sun Nov 30 14:35:46 2008
@@ -1,5 +1,5 @@
 #  -*-cperl-*-
-#  $Id: Pg.pm 12070 2008-11-12 20:43:07Z turnstep $
+#  $Id: Pg.pm 12100 2008-11-22 16:13:46Z 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.4');
+	use version; our $VERSION = qv('2.11.5');
 
 	use DBI ();
 	use DynaLoader ();
@@ -1703,7 +1703,7 @@
 
 =head1 VERSION
 
-This documents version 2.11.4 of the DBD::Pg module
+This documents version 2.11.5 of the DBD::Pg module
 
 =head1 DESCRIPTION
 

Modified: branches/upstream/libdbd-pg-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdbd-pg-perl/current/README?rev=27479&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/README (original)
+++ branches/upstream/libdbd-pg-perl/current/README Sun Nov 30 14:35:46 2008
@@ -1,12 +1,12 @@
 
 DBD::Pg  --  the DBI PostgreSQL interface for Perl
 
-# $Id: README 12070 2008-11-12 20:43:07Z turnstep $
+# $Id: README 12100 2008-11-22 16:13:46Z turnstep $
 
 DESCRIPTION:
 ------------
 
-This is version 2.11.4 of DBD::Pg, the Perl interface to Postgres using DBI. 
+This is version 2.11.5 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: branches/upstream/libdbd-pg-perl/current/SIGNATURE
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdbd-pg-perl/current/SIGNATURE?rev=27479&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/SIGNATURE (original)
+++ branches/upstream/libdbd-pg-perl/current/SIGNATURE Sun Nov 30 14:35:46 2008
@@ -15,22 +15,22 @@
 Hash: RIPEMD160
 
 SHA1 2f324889a0b126216bf45a04d74803557c4a404e .perlcriticrc
-SHA1 4da10a9506ddd19f871b8b0ce5d9dfa410835ca7 Changes
+SHA1 58c2c705eb1b124203d91395c218994e073305f0 Changes
 SHA1 4d91c71e5dbb19ece1505ab75c36d00a744bb076 MANIFEST
-SHA1 22055b195f5cf15d7909e8a08468e617f46154e7 MANIFEST.SKIP
-SHA1 ce3a1c4e4e2b67917bb0ecd90b0e8a3477e2df0f META.yml
-SHA1 e84299264b20171b6bdd00cd0d27ed69ce10feb2 Makefile.PL
+SHA1 6fd98d850a9a67911c047e7f0a8752fd15be98d7 MANIFEST.SKIP
+SHA1 073ed42633248483ba8fac78c54810e2342aa599 META.yml
+SHA1 21cdd037ed21d013a273a5bc8d87809fbfeb0eeb Makefile.PL
 SHA1 c51356c52c139265e20a2ad33bc8d3ee04f6ff48 Pg.h
-SHA1 f1a49981510a4527faf90da296d6fae8f5762325 Pg.pm
+SHA1 1326d987bb8b41a0cdba37af55e58afc9f4a83a4 Pg.pm
 SHA1 ff0fb11360e79db3c86e8b312cf58f62c5f19d2d Pg.xs
-SHA1 48cfd3d76c51994e42ae33aef954d84080feb114 README
+SHA1 0f475f7749d65eec3802107c2722bc0383b773db README
 SHA1 8f20ecd6822bce2a39504beb087bdd341ace06f4 README.dev
 SHA1 968d5fad61bce160b31a9cb1a21dd240b9df930f README.win32
 SHA1 cb3078ec98906fc6381ca0af9e146e2d8b4176c6 TODO
-SHA1 e9f60c574ad9ff496e718c7a1aa7f4612bbae00b dbdimp.c
+SHA1 be6b58327d23363379281d4ae32a1866e9650867 dbdimp.c
 SHA1 cf577f22e9dc3c591daa32c51ebd83dd38f55a8f dbdimp.h
 SHA1 6c33bcf138e577722283bef02fceb8cbce4d100d dbivport.h
-SHA1 75fb36a2dbea14e1fd8a2cb13efd1d7be15323fc lib/Bundle/DBD/Pg.pm
+SHA1 f741e8f47f4be8fecc56d8533b4ce2b0f319167d lib/Bundle/DBD/Pg.pm
 SHA1 dbe8b0bd24538a61d4c617848e7fca27fd4ea3eb quote.c
 SHA1 0a1fdd0406c5c367a9aba366d1d35cfa8d5272ae quote.h
 SHA1 93aa7e8cae0a361d1e6163dea0281ebff41f3c5f t/00-signature.t
@@ -52,7 +52,7 @@
 SHA1 e2477a6e2fd50500e56a1835249655f7bc1a1e13 t/99_spellcheck.t
 SHA1 ace40437561196dc6a08b5e725de35aed0e9902c t/99_yaml.t
 SHA1 60031c2db489d77291078ab6a418723e1a35f137 t/99cleanup.t
-SHA1 1cb6f145cdf9b3281e56724e858f4a13a86774c0 t/dbdpg_test_setup.pl
+SHA1 b17758fd1561d818fd1ff9ec1eed36f12ca0b340 t/dbdpg_test_setup.pl
 SHA1 bc4a58bdd5e853139f9e1fc6129f83e50a07a2c6 t/lib/App/Info.pm
 SHA1 58befda00c12b1721875262505112203bf230450 t/lib/App/Info/Handler.pm
 SHA1 b5bf85b12a5fc207c44113a9c028fb7fbd68531f t/lib/App/Info/Handler/Prompt.pm
@@ -65,7 +65,7 @@
 SHA1 f07cd5ecaeb854c81ceb9206364979cf607e6546 win32.mak
 -----BEGIN PGP SIGNATURE-----
 
-iEYEAREDAAYFAkkbP+sACgkQvJuQZxSWSshhEgCdEmUFoC+4jnlj3MHXjwHY1ENk
-aTsAn2M61eYCxE+F7hLgcbuogCEOr7Go
-=h45J
+iEYEAREDAAYFAkkrPcwACgkQvJuQZxSWSshx5wCg60Kbi58gcAWPxMPmTukN29fY
+D5YAn2WpdAC5+lznzP319AKgknxZVsWs
+=DjTR
 -----END PGP SIGNATURE-----

Modified: branches/upstream/libdbd-pg-perl/current/dbdimp.c
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdbd-pg-perl/current/dbdimp.c?rev=27479&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/dbdimp.c (original)
+++ branches/upstream/libdbd-pg-perl/current/dbdimp.c Sun Nov 30 14:35:46 2008
@@ -1,6 +1,6 @@
 /*
 
-  $Id: dbdimp.c 12020 2008-11-01 19:18:51Z turnstep $
+  $Id: dbdimp.c 12099 2008-11-22 16:01:31Z turnstep $
 
   Copyright (c) 2002-2008 Greg Sabino Mullane and others: see the Changes file
   Portions Copyright (c) 2002 Jeffrey W. Baker
@@ -2100,6 +2100,8 @@
 	Safefree(statement);
 	if (PGRES_COMMAND_OK != status) {
 		TRACE_PQERRORMESSAGE;
+		Safefree(imp_sth->prepare_name);
+		imp_sth->prepare_name = NULL;
 		pg_error(aTHX_ sth, status, PQerrorMessage(imp_dbh->conn));
 		if (TEND) TRC(DBILOGFP, "%sEnd pg_st_prepare_statement (error)\n", THEADER);
 		return -2;

Modified: branches/upstream/libdbd-pg-perl/current/lib/Bundle/DBD/Pg.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdbd-pg-perl/current/lib/Bundle/DBD/Pg.pm?rev=27479&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/lib/Bundle/DBD/Pg.pm (original)
+++ branches/upstream/libdbd-pg-perl/current/lib/Bundle/DBD/Pg.pm Sun Nov 30 14:35:46 2008
@@ -4,7 +4,7 @@
 use strict;
 use warnings;
 
-$VERSION = '2.11.4';
+$VERSION = '2.11.5';
 
 1;
 

Modified: branches/upstream/libdbd-pg-perl/current/t/dbdpg_test_setup.pl
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdbd-pg-perl/current/t/dbdpg_test_setup.pl?rev=27479&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/t/dbdpg_test_setup.pl (original)
+++ branches/upstream/libdbd-pg-perl/current/t/dbdpg_test_setup.pl Sun Nov 30 14:35:46 2008
@@ -396,7 +396,7 @@
 			last GETHANDLE; ## Fail - no conf file
 		}
 		print $cfh "\n\n## DBD::Pg testing parameters\nport=$testport\nmax_connections=4\n";
-		print $cfh "listen_addresses='localhost'\n" if $^O =~ /Win32/;
+		print $cfh "listen_addresses='127.0.0.1'\n" if $^O =~ /Win32/;
 		print $cfh "\n";
 		close $cfh or die qq{Could not close "$conf": $!\n};
 




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