head 1.2; access; symbols pkgsrc-2013Q2:1.2.0.10 pkgsrc-2013Q2-base:1.2 pkgsrc-2012Q4:1.2.0.8 pkgsrc-2012Q4-base:1.2 pkgsrc-2011Q4:1.2.0.6 pkgsrc-2011Q4-base:1.2 pkgsrc-2011Q2:1.2.0.4 pkgsrc-2011Q2-base:1.2 pkgsrc-2009Q4:1.2.0.2 pkgsrc-2009Q4-base:1.2 pkgsrc-2009Q2:1.1.0.6 pkgsrc-2009Q2-base:1.1 pkgsrc-2009Q1:1.1.0.4 pkgsrc-2009Q1-base:1.1 pkgsrc-2008Q4:1.1.0.2 pkgsrc-2008Q4-base:1.1; locks; strict; comment @# @; 1.2 date 2009.07.07.20.34.46; author sno; state dead; branches; next 1.1; 1.1 date 2008.12.20.16.12.47; author he; state Exp; branches; next ; desc @@ 1.2 log @pkgsrc changes: - Updating package for p5 module Rose::DBx::Garden::Catalyst from 0.13 to 0.14 - Setting LICENSE=${PERL5_LICENSE} - Adjusting dependencies Upstream changes: 0.14 7 June 2009 * drop tables conditionally in rdgc.sql * refactor C3 syntax @ text @$NetBSD: patch-ab,v 1.1 2008/12/20 16:12:47 he Exp $ --- t/rdgc.sql.orig 2008-09-14 07:03:34.000000000 +0200 +++ t/rdgc.sql @@@@ -1,6 +1,6 @@@@ /* SQL supplied by laust_frederiksen@@hotmail.com */ -drop table addresses; +/* drop table addresses; */ create table addresses ( id serial primary key, @@@@ -10,7 +10,7 @@@@ create table addresses name4 char(40) ); -drop table suppliers; +/* drop table suppliers; */ create table suppliers ( id serial primary key, @@@@ -21,7 +21,7 @@@@ create table suppliers create unique index suppliers_name on suppliers(name); -drop table manufacturers; +/* drop table manufacturers; */ create table manufacturers ( id serial primary key, @@@@ -32,7 +32,7 @@@@ create table manufacturers create unique index manufacturers_name on manufacturers(name); -drop table products; +/* drop table products; */ create table products ( id serial primary key, @@@@ -45,7 +45,7 @@@@ create table products create unique index products_manufacturer_name on products(manufacturer,name); -drop table locations; +/* drop table locations; */ create table locations ( id serial primary key, @@@@ -56,7 +56,7 @@@@ create table locations create unique index locations_name on locations(name); -drop table stocks; +/* drop table stocks; */ create table stocks ( id serial primary key, @@@@ -69,7 +69,7 @@@@ create table stocks create unique index stocks_location_product on stocks(location,product); -drop table customers; +/* drop table customers; */ create table customers ( id integer auto increment not null, @@@@ -80,7 +80,7 @@@@ create table customers create unique index customers_name on customers(name); -drop table invoices; +/* drop table invoices; */ create table invoices ( id integer auto increment not null, @@@@ -92,7 +92,7 @@@@ create table invoices foreign key (address) references addresses (id) ); -drop table lines; +/* drop table lines; */ create table lines ( id serial primary key, @ 1.1 log @Updte from version 0.12 to 0.13. Pkgsrc changes: o Fix the problem with the sqlite3-using regression test properly; apparently sqlite3 thinks it's an error to drop a nonexistent table. This is a follow-up on CPAN ticket #41769. o Adapt substitution pattern for sqlite3 after upstream change. o Add dependency on p5-IPC-Cmd, as per upstream change. Upstream changes: 0.13 16 Dec 2008 * fixes for Perl 5.10 File::Copy * use IPC::Cmd::run to create db in t/lib/MyDB.pm @ text @d1 1 a1 1 $NetBSD$ @