r28241 - in /branches/upstream/liborlite-perl/current: Changes META.yml README lib/ORLite.pm t/lib/Test.pm
bricas-guest at users.alioth.debian.org
bricas-guest at users.alioth.debian.org
Mon Dec 15 13:25:17 UTC 2008
Author: bricas-guest
Date: Mon Dec 15 13:25:14 2008
New Revision: 28241
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=28241
Log:
[svn-upgrade] Integrating new upstream version, liborlite-perl (1.16)
Modified:
branches/upstream/liborlite-perl/current/Changes
branches/upstream/liborlite-perl/current/META.yml
branches/upstream/liborlite-perl/current/README
branches/upstream/liborlite-perl/current/lib/ORLite.pm
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=28241&op=diff
==============================================================================
--- branches/upstream/liborlite-perl/current/Changes (original)
+++ branches/upstream/liborlite-perl/current/Changes Mon Dec 15 13:25:14 2008
@@ -1,4 +1,8 @@
Changes for Perl extension ORLite
+
+1.16 Sen 14 Dec 2008
+ - The fact that I didn't need to change ORLite for ORLite::Migrate
+ suggests that it's stable enough for general use (pending 2.0)
0.15 Wed 24 Sep 2008
- Adding support for writable pragmas
Modified: branches/upstream/liborlite-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liborlite-perl/current/META.yml?rev=28241&op=diff
==============================================================================
--- branches/upstream/liborlite-perl/current/META.yml (original)
+++ branches/upstream/liborlite-perl/current/META.yml Mon Dec 15 13:25:14 2008
@@ -25,4 +25,4 @@
perl: 5.6.0
resources:
license: http://dev.perl.org/licenses/
-version: 0.15
+version: 1.16
Modified: branches/upstream/liborlite-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liborlite-perl/current/README?rev=28241&op=diff
==============================================================================
--- branches/upstream/liborlite-perl/current/README (original)
+++ branches/upstream/liborlite-perl/current/README Mon Dec 15 13:25:14 2008
@@ -13,10 +13,6 @@
);
DESCRIPTION
- THIS CODE IS EXPERIMENTAL AND SUBJECT TO CHANGE WITHOUT NOTICE
-
- YOU HAVE BEEN WARNED!
-
SQLite is a light weight single file SQL database that provides an
excellent platform for embedded storage of structured data.
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=28241&op=diff
==============================================================================
--- branches/upstream/liborlite-perl/current/lib/ORLite.pm (original)
+++ branches/upstream/liborlite-perl/current/lib/ORLite.pm Mon Dec 15 13:25:14 2008
@@ -9,18 +9,16 @@
use File::Temp ();
use Params::Util qw{ _STRING _CLASS _HASH };
use DBI ();
-# use DBD::SQLite ();
+
+use vars qw{$VERSION};
BEGIN {
+ $VERSION = '1.16';
+
# DBD::SQLite has a bug that generates a spurious warning
# at compile time, so we need to temporarily disable them.
# Remove this hack once DBD::SQLite fixes the bug.
local $^W = 0;
require DBD::SQLite;
-}
-
-use vars qw{$VERSION};
-BEGIN {
- $VERSION = '0.15';
}
@@ -380,10 +378,6 @@
=head1 DESCRIPTION
-B<THIS CODE IS EXPERIMENTAL AND SUBJECT TO CHANGE WITHOUT NOTICE>
-
-B<YOU HAVE BEEN WARNED!>
-
L<SQLite> is a light weight single file SQL database that provides an
excellent platform for embedded storage of structured data.
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=28241&op=diff
==============================================================================
--- branches/upstream/liborlite-perl/current/t/lib/Test.pm (original)
+++ branches/upstream/liborlite-perl/current/t/lib/Test.pm Mon Dec 15 13:25:14 2008
@@ -8,7 +8,7 @@
use vars qw{$VERSION @ISA @EXPORT};
BEGIN {
- $VERSION = '0.15';
+ $VERSION = '1.16';
@ISA = qw{ Exporter };
@EXPORT = qw{ test_db connect_ok create_ok };
}
More information about the Pkg-perl-cvs-commits
mailing list