r55741 - in /branches/upstream/libdbd-pg-perl/current: Changes META.yml Makefile.PL Pg.pm README SIGNATURE dbdimp.c lib/Bundle/DBD/Pg.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Thu Apr 8 16:30:29 UTC 2010


Author: jawnsy-guest
Date: Thu Apr  8 16:30:21 2010
New Revision: 55741

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=55741
Log:
[svn-upgrade] Integrating new upstream version, libdbd-pg-perl (2.17.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/dbdimp.c
    branches/upstream/libdbd-pg-perl/current/lib/Bundle/DBD/Pg.pm

Modified: branches/upstream/libdbd-pg-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdbd-pg-perl/current/Changes?rev=55741&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/Changes (original)
+++ branches/upstream/libdbd-pg-perl/current/Changes Thu Apr  8 16:30:21 2010
@@ -1,6 +1,11 @@
 'GSM' is Greg Sabino Mullane, greg at turnstep.com)
 
-2.17.0 Released April 6, 2010
+2.17.1 Released April 8, 2010
+
+  - Only use lo_import_with_oid if Postgres libraries are 8.4 or better
+    [GSM] (CPAN bug #56363)
+
+2.17.0 Released April 6, 2010 (subversion r13890)
 
   - Do not automatically ROLLBACK on a failed pg_cancel [GSM] (CPAN bug #55188)
   - Added support for new lo_import_with_oid function.

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=55741&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/META.yml (original)
+++ branches/upstream/libdbd-pg-perl/current/META.yml Thu Apr  8 16:30:21 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name                        : DBD-Pg
-version                     : 2.17.0
+version                     : 2.17.1
 abstract                    : DBI PostgreSQL interface
 author:              
   - Greg Sabino Mullane <greg at turnstep.com>
@@ -39,10 +39,10 @@
 provides:
   DBD::Pg:
     file                    : Pg.pm
-    version                 : 2.17.0
+    version                 : 2.17.1
   Bundle::DBD::Pg:
     file                    : lib/Bundle/DBD/Pg.pm
-    version                 : 2.17.0
+    version                 : 2.17.1
 
 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=55741&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/Makefile.PL (original)
+++ branches/upstream/libdbd-pg-perl/current/Makefile.PL Thu Apr  8 16:30:21 2010
@@ -1,4 +1,4 @@
-# $Id: Makefile.PL 13885 2010-04-05 19:45:08Z turnstep $
+# $Id: Makefile.PL 13896 2010-04-07 20:52:54Z 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.17.0';
+my $VERSION = '2.17.1';
 
 my $lib;
 BEGIN {
@@ -306,8 +306,6 @@
 
 SDEFINES = 
 
-CCFLAGS2 = -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DPGLIBVERSION=80111 -DPGDEFPORT=5432
-
 splint: $(H_FILES) $(C_FILES)
 	$(MKPATH) $(SPLINT_TMP)
 	$(SPLINT) $(SPLINTFLAGS) $(SPLINTFLAGS_TEST) $(SDEFINES) -I$(PERL_INC) $(INC) $(C_FILES)

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=55741&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/Pg.pm (original)
+++ branches/upstream/libdbd-pg-perl/current/Pg.pm Thu Apr  8 16:30:21 2010
@@ -1,5 +1,5 @@
 #  -*-cperl-*-
-#  $Id: Pg.pm 13885 2010-04-05 19:45:08Z turnstep $
+#  $Id: Pg.pm 13896 2010-04-07 20:52:54Z turnstep $
 #
 #  Copyright (c) 2002-2010 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.17.0');
+	use version; our $VERSION = qv('2.17.1');
 
 	use DBI ();
 	use DynaLoader ();
@@ -1732,7 +1732,7 @@
 
 =head1 VERSION
 
-This documents version 2.17.0 of the DBD::Pg module
+This documents version 2.17.1 of the DBD::Pg module
 
 =head1 DESCRIPTION
 
@@ -2143,14 +2143,12 @@
 
 =item lo_import
 
-
   $lobjId = $dbh->pg_lo_import($filename);
 
 Imports a Unix file as a large object and returns the object id of the new
 object or C<undef> upon failure.
 
 =item lo_import_with_oid
-
 
   $lobjId = $dbh->pg_lo_import($filename, $OID);
 

Modified: branches/upstream/libdbd-pg-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdbd-pg-perl/current/README?rev=55741&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/README (original)
+++ branches/upstream/libdbd-pg-perl/current/README Thu Apr  8 16:30:21 2010
@@ -6,7 +6,7 @@
 DESCRIPTION:
 ------------
 
-This is version 2.17.0 of DBD::Pg, the Perl interface to Postgres using DBI. 
+This is version 2.17.1 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=55741&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/SIGNATURE (original)
+++ branches/upstream/libdbd-pg-perl/current/SIGNATURE Thu Apr  8 16:30:21 2010
@@ -15,24 +15,24 @@
 Hash: RIPEMD160
 
 SHA1 415d25a8628815a50a8f79317de4abff11ac73e8 .perlcriticrc
-SHA1 66a7d35804d992c59064d352c730f1b677db6776 Changes
+SHA1 9cdb9b0cd283c026f2bb186e44aefb0b9b7d23d1 Changes
 SHA1 21bc5f3c797d4d5b72285198ffeb1e4e1f0a2902 LICENSES/artistic.txt
 SHA1 06877624ea5c77efe3b7e39b0f909eda6e25a4ec LICENSES/gpl-2.0.txt
 SHA1 4025b3973c4a10c37fc7ad2f7a63fd9faa36f599 MANIFEST
 SHA1 dc863ce481b321833db84c95bbe976e8c65f296e MANIFEST.SKIP
-SHA1 3355b6870902376b29abeea2f88f38f1f2cbfaa0 META.yml
-SHA1 f8c9acd2062dfab03b9ecc19be4c0c727489c6d6 Makefile.PL
+SHA1 7464411288953e5ceac6439342d3fdf75977a32e META.yml
+SHA1 a2987d72ba262125871a394e68bc6852841b57a6 Makefile.PL
 SHA1 85c2b29c21312a022524a730f26b2c4b30fc4211 Pg.h
-SHA1 5f1bc482ad0f3dc09fb8e6bea11859ee77d7a798 Pg.pm
+SHA1 eaf35f2b3279536708a21367e13743eff716a211 Pg.pm
 SHA1 4a89e8770e3b1e83cee5150b1b5daa32e099d1b0 Pg.xs
-SHA1 b1687af059e33159708c4db10e25ce6664e6d857 README
+SHA1 17393c3b0b0bd38b4aa1fb2287f4e0cfc96fffda README
 SHA1 4078d5452d087f83c7f43915fd329a51e66b0f6a README.dev
 SHA1 7e213bf90f513595b59c0a2c4ef94fea1592efcf README.win32
 SHA1 7330c41dd3a581aee4e1ca862b7403450454ce77 TODO
-SHA1 5f9c6d5446e0d7273e0fbb33e57bce5198596492 dbdimp.c
+SHA1 86cdf1a5369a98f096205eeb3fc5ef077b8baf1c dbdimp.c
 SHA1 778794bc7eea7ad15ed3e933eb98f1e1e9875ec4 dbdimp.h
 SHA1 6c33bcf138e577722283bef02fceb8cbce4d100d dbivport.h
-SHA1 f340b6d0c470e615ca608420be039c7b87aa9061 lib/Bundle/DBD/Pg.pm
+SHA1 00122f291c761dbaab476547ba36a0e510972794 lib/Bundle/DBD/Pg.pm
 SHA1 11dc1f05bf7dc7e97d2ffe4796367506a0f86c9d quote.c
 SHA1 54f10c6d76db2f2bfbaa7f345d7034029b88453c quote.h
 SHA1 93aa7e8cae0a361d1e6163dea0281ebff41f3c5f t/00-signature.t
@@ -63,7 +63,7 @@
 SHA1 f07cd5ecaeb854c81ceb9206364979cf607e6546 win32.mak
 -----BEGIN PGP SIGNATURE-----
 
-iEYEAREDAAYFAku7gsoACgkQvJuQZxSWSsgUZQCeJUNLurguxHoIC2DTtaWYVrMx
-qJkAnilHrJtkTLqvdzFMBr28g6XUWfTB
-=mZTc
+iEYEAREDAAYFAku99mkACgkQvJuQZxSWSsiF3wCdF0ETaog2ugY8PZ9QbBhE9rFi
++vUAoO33Zj+q7bG6JpJ+KhwkOHizawL8
+=zX3/
 -----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=55741&op=diff
==============================================================================
--- branches/upstream/libdbd-pg-perl/current/dbdimp.c (original)
+++ branches/upstream/libdbd-pg-perl/current/dbdimp.c Thu Apr  8 16:30:21 2010
@@ -1,6 +1,6 @@
 /*
 
-  $Id: dbdimp.c 13883 2010-04-05 19:08:17Z turnstep $
+  $Id: dbdimp.c 13895 2010-04-07 20:49:50Z turnstep $
 
   Copyright (c) 2002-2010 Greg Sabino Mullane and others: see the Changes file
   Portions Copyright (c) 2002 Jeffrey W. Baker
@@ -53,6 +53,15 @@
 	croak ("Called wrong PQfreeCancel");
 }
 
+
+#endif
+
+#if PGLIBVERSION < 80400
+
+Oid lo_import_with_oid (PGconn *conn, char *filename, unsigned int lobjId);
+Oid lo_import_with_oid (PGconn *conn, char *filename, unsigned int lobjId) {
+	croak ("Cannot use lo_import_with_oid unless compiled against Postgres 8.4 or later");
+}
 
 #endif
 

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=55741&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 Thu Apr  8 16:30:21 2010
@@ -4,7 +4,7 @@
 use strict;
 use warnings;
 
-$VERSION = '2.17.0';
+$VERSION = '2.17.1';
 
 1;
 




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