r56449 - in /trunk/libtie-dbi-perl: Changes META.yml Makefile.PL debian/changelog lib/Tie/DBI.pm lib/Tie/RDBM.pm

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Apr 18 13:03:04 UTC 2010


Author: gregoa
Date: Sun Apr 18 13:02:52 2010
New Revision: 56449

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=56449
Log:
New upstream release.

Modified:
    trunk/libtie-dbi-perl/Changes
    trunk/libtie-dbi-perl/META.yml
    trunk/libtie-dbi-perl/Makefile.PL
    trunk/libtie-dbi-perl/debian/changelog
    trunk/libtie-dbi-perl/lib/Tie/DBI.pm
    trunk/libtie-dbi-perl/lib/Tie/RDBM.pm

Modified: trunk/libtie-dbi-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-dbi-perl/Changes?rev=56449&op=diff
==============================================================================
--- trunk/libtie-dbi-perl/Changes (original)
+++ trunk/libtie-dbi-perl/Changes Sun Apr 18 13:02:52 2010
@@ -1,4 +1,7 @@
 Revision history for Perl extension Tie::DBI.
+
+1.05 Sat Apr10 01:00 2010
+       need to make DBD::SQLite to pre-req to get tests to succeed. This shouldn't really be an undue burden
 
 1.04 Mon Mar 31 22:25 2010
 	Add DBD::SQLite to build_requires meta so automated testing won't fail

Modified: trunk/libtie-dbi-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-dbi-perl/META.yml?rev=56449&op=diff
==============================================================================
--- trunk/libtie-dbi-perl/META.yml (original)
+++ trunk/libtie-dbi-perl/META.yml Sun Apr 18 13:02:52 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Tie-DBI
-version:            1.04
+version:            1.05
 abstract:           Tie hashes to DBI relational databases
 author:
     - Lincoln D. Stein <lds at cpan.org>
@@ -13,8 +13,9 @@
     ExtUtils::MakeMaker:  0
     Test::More:           0
 requires:
-    DBI:         0
-    Test::More:  0
+    DBD::SQLite:  0
+    DBI:          0
+    Test::More:   0
 resources:
     homepage:    http://wiki.github.com/toddr/Tie-DBI/
     license:     http://dev.perl.org/licenses/

Modified: trunk/libtie-dbi-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-dbi-perl/Makefile.PL?rev=56449&op=diff
==============================================================================
--- trunk/libtie-dbi-perl/Makefile.PL (original)
+++ trunk/libtie-dbi-perl/Makefile.PL Sun Apr 18 13:02:52 2010
@@ -7,8 +7,9 @@
     'VERSION_FROM'  => 'lib/Tie/DBI.pm', # finds $VERSION
     'ABSTRACT_FROM' => 'lib/Tie/DBI.pm',
     'PREREQ_PM'    => { 
-        Test::More => 0,
-        DBI        => 0,
+        'Test::More'     => 0,
+        'DBI'            => 0,
+	'DBD::SQLite'    => 0,
     }, 
     ($ExtUtils::MakeMaker::VERSION >= 6.3002 ? ('LICENSE'        => 'perl', ) : ()),
     'DISTNAME'  => 'Tie-DBI',

Modified: trunk/libtie-dbi-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-dbi-perl/debian/changelog?rev=56449&op=diff
==============================================================================
--- trunk/libtie-dbi-perl/debian/changelog (original)
+++ trunk/libtie-dbi-perl/debian/changelog Sun Apr 18 13:02:52 2010
@@ -1,3 +1,9 @@
+libtie-dbi-perl (1.05-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- gregor herrmann <gregoa at debian.org>  Sun, 18 Apr 2010 15:02:14 +0200
+
 libtie-dbi-perl (1.04-1) unstable; urgency=low
 
   [ Jonathan Yu ]

Modified: trunk/libtie-dbi-perl/lib/Tie/DBI.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-dbi-perl/lib/Tie/DBI.pm?rev=56449&op=diff
==============================================================================
--- trunk/libtie-dbi-perl/lib/Tie/DBI.pm (original)
+++ trunk/libtie-dbi-perl/lib/Tie/DBI.pm Sun Apr 18 13:02:52 2010
@@ -4,7 +4,7 @@
 use vars qw($VERSION);
 use Carp;
 use DBI;
-$VERSION = '1.04';
+$VERSION = '1.05';
 
 BEGIN {
   eval {

Modified: trunk/libtie-dbi-perl/lib/Tie/RDBM.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-dbi-perl/lib/Tie/RDBM.pm?rev=56449&op=diff
==============================================================================
--- trunk/libtie-dbi-perl/lib/Tie/RDBM.pm (original)
+++ trunk/libtie-dbi-perl/lib/Tie/RDBM.pm Sun Apr 18 13:02:52 2010
@@ -4,7 +4,7 @@
 use vars qw($VERSION %Types);
 use Carp;
 use DBI;
-$VERSION = '0.72';
+$VERSION = '0.73';
 
 # %Types is used for creating the data table if it doesn't exist already.
 # You may want to edit this.




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