r47729 - in /trunk/libdbd-sqlite3-perl/debian: changelog control copyright rules
jawnsy-guest at users.alioth.debian.org
jawnsy-guest at users.alioth.debian.org
Tue Nov 24 15:20:58 UTC 2009
Author: jawnsy-guest
Date: Tue Nov 24 15:20:50 2009
New Revision: 47729
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=47729
Log:
* Added myself to Uploaders and Copyright
* Use perl (>= 5.10.1) for Pod::Simple 3.07 if available
* Rewrite control description
Modified:
trunk/libdbd-sqlite3-perl/debian/changelog
trunk/libdbd-sqlite3-perl/debian/control
trunk/libdbd-sqlite3-perl/debian/copyright
trunk/libdbd-sqlite3-perl/debian/rules
Modified: trunk/libdbd-sqlite3-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbd-sqlite3-perl/debian/changelog?rev=47729&op=diff
==============================================================================
--- trunk/libdbd-sqlite3-perl/debian/changelog (original)
+++ trunk/libdbd-sqlite3-perl/debian/changelog Tue Nov 24 15:20:50 2009
@@ -2,6 +2,9 @@
[ 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
[ Ryan Niebur ]
* Add myself to Uploaders
Modified: trunk/libdbd-sqlite3-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbd-sqlite3-perl/debian/control?rev=47729&op=diff
==============================================================================
--- trunk/libdbd-sqlite3-perl/debian/control (original)
+++ trunk/libdbd-sqlite3-perl/debian/control Tue Nov 24 15:20:50 2009
@@ -1,15 +1,16 @@
Source: libdbd-sqlite3-perl
Section: perl
Priority: optional
-Build-Depends: debhelper (>= 7.0.50~), perl, libdbi-perl,
- libsqlite3-dev (>> 3.6.0), quilt (>= 0.46-7), libpod-simple-perl (>= 3.07),
+Build-Depends: perl, debhelper (>= 7.0.50~), quilt (>= 0.46-7), libdbi-perl,
+ libsqlite3-dev (>> 3.6.0), perl (>= 5.10.1) | libpod-simple-perl (>= 3.07),
libperl-minimumversion-perl, libtest-cpan-meta-perl,
libtest-minimumversion-perl, libtest-pod-perl (>= 1.26)
Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
Uploaders: Krzysztof Krzyżaniak (eloy) <eloy at debian.org>,
Niko Tyni <ntyni at debian.org>, gregor herrmann <gregoa at debian.org>,
Maximilian Gass <mxey at cloudconnected.org>,
- Gunnar Wolf <gwolf at debian.org>, Ryan Niebur <ryan at debian.org>
+ Gunnar Wolf <gwolf at debian.org>, Ryan Niebur <ryan at debian.org>,
+ Jonathan Yu <jawnsy at cpan.org>
Standards-Version: 3.8.3
Homepage: http://search.cpan.org/dist/DBD-SQLite/
Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdbd-sqlite3-perl/
@@ -21,21 +22,21 @@
${misc:Depends}
Conflicts: libdbd-sqlite-perl
Description: Perl DBI driver with a self-contained RDBMS
- 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.
+ 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
- See http://www.hwaci.com/sw/sqlite/lang.html for details.
+ * Implements a large subset of SQL92 (<URL:http://www.sqlite.org/lang.html>)
* 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.
+ 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.
Modified: trunk/libdbd-sqlite3-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbd-sqlite3-perl/debian/copyright?rev=47729&op=diff
==============================================================================
--- trunk/libdbd-sqlite3-perl/debian/copyright (original)
+++ trunk/libdbd-sqlite3-perl/debian/copyright Tue Nov 24 15:20:50 2009
@@ -24,21 +24,22 @@
** May you share freely, never taking more than you give.
Files: ppport.h
-Copyright:
- Version 3.x, Copyright (c) 2004-2009, Marcus Holland-Moritz.
- Version 2.x, Copyright (C) 2001, Paul Marquess.
- Version 1.x, Copyright (C) 1999, Kenneth Albanowski.
+Copyright: 2004-2009, Marcus Holland-Moritz <mhx-cpan at gmx.net>
+ 2001, Paul Marquess <pmqs at cpan.org> (Version 2.x)
+ 1999, Kenneth Albanowski <kjahds at kjahds.com> (Version 1.x)
License-Alias: Perl
License: Artistic | GPL-1+
Files: debian/*
-Copyright: 2002, 2003, Ardo van Rangelrooij <ardo at debian.org>
- 2005, Marcelo E. Magallon <mmagallo at debian.org>
- 2006, Andreas Barth <aba at not.so.argh.org>
- 2007, David Paleino <d.paleino at gmail.com>
+Copyright: 2009, Jonathan Yu <jawnsy at cpan.org>
+ 2009, Ryan Niebur <ryan at debian.org>
+ 2003-2009, Krzysztof Krzyżaniak (eloy) <eloy at debian.org>
2006-2009, gregor herrmann <gregoa at debian.org>
2006-2008, Niko Tyni <ntyni at debian.org>
- 2003-2009, Krzysztof Krzyżaniak (eloy) <eloy at debian.org>
+ 2007, David Paleino <d.paleino at gmail.com>
+ 2006, Andreas Barth <aba at not.so.argh.org>
+ 2005, Marcelo E. Magallon <mmagallo at debian.org>
+ 2002-2003, Ardo van Rangelrooij <ardo at debian.org>
License: Artistic | GPL-1+
License: Artistic
Modified: trunk/libdbd-sqlite3-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbd-sqlite3-perl/debian/rules?rev=47729&op=diff
==============================================================================
--- trunk/libdbd-sqlite3-perl/debian/rules (original)
+++ trunk/libdbd-sqlite3-perl/debian/rules Tue Nov 24 15:20:50 2009
@@ -1,7 +1,7 @@
#!/usr/bin/make -f
+
+%:
+ dh --with quilt $@
override_dh_auto_test:
RELEASE_TESTING=1 dh_auto_test
-
-%:
- dh --with quilt $@
More information about the Pkg-perl-cvs-commits
mailing list