debian/0000755000000000000000000000000012236167530007173 5ustar debian/libdbi-perl.install0000644000000000000000000000021111615541016012735 0ustar debian/perl-dbdabi.make /usr/share/libdbi-perl debian/dh_perl_dbi /usr/bin debian/perl_dbi.pm /usr/share/perl5/Debian/Debhelper/Sequence debian/rules0000755000000000000000000000252011615541016010245 0ustar #!/usr/bin/make -f # this number comes from DBISTATE_VERSION in DBIXS.h # it is used for the Provides: perl-dbdabi-XX relationship # it needs to be updated manually because of the implications on the archive # (rebuilds of all libdbd-*-perl packages), see #577209 DBDABI_VERSION = 94 DBDABI_DETECTED_VERSION = $(shell cpp `perl -MExtUtils::Embed -e ccopts` debian/get-dbdabi-version.cpp | sh) PACKAGE = $(shell dh_listpackages) TMP = $(CURDIR)/debian/$(PACKAGE) %: dh $@ override_dh_auto_configure: ifeq ($(DBDABI_VERSION),$(DBDABI_DETECTED_VERSION)) dh_auto_configure else echo Aborting due to DBD ABI version mismatch - configured $(DBDABI_VERSION), detected $(DBDABI_DETECTED_VERSION) exit 1 endif override_dh_auto_build: dh_auto_build printf "%s\n%s\n%s\n" \ "# this variable is the preferred interface for generating a perl-dbdabi-* dependency." \ "# See #577209." \ "PERL_DBDABI_DEPENDS=perl-dbdabi-$(DBDABI_VERSION)" \ > debian/perl-dbdabi.make sed "s,@DBDABI_VERSION@,$(DBDABI_VERSION)," debian/dh_perl_dbi.in >debian/dh_perl_dbi chmod +x debian/dh_perl_dbi pod2man debian/dh_perl_dbi debian/dh_perl_dbi.1 override_dh_gencontrol: dh_gencontrol -- -Vperl-dbdabi-version=$(DBDABI_VERSION) override_dh_installexamples: dh_installexamples sed -i '1s|^#!perl|#!/usr/bin/perl|' $(TMP)/usr/share/doc/$(PACKAGE)/examples/* debian/patches/0000755000000000000000000000000012236166723010625 5ustar debian/patches/fix-spelling.patch0000644000000000000000000000151712006747733014254 0ustar Description: Fix spelling errors found by lintian Author: Alessandro Ghedini Origin: vendor Forwarded: no Last-Update: 2012-02-17 --- a/dbiproxy.PL +++ b/dbiproxy.PL @@ -108,7 +108,7 @@ =item B<--localaddr=ip> By default a daemon is listening to any IP number that a machine -has. This attribute allows to restrict the server to the given +has. This attribute allows one to restrict the server to the given IP number. =item B<--localport=port> --- a/lib/DBI/ProxyServer.pm +++ b/lib/DBI/ProxyServer.pm @@ -474,7 +474,7 @@ =item I (B<--localaddr=ip>) By default a daemon is listening to any IP number that a machine -has. This attribute allows to restrict the server to the given +has. This attribute allows one to restrict the server to the given IP number. =item I (B<--localport=port>) debian/patches/series0000644000000000000000000000015012006747733012037 0ustar t__06attrs.t__localefix.patch t__40profile.t__NTP.patch t__80proxy.t___syslogd.patch fix-spelling.patch debian/patches/t__80proxy.t___syslogd.patch0000644000000000000000000000071712145641240016161 0ustar Description: syslogd isn't necessarily on the buildds Reviewed-by: Nicholas Bamber Last-Update: 2010-10-07 Author: Nicholas Bamber --- a/t/80proxy.t +++ b/t/80proxy.t @@ -10,6 +10,10 @@ require VMS::Filespec if $^O eq 'VMS'; require Cwd; +# DEBIAN +print("1..1\nok 1 # skipped No syslogd in Debian build environments.\n"); +exit(0); + my $haveFileSpec = eval { require File::Spec }; my $failed_tests = 0; debian/patches/t__06attrs.t__localefix.patch0000644000000000000000000000122712236166723016264 0ustar Description: Fix LC_ALL to C in tests Fix LC_ALL to C for the error messages in the statement handle tests Author: Damyan Ivanov Reviewed-by: Xavier Guimard Last-Update: 2013-05-03 Forwarded: not-needed --- a/t/06attrs.t +++ b/t/06attrs.t @@ -3,6 +3,7 @@ use strict; use Test::More; +use POSIX qw(setlocale LC_ALL); ## ---------------------------------------------------------------------------- ## 06attrs.t - ... @@ -17,6 +18,9 @@ BEGIN { $|=1; +# For the error messages in the statement handle tests. +setlocale(LC_ALL, "C"); + my $using_autoproxy = ($ENV{DBI_AUTOPROXY}); my $dsn = 'dbi:ExampleP:dummy'; debian/patches/t__40profile.t__NTP.patch0000644000000000000000000000071212145641240015245 0ustar Description: A NTP clock adjustment of -0.00967s lead to FTBFS. Reviewed-by: Nicholas Bamber Last-Update: 2010-10-07 Forwarded: not-needed Author: gregor hermann --- a/t/40profile.t +++ b/t/40profile.t @@ -177,7 +177,7 @@ this kind of clock behaviour. Please retry. EOT # don't treat small negative values as failure - $shortest = 0 if $shortest > -0.008; + $shortest = 0 if $shortest > -0.8; } debian/NEWS0000644000000000000000000000050612236166545007700 0ustar libdbi-perl (1.630-1) unstable; urgency=low NOTE: This release enables PrintWarn setting by default, regardless of the value of the warnings switch (-w, use warnings, $WARNING, $^W). Applications using DBI may generate more log messages than before. -- Damyan Ivanov Tue, 05 Nov 2013 15:04:06 +0200 debian/README.Debian0000644000000000000000000000203411615541016011226 0ustar Dependencies for DBD drivers ============================ This information is only relevant for maintainers of Debian packages providing DBD drivers. Packages using the binary DBD<>DBI interface need to depend on the perl-dbdabi-* virtual package provided by libdbi-perl. To generate this dependency please do one of the following: debhelper using dh: Use the "perl_dbi" addon and ensure ${perl:Depends} is used in debian/control. This requires a build-dependency on libdbi-perl (>= 1.612). The debian/rules file might look as follows: #!/usr/bin/make -f %: dh $@ --with perl_dbi old-style debhelper: Run dh_perl_dbi after dh_perl and ensure ${perl:Depends} is used in debian/control. This requires a build dependency on libdbi-perl (>= 1.612). packages not using debhelper: Include /usr/share/libdbi-perl/perl-dbdabi.make in debian rules and use PERL_DBDABI_DEPENDS. This requires a build-dependency on libdbi-perl (>= 1.610.90+is+1.609). See http://bugs.debian.org/577209 for a discussion why this dependency is required. debian/get-dbdabi-version.cpp0000644000000000000000000000031011615541016013331 0ustar // this script gets piped through cpp to sh // cpp reads DBIXS.h and substitutes DBISTATE_VERSION, sh echoes it out cat >/dev/null < Source: https://metacpan.org/release/DBI/ Files: * Copyright: 1994-2012, Tim Bunce License: Artistic or GPL-1+ Files: Driver.xst Copyright: 1997-2002, Tim Bunce 2002, Jonathan Leffler License: Artistic or GPL-1+ Files: dbd_xsh.h Copyright: 2000-2002, Tim Bunce 2002, Jonathan Leffler License: Artistic or GPL-1+ Files: dbipport.h Copyright: 2004-2010, Marcus Holland-Moritz 2001, Paul Marquess (Version 2.x) 1999, Kenneth Albanowski (Version 1.x) License: Artistic or GPL-1+ Files: dbiprof.PL Copyright: 2002, Sam Tregar License: Artistic or GPL-1+ Files: dbiproxy.PL lib/DBI/ProxyServer.pm Copyright: 1997, Jochen Wiedmann License: Artistic or GPL-1+ Files: lib/DBI/DBD.pm Copyright: 1997-2006, Tim Bunce 1997-2006, Jochen Wiedmann 1997-2006, Jonathan Leffler 1997-2006, Steffen Goeldner License: Artistic or GPL-1+ Files: lib/DBI/FAQ.pm Copyright: 1994-2000, Alligator Descartes License: Artistic Files: lib/DBD/DBM.pm Copyright: 2004, Jeff Zucker 2010-2013, Jens Rehsack & H.Merijn Brand License: Artistic or GPL-1+ Files: lib/DBI/SQL/Nano.pm Copyright: 2004, Jeff Zucker 2010, Jens Rehsack License: Artistic or GPL-1+ Files: lib/DBI/ProfileData.pm lib/DBI/ProfileDumper/Apache.pm lib/DBI/ProfileDumper.pm Copyright: 2002, Sam Tregar License: Artistic or GPL-1+ Files: lib/DBI/DBD/Metadata.pm Copyright: 1997-2003, Tim Bunce 1997-2003, Jochen Wiedmann 1997-2003, Jonathan Leffler 1997-2003, Steffen Goeldner License: Artistic or GPL-1+ Files: lib/DBI/DBD/SqlEngine.pm Copyright: 1998, Jochen Wiedmann 2004, Jeff Zucker 2009-2013, H.Merijn Brand 2009-2013, Jens Rehsack License: Artistic or GPL-1+ Files: lib/DBD/File.pm lib/DBD/File/* Copyright: 2009-2013, H.Merijn Brand 2009-2013, Jens Rehsack 2004-2009, Jeff Zucker 1998-2004, Jochen Wiedmann License: Artistic or GPL-1+ Files: lib/DBD/Proxy.pm Copyright: 1997,1998, Jochen Wiedmann License: Artistic or GPL-1+ Files: lib/DBD/File/HowTo.pod lib/DBI/DBD/SqlEngine/HowTo.pod Copyright: 2010, H.Merijn Brand 2010, Jens Rehsack License: Artistic or GPL-1+ Files: lib/DBI/DBD/SqlEngine/Developers.pod Copyright: 2010-2013, H.Merijn Brand 2010-2013, Jens Rehsack License: Artistic or GPL-1+ Files: debian/* Copyright: 1997-1999, Martin Schulze 1997-1998, Ben Gertzfield 1997, Christian Schwarz 1999-2007, Christian Hammers 2002, Dirk Eddelbuettel 2007-2009, Damyan Ivanov 2008-2013, gregor herrmann 2008, Niko Tyni 2009, Ryan Niebur 2010, Ansgar Burchardt 2010, Nicholas Bamber 2013, 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/watch0000644000000000000000000000021412126251137010214 0ustar version=3 opts="uversionmangle=s/(?<=\.\d\d)$/0/" \ https://metacpan.org/release/DBI/ .*/DBI-v?(\d[\d.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) debian/libdbi-perl.examples0000644000000000000000000000001511615541016013107 0ustar test.pl ex/* debian/source/0000755000000000000000000000000011615541016010466 5ustar debian/source/format0000644000000000000000000000001411615541016011674 0ustar 3.0 (quilt) debian/control0000644000000000000000000000373012145641240010573 0ustar Source: libdbi-perl Maintainer: Debian Perl Group Uploaders: Christian Hammers , Damyan Ivanov , Niko Tyni , gregor herrmann , Ryan Niebur , Jonathan Yu , Ansgar Burchardt , Nicholas Bamber , Alessandro Ghedini , Xavier Guimard Section: perl Priority: optional Build-Depends: debhelper (>= 9.20120312), libtest-pod-coverage-perl, libtest-pod-perl, perl Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libdbi-perl.git Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libdbi-perl.git Homepage: http://dbi.perl.org/ Package: libdbi-perl Architecture: any Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends} Breaks: libdbd-anydata-perl (<< 0.11+), libdbd-csv-perl (<< 0.3600+), libsql-statement-perl (<< 1.33+) Suggests: libclone-perl (>= 0.34), libmldbm-perl, libnet-daemon-perl, libplrpc-perl, libsql-statement-perl (>= 1.402) Provides: perl-dbdabi-${perl-dbdabi-version} Description: Perl Database Interface (DBI) DBI (DataBase Interface) is a Perl framework that provides a common interface to access various backend databases in a uniform manner. DBD (DataBase Driver) modules provide implementations for various backend data storage mechanisms including networked relational databases (particularly SQL databases) and even web services such as the Google search engine. . It is extremely portable and available for a wide range of operating systems, architectures and data stores, including: . * Oracle * Microsoft SQL Server * IBM DB2 * SQLite * PostgreSQL * Firebird * MySQL debian/libdbi-perl.manpages0000644000000000000000000000002511615541016013065 0ustar debian/dh_perl_dbi.1 debian/clean0000644000000000000000000000010011615541016010162 0ustar debian/perl-dbdabi.make debian/dh_perl_dbi debian/dh_perl_dbi.1 debian/dh_perl_dbi.in0000755000000000000000000000206711615541016011761 0ustar #! /usr/bin/perl use strict; use warnings; use Debian::Debhelper::Dh_Lib; init(); for my $package (@{ $dh{DOPACKAGES} }) { addsubstvar($package, 'perl:Depends', 'perl-dbdabi-@DBDABI_VERSION@', undef); } __END__ =head1 NAME dh_perl_dbi - add dependencies required for DBI modules =head1 SYNOPSIS B [S>] =head1 DESCRIPTION dh_perl_dbi is a debhelper program that is responsible for adding a dependency on perl-dbdabi-* to the ${perl:Depends} substitution variable. Such a dependency is required for packages that use the DBDEEDBI binary interface; do I use this for packages that only use the DBI module. A debhelper addon is also provided. This makes it possible to just use #!/usr/bin/make -f %: dh $@ --with perl_dbi for F. =head1 SEE ALSO L L =head1 COPYRIGHT AND LICENSE Copyright 2010, Ansgar Burchardt This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself. debian/perl_dbi.pm0000644000000000000000000000051411615541016011304 0ustar # perl_dbi.pm - debhelper addon for running dh_perl_dbi # # Copyright 2010, Ansgar Burchardt # # This program is free software, you can redistribute it and/or modify it # under the same terms as Perl itself. use warnings; use strict; use Debian::Debhelper::Dh_Lib; insert_after("dh_perl", "dh_perl_dbi"); 1; debian/compat0000644000000000000000000000000212006747733010375 0ustar 9 debian/changelog0000644000000000000000000005657412236167530011066 0ustar libdbi-perl (1.630-1) unstable; urgency=low * Imported Upstream version 1.630 * add NEWS entry about PrintWarn being enabled by default regardless of the warnings switch value * update t__06attrs.t__localefix.patch to apply cleanly * update lintian override about unbreakable line in DBI::Const::GetInfo::ODBC manual -- Damyan Ivanov Tue, 05 Nov 2013 15:14:51 +0200 libdbi-perl (1.628-1) unstable; urgency=low * New upstream release. * Update years of packaging copyright. -- gregor herrmann Fri, 09 Aug 2013 16:00:00 +0200 libdbi-perl (1.627-1) unstable; urgency=low [ gregor herrmann ] * debian/control: update {versioned,alternative} (build) dependencies. [ 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 ] * Imported Upstream version 1.625, 1.626, 1.627 Fixes "FTBFS with perl 5.18: test failures" (Closes: #708006) * Update debian/copyright years * Bump Standards-Version to 3.9.4 * Refresh patches * Update versions of breaked dependencies * Add libclone-perl, libmldbm-perl, libnet-daemon-perl and libsql- statement-perl in suggested dependencies * Move libplrpc-perl from dependencies to suggested dependencies as required by META.json -- gregor herrmann Sat, 18 May 2013 14:40:27 +0200 libdbi-perl (1.622-1) unstable; urgency=low * New upstream release -- Alessandro Ghedini Thu, 07 Jun 2012 12:46:18 +0200 libdbi-perl (1.621-1) unstable; urgency=low * New upstream release -- Alessandro Ghedini Sun, 27 May 2012 15:06:25 +0200 libdbi-perl (1.620-1) unstable; urgency=low * New upstream release -- Alessandro Ghedini Fri, 27 Apr 2012 12:26:55 +0200 libdbi-perl (1.619-1) unstable; urgency=low * New upstream release * Email change: Alessandro Ghedini -> ghedo@debian.org -- Alessandro Ghedini Tue, 24 Apr 2012 22:34:02 +0200 libdbi-perl (1.618-1) unstable; urgency=low * New upstream release * Add myself to Uploaders * Update debian/copyright format as in Debian Policy 3.9.3 * Bump Standards-Version to 3.9.3 * Update copyright years for dbipport.h * Refresh fix-spelling.patch -- Alessandro Ghedini Sat, 25 Feb 2012 19:20:30 +0100 libdbi-perl (1.617-1) unstable; urgency=low * Team upload [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ Salvatore Bonaccorso ] * debian/copyright: Replace DEP5 Format-Specification URL from svn.debian.org to anonscm.debian.org URL. [ Alessandro Ghedini ] * New upstream release * Bump Standards-Version to 3.9.2 (no changes needed) * Bump debhelper compat level to 9 * Update upstream copyright years * Add fix-spelling.patch (fixes spelling-error-in-manpage) -- Alessandro Ghedini Fri, 17 Feb 2012 14:49:58 +0100 libdbi-perl (1.616-1) unstable; urgency=low [ Ansgar Burchardt ] * New upstream release 1.613 * Drop patch spelling.patch (applied upstream). * dh_perl_dbi: No longer add unversioned dependency on libdbi-perl. * debian/copyright: Refer to /usr/share/common-licenses/GPL-1. * Bump Standards-Version to 3.9.1. * Update my email address. [ Nicholas Bamber ] * New upstream release 1.615 * Added myself to Uploaders * Refreshed patches * Added myself to copyright, removed 'GNU/Linux' and compressed dates * Added comment to lintian override [ Jonathan Yu ] * New upstream release 1.616 [ gregor herrmann ] * Refresh patch t__40profile.t__NTP.patch (offset). * debian/copyright: add information about new third-party files. * Fix hashbang in example scripts. -- gregor herrmann Wed, 09 Feb 2011 19:31:17 +0100 libdbi-perl (1.612-1) unstable; urgency=low * New upstream release. * Add dh_perl_dbi command and perl_dbi addon for debhelper. * README.Debian: Document how to generate a dependency on perl-dbdabi-*. * Bump build-dep on libtest-simple-perl to >= 0.90. * Breaks libdbd-anydata-perl (<< 0.09+), libdbd-csv-perl (<< 0.3000), libsql-statement-perl (<< 1.28). * Update debian/copyright for new upstream release; merge all entries for files copyright by main copyright holder. * Refresh patch spelling.patch. * Bump Standards-Version to 3.9.0 (no changes). * Add myself to Uploaders. -- Ansgar Burchardt Sun, 18 Jul 2010 23:01:32 +0900 libdbi-perl (1.611-1) unstable; urgency=low * New upstream release (closes: #580018). * Update copyright information for some files. * Refresh spelling.patch. * Rename lintian override file in source package. * debian/control: add build dependency on Test::Simple 0.84. -- gregor herrmann Wed, 12 May 2010 00:27:00 +0200 libdbi-perl (1.610.90+is+1.609-1) unstable; urgency=low [ gregor herrmann ] * Re-upload 1.609 as 1.610.90+is+1.609-1 as a preparation for a clean DBI<>DBD interface change transition (cf. #577209). * debian/watch: ignore development versions again. * debian/control: remove build dependency on Test::Simple 0.84. * Extend patch spelling.patch. [ Niko Tyni ] * Address breakage in the DBD<>DBI binary interface on partial upgrades (see #577209): + Provides: perl-dbdabi-94 so that libdbd-*-perl plugins can depend on that + the recommended binNMU safe way to generate the perl-dbdabi-* dependency is to include /usr/share/libdbi-perl/perl-dbdabi.make in debian/rules and use PERL_DBDABI_DEPENDS -- gregor herrmann Fri, 16 Apr 2010 22:52:00 +0200 libdbi-perl (1.610.90-1) unstable; urgency=low [ Ryan Niebur ] * Update jawnsy's email address * Update ryan52's email address [ gregor herrmann ] * debian/control: Changed: (build-)depend on perl instead of perl- modules. * debian/control: remove "Suggests: dbishell", dbishell is only in etch (in Debian) and hardy (in Ubuntu); thanks to Martin von Gagern for noticing (LP: #497971). * debian/watch: allow development versions again. * New upstream release. * Set Standards-Version to 3.8.4 (no changes). * Build needs Test::Simple 0.84. * Refresh patch t__40profile.t__NTP.patch. * Convert to source format 3.0 (quilt). Remove quilt framework. * debian/copyright: update formatting and upstream copyright years. * Add patch spelling.patch to fix some spelling mistakes. -- gregor herrmann Thu, 08 Apr 2010 23:43:43 +0200 libdbi-perl (1.609-1) unstable; urgency=low * New upstream release -> Various bug fixes, especially for DBD::File * Cleaned up copyright file a bit * Added /me to Uploaders * New debian/rules format * Updated package description [ Nathan Handler ] * debian/watch: Update to ignore development releases. [ Damyan Ivanov ] * bump Standards-Version to 3.8.2 (no changes needed) * bump years of copyright over DBI.pm -- Damyan Ivanov Mon, 22 Jun 2009 11:15:45 +0300 libdbi-perl (1.608-1) unstable; urgency=low [ gregor herrmann ] * debian/control: Changed: Switched Vcs-Browser field to ViewSVN (source stanza). * debian/control: Added: ${misc:Depends} to Depends: field. [ Ryan Niebur ] * New upstream release * Add myself to Uploaders * Debian Policy 3.8.1 * update copyright * remove patches applied upstream * refresm patches * update lintian overrides for man page * add descriptions to the patches -- Ryan Niebur Tue, 05 May 2009 22:32:18 -0700 libdbi-perl (1.607-1) unstable; urgency=low * New upstream release. * debian/control: change my email address. * Add example scripts from ex/ to the package. * debian/copyright: wrap some long lines. -- gregor herrmann Sat, 26 Jul 2008 18:15:04 +0200 libdbi-perl (1.605-1) unstable; urgency=low * Homepage: http://dbi.perl.org/ Closes: #479095 Thanks to Peter Karbaliotis * New upstream release * update years of copyright * update t__85gofer.t__timeout.patch to apply again * refresh all patches with -p ab --no-timestamps --no-index * adapt lintian override to new upstream source * minimize debian/rules thanks to debhelper 7 + update compat-level and dh build-dependency accordingly * Update to Policy 3.8.0 + add debian/README.source * add more lintian overrides about man unable to break URLs -- Damyan Ivanov Fri, 20 Jun 2008 17:16:01 +0300 libdbi-perl (1.604-1) unstable; urgency=low * New upstream release. * Remove patch manpage-typo, applied upstreams. * Refresh patch t__85gofer.t__timeout.patch. * debian/rules: remove obsolete source and diff targets, add install target to .PHONY. * Set debhelper compatibility level back to 5. * debian/control: make dependency on quilt versioned. -- gregor herrmann Thu, 27 Mar 2008 17:46:54 +0100 libdbi-perl (1.602-1) unstable; urgency=low * New upstream release. * Refresh patch t__80proxy.t___syslogd.patch. * Change back lib/DBI/Util/CacheMemory.pm to orginal contents from .orig.tar.gz (the .diff.gz contained a changed $Id). * Add /me to Uploaders. * Add lintian override for manpage-has-errors-from-man where a line is too long because of a URL. * Add libtest-pod-coverage-perl to the build dependencies; t/pod-coverage.t doesn't do anything yet but might change in the future. -- gregor herrmann Fri, 15 Feb 2008 13:37:42 +0100 libdbi-perl (1.601-2) unstable; urgency=low [ gregor herrmann ] * debian/rules: - don't install empty /usr/share/perl5 directory - let -stamp targets only depend on other -stamp targets - delete /usr/share/perl5 only if it exists - remove *VENDORARCH* variables * debian/watch: - wrap line and remove comments - remove dash from the version capture * debian/control: - use ${perl:Depends} instead of hard-coding a required perl version (closes: #463229). - add libtest-pod-perl to Build-Depends * Set Standards-Version to 3.7.3 (no changes). * Set debhelper compatibility level to 6. * debian/watch: use dist-based URL. * debian/copyright: copy copyright holders and license statement verbatim from each and every file. [ Niko Tyni ] * remove traces of an old unneeded 'chmod -x Roadmap.pod' in debian/rules. * remove an obsolete conflict with pre-Sarge versions of libdbd-csv-perl. * Build-Depend on libplrpc-perl for better test coverage. * debian/patches/manpage-typo: s/usefull/useful/g in the dbiproxy manpage. (Closes: #414239) -- Niko Tyni Mon, 11 Feb 2008 10:43:28 +0200 libdbi-perl (1.601-1) unstable; urgency=low [ gregor herrmann ] * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser field (source stanza); Homepage field (source stanza). Removed: XS- Vcs-Svn fields. [ Damyan Ivanov ] * New upstream release * Refresh debian/copyright + update years + state upstream URL + quote licensing terms * Convert from cdbs to debhelper. Add dependency on quilt * Refresh patches * Drop unneeded lintian override description-synopsis-starts-with-a-capital-letter * Drop unneeded "chmod -x DBI/Roadmap,pm" * Homepage: http://dbi.perl.org/ * debian/watch: add upstream version mangling to allow future versions of x.yy become x.yy0 forcing three digit minor -- Damyan Ivanov Tue, 23 Oct 2007 11:35:01 +0300 libdbi-perl (1.59-1) unstable; urgency=low * New upstream release * Dropped goferperl.pl.diff as goferperl.pl itself is dropped upstream * Change Maintainer to Debian Perl Group, moved Christian Hammers to Uploaders; Added myself to Uploaders too * DebHelper compat level 5 * debian/copyright + Mention Debian Perl Group as present maintainer + Fixed download URL * debian/watch - use www.cpan.org, drop uupdate as we use svn-upgrade -- Damyan Ivanov Wed, 12 Sep 2007 10:02:38 +0300 libdbi-perl (1.58-2) unstable; urgency=low * Fixed timeout for FTBFS on arm and m68k -- Christian Hammers Mon, 20 Aug 2007 21:53:41 +0200 libdbi-perl (1.58-1) unstable; urgency=low * New upstream release -- Christian Hammers Thu, 16 Aug 2007 23:33:23 +0200 libdbi-perl (1.57-1) unstable; urgency=low * New upstream release. Fixes dataloss bug. -- Christian Hammers Thu, 21 Jun 2007 23:44:02 +0200 libdbi-perl (1.55~svn20070405-2) unstable; urgency=low * New upstream release from SVN to check m68k FTBFS problem. -- Christian Hammers Thu, 22 Mar 2007 22:01:51 +0100 libdbi-perl (1.53-1) unstable; urgency=low * New upstream release -- Christian Hammers Tue, 21 Nov 2006 18:27:48 +0100 libdbi-perl (1.52-1) unstable; urgency=low * New upstream release -- Christian Hammers Thu, 24 Aug 2006 00:17:26 +0200 libdbi-perl (1.51-2) unstable; urgency=low * Applied memory leak patch (thanks to Doru Theodor Petrescu and Sancho Lerena). -- Christian Hammers Tue, 11 Jul 2006 00:18:45 +0200 libdbi-perl (1.51-1) unstable; urgency=low * New upstream release. (thanks to Martin von Oertzen for reminding). Closes: #373938 -- Christian Hammers Fri, 16 Jun 2006 16:00:11 +0200 libdbi-perl (1.50-2) unstable; urgency=low * Increased tolerance of the t/40profile regression test which lead to FTBFS when NTP adjusted the time by -0.0097s. * Now using cdbs/simple-patchsys. -- Christian Hammers Sat, 28 Jan 2006 14:35:16 +0100 libdbi-perl (1.50-1) unstable; urgency=low * New upstream release -- Christian Hammers Mon, 9 Jan 2006 22:09:07 +0100 libdbi-perl (1.48-2) unstable; urgency=low * Corrected watch file. -- Christian Hammers Fri, 16 Sep 2005 01:15:25 +0200 libdbi-perl (1.48-1) unstable; urgency=low * New upstream release. -- Christian Hammers Sat, 4 Jun 2005 05:20:21 +0200 libdbi-perl (1.46-6) unstable; urgency=high * SECURITY Javier Fernandez-Sanguino Pena from the Debian Security Audit Project discovered that the DBI library, the Perl5 database interface, creates a temporary PID file in an insecure manner. This can be exploited by a malicious user to overwrite arbitrary files owned by the person executing the parts of the library. (DSA 658-1, CAN-2005-0077) -- Christian Hammers Sun, 23 Jan 2005 23:00:04 +0100 libdbi-perl (1.46-5) unstable; urgency=low * Fixed lintian warnings and updated description. -- Christian Hammers Sat, 8 Jan 2005 20:44:31 +0100 libdbi-perl (1.46-4) unstable; urgency=low * Really adjusted perl dependencies to the ones in testing. -- Christian Hammers Tue, 28 Dec 2004 01:32:35 +0100 libdbi-perl (1.46-3) unstable; urgency=low * Adjusted perl dependencies to the ones in testing which are sufficient. -- Christian Hammers Mon, 27 Dec 2004 21:37:30 +0100 libdbi-perl (1.46-2) unstable; urgency=low * Adjusted perl-modules build-dep to fix FTBFS on ARM. -- Christian Hammers Tue, 21 Dec 2004 01:57:11 +0100 libdbi-perl (1.46-1) unstable; urgency=low * New upstream release -- Christian Hammers Mon, 20 Dec 2004 22:26:10 +0100 libdbi-perl (1.45-1) unstable; urgency=low * New upstrem version. -- Christian Hammers Mon, 11 Oct 2004 21:45:54 +0200 libdbi-perl (1.43-1) unstable; urgency=low * New upstream release * Updated watch file to version 2. * Disabled test t/80proxy.t as it depends on a running syslogd which the build environments do not have. -- Christian Hammers Mon, 2 Aug 2004 01:05:33 +0200 libdbi-perl (1.42-4) unstable; urgency=low * Switched to the CDBS. -- Christian Hammers Fri, 23 Jul 2004 20:59:37 +0200 libdbi-perl (1.42-3) unstable; urgency=low * Added conflicts to current libdbd-csv-perl version which also ships DBD::File although in an older version. It's maintainer has been contacted. -- Christian Hammers Thu, 10 Jun 2004 19:18:10 +0200 libdbi-perl (1.42-2) unstable; urgency=low * Adjusted section. -- Christian Hammers Wed, 2 Jun 2004 01:45:26 +0200 libdbi-perl (1.42-1) unstable; urgency=low * New upstream version. -- Christian Hammers Wed, 2 Jun 2004 01:30:42 +0200 libdbi-perl (1.41-1) unstable; urgency=low * New upstream release * Replaced mentioning of DBI::Shell in the package description by a suggestion to the dbishell package as DBI::Shell is no longer included. Closes: #234671 -- Christian Hammers Tue, 2 Mar 2004 23:14:04 +0100 libdbi-perl (1.40-3) unstable; urgency=low * Fixed manpage of DBI::ProxyServer (thanks to Frederic Briere). Closes: #232691 -- Christian Hammers Mon, 23 Feb 2004 04:46:03 +0100 libdbi-perl (1.40-2) unstable; urgency=low * Raised the suggestion for libprpc-perl as two binaries from DBI needs it (thanks to Frederic Briere). Closes: #108569 -- Christian Hammers Mon, 23 Feb 2004 04:14:55 +0100 libdbi-perl (1.40-1) unstable; urgency=low * New upstream release -- Christian Hammers Sat, 10 Jan 2004 21:56:59 +0100 libdbi-perl (1.38-1) unstable; urgency=low * New upstream release. -- Christian Hammers Sun, 26 Oct 2003 02:28:06 +0100 libdbi-perl (1.35-1) unstable; urgency=low * New upstream release. -- Christian Hammers Tue, 25 Mar 2003 23:27:13 +0100 libdbi-perl (1.32-1) unstable; urgency=low * New upstream release. (reenabled taint tests that were accidently left disabled). Closes: #177756 -- Christian Hammers Tue, 21 Jan 2003 19:58:47 +0100 libdbi-perl (1.30-1) unstable; urgency=medium * New upstream release Is supposed to fix a segfault that occurs in conjunction with HTML::Mason. Closes: #161825 -- Christian Hammers Sun, 29 Sep 2002 01:29:07 +0200 libdbi-perl (1.28-4) unstable; urgency=low * Corrected build-depends. -- Christian Hammers Sun, 25 Aug 2002 18:23:26 +0200 libdbi-perl (1.28-3) unstable; urgency=medium * Updated for perl-5.8. Closes: #158095, #158113 -- Christian Hammers Sun, 25 Aug 2002 17:53:47 +0200 libdbi-perl (1.28-2) unstable; urgency=low * Corrected copyright. Closes: #157570 -- Christian Hammers Fri, 23 Aug 2002 23:34:27 +0200 libdbi-perl (1.28-1) unstable; urgency=low * New upstream release -- Christian Hammers Tue, 18 Jun 2002 18:53:14 +0200 libdbi-perl (1.21-2) unstable; urgency=low * Acknowleging NMU from Dirk Eddenbuettel. Thanks! Closes: #133020 -- Christian Hammers Sun, 17 Feb 2002 22:28:04 +0100 libdbi-perl (1.21-1) unstable; urgency=low * Non-maintainer upload of a new upstream release * No new changes made, copied debian/ from 1.20 and edited changelog * Follows a bug filed eight days ago (Closes: #133020) -- Dirk Eddelbuettel Sat, 16 Feb 2002 20:14:01 -0600 libdbi-perl (1.20-1) unstable; urgency=low * New upstream release NOTE: Please read the Changes.gz file for compatibility problems with fetchall_* functions. -- Christian Hammers Tue, 27 Nov 2001 00:39:09 +0100 libdbi-perl (1.19-1) unstable; urgency=low * New upstream release -- Christian Hammers Wed, 8 Aug 2001 00:09:15 +0200 libdbi-perl (1.18-1) unstable; urgency=low * New upstream release -- Christian Hammers Tue, 5 Jun 2001 22:25:20 +0200 libdbi-perl (1.15-1) unstable; urgency=low * New upstream release -- Christian Hammers Fri, 30 Mar 2001 20:15:06 +0200 libdbi-perl (1.14-4) unstable; urgency=low * Adjusted the priority from extra to optional. -- Christian Hammers Mon, 19 Feb 2001 00:28:13 +0100 libdbi-perl (1.14-3) unstable; urgency=low * Updated to latest policy and Perl policy. * Corrected maintainer email. -- Christian Hammers Sat, 17 Feb 2001 17:39:24 +0100 libdbi-perl (1.14-2) unstable; urgency=medium * Recompiled for perl-5.6. Other maintainers are waiting for this. Closes: #77187 -- Christian Hammers Thu, 16 Nov 2000 13:08:08 +0100 libdbi-perl (1.14-1) unstable; urgency=low * New upstraem version. -- Christian Hammers Sun, 30 Jul 2000 17:37:17 +0200 libdbi-perl (1.13-4) unstable unstable; urgency=low * Included dbiproxy. (Although unusable untill someone packages RPC/PlServer.pm or installs this locally) -- Christian Hammers Sun, 30 Jul 2000 17:37:12 +0200 libdbi-perl (1.13-2) frozen unstable; urgency=low * Added dbish binary. -- Christian Hammers Sat, 22 Jan 2000 16:35:49 +0100 libdbi-perl (1.13-1) unstable; urgency=low * New upstream version. * Fixed typo in FAQ. Closes: #23247 -- Christian Hammers Sun, 5 Dec 1999 17:13:50 +0100 libdbi-perl (1.12-1) unstable; urgency=low * Recompiled for perl-5.005. * New upstream version. -- Christian Hammers Tue, 6 Jul 1999 00:56:26 +0200 libdbi-perl (1.06-3) unstable; urgency=high * Fix of grave bug: A __register_frame_info case. * Now I explicit depend on libc >= 2.1 ! -- Christian Hammers Tue, 4 May 1999 23:50:56 +0200 libdbi-perl (1.06-2) unstable; urgency=low * New maintainer upload -- Christian Hammers Tue, 27 Apr 1999 22:53:03 +0200 libdbi-perl (1.06-1) unstable; urgency=low * New upstream version * Added authors email address to copyright file -- Martin Schulze Wed, 27 Jan 1999 23:36:48 +0100 libdbi-perl (1.02-1) unstable; urgency=low * New upstream source * New maintainer * New Standards-Version * New packge description * Included test.pl * Moved it out of contrib since it's distributed under the terms of the GNU GPL. * Used my own debian/rules style -- Martin Schulze Thu, 24 Sep 1998 11:11:36 +0200 libdbi-perl (0.92-2) unstable; urgency=low * Whoops! I was making a shlibs file when I didn't need to. Removed call to dh_makeshlibs. This fixes the last of the lintian warnings. -- Ben Gertzfield Wed, 11 Feb 1998 13:18:59 -0800 libdbi-perl (0.92-1) unstable; urgency=low * New upstream version. * debhelper 0.60 fixed the bad permissions that lintian caught. -- Ben Gertzfield Mon, 9 Feb 1998 16:10:34 -0800 libdbi-perl (0.91-1) unstable; urgency=low * New upstream version. * New maintainer. * Compiled with perl 5.004.04-3, fixes bug #15837 * Fixed debian/rules file to properly install manpages, another part of #15837. -- Ben Gertzfield Sun, 28 Dec 1997 21:25:13 -0800 libdbi-perl (0.89-1) unstable; urgency=low * New maintainer address * Linked against perl 5.004 as this is the official perl in hamm. Thanks to Christian Schwarz (schwarz@debian.org) for informing me. * New upstream version (Bug#12249) * Added my source routines to debian/rules * Removed .packlist files (Bug#11301) -- Martin Schulze Wed, 3 Sep 1997 08:57:41 +0200 libdbi-perl (0.79-1) unstable; urgency=low * Initial Release. -- Christian Schwarz Sat, 12 Apr 1997 21:48:21 +0200 Local variables: mode: debian-changelog End: debian/libdbi-perl.lintian-overrides0000644000000000000000000000034112236167235014740 0ustar # URLs # Note the .pm file is marked as being a private interface and subject to change libdbi-perl: manpage-has-errors-from-man usr/share/man/man3/DBI::Const::GetInfo::ODBC.3pm.gz 165: warning [p 1, 4.0i]: can't break line