r33218 - in /trunk/libima-dbi-perl/debian: ./ changelog compat control copyright patches/ patches/01_still_Active.diff rules watch

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Wed Apr 15 09:32:00 UTC 2009


Author: eloy
Date: Wed Apr 15 09:31:55 2009
New Revision: 33218

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=33218
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libima-dbi-perl/debian/
    trunk/libima-dbi-perl/debian/changelog
    trunk/libima-dbi-perl/debian/compat
    trunk/libima-dbi-perl/debian/control
    trunk/libima-dbi-perl/debian/copyright
    trunk/libima-dbi-perl/debian/patches/
    trunk/libima-dbi-perl/debian/patches/01_still_Active.diff
    trunk/libima-dbi-perl/debian/rules   (with props)
    trunk/libima-dbi-perl/debian/watch

Added: trunk/libima-dbi-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libima-dbi-perl/debian/changelog?rev=33218&op=file
==============================================================================
--- trunk/libima-dbi-perl/debian/changelog (added)
+++ trunk/libima-dbi-perl/debian/changelog Wed Apr 15 09:31:55 2009
@@ -1,0 +1,73 @@
+libima-dbi-perl (0.34-5) unstable; urgency=low
+
+  * debian/control: Added Homepage field, and updated Standards-Version.
+
+ -- Bart Martens <bartm at debian.org>  Tue, 11 Dec 2007 20:30:06 +0100
+
+libima-dbi-perl (0.34-3) unstable; urgency=low
+
+  * debian/patches/01_still_Active.diff: Added.  Closes: #399309.
+
+ -- Bart Martens <bartm at knars.be>  Wed, 22 Nov 2006 17:09:41 +0100
+
+libima-dbi-perl (0.34-2) unstable; urgency=low
+
+  * New maintainer, as agreed with Stephen.
+  * debian/*: Use cdbs.
+  * debian/control: Added libtest-pod-perl and libtest-pod-coverage-perl to
+    Build-Depends-Indep for "make test".
+  * debian/copyright: Updated.
+  * debian/watch: Updated to version 3.
+
+ -- Bart Martens <bartm at knars.be>  Fri, 17 Nov 2006 11:19:23 +0100
+
+libima-dbi-perl (0.34-1) unstable; urgency=low
+
+  * New upstream release
+  * Removed dependency (and build-dependency) on libclass-whitehole-perl
+    as it is no longer required by upstream.
+  * Switched to my debian.org email address.
+
+ -- Stephen Quinney <sjq at debian.org>  Wed, 14 Sep 2005 08:49:35 +0100
+
+libima-dbi-perl (0.33-2) unstable; urgency=low
+
+  * debian/watch - Updated URL to stop lookups randomly failing.
+
+ -- Stephen Quinney <sjq at debian.org>  Sat, 11 Jun 2005 12:36:20 +0100
+
+libima-dbi-perl (0.33-1) unstable; urgency=low
+
+  * New upstream release.
+  * Now depends on the new module DBIx::ContextualFetch which is a
+    sub-class of DBI.
+  * Changed section to perl.
+  * Tidied up debian/rules.
+  * Conflicts with versions of Class::DBI prior to 0.96
+
+ -- Stephen Quinney <sjq at debian.org>  Thu,  6 May 2004 20:21:53 +0100
+
+libima-dbi-perl (0.32-1) unstable; urgency=low
+
+  * New upstream release - small bug fix.
+
+ -- Stephen Quinney <sjq at debian.org>  Sat,  6 Mar 2004 15:13:22 +0000
+
+libima-dbi-perl (0.31-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Stephen Quinney <sjq at debian.org>  Fri, 23 Jan 2004 10:20:06 +0000
+
+libima-dbi-perl (0.29-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Stephen Quinney <sjq at debian.org>  Fri,  4 Jul 2003 17:14:07 +0100
+
+libima-dbi-perl (0.28-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Stephen Quinney <sjq at debian.org>  Wed,  5 Mar 2003 10:24:02 +0000
+

Added: trunk/libima-dbi-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libima-dbi-perl/debian/compat?rev=33218&op=file
==============================================================================
--- trunk/libima-dbi-perl/debian/compat (added)
+++ trunk/libima-dbi-perl/debian/compat Wed Apr 15 09:31:55 2009
@@ -1,0 +1,1 @@
+5

Added: trunk/libima-dbi-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libima-dbi-perl/debian/control?rev=33218&op=file
==============================================================================
--- trunk/libima-dbi-perl/debian/control (added)
+++ trunk/libima-dbi-perl/debian/control Wed Apr 15 09:31:55 2009
@@ -1,0 +1,29 @@
+Source: libima-dbi-perl
+Section: perl
+Priority: optional
+Maintainer: Bart Martens <bartm at debian.org>
+Build-Depends: cdbs, debhelper (>= 5)
+Build-Depends-Indep: perl (>= 5.8.0), libdbix-contextualfetch-perl (>= 1.00), libdbi-perl (>= 1.20), libclass-data-inheritable-perl (>= 0.02), libtest-pod-perl, libtest-pod-coverage-perl
+Standards-Version: 3.7.3
+Homepage: http://search.cpan.org/~tmtm/Ima-DBI/
+
+Package: libima-dbi-perl
+Architecture: all
+Conflicts: libclass-dbi-perl (<< 0.96)
+Depends: ${perl:Depends}, libdbix-contextualfetch-perl (>= 1.00), libdbi-perl (>= 1.20), libclass-data-inheritable-perl (>= 0.02)
+Description: Database connection caching and organization
+ Ima::DBI attempts to organize and facilitate caching and more
+ efficient use of database connections and statement handles.
+ .
+ One of the things that can be annoying about writing large programs
+ with DBI is making sure that you do not have duplicate database
+ handles open. There is also the issue of the somewhat wasteful nature
+ of the prepare/execute/finish route that users tend to go through. 
+ .
+ The new DBI->connect_cached and DBI->prepare_cached help a lot, but
+ you still have to throw around global information about the data
+ source, username and password.
+ .
+ So, after a while the author grew a small library of DBI helper
+ routines and techniques.  Ima::DBI is the culmination of all this,
+ put into a nice(?), clean(?) class to be inherited from.

Added: trunk/libima-dbi-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libima-dbi-perl/debian/copyright?rev=33218&op=file
==============================================================================
--- trunk/libima-dbi-perl/debian/copyright (added)
+++ trunk/libima-dbi-perl/debian/copyright Wed Apr 15 09:31:55 2009
@@ -1,0 +1,26 @@
+This package was debianized by Stephen Quinney <sjq at debian.org> on
+Wed, 05 Mar 2003 10:26:43 +0000
+
+It was downloaded from http://search.cpan.org/CPAN/authors/id/T/TM/TMTM/
+
+Upstream Author: Tony Bowden <tony at tmtm.com>
+
+Original Author: Michael G Schwern <schwern at pobox.com>
+
+Copyright (C) 1998-2001 Michael G Schwern <schwern at pobox.com>
+Copyright (C) 2001-2005 Tony Bowden <tony at tmtm.com>
+
+License:
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of either:
+
+    a) the GNU General Public License as published by the Free Software
+       Foundation; either version 1, or (at your option) any later
+       version, or
+
+    b) the "Artistic License" which comes with Perl.
+
+    On Debian GNU/Linux systems, the complete text of the GNU General
+    Public License can be found in `/usr/share/common-licenses/GPL' and
+    the Artistic Licence in `/usr/share/common-licenses/Artistic'.

Added: trunk/libima-dbi-perl/debian/patches/01_still_Active.diff
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libima-dbi-perl/debian/patches/01_still_Active.diff?rev=33218&op=file
==============================================================================
--- trunk/libima-dbi-perl/debian/patches/01_still_Active.diff (added)
+++ trunk/libima-dbi-perl/debian/patches/01_still_Active.diff Wed Apr 15 09:31:55 2009
@@ -1,0 +1,12 @@
+diff -ruN orig/libima-dbi-perl-0.34/lib/Ima/DBI.pm libima-dbi-perl-0.34/lib/Ima/DBI.pm
+--- orig/libima-dbi-perl-0.34/lib/Ima/DBI.pm	2005-09-05 11:16:44.000000000 +0200
++++ libima-dbi-perl-0.34/lib/Ima/DBI.pm	2006-11-19 07:20:12.000000000 +0100
+@@ -379,7 +379,7 @@
+ 		# This is to do proper '%%' translation.
+ 		my $sql = $class->transform_sql($statement => @_);
+ 		return $cache
+-			? $dbh->prepare_cached($sql)
++			? $dbh->prepare_cached($sql,undef,1)
+ 			: $dbh->prepare($sql);
+ 	};
+ }

Added: trunk/libima-dbi-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libima-dbi-perl/debian/rules?rev=33218&op=file
==============================================================================
--- trunk/libima-dbi-perl/debian/rules (added)
+++ trunk/libima-dbi-perl/debian/rules Wed Apr 15 09:31:55 2009
@@ -1,0 +1,9 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/perlmodule.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
+
+install/libima-dbi-perl::
+	-rmdir debian/libima-dbi-perl/usr/lib/perl5
+	-rmdir debian/libima-dbi-perl/usr/lib

Propchange: trunk/libima-dbi-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libima-dbi-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libima-dbi-perl/debian/watch?rev=33218&op=file
==============================================================================
--- trunk/libima-dbi-perl/debian/watch (added)
+++ trunk/libima-dbi-perl/debian/watch Wed Apr 15 09:31:55 2009
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/CPAN/authors/id/T/TM/TMTM/Ima-DBI-(.*)\.tar\.gz




More information about the Pkg-perl-cvs-commits mailing list