r29668 - in /branches/upstream/liborlite-perl/current: Changes META.yml lib/ORLite.pm t/04_readonly.t t/lib/Test.pm

bricas-guest at users.alioth.debian.org bricas-guest at users.alioth.debian.org
Thu Jan 15 15:42:48 UTC 2009


Author: bricas-guest
Date: Thu Jan 15 15:42:45 2009
New Revision: 29668

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

Modified:
    branches/upstream/liborlite-perl/current/Changes
    branches/upstream/liborlite-perl/current/META.yml
    branches/upstream/liborlite-perl/current/lib/ORLite.pm
    branches/upstream/liborlite-perl/current/t/04_readonly.t
    branches/upstream/liborlite-perl/current/t/lib/Test.pm

Modified: branches/upstream/liborlite-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liborlite-perl/current/Changes?rev=29668&op=diff
==============================================================================
--- branches/upstream/liborlite-perl/current/Changes (original)
+++ branches/upstream/liborlite-perl/current/Changes Thu Jan 15 15:42:45 2009
@@ -1,4 +1,8 @@
 Changes for Perl extension ORLite
+
+1.18 Wed 14 Jan 2009
+	- Adding an ->orlite method to return the version number of the
+	  ORLite module that was used to generate the distribution.
 
 1.17 Sat  3 Jan 2009
 	- Adding a ->truncate method to each table

Modified: branches/upstream/liborlite-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liborlite-perl/current/META.yml?rev=29668&op=diff
==============================================================================
--- branches/upstream/liborlite-perl/current/META.yml (original)
+++ branches/upstream/liborlite-perl/current/META.yml Thu Jan 15 15:42:45 2009
@@ -25,4 +25,4 @@
   perl: 5.6.0
 resources:
   license: http://dev.perl.org/licenses/
-version: 1.17
+version: 1.18

Modified: branches/upstream/liborlite-perl/current/lib/ORLite.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liborlite-perl/current/lib/ORLite.pm?rev=29668&op=diff
==============================================================================
--- branches/upstream/liborlite-perl/current/lib/ORLite.pm (original)
+++ branches/upstream/liborlite-perl/current/lib/ORLite.pm Thu Jan 15 15:42:45 2009
@@ -12,7 +12,7 @@
 
 use vars qw{$VERSION};
 BEGIN {
-	$VERSION = '1.17';
+	$VERSION = '1.18';
 
 	# DBD::SQLite has a bug that generates a spurious warning
 	# at compile time, so we need to temporarily disable them.
@@ -100,6 +100,8 @@
 
 my \$DBH = undef;
 
+sub orlite { '$VERSION' }
+
 sub dsn { '$dsn' }
 
 sub dbh {

Modified: branches/upstream/liborlite-perl/current/t/04_readonly.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liborlite-perl/current/t/04_readonly.t?rev=29668&op=diff
==============================================================================
--- branches/upstream/liborlite-perl/current/t/04_readonly.t (original)
+++ branches/upstream/liborlite-perl/current/t/04_readonly.t Thu Jan 15 15:42:45 2009
@@ -9,7 +9,7 @@
 	$^W = 1;
 }
 
-use Test::More tests => 8;
+use Test::More tests => 9;
 use File::Spec::Functions ':ALL';
 use t::lib::Test;
 
@@ -46,6 +46,8 @@
 1;
 END_PERL
 
+is( Foo::Bar->orlite, $t::lib::Test::VERSION, '->orlite ok' );
+
 # Check the user_version value
 is( Foo::Bar->pragma('user_version'), 10, '->user_version ok' );
 

Modified: branches/upstream/liborlite-perl/current/t/lib/Test.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liborlite-perl/current/t/lib/Test.pm?rev=29668&op=diff
==============================================================================
--- branches/upstream/liborlite-perl/current/t/lib/Test.pm (original)
+++ branches/upstream/liborlite-perl/current/t/lib/Test.pm Thu Jan 15 15:42:45 2009
@@ -8,7 +8,7 @@
 
 use vars qw{$VERSION @ISA @EXPORT};
 BEGIN {
-        $VERSION = '1.17';
+        $VERSION = '1.18';
 	@ISA     = qw{ Exporter };
 	@EXPORT  = qw{ test_db connect_ok create_ok };
 }




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