debian/0000755000000000000000000000000012264503761007174 5ustar debian/compat0000644000000000000000000000000212264503761010372 0ustar 9 debian/copyright0000644000000000000000000000515712264503761011137 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: DBD-SQLite Upstream-Contact: Adam Kennedy Source: https://metacpan.org/release/DBD-SQLite/ Files: * Copyright: 2002-2007, Matt Sergeant 2008, Francis J. Lacoste 2008, Wolfgang Sourdeau 2008-2013, Adam Kennedy 2008, Audrey Tang 2009-2013, Kenichi Ishigaki License: Artistic or GPL-1+ Files: ./[a-z]*.c ./[a-z]*.h License: public-domain ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. Comment: (= sqlite library) Files: fts3_tokenizer.h License: public-domain ** The author disclaims copyright to this source code. Files: ppport.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: inc/Test/NoWarnings.pm Copyright: 2003-2007, Fergal Daly 2010, Adam Kennedy License: Artistic or GPL-1+ Files: debian/* Copyright: 2002-2003, Ardo van Rangelrooij 2003-2009, Krzysztof Krzyżaniak (eloy) 2005, Marcelo E. Magallon 2006-2011, gregor herrmann 2006, Andreas Barth 2006-2008, Niko Tyni 2007, David Paleino 2009-2010, Jonathan Yu 2009, Gunnar Wolf 2009, Maximilian Gass 2009, Ryan Niebur 2010, Ansgar Burchardt 2010-2013, Salvatore Bonaccorso 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/rules0000755000000000000000000000022512264503761010253 0ustar #!/usr/bin/make -f %: dh $@ --with perl_dbi override_dh_auto_install: dh_auto_install rm -r debian/libdbd-sqlite3-perl/usr/lib/perl5/auto/share debian/watch0000644000000000000000000000016012264503761010222 0ustar version=3 https://metacpan.org/release/DBD-SQLite/ .*/DBD-SQLite-v?(\d[\d.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) debian/NEWS0000644000000000000000000000526012264503761007676 0ustar libdbd-sqlite3-perl (1.40-1) unstable; urgency=low From upstream changes: *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS *** - Resolved #56444: immediate transaction should be on by default, and the doc be updated. If you really need the deferred transaction (which had long been the default), set sqlite_use_immediate_transaction to false explicitly. (ISHIGAKI) -- Salvatore Bonaccorso Sun, 11 Aug 2013 09:21:30 +0200 libdbd-sqlite3-perl (1.37-1) unstable; urgency=low From upstream changes: *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS *** - Updated to SQLite 3.7.10 (ISHIGAKI) Note that this release changed the default schema format number, that means newly created database files will be unreadable by SQLite version prior to 3.3.0 (2006-01-10) (or DBD::SQLite prior to 1.12) unless you explicitly issue "PRAGMA legacy_file_format=ON". -- Salvatore Bonaccorso Sun, 10 Jun 2012 08:32:09 +0200 libdbd-sqlite3-perl (1.35-1) unstable; urgency=low From upstream changes: *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS *** - Resolved #67581: bind_param SQL_INTEGER numifies value; Now DBD::SQLite croaks if you explicitly specify datatype (with bind_param) and datatype mismatch happens (ISHIGAKI) - Datatype set in the bind_param(_array) becomes sticky now (as per DBI spec). This potentially affects code depending on current undocumented and broken behavior. (Yuriy Kaminskiy) -- gregor herrmann Fri, 02 Dec 2011 17:18:12 +0100 libdbd-sqlite3-perl (1.31-1) unstable; urgency=low The following changes may break older applications: * Fix corruption of BLOB data stored in utf8 columns; this data is now stored as bytes even if the flag is set (RT#54721) -- Jonathan Yu Sun, 26 Dec 2010 17:20:38 -0500 libdbd-sqlite3-perl (1.27-1) unstable; urgency=low The following changes may break older applications: * Development releases (never uploaded to Debian) saw some changes with foreign key support. Foreign key support was enabled by default but broke a lot of things, so is now disabled once again. Please note that support may be enabled upstream in sqlite itself so things that break should be fixed. In the meantime, you can enable foreign keys with: PRAGMA foreign_keys = ON * Remove undocumented reset method (use $sth->finish instead) * Fix $dbh->column_info to work according to the DBI spec (RT#49716) * Fix $sth->primary_key_info to work according to DBI spec -- Jonathan Yu Tue, 24 Nov 2009 07:22:06 -0500 debian/control0000644000000000000000000000351612264503761010604 0ustar Source: libdbd-sqlite3-perl Section: perl Priority: optional Build-Depends: debhelper (>= 9.20120312~), libdbi-perl, libsqlite3-dev, perl Maintainer: Debian Perl Group Uploaders: Krzysztof Krzyżaniak (eloy) , Niko Tyni , gregor herrmann , Maximilian Gass , Ryan Niebur , Jonathan Yu , Ansgar Burchardt , Salvatore Bonaccorso Standards-Version: 3.9.5 Homepage: https://metacpan.org/release/DBD-SQLite/ Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libdbd-sqlite3-perl.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libdbd-sqlite3-perl.git Package: libdbd-sqlite3-perl Architecture: any Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends} Description: Perl DBI driver with a self-contained RDBMS DBD::SQLite is a Perl DBI driver with a self-contained relational database management system. It embeds a small and fast embedded SQL database engine called SQLite (see sqlite3) into a DBI driver. It is useful if you want a relational database for your project, but don't want to install a large RDBMS system like MySQL or PostgreSQL. . SQLite supports the following features: . * Implements a large subset of SQL92 () * A complete DB in a single disk file Everything for your database is stored in a single disk file, making it easier to move things around than with DBD::CSV. * Atomic commit and rollback . The engine is very fast, but for updates/inserts/dml it does perform a global lock on the entire database. This, obviously, might not be good for multiple user systems. The database also appears to be significantly faster if your transactions are coarse. debian/source/0000755000000000000000000000000012264503761010474 5ustar debian/source/lintian-overrides0000644000000000000000000000032712264503761014057 0ustar # Files are in public-domain libdbd-sqlite3-perl source: missing-field-in-dep5-copyright copyright (paragraph at line 15) libdbd-sqlite3-perl source: missing-field-in-dep5-copyright copyright (paragraph at line 25) debian/source/format0000644000000000000000000000001412264503761011702 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000012264503761010623 5ustar debian/patches/0001-error-messages-have-been-slightly-changed-since-3.8..patch0000644000000000000000000000426712264503761023730 0ustar From f8a45b96f62742351c06fd956a4965004df7226d Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Thu, 9 Jan 2014 02:30:37 +0900 Subject: [PATCH] error messages have been slightly changed since 3.8.2 --- t/07_error.t | 2 +- t/39_foreign_keys.t | 4 ++-- t/rt_36838_unique_and_bus_error.t | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/t/07_error.t b/t/07_error.t index 68ea9ca..cf4fdb1 100644 --- a/t/07_error.t +++ b/t/07_error.t @@ -28,4 +28,4 @@ eval { }; ok($@, 'Statement 2 generated an error'); is( $DBI::err, 19, '$DBI::err ok' ); -like( $DBI::errstr, qr/column a is not unique/, '$DBI::errstr ok' ); +like( $DBI::errstr, qr/column a is not unique|UNIQUE constraint failed/, '$DBI::errstr ok' ); diff --git a/t/39_foreign_keys.t b/t/39_foreign_keys.t index b7632fc..fc15d89 100644 --- a/t/39_foreign_keys.t +++ b/t/39_foreign_keys.t @@ -49,7 +49,7 @@ ok insert_track(13, "My Way", 2); # column (3) does not correspond to row in the artist table. ok !insert_track(14, "Mr. Bojangles", 3); -ok $@ =~ qr/foreign key constraint failed/; +ok $@ =~ qr/foreign key constraint failed/i; # This succeeds because a NULL is inserted into trackartist. A # corresponding row in the artist table is not required in this case. @@ -62,7 +62,7 @@ ok insert_track(14, "Mr. Bojangles", undef); # artist table. ok !update_track(3, "Mr. Bojangles"); -ok $@ =~ /foreign key constraint failed/; +ok $@ =~ /foreign key constraint failed/i; # Insert the required row into the artist table. It is then possible # to update the inserted row to set trackartist to 3 (since a diff --git a/t/rt_36838_unique_and_bus_error.t b/t/rt_36838_unique_and_bus_error.t index 2c3a819..5a8aafe 100644 --- a/t/rt_36838_unique_and_bus_error.t +++ b/t/rt_36838_unique_and_bus_error.t @@ -17,4 +17,4 @@ $dbh->do("CREATE TABLE nums (num INTEGER UNIQUE)"); ok $dbh->do("INSERT INTO nums (num) VALUES (?)", undef, 1); eval { $dbh->do("INSERT INTO nums (num) VALUES (?)", undef, 1); }; -ok $@ =~ /column num is not unique/, $@; # should not be a bus error +ok $@ =~ /column num is not unique|UNIQUE constraint failed/, $@; # should not be a bus error -- 1.8.5.2 debian/patches/fix-test-sort.patch0000644000000000000000000000153012264503761014373 0ustar Description: fix test failure by forcing sqlite to actually sort something Current versions of sqlite seem to not do any sorting if the result has just one element. This patch makes sure the result picks up a few more elements, so that the sort counter gets pushed above zero. Author: Florian Schlichting Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=89011 --- a/t/53_status.t +++ b/t/53_status.t @@ -39,8 +39,8 @@ } { - my $sth = $dbh->prepare('select * from foo where text = ? order by text desc'); - $sth->execute("text1"); + my $sth = $dbh->prepare('select * from foo where text LIKE ? order by text desc'); + $sth->execute("text1%"); my $st_status = $sth->$func('st_status'); ok $st_status && ref $st_status eq ref {}, "st status is a hashref"; my $num_of_keys = scalar keys %$st_status; debian/patches/use_system_sqlite0000644000000000000000000000216512264503761014333 0ustar Description: DBD::SQLite3 ships its own copy of SQLite. That makes Debian sad and so we patched it away. Origin: vendor Forwarded: not-needed Author: Maximilian Gass Reviewed-by: gregor herrmann Last-Update: 2011-02-12 --- a/Makefile.PL +++ b/Makefile.PL @@ -125,7 +125,7 @@ # a system sqlite is also sophisticated enough to have a patching system # that can change the if ( 0 ) to if ( 1 ) my ($sqlite_local, $sqlite_base, $sqlite_lib, $sqlite_inc); -if ( 0 ) { +if ( 1 ) { require File::Spec; if ( $sqlite_base = (grep(/SQLITE_LOCATION=.*/, @ARGV))[0] ) { $sqlite_base =~ /=(.*)/; @@ -174,11 +174,7 @@ } } unless ( $version && ($version >= 3006000) ) { - warn "SQLite version must be at least 3.6.0. No header file at that\n"; - warn "version or higher was found. Using the local version instead.\n"; - $sqlite_local = 1; - undef $sqlite_lib; - undef $sqlite_inc; + die "SQLite version must be at least 3.6.0. No header file at that\nversion or higher was found. Using the local version instead.\n"; } else { print "Looks good\n" if $ENV{AUTOMATED_TESTING}; } debian/patches/series0000644000000000000000000000014612264503761012041 0ustar use_system_sqlite fix-test-sort.patch 0001-error-messages-have-been-slightly-changed-since-3.8..patch debian/changelog0000644000000000000000000004762412264503761011063 0ustar libdbd-sqlite3-perl (1.40-3) unstable; urgency=medium * Add 0001-error-messages-have-been-slightly-changed-since-3.8..patch patch. Fixes "FTBFS: test failures: UNIQUE constraint failed". Thanks to Dominic Hargreaves (Closes: #735022) * Declare compliance with Debian policy 3.9.5 * Update versioned Build-Depends on debhelper to (>= 9.20120312~) -- Salvatore Bonaccorso Sun, 12 Jan 2014 13:15:15 +0100 libdbd-sqlite3-perl (1.40-2) unstable; urgency=low * Team upload * Add fix-test-sort.patch, fix test failure by forcing sqlite to actually sort something (closes: #723812) -- Florian Schlichting Sat, 28 Sep 2013 01:50:51 +0200 libdbd-sqlite3-perl (1.40-1) unstable; urgency=low * Imported Upstream version 1.40 * Change Vcs-Git to canonical URI (git://anonscm.debian.org) * Change search.cpan.org based URIs to metacpan.org based URIs * Add debian/NEWS entry about possibly breaking changes * Update copyright years for upstream files * Update copyright years for ppport.h copy * Update copyright years for debian/* packaging files * Bump Standards-Version to 3.9.4 * Refresh use_system_sqlite patch (offset) * Wrap and sort fields in debian/control file -- Salvatore Bonaccorso Sun, 11 Aug 2013 13:42:57 +0200 libdbd-sqlite3-perl (1.37-1) unstable; urgency=low * Imported Upstream version 1.37 * Update debian/copyright file. Update format to copyright-format 1.0 as released together with Debian policy 3.9.3. Update copyright years for upstream files. Update copyright years for debian/* packaging files. * Add information about possible compatibility problems to debian/NEWS * Bump versioned Build-Depends on debhelper to (>= 9) * Remove not needed debian/source.lintian-overrides * Simplify versioned Build-Depends. Change versioned Build-Depends for libdbi-perl and libsqlite3-dev already satisfied in Squeeze to unversioned Build-Depends. * Bump Standards-Version to 3.9.3 * Add lintian-overrides for missing-field-in-dep5-copyright. Both stanzas are for files in public-domain. -- Salvatore Bonaccorso Sun, 10 Jun 2012 09:00:20 +0200 libdbd-sqlite3-perl (1.35-1) unstable; urgency=low [ 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. [ gregor herrmann ] * New upstream release. * Refresh patch (offset). * Add another third-party file to debian/copyright. * Add another item about possible compatibility problems to debian/NEWS. * Use debhelper compat level 9 and build-depend on debhelper (>= 8.9.9~). This is the first version that passes CFLAGS to OPTIMIZE. Also add a lintian override for the debhelper version. (Closes: #596429) -- gregor herrmann Fri, 02 Dec 2011 20:46:15 +0100 libdbd-sqlite3-perl (1.33-1) unstable; urgency=low [ Maximilian Gass ] * New upstream release * Remove skip_fts3.patch, applied upstream * Bump Standards-Version to 3.9.2: no changes necessary * Delete SQLite source after install, not during cleanup (prevent accidental commit of deletion) [ gregor herrmann ] * Update upstream copyright holders and years of copyright. -- Maximilian Gass Sat, 11 Jun 2011 22:01:41 +0200 libdbd-sqlite3-perl (1.31-2) unstable; urgency=low * Add sqlite3.[ch] to debian/clean to avoid installing them; this behaviour was added "to allow extension authors to use the same C source/header as they used to build DBD::SQLite itself" but we're building against the system sqlite3 package. -- gregor herrmann Thu, 24 Feb 2011 23:03:39 +0100 libdbd-sqlite3-perl (1.31-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release * Refresh copyright information [ Salvatore Bonaccorso ] * Update my email address. [ Ansgar Burchardt ] * Update my email address. [ gregor herrmann ] * Remove patches 0001-Don-t-clean-temporary-files-in-child-processes.patch, fix-pod-spelling.patch, both applied upstream. * debian/copyright: update years of packaging copyright. [ Maximilian Gass ] * Add patch by paul@city-fan.org to fix test failure -- Maximilian Gass Thu, 24 Feb 2011 17:23:18 +0100 libdbd-sqlite3-perl (1.29-3) unstable; urgency=low [ Ansgar Burchardt ] * Use perl_dbi addon for dh. * Bump build-dependency on libdbi-perl to >= 1.612. * No longer run release tests. * Remove build-dep on libpod-simple-perl, libperl-minimumversion-perl, libtest-cpan-meta-perl, libtest-minimumversion-perl, libtest-pod-perl. * Bump Standards-Version to 3.9.0 (no changes). [ Salvatore Bonaccorso ] * Add 0001-Don-t-clean-temporary-files-in-child-processes.patch patch: Fixes FTBFS due failure in tests. Thanks to Niko Tyni for the investigation and patch (Closes: #591111). * Refresh debian/copyright and explicitly refer to GPL-1 license text in common-licenses. * Bump Standards-Version to 3.9.1. * Add myself to Uploaders. -- Salvatore Bonaccorso Tue, 24 Aug 2010 21:54:13 +0200 libdbd-sqlite3-perl (1.29-2) unstable; urgency=low * Add dependency on perl-dbdapi-* (see #577209). (Closes: #578429) + Needs build-dep on libdbi-perl (>= 1.610.90+is+1.609-1~). * Use source format 3.0 (quilt); drop README.source and quilt framework. * debian/copyright: Minor formatting changes for current DEP-5 proposal. * Fix an additional spelling error. + updated patch: fix-pod-spelling.patch * Bump Standards-Version to 3.8.4. * Remove Conflicts: libdbd-sqlite-perl (no longer in Debian). * Add myself to Uploaders. -- Ansgar Burchardt Sat, 24 Apr 2010 14:31:17 +0900 libdbd-sqlite3-perl (1.29-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release * Add a patch to correct POD spelling [ gregor herrmann ] * Update years of upstream and packaging copyright. -- Jonathan Yu Fri, 08 Jan 2010 10:41:00 -0500 libdbd-sqlite3-perl (1.27-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release * Added myself to Uploaders and Copyright * Use perl (>= 5.10.1) for Pod::Simple 3.07 if available * Rewrite control description * Added a NEWS entry detailing possible breakages [ Ryan Niebur ] * Add myself to Uploaders * refresh patch -- Jonathan Yu Tue, 24 Nov 2009 07:23:06 -0500 libdbd-sqlite3-perl (1.25-4) unstable; urgency=low [ Maximilian Gass ] * Changed writing of my last name in control * Fixed versioned Build-Depends on debhelper for overrides * Bumped Standards-Version to 3.8.3 (no changes necessary) [ gregor herrmann ] * Drop versions from (build) dependencies on perl, libdbi-perl, libperl-minimumversion-perl, libtest-cpan-meta-perl, libtest-minimumversion-perl, either fulfilled even by oldstable or no older-than-required version ever in Debian. -- Maximilian Gass Sat, 05 Sep 2009 21:53:26 +0200 libdbd-sqlite3-perl (1.25-3) unstable; urgency=low [ Nathan Handler ] * debian/watch: Update to ignore development releases. [ Maximilian Gass ] * Added use_system_sqlite patch to make it build against the sqlite3 package (closes: #529755). * Removed hurd-locking.patch, included SQLite sources are no longer used. * Simplified debian/rules * Bumped Standards-Version to 3.8.2, no changes necessary. [ Gunnar Wolf ] * Added myself as an uploader -- Gunnar Wolf Sat, 18 Jul 2009 22:00:29 +0200 libdbd-sqlite3-perl (1.25-2) unstable; urgency=low * Add patch hurd-locking.patch by Marc Dequènes to get a working locking method on Hurd, as the default one (the POSIX advisory one) fails (closes: #529736). Add quilt framework and REAMDE.source. -- gregor herrmann Thu, 21 May 2009 12:56:44 +0200 libdbd-sqlite3-perl (1.25-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyżaniak (eloy) Fri, 24 Apr 2009 12:42:34 +0200 libdbd-sqlite3-perl (1.23-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyżaniak (eloy) Wed, 22 Apr 2009 15:17:51 +0200 libdbd-sqlite3-perl (1.21-1) unstable; urgency=low * New upstream release. * Remove build dependency on libtest-nowarnings-perl. -- gregor herrmann Thu, 09 Apr 2009 20:44:24 +0200 libdbd-sqlite3-perl (1.20-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyżaniak (eloy) Tue, 07 Apr 2009 23:17:21 +0200 libdbd-sqlite3-perl (1.19~10-1) unstable; urgency=low * New upstream release, contains a fix for "libdbd-sqlite3-perl - FTBFS: FAILED test 9" (closes: #522505). * Add new build dependency on libtest-nowarnings-perl. * debian/control: remove duplicate Section and Priority Fields. * Remove patch error-reset.patch (incorporated upstream); remove quilt framework. * debian/copyright: switch to new format. -- gregor herrmann Mon, 06 Apr 2009 17:48:03 +0200 libdbd-sqlite3-perl (1.19~02-1) unstable; urgency=low [ Krzysztof Krzyżaniak (eloy) ] * New upstream release * debian/control: updated to debhelper (>= 7), Standards-Version updated to 3.8.1 * Removed used_only_once.patch, it's now fixed in upstream, refreshed error-reset.patch * debian/rules: use debhelper7 example [ gregor herrmann ] * debian/control: Changed: Switched Vcs-Browser field to ViewSVN (source stanza). -- Krzysztof Krzyżaniak (eloy) Mon, 30 Mar 2009 10:23:11 +0200 libdbd-sqlite3-perl (1.14-3) unstable; urgency=low [ Damyan Ivanov ] * remove Marcelo E. Magallon from Uploaders. requested by MIA team [ gregor herrmann ] * Add patch used_only_once.patch: this adds GV_ADDMULTI to the get_sv call in SQLite.xs (closes: #490648). Cf. CPAN#36467 and `perldoc perlguts'. * debian/watch: use dist-based URL. * debian/copyright: add copyright/license for ppport.h; fix a typo. * Set Standards-Version to 3.8.0; add debian/README.source to document quilt usage. * debian/control: change my email address. * Refresh debian/rules, no functional changes. * Remove ancient debian/NEWS.Debian, which didn't get installed anyway. -- gregor herrmann Sun, 13 Jul 2008 15:00:55 +0200 libdbd-sqlite3-perl (1.14-2) unstable; urgency=medium [ gregor herrmann ] * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser field (source stanza); Homepage field (source stanza). Removed: Homepage pseudo-field (Description); XS-Vcs-Svn fields. [ David Paleino ] * debian/control: removed myself from Uploaders [ Niko Tyni ] * Switch to my @debian.org address. * Manage debian/patches with quilt. * error_reset.patch: fix sqlite error handling. (Closes: #450744) + fixes a test failure with sqlite3 3.5.6. (Closes: #470281) + fixes libdbix-class-perl FTBFS with sqlite3 3.5.6. (Closes: #470272) * Upgrade to Standards-Version 3.7.3. No changes needed. * Minor tweaks to debian/rules. * Depend on ${misc:Depends}, as per debhelper(7). * Set urgency to medium as this fixes two release-critical bugs in testing. -- Niko Tyni Mon, 10 Mar 2008 21:16:30 +0200 libdbd-sqlite3-perl (1.14-1) unstable; urgency=low [ David Paleino ] * New upstream release * debian/control: - added myself to Uploaders and wrapped it - added Homepage pseudofield - long description purged from useless empty lines * debian/libdbd-sqlite3-perl.docs removed - passing argument directly to dh_installdocs * debian/libdbd-sqlite3-perl.install removed - it's not needed * debian/rules: - some stylistic changes - removed unneeded comment lines - moved dh_clean before $(MAKE) realclean * debian/copyright - typo fixed [ Damyan Ivanov ] * Added note about sqlite's sources to debian/copyright -- David Paleino Thu, 20 Sep 2007 11:42:53 +0200 libdbd-sqlite3-perl (1.13-2) unstable; urgency=low * Acknowledge previous NMU (closes: #388717). * Apply patch to fix '"Unknown named parameter" when binding positional parameters', thanks to Vickenty Fesunov (closes: #422209). -- gregor herrmann Fri, 04 May 2007 13:44:56 +0200 libdbd-sqlite3-perl (1.13-1.1) unstable; urgency=low * Non-maintainer upload. * Fix mistake that caused libclass-dbi-perl to FTBFS. Closes: #388717 -- Andreas Barth Sat, 14 Oct 2006 22:41:43 +0200 libdbd-sqlite3-perl (1.13-1) unstable; urgency=low * New upstream release. * Set Standars-Version to 3.7.2 (no changes). * Set Debhelper Compatibility Level to 5. -- gregor herrmann Sat, 9 Sep 2006 20:50:49 +0200 libdbd-sqlite3-perl (1.12-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Tue, 18 Apr 2006 17:19:48 +0200 libdbd-sqlite3-perl (1.11-2) unstable; urgency=low * dbdimp.c: fix incorrect use of sqlite3_prepare(), unearthed by sqlite3-0 upgrade to 3.3.5. Thanks to Eugeniy Meshcheryakov for the patch. (Closes: #361437) -- Niko Tyni Sat, 8 Apr 2006 20:25:19 +0300 libdbd-sqlite3-perl (1.11-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Sat, 17 Dec 2005 20:00:25 +0100 libdbd-sqlite3-perl (1.09-1) unstable; urgency=low * New upstream. + fixes the "don't convert to number if it isn't a number" bug. (Sorry about the delay Jonathan) (closes: bug#314232) * debian/control: add build dependency on libsqlite3-dev. * debian/rules: don't use the SQLite sources shipped with the package, link against system's sqlite3. (closes: bug#302861) * Makefile.PL, debian/control: hack arround bug in libsqlite3-dev, the proper version _is_ installed, disable check in Makefile.PL. * debian/control: Standards-Version: 3.6.2, noop. -- Marcelo E. Magallon Mon, 25 Jul 2005 09:12:39 -0600 libdbd-sqlite3-perl (1.08-1) unstable; urgency=low * ftp-master: For rationale for the name change, please read <20041220105446.GK20438@hoiho.nz.lemon-computing.com> and follow ups on debian-perl, <20050318143121.GA25709@computing-services.oxford.ac.uk> and follow ups on the same list. <20050322041651.GB1652@jacinta.casa> outlines the problem and the fix. libdbd-sqlite-perl (source, binary package), libdbd-sqlite2-perl (binary) and libdbd-sqlite3-perl (source, binary package) need to coexist on the archive. This package is a source rename of the already existing (in experimental) libdbd-sqlite-perl. * debian/control: changed maintainer to DPG; added Krzysztof and myself as uploaders. * debian/control, debian/changelog: Rename source package to libdbd-sqlite3-perl * debian/changelog: remove epoch, revert version to 1.08-1 * debian/control: declare conflicts with libdbd-sqlite-perl, non-versioned. Rationale: even if it's true that this package can be installed along with some odd release of libdbd-sqlite-perl it's just not worth it. -- Marcelo E. Magallon Tue, 22 Mar 2005 09:04:13 -0600 libdbd-sqlite-perl (1:1.08-1) experimental; urgency=low * New upstream release * Package is once again sqlite3 compatible. Read NEWS.Debian for further info. -- Krzysztof Krzyzaniak (eloy) Tue, 15 Mar 2005 15:38:23 +0100 libdbd-sqlite-perl (1:0.33-1) unstable; urgency=low * New upstream release (DBD-SQLite2-0.33.tar.gz) * Perl package name is changed to DBD::SQLite2. Please read README.Debian! -- Krzysztof Krzyzaniak (eloy) Thu, 2 Dec 2004 14:24:18 +0100 libdbd-sqlite-perl (1.07-1) unstable; urgency=high * New upstream release (closes: #272470) * All bugs connected with architectures other than IA should be fixed. (closes: Bug#271649), (closes: Bug#271649), (closes: #264211), (closes: Bug#274227) -- Krzysztof Krzyzaniak (eloy) Mon, 29 Nov 2004 14:56:50 +0100 libdbd-sqlite-perl (0.30-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Thu, 29 Jul 2004 17:11:32 +0200 libdbd-sqlite-perl (0.29-1) unstable; urgency=low * New upstream release * debian/copyright updated to show double licences (GPL & Artistic) * debian/DBD-SQLite-0.28.patch removed -- Krzysztof Krzyzaniak (eloy) Fri, 2 Jan 2004 11:16:49 +0100 libdbd-sqlite-perl (0.28-3) unstable; urgency=low * debian/control - upgraded to Debian Policy 3.6.1 (no changes) * debian/rules - patch added from Wolfgang Sourdeau (closes: Bug#219462) -- Krzysztof Krzyzaniak (eloy) Mon, 10 Nov 2003 11:32:32 +0100 libdbd-sqlite-perl (0.28-2) unstable; urgency=low * debian/rules - fixed 'clean' section. Thanks goes to Wolfgang Sourdeau (closes: Bug#216480) * debian/rules - polished to avoid warning about nonbinary perl files in /usr/lib/perl5/ directory -- Krzysztof Krzyzaniak (eloy) Sun, 19 Oct 2003 16:38:55 +0200 libdbd-sqlite-perl (0.28-1) unstable; urgency=low * New upstream release * New maintainer -- Krzysztof Krzyzaniak (eloy) Thu, 11 Sep 2003 10:35:51 +0200 libdbd-sqlite-perl (0.25-3) unstable; urgency=low * debian/control: upgraded to Debian Policy 3.6.0 (no changes) -- Ardo van Rangelrooij Sat, 26 Jul 2003 13:21:44 -0500 libdbd-sqlite-perl (0.25-2) unstable; urgency=low * rebuild against libsqlite0 v2.8.3-2 (which is now 64-bit clean) to successfully pass `make test` on 64-bit architectures * debian/control: updated sections according to latest archive changes: - 'libdbd-sqlite-perl' from 'interpreters' to 'perl' * debian/control: upgraded build dependency on 'debhelper' to '>= 4.1' * debian/control: upgraded to Debian Policy 3.5.10 (no changes) -- Ardo van Rangelrooij Sun, 15 Jun 2003 16:12:18 -0500 libdbd-sqlite-perl (0.25-1) unstable; urgency=low * New upstream release * debian/rules: moved debhelper compatibility level setting to 'debian/compat' per latest debhelper best practices -- Ardo van Rangelrooij Sun, 9 Mar 2003 09:36:01 -0600 libdbd-sqlite-perl (0.24-1) unstable; urgency=low * New upstream release -- Ardo van Rangelrooij Wed, 29 Jan 2003 15:37:32 -0600 libdbd-sqlite-perl (0.23-1) unstable; urgency=low * New upstream release * debian/rules: changed '-$(MAKE) test' into '$(MAKE) test' now that upstream has fixed the Unicode tests that didn't work (closes: Bug#174279) -- Ardo van Rangelrooij Sat, 11 Jan 2003 19:22:35 -0600 libdbd-sqlite-perl (0.22-1) unstable; urgency=low * New upstream release * debian/control: upgraded to Debian Policy 3.5.8 (no changes) -- Ardo van Rangelrooij Wed, 25 Dec 2002 10:11:13 -0600 libdbd-sqlite-perl (0.20-1) unstable; urgency=low * New upstream release -- Ardo van Rangelrooij Thu, 17 Oct 2002 14:05:31 -0500 libdbd-sqlite-perl (0.19-2) unstable; urgency=low * Makefile.PL: changed to build against standalone SQLite engine (closes: Bug#156355, Bug#156413) * debian/control: updated accordingly -- Ardo van Rangelrooij Sun, 29 Sep 2002 16:37:21 -0500 libdbd-sqlite-perl (0.19-1) unstable; urgency=low * New upstream release * Rebuild against perl-5.8 (closes: Bug#158830) * debian/control: changed build dependency on perl accordingly * debian/copyright: added pointer to license (closes: Bug#157571) -- Ardo van Rangelrooij Sat, 21 Sep 2002 22:22:08 -0500 libdbd-sqlite-perl (0.18-1) unstable; urgency=low * Initial Release (closes: Bug#135810) -- Ardo van Rangelrooij Tue, 23 Jul 2002 21:50:28 -0500