r56447 - in /branches/upstream/libtie-dbi-perl/current: Changes META.yml Makefile.PL lib/Tie/DBI.pm lib/Tie/RDBM.pm

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Apr 18 13:01:46 UTC 2010


Author: gregoa
Date: Sun Apr 18 13:01:35 2010
New Revision: 56447

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=56447
Log:
[svn-upgrade] Integrating new upstream version, libtie-dbi-perl (1.05)

Modified:
    branches/upstream/libtie-dbi-perl/current/Changes
    branches/upstream/libtie-dbi-perl/current/META.yml
    branches/upstream/libtie-dbi-perl/current/Makefile.PL
    branches/upstream/libtie-dbi-perl/current/lib/Tie/DBI.pm
    branches/upstream/libtie-dbi-perl/current/lib/Tie/RDBM.pm

Modified: branches/upstream/libtie-dbi-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtie-dbi-perl/current/Changes?rev=56447&op=diff
==============================================================================
--- branches/upstream/libtie-dbi-perl/current/Changes (original)
+++ branches/upstream/libtie-dbi-perl/current/Changes Sun Apr 18 13:01:35 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: branches/upstream/libtie-dbi-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtie-dbi-perl/current/META.yml?rev=56447&op=diff
==============================================================================
--- branches/upstream/libtie-dbi-perl/current/META.yml (original)
+++ branches/upstream/libtie-dbi-perl/current/META.yml Sun Apr 18 13:01:35 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: branches/upstream/libtie-dbi-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtie-dbi-perl/current/Makefile.PL?rev=56447&op=diff
==============================================================================
--- branches/upstream/libtie-dbi-perl/current/Makefile.PL (original)
+++ branches/upstream/libtie-dbi-perl/current/Makefile.PL Sun Apr 18 13:01:35 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: branches/upstream/libtie-dbi-perl/current/lib/Tie/DBI.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtie-dbi-perl/current/lib/Tie/DBI.pm?rev=56447&op=diff
==============================================================================
--- branches/upstream/libtie-dbi-perl/current/lib/Tie/DBI.pm (original)
+++ branches/upstream/libtie-dbi-perl/current/lib/Tie/DBI.pm Sun Apr 18 13:01:35 2010
@@ -4,7 +4,7 @@
 use vars qw($VERSION);
 use Carp;
 use DBI;
-$VERSION = '1.04';
+$VERSION = '1.05';
 
 BEGIN {
   eval {

Modified: branches/upstream/libtie-dbi-perl/current/lib/Tie/RDBM.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtie-dbi-perl/current/lib/Tie/RDBM.pm?rev=56447&op=diff
==============================================================================
--- branches/upstream/libtie-dbi-perl/current/lib/Tie/RDBM.pm (original)
+++ branches/upstream/libtie-dbi-perl/current/lib/Tie/RDBM.pm Sun Apr 18 13:01:35 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