debian/0000755000000000000000000000000012221102551007155 5ustar debian/compat0000644000000000000000000000000212221102551010353 0ustar 9 debian/copyright0000644000000000000000000000360612221102551011115 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: DBD-Pg Upstream-Contact: Greg Sabino Mullane Source: https://metacpan.org/release/DBD-Pg/ Files: * Copyright: 1994-1997, Tim Bunce 1997-2001, Edmund Mergl 2002, Jeffrey W. Baker 2002-2012, Greg Sabino Mullane License: Artistic or GPL-1+ Files: t/lib/App/* Copyright: 2002-2004, David Wheeler License: Artistic or GPL-1+ Files: debian/* Copyright: 1998, Tom Lear 1998, Martin Schulze 1999-2007, Raphael Hertzog 2004, Ivan Kohler 2007, Joey Hess 2007-2008, Damyan Ivanov 2008, Martín Ferrari > 2008, Roberto C. Sanchez 2008, Krzysztof Krzyzaniak (eloy) 2008-2009, Gunnar Wolf 2008-2009, gregor herrmann 2009, Ryan Niebur > 2009-2010, Jonathan Yu 2010-2011, Ansgar Burchardt 2012, Xavier Guimard License: Artistic or GPL-1+ License: Artistic This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License, which comes with Perl. . On Debian systems, the complete text of the Artistic License can be found in `/usr/share/common-licenses/Artistic'. License: GPL-1+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. . On Debian systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'. debian/rules0000755000000000000000000000034212221102551010234 0ustar #!/usr/bin/make -f PG_INCLUDEDIR = $(shell pg_config --includedir) PG_LIBDIR = $(shell pg_config --libdir) export POSTGRES_INCLUDE=$(PG_INCLUDEDIR) export POSTGRES_LIB=$(PG_LIBDIR) export LC_ALL=C %: dh $@ --with perl_dbi debian/watch0000644000000000000000000000014712221102551010210 0ustar version=3 https://metacpan.org/release/DBD-Pg/ .*/DBD-Pg-v?(\d[\d.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) debian/NEWS0000644000000000000000000000165512221102551007663 0ustar libdbd-pg-perl (1.42-1) unstable; urgency=low DBD::Pg changed its behaviour concerning the use of placeholders. It implements now server side placeholders, this is more efficient but has the drawback of being more strict in the syntax of placeholder as it must match what PostgreSQL will accept. Here are some examples of things which used to be accepted and which aren't any more (you can easily extrapolate for other types): SELECT ... WHERE pdate > now() - interval ? SELECT inet ? The correct queries are: SELECT ... WHERE pdate > now() - ?::interval SELECT ?::inet If you don't want to replace the queries, a simple work around is to disable the server side queries with: $dbh->{pg_server_prepare} = 0; Some useful links can be found in the bug report #315708: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=315708;msg=86 -- Raphael Hertzog Mon, 13 Nov 2006 22:05:02 +0100 debian/control0000644000000000000000000000242612221102551010564 0ustar Source: libdbd-pg-perl Maintainer: Debian Perl Group Uploaders: Ivan Kohler , Damyan Ivanov , Krzysztof Krzyżaniak (eloy) , gregor herrmann , Martín Ferrari , Ryan Niebur , Jonathan Yu , Ansgar Burchardt , Xavier Guimard Section: perl Priority: optional Build-Depends: perl, debhelper (>= 9.20120312), libdbi-perl, libpq-dev, postgresql Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libdbd-pg-perl.git Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libdbd-pg-perl.git Homepage: https://metacpan.org/release/DBD-Pg/ Package: libdbd-pg-perl Architecture: any Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends} Description: Perl DBI driver for the PostgreSQL database server DBD::Pg is a Perl DBI Database Driver module that works with the DBI module to provide access to PostgreSQL databases. It enables you to control a PostgreSQL database in a Perl script. debian/source/0000755000000000000000000000000012221102551010455 5ustar debian/source/format0000644000000000000000000000001412221102551011663 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000012221102551010604 5ustar debian/patches/pod-spelling.patch0000644000000000000000000000116012221102551014220 0ustar Description: fix spelling error Origin: vendor Bug: https://rt.cpan.org/Ticket/Display.html?id=78168 Forwarded: https://rt.cpan.org/Ticket/Display.html?id=78168 Author: gregor herrmann Last-Update: 2012-07-02 --- a/Pg.pm +++ b/Pg.pm @@ -1900,7 +1900,7 @@ 0 Empty query string 1 A command that returns no data successfully completed. - 2 A command that returns data sucessfully completed. + 2 A command that returns data successfully completed. 3 A COPY OUT command is still in progress. 4 A COPY IN command is still in progress. 5 A bad response was received from the backend. debian/patches/0001-Use-DEBUG1-for-the-PrintWarn-test-as-Postgres-got-le.patch0000644000000000000000000000137212221102551023502 0ustar Description: Use DEBUG1 for the PrintWarn test, as Postgres got less chatty in 9.3 Fixes FTBFS due test failures in t/02attribs.t tests Origin: upstream, commit:accf9a11bab7de2d11a36bdaa01e2e438dd33104 Bug: http://rt.cpan.org/Public/Bug/Display.html?id=88865 Bug-Debian: http://bugs.debian.org/723928 Author: Salvatore Bonaccorso Last-Update: 2013-09-26 diff --git a/t/02attribs.t b/t/02attribs.t index e98add9..197d962 100644 --- a/t/02attribs.t +++ b/t/02attribs.t @@ -251,7 +251,7 @@ is ($value, 1, $t); local $SIG{__WARN__} = sub { $warning = shift; }; -$dbh->do(q{SET client_min_messages = 'NOTICE'}); +$dbh->do(q{SET client_min_messages = 'DEBUG1'}); $t='DB handle attribute "PrintWarn" works when on'; $warning = q{}; eval { debian/patches/testdir.patch0000644000000000000000000000157012221102551013306 0ustar Description: Create test database in /tmp Building the package with sbuild may result in the path to the socket used by PostgreSQL to be too long to fit in the sockaddr_un struct defined in /usr/include/linux/un.h. For this reason we move the test cluster to a directory in /tmp. . See also . Origin: vendor Forwarded: no Author: Ansgar Burchardt Date: Sun, 21 Nov 2010 12:37:21 +0100 Reviewed-By: Xavier Guimard Last-Update: 2012-05-19 --- a/t/dbdpg_test_setup.pl +++ b/t/dbdpg_test_setup.pl @@ -710,8 +710,9 @@ } if (!$testdir) { - my $dir = getcwd(); - $testdir = "$dir/dbdpg_test_database"; + # my $dir = getcwd(); + # $testdir = "$dir/dbdpg_test_database"; + $testdir = find_tempdir(); } return $testdsn, $testuser, $helpconnect, $su, $uid, $testdir, $pg_ctl, $initdb, $error, $version; debian/patches/series0000644000000000000000000000014112221102551012015 0ustar pod-spelling.patch testdir.patch 0001-Use-DEBUG1-for-the-PrintWarn-test-as-Postgres-got-le.patch debian/libdbd-pg-perl.docs0000644000000000000000000000002712221102551012612 0ustar README README.dev TODO debian/changelog0000644000000000000000000006457212221102551011045 0ustar libdbd-pg-perl (2.19.3-2) unstable; urgency=low * Team upload. * Add 0001-Use-DEBUG1-for-the-PrintWarn-test-as-Postgres-got-le.patch patch. Fix "FTBFS: Failed test 'DB handle attribute "PrintWarn" shows warnings when on'". (Closes: #723928) -- Salvatore Bonaccorso Thu, 26 Sep 2013 21:04:11 +0200 libdbd-pg-perl (2.19.3-1) unstable; urgency=low [ gregor herrmann ] * debian/control: update {versioned,alternative} (build) dependencies. [ Xavier Guimard ] * New upstream release * Bump Standards-Version to 3.9.4 * Add myself to uploaders * Bump debhelper compatibility to 9 to get hardening flags * Update patches (offsets and format) [ Salvatore Bonaccorso ] * Change Vcs-Git to canonical URI (git://anonscm.debian.org) * Change search.cpan.org based URIs to metacpan.org based URIs -- Xavier Guimard Sun, 19 May 2013 07:00:17 +0200 libdbd-pg-perl (2.19.2-2) unstable; urgency=low * debian/rules: Export LC_ALL=C to avoid build failure in non-English locales. (Closes: #691727) -- Ansgar Burchardt Wed, 31 Oct 2012 08:26:18 +0100 libdbd-pg-perl (2.19.2-1) unstable; urgency=low * New upstream release. -- Ansgar Burchardt Fri, 16 Mar 2012 09:43:23 +0100 libdbd-pg-perl (2.19.0-1) unstable; urgency=medium * Team upload. [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ gregor herrmann ] * Remove debian/source/local-options; abort-on-upstream-changes and unapply-patches are default in dpkg-source since 1.16.1. [ Salvatore Bonaccorso ] * Imported Upstream version 2.19.0 + [SECURITY] CVE-2012-1151. Explicitly warn and croak with controlled format strings. (Closes: #661536). * Update debian/copyright information. Update format to copyright-format 1.0 as released together with Debian Policy 3.9.3. Update copyright years for upstream files. * Bump Debhelper compat level to 9. Adjust Build-Depends on debhelper to (>= 9). * Bump Standards-Version to 3.9.3 -- Salvatore Bonaccorso Sat, 10 Mar 2012 10:16:46 +0100 libdbd-pg-perl (2.18.1-1) unstable; urgency=low * New upstream release. -- Ansgar Burchardt Sat, 14 May 2011 11:00:50 +0200 libdbd-pg-perl (2.18.0-1) unstable; urgency=low * New upstream release. + Fix memory leak when binding arrays. (Closes: #613493) * Bump Standards-Version to 3.9.2 (no changes). -- Ansgar Burchardt Mon, 11 Apr 2011 16:24:42 +0200 libdbd-pg-perl (2.17.2-1) unstable; urgency=low * New upstream release. + Supports dequoting of hex bytea format. (Closes: #598464) * Use perl_dbi addon for dh. * Bump build-dependency on libdbi-perl to >= 1.612. * No longer set TEST_AUTHOR=1 in debian/rules when running tests. It is no longer used by any test. Also remove build-dependencies on libtest-pod-coverage-perl, libtest-pod-perl and libtest-yaml-meta-perl. * debian/copyright: Refer to "Debian systems" instead of "Debian GNU/Linux systems"; refer to /usr/share/common-licenses/GPL-1. * Remove (build-)dep on perl (>= 5.10) | libversion-perl: stable already has a recent enough version of perl. * Make build-dependency on libpq-dev unversioned: the version in stable is already more recent than 8.0. * Add build-dependency on postgresql to enable tests. Note that the test programs set up their own database cluster so this works even for non-privileged users. We have to create the test cluster in /tmp instead of the current directory as otherwise the path to PostgreSQL's socket might be too long to fit in the sockaddr_un struct (cf. #602891). + new patch: testdir.patch * Bump Standards-Version to 3.9.1. * Update my email address. -- Ansgar Burchardt Sun, 21 Nov 2010 12:47:13 +0100 libdbd-pg-perl (2.17.1-2) unstable; urgency=low * Add dependency on perl-dbdapi-* (see #577209). + Needs build-dep on libdbi-perl (>= 1.610.90+is+1.609-1~). * debian/copyright: Minor changes for current DEP-5 proposal. * Add myself to Uploaders. -- Ansgar Burchardt Sat, 24 Apr 2010 14:30:16 +0900 libdbd-pg-perl (2.17.1-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release * Update copyright to new DEP5 format * Standards-Version 3.8.4 (no changes) * Refresh POD spelling patch [ Krzysztof Krzyżaniak (eloy) ] * New upstream release -- Jonathan Yu Thu, 08 Apr 2010 13:29:06 -0400 libdbd-pg-perl (2.16.1-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release [ gregor herrmann ] * debian/copyright: update years of upstream and packaging copyright, add info about third-party files. * Add pod-spelling.patch. * Source format 3.0 (quilt). -- Jonathan Yu Sun, 24 Jan 2010 13:19:14 -0500 libdbd-pg-perl (2.16.0-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release * Standards-Version 3.8.3 (drop perl version dep) [ Ryan Niebur ] * Update jawnsy's email address * Update ryan52's email address [ Raphaël Hertzog ] * Remove myself from Uploaders. [ gregor herrmann ] * debian/control: Changed: (build-)depend on perl instead of perl-modules. -- Jonathan Yu Thu, 17 Dec 2009 10:50:43 -0500 libdbd-pg-perl (2.15.1-1) unstable; urgency=low [ Gunnar Wolf ] * New (very minor) upstream release. Merging changelog entry with Jonathan's, as previous version (2.15.0) has not been uploaded [ Jonathan Yu ] * New upstream release + Use PQexecPrepared even with no placeholders (RT#48155) + Allow execute_array and bind_param_array to take an odd number of items: DBI will make the missing ones undef (RT#39829) + Single quites around array literals when quoting arrays (RT#48420) -- Gunnar Wolf Fri, 07 Aug 2009 23:57:04 -0500 libdbd-pg-perl (2.14.1-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release + Remove invalid bigint assignment + Make quoting of int, floats, and names much safer (RT#41565) + Make quoting of geometric types respect all valid chars (RT#41565) + Fix quoting of booleans to respect more Perlish variants (RT#41565) + Fix backslash quoting of arrays (RT#46732) + Fix error when destringifying an array starting with '[x:y]=' + Fix problem with foreign_key_info and NAME_uc (RT#46109) + foreign_key_info now respects FetchHashKeyName (RT#46103) + Makefile.PL applies POSTGRES_INCLUDE in a saner way (RT#45769) * Added myself to Uploaders and Copyright * Rewrote control description * Changed over to short rules format, disable PerlCritic tests * Add e-mail addresses for copyright holders [ Nathan Handler ] * debian/watch: Update to ignore development releases. -- Jonathan Yu Thu, 30 Jul 2009 19:58:55 -0400 libdbd-pg-perl (2.13.1-1) unstable; urgency=low * New upstream release -- Ryan Niebur Thu, 23 Apr 2009 19:41:55 -0700 libdbd-pg-perl (2.13.0-1) unstable; urgency=low * New upstream release * Add myself to Uploaders * reenable critic tests -- Ryan Niebur Tue, 14 Apr 2009 08:11:09 -0700 libdbd-pg-perl (2.12.0-1) unstable; urgency=low * New upstream release. * debian/rules: turn off Perl::Critic tests for the time being, since they fail at the moment. Bug forwarded upstream. Thanks to Daniel Schepler for the bug report (closes: #521969). * debian/copyright: update years. * Set Standards-Version to 3.8.1 (no changes). -- gregor herrmann Tue, 31 Mar 2009 18:10:21 +0200 libdbd-pg-perl (2.11.7-1) unstable; urgency=low * New upstream release. -- gregor herrmann Mon, 15 Dec 2008 20:20:37 +0100 libdbd-pg-perl (2.11.6-1) unstable; urgency=low * New upstream release. -- gregor herrmann Thu, 04 Dec 2008 21:42:57 +0100 libdbd-pg-perl (2.11.5-1) unstable; urgency=low * New upstream release. * debian/control: add ${misc:Depends} to Depends: field. -- gregor herrmann Sun, 30 Nov 2008 15:43:41 +0100 libdbd-pg-perl (2.11.4-1) unstable; urgency=low * debian/control: Changed: Switched Vcs-Browser field to ViewSVN (source stanza). * New upstream release. * Bump versioned (build) dependecy on libdbi-perl to >= 1.52. -- gregor herrmann Sat, 22 Nov 2008 16:35:19 +0100 libdbd-pg-perl (2.11.3-1) unstable; urgency=low * New upstream release, includes a fix for "Segmentation fault on INSERT" (closes: #500788). * Re-enable pod tests. -- gregor herrmann Mon, 10 Nov 2008 00:02:41 +0100 libdbd-pg-perl (2.10.7-1) unstable; urgency=low * New upstream release. -- gregor herrmann Wed, 24 Sep 2008 22:24:37 +0200 libdbd-pg-perl (2.10.6-1) unstable; urgency=low * New upstream release -- Damyan Ivanov Mon, 22 Sep 2008 23:01:27 +0300 libdbd-pg-perl (2.10.3-1) unstable; urgency=low * New upstream release. -- gregor herrmann Sat, 06 Sep 2008 18:04:52 +0200 libdbd-pg-perl (2.9.2-1) unstable; urgency=low * New upstream release. * Set debhelper compatibility level to 7; adapt debian/{control,compat,rules}. * debian/copyright: switch to new format. -- gregor herrmann Sat, 23 Aug 2008 14:22:40 -0300 libdbd-pg-perl (2.9.0-1) unstable; urgency=low * New upstream release - Add support for database handle attribute "ReadOnly" allowing enforcement of read only mode at the server level. - Move PQexec structures to statement handle, to prevent excessive malloc and free within execute function. - Many documentation improvements. -- Damyan Ivanov Tue, 05 Aug 2008 00:13:42 +0300 libdbd-pg-perl (2.8.7-1) unstable; urgency=low * New upstream release. * Remove lintian override, not needed any more. -- gregor herrmann Sat, 26 Jul 2008 17:46:53 +0200 libdbd-pg-perl (2.8.6-1) unstable; urgency=low * New upstream release. -- gregor herrmann Tue, 22 Jul 2008 17:06:04 +0200 libdbd-pg-perl (2.8.5-1) unstable; urgency=low * New upstream release. -- gregor herrmann Mon, 14 Jul 2008 21:09:35 +0200 libdbd-pg-perl (2.8.4-1) unstable; urgency=low * New upstream release, fixes the perl-critic test failures (closes: #490321). * Refresh lintian override. -- gregor herrmann Fri, 11 Jul 2008 15:58:06 +0200 libdbd-pg-perl (2.8.2-1) unstable; urgency=low * New upstream release. * debian/control: replace "libversion-perl" with "perl-modules (>= 5.10) | libversion-perl". * debian/copyright: remove unneeded space before colon. -- gregor herrmann Mon, 30 Jun 2008 20:00:15 +0200 libdbd-pg-perl (2.8.1-1) unstable; urgency=low [ Martín Ferrari ] * Updating my email address [ gregor herrmann ] * New upstream release. * Set Standards-Version to 3.8.0 (no changes). -- gregor herrmann Sat, 14 Jun 2008 21:06:35 +0200 libdbd-pg-perl (2.8.0-1) unstable; urgency=low * New upstream release * Added myself as an uploader -- Gunnar Wolf Fri, 06 Jun 2008 12:55:26 -0500 libdbd-pg-perl (2.7.2-1) unstable; urgency=low * New upstream release. -- gregor herrmann Thu, 15 May 2008 22:45:41 +0200 libdbd-pg-perl (2.7.0-1) unstable; urgency=low * New upstream release. * Refresh lintian override. -- gregor herrmann Sun, 11 May 2008 14:32:37 +0200 libdbd-pg-perl (2.6.6-1) unstable; urgency=low * New upstream release. * Add build dependencies on libtest-pod-perl, libtest-pod-coverage-perl in order to activate additional tests. -- gregor herrmann Thu, 08 May 2008 21:26:44 +0200 libdbd-pg-perl (2.6.4-1) unstable; urgency=low * New upstream release. * Add lintian override for manpage-has-errors-from-man where a line is too long because of a URL. -- gregor herrmann Mon, 05 May 2008 00:34:43 +0200 libdbd-pg-perl (2.6.1-1) unstable; urgency=low * New upstream release. * debian/control: change my email address. -- gregor herrmann Wed, 23 Apr 2008 17:45:09 +0200 libdbd-pg-perl (2.6.0-1) unstable; urgency=low [ gregor herrmann ] * New upstream release. * Refresh debian/rules, no functional changes. [ Martín Ferrari ] * debian/rules: more refreshing and removing unneeded stuff. * debian/control: adding myself to Uploaders. -- Martín Ferrari Fri, 18 Apr 2008 12:56:59 -0300 libdbd-pg-perl (2.5.1-1) unstable; urgency=low * New upstream release. -- gregor herrmann Tue, 08 Apr 2008 21:58:56 +0200 libdbd-pg-perl (2.5.0-1) unstable; urgency=low * New upstream release. * Remove empty debian/patches directory. * debian/copyright: update according to upstream README. * debian/rules: - use DESTDIR and TMP for make install - remove commented out dh_installexamples - activate test suite (and add libtest-yaml-meta-perl, libperl-critic-perl to build dependencies) - remove obsolete source and diff targets * Add /me to Uploaders. -- gregor herrmann Thu, 27 Mar 2008 17:23:39 +0100 libdbd-pg-perl (2.2.2-1) unstable; urgency=low * New upstream release. * debian/copyright: Use dist-based URL. * debian/watch: Use better regex. -- Roberto C. Sanchez Sat, 15 Mar 2008 23:56:52 -0400 libdbd-pg-perl (2.1.3-3) unstable; urgency=low * Missing dependency from libversion-perl fixed. (closes: #467593) -- Krzysztof Krzyżaniak (eloy) Thu, 21 Feb 2008 15:45:07 +0100 libdbd-pg-perl (2.1.3-2) unstable; urgency=low * CPAN bug #29656 fixed in 2.0.0 version. Closes: #436693 -- Krzysztof Krzyżaniak (eloy) Thu, 21 Feb 2008 13:16:15 +0100 libdbd-pg-perl (2.1.3-1) unstable; urgency=low [ Krzysztof Krzyżaniak (eloy) ] * New upstream release * Added me as Uploaders * debian/control: + Increase Standards-Version to 3.7.3 * debian/watch updated [ gregor herrmann ] * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser field (source stanza). Removed: XS-Vcs-Svn fields. * Remove empty /usr/share/perl5 directory. * Convert debian/copyright to UTF-8. * debian/rules: delete /usr/share/perl5 only if it exists. -- Krzysztof Krzyżaniak (eloy) Thu, 21 Feb 2008 12:49:21 +0100 libdbd-pg-perl (1.49-5) unstable; urgency=low [ Raphael Hertzog ] * Put the team as Maintainer and move myself to Uploaders. [ Damyan Ivanov ] * Promote Homepage to a real header * debian/watch - version=3 * debian/rules: + replace `pwd` with $(CURDIR), make with $(MAKE) + Remove unused hand-crafted patch routines + Remove unused dh_installdirs, dh_installmenu, dh_installcron, dh_link and dh_installmanpages -- Damyan Ivanov Fri, 28 Sep 2007 22:38:27 +0300 libdbd-pg-perl (1.49-4) unstable; urgency=low * Re-swap Maintainer and Uploaders; Raphael wants to be listed as maintainer. -- Joey Hess Sat, 11 Aug 2007 23:44:49 -0400 libdbd-pg-perl (1.49-3) unstable; urgency=low [ Raphael Hertzog ] * Improved description. Closes: #406450 [ Joey Hess ] * Maintainer and Uploaders seemed to be reversed/mixed up, swap. * Add self to uploaders. * Update to debhelper v5; use debian/compat. * Don't ignore make realclean errors. -- Joey Hess Sat, 11 Aug 2007 21:57:24 -0400 libdbd-pg-perl (1.49-2) unstable; urgency=high * Documented in NEWS.Debian the required changes to scripts due to the use of server side placeholders. Closes: #315708 * Now other changes apart from that, so it's safe for etch. Thus urgency=high. -- Raphael Hertzog Thu, 25 May 2006 22:10:34 +0000 libdbd-pg-perl (1.49-1) unstable; urgency=low * New upstream release. * Depends on libdbi-perl (>= 1.45) now. * Updated Standards-Version to 3.7.2. -- Raphael Hertzog Thu, 25 May 2006 21:59:54 +0000 libdbd-pg-perl (1.45-2) unstable; urgency=low * Remove build dependency on postgresql-client-8.0. It's no longer needed since pg_config is available via libpq-dev. Closes: #361858 * Added pkg-perl team in the Uploaders field. -- Raphael Hertzog Thu, 13 Apr 2006 23:42:24 +0200 libdbd-pg-perl (1.45-1) unstable; urgency=low * New upstream release. -- Raphael Hertzog Sun, 12 Mar 2006 18:10:03 +0100 libdbd-pg-perl (1.43-2) unstable; urgency=low * Remove README.Debian since libpq4 works with all versions of PostgreSQL and thus this module too. -- Raphael Hertzog Fri, 12 Aug 2005 13:52:18 +0200 libdbd-pg-perl (1.43-1) unstable; urgency=low * New upstream release. * Document in README.Debian the fact that the module is intended to work with PostgreSQL 8.0 or newer. Closes: #315708 -- Raphael Hertzog Fri, 12 Aug 2005 12:24:18 +0200 libdbd-pg-perl (1.42-2) unstable; urgency=low * Adapted for postgresql-8.0. * Build-depends on libpq-dev (>= 8.0) * Upgraded Standards-Version to 3.6.2. -- Raphael Hertzog Wed, 22 Jun 2005 14:56:06 +0200 libdbd-pg-perl (1.42-1) unstable; urgency=low * New upstream version. * Remove patch for memory leak, it has been integrated upstream. -- Raphael Hertzog Wed, 25 May 2005 07:16:29 +0000 libdbd-pg-perl (1.41-3) unstable; urgency=medium * Oops, I forgot to register the patch in the debian_patches variable. This time the problem is fixed. -- Raphael Hertzog Wed, 4 May 2005 15:29:07 +0200 libdbd-pg-perl (1.41-2) unstable; urgency=medium * Include a patch fixing a memory leak. Closes: #305468 This patch has already been integrated upstream but there's no new release yet. -- Raphael Hertzog Wed, 4 May 2005 15:21:03 +0200 libdbd-pg-perl (1.41-1) unstable; urgency=low * New upstream release. * Depends on libdbi-perl (>= 1.38). -- Raphael Hertzog Fri, 15 Apr 2005 09:32:02 +0200 libdbd-pg-perl (1.32-2) unstable; urgency=low * Depends on libdbi-perl (>= 1.35). Closes: #243703 * Built with PostgreSQL 7.4. Corrected Build-Depends accordingly. -- Raphael Hertzog Sun, 27 Jun 2004 21:25:37 +0000 libdbd-pg-perl (1.32-1) unstable; urgency=low * New upstream release. Closes: #235350 * Remove fix-memleak patch (applied upstream) * Remove quote patch (applied upstream) * New co-maintainer -- Ivan Kohler Tue, 9 Mar 2004 22:44:34 -0800 libdbd-pg-perl (1.31-2) unstable; urgency=low * New patch: quote.dpatch Change quote character from \" to ". Closes: #223398 -- Raphael Hertzog Tue, 9 Dec 2003 17:02:45 +0000 libdbd-pg-perl (1.31-1) unstable; urgency=low * New upstream version. Closes: #221743 * Integrated patch to fix mem leak in debian/patches this time. cf #167148 * Removed patch fixing version comparison since it has been fixed upstream. Removed patch removing spurious reference to Oracle too. * Added postgresql-client to the Build-Depends because of pg_config/pg_wrapper. -- Raphael Hertzog Mon, 8 Dec 2003 12:51:05 +0000 libdbd-pg-perl (1.22-3) unstable; urgency=low * Remove spurious reference to Oracle. Closes: #208556 -- Raphael Hertzog Sat, 6 Sep 2003 09:57:23 +0000 libdbd-pg-perl (1.22-2) unstable; urgency=low * Fix PG version comparison in several places. Closes: #198552 * Updated standards-version. -- Raphael Hertzog Sat, 12 Jul 2003 14:32:41 +0000 libdbd-pg-perl (1.22-1) unstable; urgency=low * New upstream release. Closes: #187436 * Updated section to "perl". -- Raphael Hertzog Tue, 8 Apr 2003 22:49:52 +0000 libdbd-pg-perl (1.20-2) unstable; urgency=low * Build-Depends on postgresql-dev (>= 7.3.1) to make sure the generated dependencies are "libpq3" and no more "libpgsql2". Closes: #174878 -- Raphael Hertzog Wed, 1 Jan 2003 16:34:36 +0100 libdbd-pg-perl (1.20-1) unstable; urgency=low * New upstream version. Closes: #172644 * No answer from upstream, so I'm applying Dan's patch. We'll see if anything break. Closes: #167148 * Updated the download URL in the copyright notice. * Now build depends on debhelper >= 4, updated DH_COMPAT accordingly. * Originally built with Postgresql 7.3 (but it's not enforced by Build-Depends). -- Raphael Hertzog Wed, 11 Dec 2002 19:29:25 +0100 libdbd-pg-perl (1.13-4) unstable; urgency=low * Updated the copyright notice. Closes: #157567 -- Raphael Hertzog Mon, 26 Aug 2002 12:22:33 +0200 libdbd-pg-perl (1.13-3) unstable; urgency=low * Recompile with perl 5.8. -- Raphael Hertzog Wed, 31 Jul 2002 20:35:10 +0200 libdbd-pg-perl (1.13-2) unstable; urgency=low * Try another patch for #146794. -- Raphael Hertzog Fri, 17 May 2002 16:31:33 +0200 libdbd-pg-perl (1.13-1) unstable; urgency=low * New upstream version. * Added a debian/watch file. * Apply patches for binary data support. Closes: #146794 -- Raphael Hertzog Thu, 16 May 2002 15:14:03 +0200 libdbd-pg-perl (1.01-3) unstable; urgency=medium * Moved to main. Closes: #140435 -- Raphael Hertzog Fri, 29 Mar 2002 13:10:59 +0100 libdbd-pg-perl (1.01-2) unstable; urgency=low * Recompile for Postregsql 7.2. Closes: #136430 * Updated Build-Depends accordingly. -- Raphael Hertzog Sat, 2 Mar 2002 13:12:08 +0100 libdbd-pg-perl (1.01-1) unstable; urgency=medium * New upstream version. Closes: #102223 -- Raphael Hertzog Sun, 8 Jul 2001 17:42:07 +0200 libdbd-pg-perl (0.98-2) unstable; urgency=medium * Move to non-us. Closes: #97115 * Full source upload because of this. -- Raphael Hertzog Sat, 19 May 2001 14:13:50 +0200 libdbd-pg-perl (0.98-1) unstable; urgency=medium * New upstream version. Closes: #96246 * I don't have any segfault with this version. Closes: #96298 Instead I have the error "no state" when calling fetchrow. * Build-Depends on postgresql-dev (>= 7.1release-4) to be sure that it will be built with a fixed libpgsql2.1 (cf #96460). -- Raphael Hertzog Sat, 5 May 2001 21:32:53 +0200 libdbd-pg-perl (0.97-1) unstable; urgency=medium * New upstream version. Closes: #94768 -- Raphael Hertzog Sun, 22 Apr 2001 16:07:21 +0200 libdbd-pg-perl (0.95-5) unstable; urgency=medium * Updated Build-Depends so that it requires libdbi-perl but >= 1.14-2. Closes: #94167 -- Raphael Hertzog Sat, 21 Apr 2001 12:49:17 +0200 libdbd-pg-perl (0.95-4) unstable; urgency=medium * Applied patch fixing a bug related to BLOB handling. Closes: #88537 * This patch has been submitted upstream by the submitter itself. -- Raphael Hertzog Tue, 6 Mar 2001 00:01:30 +0100 libdbd-pg-perl (0.95-3) unstable; urgency=medium * Updated for the latest perl policy which brings back perl to its "perl" package. * Complies with policy 3.5.2. * Uses the latest PostgreSQL. Closes: #86529 -- Raphael Hertzog Wed, 21 Feb 2001 22:24:33 +0100 libdbd-pg-perl (0.95-2) unstable; urgency=low * Simple recompile for perl-5.6. Closes: #77136 -- Raphael Hertzog Thu, 16 Nov 2000 09:14:02 +0100 libdbd-pg-perl (0.95-1) unstable; urgency=low * New upstream version. Closes: #72507 * Updated to latest policy. -- Raphael Hertzog Thu, 12 Oct 2000 13:20:51 +0200 libdbd-pg-perl (0.93-3) unstable; urgency=low * Simple recompile for woody with correct dependency for PostgreSQL 7. Closes: #64112, #63429 -- Raphael Hertzog Mon, 15 May 2000 00:04:05 +0200 libdbd-pg-perl (0.93-2) frozen unstable; urgency=low * This version needs to go to frozen since it will enable a smoother upgrade from potato to woody. * Now depends on libpgsql2 (<< 7.0) so that when someone will install postgresql 7, the dependencies won't be met and they'll have to upgrade to the woody version. Closes: #61378 -- Raphael Hertzog Sat, 1 Apr 2000 15:43:34 +0200 libdbd-pg-perl (0.93-1) unstable; urgency=low * New upstream version. * Applied patch for good escaping with pg_auto_escape. Closes: #52833 * Policy 3.1.1 compliance. -- Raphael Hertzog Mon, 27 Dec 1999 16:27:40 +0100 libdbd-pg-perl (0.92-1) unstable; urgency=low * New maintainer. * New upstream version. * Policy 3.0.1 compliance. * Closing "fixed" bugs : closes: #41819, #41432, #39918, #43315 * Converted to debhelper 2. -- Raphael Hertzog Mon, 13 Sep 1999 23:06:12 +0200 libdbd-pg-perl (0.89-1.1) unstable; urgency=low * NMU for the perl upgrade. Closes: #41819, #41432 * Corrected the rules files to conform to perl policy 1.0.1 * Compiled with perl-5.005. * Compiled with the latest postgresql (6.5.1-1) and corrected the dependency. Closes: #39918 * Upgraded standards-version to 3.0.0. Uses the new debstd. * Added an extended description. -- Raphael Hertzog Sat, 24 Jul 1999 18:12:40 +0200 libdbd-pg-perl (0.89-1) unstable; urgency=low * built against postgresql-6.4 * New upstream release -- Tom Lear Thu, 31 Dec 1998 13:12:29 -0800 libdbd-pg-perl (0.73-4) frozen unstable; urgency=low * removed i386-centricity - closes #28898 -- Tom Lear Tue, 3 Nov 1998 05:41:54 -0800 libdbd-pg-perl (0.73-3) unstable; urgency=low * depends on libdbi-perl (>=1.02) - closes #27145 * fixed description - closes #27727 -- Tom Lear Wed, 14 Oct 1998 17:33:22 -0700 libdbd-pg-perl (0.73-2) unstable; urgency=low * Non-maintainer release of the non-maintainer release. Doh * Recompiled against current DBI driver. * Removed perllocal.pod and .packlist files * Stripped binaries -- Martin Schulze Fri, 25 Sep 1998 11:31:07 +0200 libdbd-pg-perl (0.73-1) unstable; urgency=low * Initial Release. -- Tom Lear Sun, 2 Aug 1998 17:27:26 -0700