debian/0000755000000000000000000000000012231213216007157 5ustar debian/watch0000644000000000000000000000016012146144213010212 0ustar version=3 https://metacpan.org/release/DBD-SQLite2/ .*/DBD-SQLite2-v?(\d[\d.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) debian/rules0000755000000000000000000000047212146144213010247 0ustar #!/usr/bin/make -f PACKAGE := $(shell dh_listpackages) TMP := $(CURDIR)/debian/$(PACKAGE) %: dh $@ --with perl_dbi override_dh_auto_install: dh_auto_install [ ! -f $(TMP)/usr/lib/perl5/DBD/getsqlite.pl ] || rm $(TMP)/usr/lib/perl5/DBD/getsqlite.pl override_dh_auto_clean: dh_auto_clean rm -rf output/ debian/copyright0000644000000000000000000000324612146144213011124 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: DBD-SQLite2 Upstream-Contact: Matt Sergeant Source: https://metacpan.org/release/DBD-SQLite2/ Files: *.c *.h Copyright: Public Domain License: Public-Domain Files: * dbdimp.c dbdimp.h Copyright: 2002, Matt Sergeant License: Artistic or GPL-1+ Files: debian/* Copyright: 2002-2003, Ardo van Rangelrooij 2003-2005, Krzysztof Krzyzaniak (eloy) 2005, Marcelo E. Magallon 2005, Damyan Ivanov 2005-2008, gregor herrmann 2010, Ansgar Burchardt 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'. 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. debian/source/0000755000000000000000000000000012146144213010464 5ustar debian/source/format0000644000000000000000000000001412146144213011672 0ustar 3.0 (quilt) debian/libdbd-sqlite2-perl.lintian-overrides0000644000000000000000000000031612146144213016305 0ustar # SQLite is embedded in this module because libsqlite0-dev doesn't contain # headers needed by dbdimp.h (sqliteInt.h) libdbd-sqlite2-perl: embedded-library usr/lib/perl5/auto/DBD/SQLite2/SQLite2.so: sqlite debian/patches/0000755000000000000000000000000012146144213010613 5ustar debian/patches/spelling-errors.patch0000644000000000000000000000103412146144213014761 0ustar Description: spelling errors Author: Xavier Guimard Bug: https://rt.cpan.org/Ticket/Display.html?id=85437 Forwarded: https://rt.cpan.org/Ticket/Display.html?id=85437 Last-Update: 2013-05-19 --- a/lib/DBD/SQLite2.pm +++ b/lib/DBD/SQLite2.pm @@ -536,7 +536,7 @@ Perl extension functions contributed by Francis J. Lacoste and Wolfgang Sourdeau . -Maintainance help by Reini Urban +Maintenance help by Reini Urban =head1 SEE ALSO debian/patches/series0000644000000000000000000000002612146144213012026 0ustar spelling-errors.patch debian/compat0000644000000000000000000000000212146144213010362 0ustar 9 debian/control0000644000000000000000000000355112146144213010573 0ustar Source: libdbd-sqlite2-perl Maintainer: Debian Perl Group Uploaders: Krzysztof Krzyzaniak (eloy) , Niko Tyni , Damyan Ivanov , gregor herrmann , Ansgar Burchardt , Xavier Guimard Section: perl Priority: optional Build-Depends: debhelper (>= 9.20120312), libdbi-perl (>= 1.625), perl Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libdbd-sqlite2-perl.git Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libdbd-sqlite2-perl.git Homepage: https://metacpan.org/release/DBD-SQLite2/ Package: libdbd-sqlite2-perl Architecture: any Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, libdbi-perl (>= 1.625) Description: Perl DBI driver with a self-contained RDBMS (SQLite2 version) This module embeds a small fast embedded SQL database engine called SQLite into a DBI driver, if you want a relational database for your project, but don't want to install a large RDBMS system like MySQL or PostgreSQL, then DBD::SQLite may be just what you need. . SQLite supports the following features: . * Implements a large subset of SQL92 See http://www.hwaci.com/sw/sqlite/lang.html for details. . * 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. So beware. The database also appears to be significantly faster if your transactions are coarse. debian/changelog0000644000000000000000000002355312231213216011041 0ustar libdbd-sqlite2-perl (2:0.36-1build1) trusty; urgency=low * Rebuild for Perl 5.18. -- Colin Watson Mon, 21 Oct 2013 12:57:02 +0100 libdbd-sqlite2-perl (2:0.36-1) unstable; urgency=low [ Ansgar Burchardt ] * Use perl_dbi addon for dh. * Bump build-dependency on libdbi-perl to >= 1.612. * Email change: Ansgar Burchardt -> ansgar@debian.org * debian/control: Convert Vcs-* fields to Git. [ gregor herrmann ] * debian/control: update {versioned,alternative} (build) dependencies. [ Salvatore Bonaccorso ] * Change search.cpan.org based URIs to metacpan.org based URIs [ Xavier Guimard ] * Imported Upstream version 0.36 * Bump debian/copyright format to 1.0 * Bump Standards-Version to 3.9.4 * Bump debhelper compatibility to 9 to get hardening flags * Update libdbi-perl dependency (>= 1.625) * Add override in debian/rules to remove output directory when cleaning * Add Lintian override to embed SQLite (libsqlite0-dev doesn't contain sqliteInt.h needed by dbdimp.h) * Remove old libdbd-sqlite-perl files that are not in the upstream tarball * Remove fetchrow patch now included in upstream * Add spelling errors patch -- Xavier Guimard Sun, 19 May 2013 06:18:20 +0200 libdbd-sqlite2-perl (2:0.33-9) unstable; urgency=low [ gregor herrmann ] * debian/control: Changed: Switched Vcs-Browser field to ViewSVN (source stanza). * debian/control: Added: ${misc:Depends} to Depends: field. [ Nathan Handler ] * debian/watch: Update to ignore development releases. [ Ansgar Burchardt ] * Add dependency on perl-dbdapi-* (see #577209). + Needs build-dep on libdbi-perl (>= 1.610.90+is+1.609-1~). * Remove Conflicts: libdbd-sqlite-perl (no longer in Debian). * Refresh rules for debhelper 7. * No longer install README. * Use source format 3.0 (quilt); drop README.source and quilt framework. * Convert debian/copyright to proposed machine-readable format. * debian/copyright: Only the DBD interface is release under the same terms as perl, SQLite itself is public domain. * Bump Standards-Version to 3.8.4. * Add myself to Uploaders. -- Ansgar Burchardt Sat, 24 Apr 2010 15:40:41 +0900 libdbd-sqlite2-perl (2:0.33-8) unstable; urgency=medium [ 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 ] * remove Marcelo E. Magallon from Uploaders. Requested by MIA team [ gregor herrmann ] * Exchange debian/rules against a version created from a current dh-make-perl template; this moves SQLite2.pm in a place where it is found; thanks to Peter J. Holzer for reporting the bug (closes: #481923). * Set urgency to medium because this upload fixes a grave bug. * debian/watch: use dist-based URL. * Remove debian/libdbd-sqlite2-perl.docs and install README directly from debian/rules. * Remove debian/libdbd-sqlite2-perl.install which is not needed. * Add /me to Uploaders. * Set Standards-Version to 3.7.3 (no changes). * Set debhelper compatibility level to 5. * Change patch system from dpatch to quilt. * debian/copyright: use specific upstream source URL instead of pointing to CPAN at large. * debian/control: now really remove dependency on debconf, as announced in 2:0.33-5's changelog. -- gregor herrmann Mon, 19 May 2008 18:13:09 +0200 libdbd-sqlite2-perl (2:0.33-7) unstable; urgency=low * Added |debconf-2.0 altertative to debconf dependency. Closes: #441937 * Standards-Version: 3.7.2.2 (no changes required) * Added myself to Uploaders (and wrapped it) * debian/watch - version 3; drop uupdate as we use svn-upgrade -- Damyan Ivanov Wed, 12 Sep 2007 09:36:01 +0300 libdbd-sqlite2-perl (2:0.33-6) unstable; urgency=low * Use dpatch for managing patches. * Add myself to Uploaders. * debian/patches/10fetchrow: + Fix segmentation fault when fetchrow() is called again after it has returned an empty list once. (Closes: #317453) * Add debian/watch. -- Niko Tyni Sun, 15 Jan 2006 22:29:25 +0200 libdbd-sqlite2-perl (2:0.33-5) unstable; urgency=low [ Krzysztof Krzyzaniak (eloy) ] * debian/control - dropped debconf dependency, it's not needed now (closes: #331997), Standards-Version updated to 3.6.2 without changes -- Krzysztof Krzyzaniak (eloy) Thu, 13 Oct 2005 10:40:40 +0200 libdbd-sqlite2-perl (2:0.33-4) unstable; urgency=low * debian/control: Fix Maintainer. -- Marcelo E. Magallon Sun, 24 Apr 2005 09:25:18 -0600 libdbd-sqlite2-perl (2:0.33-3) unstable; urgency=low * debian/control: changed maintainer to DPG. -- Marcelo E. Magallon Tue, 22 Mar 2005 09:04:13 -0600 libdbd-sqlite2-perl (2:0.33-2) unstable; urgency=low * Dropped dependency from libsqlite0 * Cleaning package to keep it policy compatible -- Krzysztof Krzyzaniak (eloy) Wed, 9 Mar 2005 10:15:49 +0100 libdbd-sqlite2-perl (2:0.33-1) unstable; urgency=low * Epoch changed to 2 -- Krzysztof Krzyzaniak (eloy) Fri, 17 Dec 2004 17:41:01 +0100 libdbd-sqlite2-perl (1:0.33-2) unstable; urgency=low * Package changes its name to libdbd-sqlite2-perl to avoid problems with new sqlite3 package. -- Krzysztof Krzyzaniak (eloy) Fri, 17 Dec 2004 17:01:01 +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