r52679 - in /trunk/libdbix-class-perl: debian/changelog debian/control examples/Schema/db/example.sql

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat Feb 13 21:24:58 UTC 2010


Author: jawnsy-guest
Date: Sat Feb 13 21:24:38 2010
New Revision: 52679

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=52679
Log:
* Standards-Version 3.8.4 (no changes)
* Undo changes to examples/Schema/db/example.sql  

Modified:
    trunk/libdbix-class-perl/debian/changelog
    trunk/libdbix-class-perl/debian/control
    trunk/libdbix-class-perl/examples/Schema/db/example.sql

Modified: trunk/libdbix-class-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbix-class-perl/debian/changelog?rev=52679&op=diff
==============================================================================
--- trunk/libdbix-class-perl/debian/changelog (original)
+++ trunk/libdbix-class-perl/debian/changelog Sat Feb 13 21:24:38 2010
@@ -1,9 +1,11 @@
 libdbix-class-perl (0.08118-1) UNRELEASED; urgency=low
 
   * New upstream release
+  * Standards-Version 3.8.4 (no changes)
   * This module now needs Moose >= 0.98
-
- -- Jonathan Yu <jawnsy at cpan.org>  Mon, 08 Feb 2010 17:58:54 -0500
+  * Undo changes to examples/Schema/db/example.sql  
+
+ -- Jonathan Yu <jawnsy at cpan.org>  Sat, 13 Feb 2010 16:41:01 -0500
 
 libdbix-class-perl (0.08115-1) unstable; urgency=low
 

Modified: trunk/libdbix-class-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbix-class-perl/debian/control?rev=52679&op=diff
==============================================================================
--- trunk/libdbix-class-perl/debian/control (original)
+++ trunk/libdbix-class-perl/debian/control Sat Feb 13 21:24:38 2010
@@ -4,7 +4,7 @@
 Build-Depends: debhelper (>= 7.2.13)
 Build-Depends-Indep: perl, libclass-accessor-grouped-perl (>= 0.09000),
  libdbi-perl (>= 1.605), libdbix-contextualfetch-perl, libdata-page-perl,
- libclass-c3-perl (>= 0.11), libclass-trigger-perl, libmodule-build-perl,
+ libclass-c3-perl (>= 0.11), perl (>= 5.10) | libmodule-build-perl,
  libsql-abstract-limit-perl, libtest-pod-coverage-perl, libtest-pod-perl,       
  libsql-abstract-perl (>= 1.58), libclass-inspector-perl (>= 1.24),
  libmodule-find-perl (>= 0.06), libsql-translator-perl (>= 0.11002),
@@ -12,18 +12,17 @@
  libclass-c3-componentised-perl (>= 1.0005), libdatetime-format-mysql-perl,
  libscope-guard-perl, libfile-spec-perl, libdatetime-format-pg-perl,
  libdatetime-format-sqlite-perl,  libtest-deep-perl, libtext-csv-xs-perl,
- libjson-any-perl (>= 1.18), libtest-memory-cycle-perl, libtest-warn-perl (>= 0.21),
- libclass-trigger-perl, libdbix-contextualfetch-perl, libclone-perl,
- libtime-piece-mysql-perl, perl (>= 5.10.1) | libtest-simple-perl (>= 0.82),
- libcarp-clan-perl (>= 6.0), libnamespace-clean-perl, libmoosex-types-perl,
- libmoosex-attributehelpers-perl, libdbd-sqlite3-perl (>= 1.25),
+ libjson-any-perl (>= 1.18), libtest-memory-cycle-perl, libclass-trigger-perl,
+ libtest-warn-perl (>= 0.21),  libclone-perl, libtime-piece-mysql-perl,
+ perl (>= 5.10.1) | libtest-simple-perl (>= 0.82), libcarp-clan-perl (>= 6.0),
+ libnamespace-clean-perl, libmoosex-types-perl, libdbd-sqlite3-perl (>= 1.25),
  libpath-class-perl (>= 0.16), perl (>= 5.10.1) | libfile-temp-perl (>= 0.22),
- libdata-dumper-concise-perl
+ libdata-dumper-concise-perl, libmoosex-attributehelpers-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Krzysztof Krzyżaniak (eloy) <eloy at debian.org>,
  gregor herrmann <gregoa at debian.org>, Jonathan Yu <jawnsy at cpan.org>,
  Ryan Niebur <ryan at debian.org>, Brian Cassidy <brian.cassidy at gmail.com>
-Standards-Version: 3.8.3
+Standards-Version: 3.8.4
 Homepage: http://search.cpan.org/dist/DBIx-Class/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdbix-class-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libdbix-class-perl/

Modified: trunk/libdbix-class-perl/examples/Schema/db/example.sql
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbix-class-perl/examples/Schema/db/example.sql?rev=52679&op=diff
==============================================================================
--- trunk/libdbix-class-perl/examples/Schema/db/example.sql (original)
+++ trunk/libdbix-class-perl/examples/Schema/db/example.sql Sat Feb 13 21:24:38 2010
@@ -1,16 +1,16 @@
-CREATE TABLE artist (
-  artistid INTEGER PRIMARY KEY,
-  name TEXT NOT NULL 
-);
-
-CREATE TABLE cd (
-  cdid INTEGER PRIMARY KEY,
-  artist INTEGER NOT NULL REFERENCES artist(artistid),
-  title TEXT NOT NULL
-);
-
-CREATE TABLE track (
-  trackid INTEGER PRIMARY KEY,
-  cd INTEGER NOT NULL REFERENCES cd(cdid),
-  title TEXT NOT NULL
+CREATE TABLE artist (
+  artistid INTEGER PRIMARY KEY,
+  name TEXT NOT NULL 
+);
+
+CREATE TABLE cd (
+  cdid INTEGER PRIMARY KEY,
+  artist INTEGER NOT NULL REFERENCES artist(artistid),
+  title TEXT NOT NULL
+);
+
+CREATE TABLE track (
+  trackid INTEGER PRIMARY KEY,
+  cd INTEGER NOT NULL REFERENCES cd(cdid),
+  title TEXT NOT NULL
 );




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