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

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Mon May 12 14:03:04 UTC 2008


Author: gregoa
Date: Mon May 12 14:03:03 2008
New Revision: 19904

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

Modified:
    branches/upstream/libdbd-pg-perl/current/Changes
    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/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/branches/upstream/libdbd-pg-perl/current/Changes?rev=19904&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/Changes (original)
+++ branches/upstream/libdbd-pg-perl/current/Changes Mon May 12 14:03:03 2008
@@ -1,6 +1,10 @@
 ('GSM' is Greg Sabino Mullane, greg at turnstep.com)
 
-2.7.0 Released May 10, 2008
+2.7.1 Released May 11, 2008
+
+	- Yet more minor testing tweaks. [GSM]
+
+2.7.0 Released May 10, 2008 (subversion r11239)
 
 	- Have $dbh->quote() return E'' when server is >= 8.1 and string contains 
 		backslashes. Fixes any problems with standard_conforming_strings.

Modified: branches/upstream/libdbd-pg-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libdbd-pg-perl/current/META.yml?rev=19904&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/META.yml (original)
+++ branches/upstream/libdbd-pg-perl/current/META.yml Mon May 12 14:03:03 2008
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name                  : DBD-Pg
-version               : 2.7.0
+version               : 2.7.1
 abstract              : DBI PostgreSQL interface
 author:              
   - Greg Sabino Mullane <greg at turnstep.com>
@@ -34,10 +34,10 @@
 provides:
   DBD::Pg:
     file              : Pg.pm
-    version           : 2.7.0
+    version           : 2.7.1
   Bundle::DBD::Pg:
     file              : lib/Bundle/DBD/Pg.pm
-    version           : 2.7.0
+    version           : 2.7.1
 
 keywords:
   - Postgres

Modified: branches/upstream/libdbd-pg-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libdbd-pg-perl/current/Makefile.PL?rev=19904&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/Makefile.PL (original)
+++ branches/upstream/libdbd-pg-perl/current/Makefile.PL Mon May 12 14:03:03 2008
@@ -1,4 +1,4 @@
-# $Id: Makefile.PL 11236 2008-05-10 17:12:53Z turnstep $
+# $Id: Makefile.PL 11249 2008-05-11 20:53:53Z 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.7.0';
+my $VERSION = '2.7.1';
 
 my $lib;
 BEGIN {

Modified: branches/upstream/libdbd-pg-perl/current/Pg.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libdbd-pg-perl/current/Pg.pm?rev=19904&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/Pg.pm (original)
+++ branches/upstream/libdbd-pg-perl/current/Pg.pm Mon May 12 14:03:03 2008
@@ -1,5 +1,5 @@
 # -*-cperl-*-
-#  $Id: Pg.pm 11237 2008-05-10 20:21:00Z turnstep $
+#  $Id: Pg.pm 11249 2008-05-11 20:53:53Z 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.7.0');
+	use version; our $VERSION = qv('2.7.1');
 
 	use DBI ();
 	use DynaLoader ();
@@ -1679,7 +1679,7 @@
 
 =head1 VERSION
 
-This documents version 2.7.0 of the DBD::Pg module
+This documents version 2.7.1 of the DBD::Pg module
 
 =head1 DESCRIPTION
 

Modified: branches/upstream/libdbd-pg-perl/current/README
URL: http://svn.debian.org/wsvn/branches/upstream/libdbd-pg-perl/current/README?rev=19904&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/README (original)
+++ branches/upstream/libdbd-pg-perl/current/README Mon May 12 14:03:03 2008
@@ -1,12 +1,12 @@
 
 DBD::Pg  --  the DBI PostgreSQL interface for Perl
 
-# $Id: README 11236 2008-05-10 17:12:53Z turnstep $
+# $Id: README 11249 2008-05-11 20:53:53Z turnstep $
 
 DESCRIPTION:
 ------------
 
-This is version 2.7.0 of DBD-Pg.  The web site for this interface, and 
+This is version 2.7.1 of DBD-Pg.  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/branches/upstream/libdbd-pg-perl/current/SIGNATURE?rev=19904&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/SIGNATURE (original)
+++ branches/upstream/libdbd-pg-perl/current/SIGNATURE Mon May 12 14:03:03 2008
@@ -15,22 +15,22 @@
 Hash: RIPEMD160
 
 SHA1 27aa74b5186533f3b263b2f9136db596ab6fb43c .perlcriticrc
-SHA1 9171faadb4abb8775ff9d03938271d2563ad7869 Changes
+SHA1 7230ac3981ee93247c479b7675fec0abaedf6e0b Changes
 SHA1 4d91c71e5dbb19ece1505ab75c36d00a744bb076 MANIFEST
 SHA1 22055b195f5cf15d7909e8a08468e617f46154e7 MANIFEST.SKIP
-SHA1 9d78a0785da52fd3b8bb97740c4aadac4dfe3e4f META.yml
-SHA1 90eb3deca66399df5532603c43037ae886204580 Makefile.PL
+SHA1 76e11bcad3d315a62762f6bea2f6d7972170f1f0 META.yml
+SHA1 29a4d31b65e92bc3c8900d7ccefb3ab6f80ec00d Makefile.PL
 SHA1 c51356c52c139265e20a2ad33bc8d3ee04f6ff48 Pg.h
-SHA1 f4e6ab8925bb890dbf742ab269d0ae658449536b Pg.pm
+SHA1 bdf311f4b4418453b80afe42a0bcf3ffe452d8ea Pg.pm
 SHA1 9b5ac205a323be2ffdcb7864cbe7ae313a26430e Pg.xs
-SHA1 2d25d8a6b73907ae2aa9db33589c4024008b2478 README
+SHA1 9e04982547e284bb431f758c3dde6520446f6423 README
 SHA1 283327a19b823faa386bcc85d5104baca40aaa35 README.dev
 SHA1 968d5fad61bce160b31a9cb1a21dd240b9df930f README.win32
 SHA1 d36ab11031bc39b91f8602c30e508c31cfd5b762 TODO
 SHA1 d643f3c6c2721afc49917aadf0a3b8ebc3e76f79 dbdimp.c
 SHA1 f0d44a5742f8956b4b3dc9fffcf2109fecd0dabb dbdimp.h
 SHA1 6c33bcf138e577722283bef02fceb8cbce4d100d dbivport.h
-SHA1 0380f2e17c393a1cbe968a4121aa372f0104fa74 lib/Bundle/DBD/Pg.pm
+SHA1 7d3dc670c2b7656733c7509cea3c9cdfa3ed4d6b lib/Bundle/DBD/Pg.pm
 SHA1 76a2c65c065a93775ceadf933a5d38bb25c8afa4 quote.c
 SHA1 0a1fdd0406c5c367a9aba366d1d35cfa8d5272ae quote.h
 SHA1 4da4f8074e8f46d4e787906fa6de3ebbadef29ed t/00-signature.t
@@ -52,7 +52,7 @@
 SHA1 f333534e367b6239ea2a64ccc6a4822a15958f08 t/99_spellcheck.t
 SHA1 e9e984b3c3366d5cee873f1dc59e2b7c26e744ee t/99_yaml.t
 SHA1 3d504299158dadf6a4e187680109a14dbd1bc6ad t/99cleanup.t
-SHA1 fc07cc999c27e822da3e049ca73a202dfa858685 t/dbdpg_test_setup.pl
+SHA1 d9f444f7778a48bc2443bdc51dd66550b537b670 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-----
 
-iEYEAREDAAYFAkgmB9IACgkQvJuQZxSWSsgf8ACfcx3mrq6Cboafr4or1YtRNKe6
-gAgAoLRWvk9XOZ5LGedI2fQ3AFsnvsLh
-=P3tI
+iEYEAREDAAYFAkgnXUcACgkQvJuQZxSWSsh05QCeMq8muURYliApUZycQ41jtT96
+X78AoM9fatXyITe1NZdNTXU8SzC66HHq
+=ppxQ
 -----END PGP SIGNATURE-----

Modified: branches/upstream/libdbd-pg-perl/current/lib/Bundle/DBD/Pg.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libdbd-pg-perl/current/lib/Bundle/DBD/Pg.pm?rev=19904&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 Mon May 12 14:03:03 2008
@@ -4,7 +4,7 @@
 use strict;
 use warnings;
 
-$VERSION = '2.7.0';
+$VERSION = '2.7.1';
 
 1;
 

Modified: branches/upstream/libdbd-pg-perl/current/t/dbdpg_test_setup.pl
URL: http://svn.debian.org/wsvn/branches/upstream/libdbd-pg-perl/current/t/dbdpg_test_setup.pl?rev=19904&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 Mon May 12 14:03:03 2008
@@ -136,7 +136,7 @@
 
 	if (! $testdsn) {
 		$helpconnect = 1;
-		$testdsn = 'dbi:Pg:';
+		$testdsn = $^O =~ /Win32/ ? 'dbi:Pg:host=localhost' : 'dbi:Pg:';
 	}
 	if (! $testuser) {
 		$testuser = 'postgres';
@@ -195,7 +195,7 @@
 		}
 		$info = '';
 		eval {
-			$info = qx{$initdb --help};
+			$info = qx{$initdb --help 2>&1};
 		};
 		last GETHANDLE if $@;
 		if (!defined $info or $info !~ /\@postgresql\.org/) {
@@ -221,7 +221,7 @@
 		warn "Please wait, creating new database for testing\n";
 		$info = '';
 		eval {
-			$info = qx{$initdb -E UTF8 -D $test_database_dir/data 2>&1};
+			$info = qx{$initdb --locale=C -E UTF8 -D $test_database_dir/data 2>&1};
 		};
 		last GETHANDLE if $@;
 
@@ -254,7 +254,7 @@
 				$founduser++;
 				$info = '';
 				eval {
-					$info = qx{su -m $user -c "$initdb -E UTF8 -D $test_database_dir/data" 2>&1};
+					$info = qx{su -m $user -c "$initdb --locale=C -E UTF8 -D $test_database_dir/data" 2>&1};
 				};
 				if (!$@ and $info =~ /owned by user "$user"/) {
 					$testuser = $user;
@@ -323,7 +323,7 @@
 			$@ = qq{Could not open "$conf": $!};
 			last GETHANDLE;
 		}
-		print $cfh "\n\n## DBD::Pg testing port\nport=$testport\n\n";
+		print $cfh "\n\n## DBD::Pg testing parameters\nport=$testport\nmax_connections=3\n\n";
 		close $cfh or die qq{Could not close "$conf": $!\n};
 
 		## Attempt to start up the test server
@@ -348,6 +348,9 @@
 
 		## Attempt to connect to this server
 		$testdsn = "dbi:Pg:dbname=postgres;port=$testport";
+		if ($^O =~ /Win32/) {
+			$testdsn .= ';host=localhost';
+		}
 		my $loop = 1;
 	  STARTUP: {
 			eval {
@@ -470,7 +473,6 @@
 		close $fh or die qq{Could not close "$helpfile": $!\n};
 	}
 
-
 	return $testdsn, $testuser, $helpconnect, $su, $testdir, $pg_ctl;
 }
 




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