r57252 - in /branches/upstream/libdbix-class-encodedcolumn-perl/current: Changes MANIFEST META.yml lib/DBIx/Class/EncodedColumn.pm t/var/ t/var/DigestTest-Schema-1.x-SQLite.sql

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat May 1 22:59:25 UTC 2010


Author: jawnsy-guest
Date: Sat May  1 22:59:20 2010
New Revision: 57252

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=57252
Log:
[svn-upgrade] Integrating new upstream version, libdbix-class-encodedcolumn-perl (0.00008)

Added:
    branches/upstream/libdbix-class-encodedcolumn-perl/current/t/var/
    branches/upstream/libdbix-class-encodedcolumn-perl/current/t/var/DigestTest-Schema-1.x-SQLite.sql
Modified:
    branches/upstream/libdbix-class-encodedcolumn-perl/current/Changes
    branches/upstream/libdbix-class-encodedcolumn-perl/current/MANIFEST
    branches/upstream/libdbix-class-encodedcolumn-perl/current/META.yml
    branches/upstream/libdbix-class-encodedcolumn-perl/current/lib/DBIx/Class/EncodedColumn.pm

Modified: branches/upstream/libdbix-class-encodedcolumn-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdbix-class-encodedcolumn-perl/current/Changes?rev=57252&op=diff
==============================================================================
--- branches/upstream/libdbix-class-encodedcolumn-perl/current/Changes (original)
+++ branches/upstream/libdbix-class-encodedcolumn-perl/current/Changes Sat May  1 22:59:20 2010
@@ -1,3 +1,5 @@
+0.00008        2010-04-30
+        - Fix packaging bug.
 0.00007        2010-04-29
         - Fix for inter-component leaks because of improper mk_classdata usage
           (fixes RT #5099 by Kent Fredric) ( groditi )

Modified: branches/upstream/libdbix-class-encodedcolumn-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdbix-class-encodedcolumn-perl/current/MANIFEST?rev=57252&op=diff
==============================================================================
--- branches/upstream/libdbix-class-encodedcolumn-perl/current/MANIFEST (original)
+++ branches/upstream/libdbix-class-encodedcolumn-perl/current/MANIFEST Sat May  1 22:59:20 2010
@@ -24,3 +24,4 @@
 t/lib/DigestTest/Schema/Test.pm
 t/pubring.gpg
 t/secring.gpg
+t/var/DigestTest-Schema-1.x-SQLite.sql

Modified: branches/upstream/libdbix-class-encodedcolumn-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdbix-class-encodedcolumn-perl/current/META.yml?rev=57252&op=diff
==============================================================================
--- branches/upstream/libdbix-class-encodedcolumn-perl/current/META.yml (original)
+++ branches/upstream/libdbix-class-encodedcolumn-perl/current/META.yml Sat May  1 22:59:20 2010
@@ -29,4 +29,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: http://dev.catalyst.perl.org/repos/bast/trunk/DBIx-Class-EncodedColumn
-version: 0.00007
+version: 0.00008

Modified: branches/upstream/libdbix-class-encodedcolumn-perl/current/lib/DBIx/Class/EncodedColumn.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdbix-class-encodedcolumn-perl/current/lib/DBIx/Class/EncodedColumn.pm?rev=57252&op=diff
==============================================================================
--- branches/upstream/libdbix-class-encodedcolumn-perl/current/lib/DBIx/Class/EncodedColumn.pm (original)
+++ branches/upstream/libdbix-class-encodedcolumn-perl/current/lib/DBIx/Class/EncodedColumn.pm Sat May  1 22:59:20 2010
@@ -9,7 +9,7 @@
 
 __PACKAGE__->mk_classdata( '_column_encoders' );
 
-our $VERSION = '0.00007';
+our $VERSION = '0.00008';
 
 sub register_column {
   my $self = shift;

Added: branches/upstream/libdbix-class-encodedcolumn-perl/current/t/var/DigestTest-Schema-1.x-SQLite.sql
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdbix-class-encodedcolumn-perl/current/t/var/DigestTest-Schema-1.x-SQLite.sql?rev=57252&op=file
==============================================================================
--- branches/upstream/libdbix-class-encodedcolumn-perl/current/t/var/DigestTest-Schema-1.x-SQLite.sql (added)
+++ branches/upstream/libdbix-class-encodedcolumn-perl/current/t/var/DigestTest-Schema-1.x-SQLite.sql Sat May  1 22:59:20 2010
@@ -1,0 +1,40 @@
+-- 
+-- Created by SQL::Translator::Producer::SQLite
+-- Created on Thu Apr 29 20:08:54 2010
+-- 
+
+
+BEGIN TRANSACTION;
+
+--
+-- Table: tablea
+--
+CREATE TABLE tablea (
+  id INTEGER PRIMARY KEY NOT NULL,
+  conflicting_name char(43) NOT NULL
+);
+
+--
+-- Table: tableb
+--
+CREATE TABLE tableb (
+  id INTEGER PRIMARY KEY NOT NULL,
+  conflicting_name char(43) NOT NULL
+);
+
+--
+-- Table: test
+--
+CREATE TABLE test (
+  id INTEGER PRIMARY KEY NOT NULL,
+  dummy_col char(43) NOT NULL,
+  sha1_hex char(40),
+  sha1_b64 char(27),
+  sha256_hex char(64),
+  sha256_b64 char(43),
+  sha256_b64_salted char(57),
+  bcrypt_1 text,
+  bcrypt_2 text
+);
+
+COMMIT;




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