debian/0000755000000000000000000000000012265244343007173 5ustar debian/rules0000755000000000000000000000033211615541071010245 0ustar #!/usr/bin/make -f %: dh $@ override_dh_auto_test: DBICTEST_FORK_STRESS=1 \ DBICTEST_THREAD_STRESS=1 \ DBICTEST_STORAGE_STRESS=1 \ dh_auto_test override_dh_clean: [ ! -d t/var ] || rm -rf t/var/ dh_clean debian/patches/0000755000000000000000000000000012265244201010613 5ustar debian/patches/series0000644000000000000000000000007412265243012012030 0ustar fix-doc-typos.patch sqlite-exceptions.patch pod-error.patch debian/patches/pod-error.patch0000644000000000000000000000154712265244201013554 0ustar Description: POD error about trailing whitespace in a link Author: Damyan Ivanov Forwarded: yes Bug: https://rt.cpan.org/Ticket/Display.html?id=92139 --- a/lib/DBIx/Class/Row.pm +++ b/lib/DBIx/Class/Row.pm @@ -48,9 +48,9 @@ relationship accessors of L -object (such as a typical C<< L->L >> call) are actually Result -instances, based on your application's +object (such as a typical C<< +L->L >> +call) are actually Result instances, based on your application's L. L implements most of the row-based communication with the debian/patches/sqlite-exceptions.patch0000644000000000000000000000305112265242012015311 0ustar Description: adapt to changes in sqlite3 errors when vialating a NOT NULL constraint Author: Damyan Ivanov Bug-Debian: https://bugs.debian.org/735024 Bug: https://rt.cpan.org/Ticket/Display.html?id=92138 Forwarded: yes --- a/t/multi_create/standard.t +++ b/t/multi_create/standard.t @@ -444,7 +444,7 @@ throws_ok ( sub { #$t->cd($t->new_related('cd', { artist => undef } ) ); #$t->{_rel_in_storage} = 0; $t->insert; -}, qr/cd.artist may not be NULL/, "Exception propogated properly"); +}, qr/cd.artist may not be NULL|NOT NULL constraint failed: cd.artist/, "Exception propogated properly"); lives_ok ( sub { $schema->resultset('CD')->create ({ --- a/t/relationship/update_or_create_multi.t +++ b/t/relationship/update_or_create_multi.t @@ -69,7 +69,7 @@ throws_ok { year => 2020, title => 'the best thing since sliced bread', }) -} qr/\Qcd.artist may not be NULL/, 'ambiguous find + create failed'; +} qr/\Qcd.artist may not be NULL\E|\QNOT NULL constraint failed: cd.artist/, 'ambiguous find + create failed'; # expect a create, after a failed search using *only* the # *current* relationship and the unique column constraints --- a/t/storage/error.t +++ b/t/storage/error.t @@ -15,7 +15,7 @@ warnings_are ( sub { sub { $schema->resultset('CD')->create({ title => 'vacation in antarctica' }) }, - qr/DBI Exception.+cd\.artist.+NULL/s + qr/DBI Exception.+cd\.artist.+NULL|NOT NULL constraint failed: cd.artist/s ); # as opposed to some other error }, [], 'No warnings besides exception' ); debian/patches/fix-doc-typos.patch0000644000000000000000000001242012146621462014346 0ustar Description: Fix documentation typos Bug: https://rt.cpan.org/Ticket/Display.html?id=85389 Forwarded: https://rt.cpan.org/Ticket/Display.html?id=85389 Author: Olly Betts Reviewed-by: gregor herrmann Last-Update: 2013-05-17 --- a/lib/DBIx/Class/Schema.pm +++ b/lib/DBIx/Class/Schema.pm @@ -1000,7 +1000,7 @@ Clones the schema and its associated result_source objects and returns the copy. The resulting copy will have the same attributes as the source schema, -except for those attributes explicitly overriden by the provided C<%attrs>. +except for those attributes explicitly overridden by the provided C<%attrs>. =cut --- a/lib/DBIx/Class/Optional/Dependencies.pm +++ b/lib/DBIx/Class/Optional/Dependencies.pm @@ -897,7 +897,7 @@ '=item Return Value: \%list_of_loaderrors_per_module', '=back', <<'EOD', -Returns a hashref containing the actual errors that occured while attempting +Returns a hashref containing the actual errors that occurred while attempting to load each module in the requirement group. EOD '=head1 AUTHOR', --- a/lib/DBIx/Class/Manual/Component.pod +++ b/lib/DBIx/Class/Manual/Component.pod @@ -27,7 +27,7 @@ __PACKAGE__->load_components(qw/ +My::Component /); -Once a component is loaded all of it's methods, or otherwise, +Once a component is loaded all of its methods, or otherwise, that it provides will be available in your class. The order in which is you load the components may be very --- a/lib/DBIx/Class/Manual/Features.pod +++ b/lib/DBIx/Class/Manual/Features.pod @@ -258,7 +258,7 @@ =head2 Populate -Made for inserting lots of rows very quicky into database +Made for inserting lots of rows very quickly into database $schema->populate([ Users => [qw( username password )], @@ -274,7 +274,7 @@ =head2 Multicreate -Create an object and it's related objects all at once +Create an object and its related objects all at once $schema->resultset('Author')->create({ name => 'Stephen King', --- a/lib/DBIx/Class/Manual/FAQ.pod +++ b/lib/DBIx/Class/Manual/FAQ.pod @@ -75,7 +75,7 @@ =item .. use DBIx::Class across multiple databases? -If your database server allows you to run querys across multiple +If your database server allows you to run queries across multiple databases at once, then so can DBIx::Class. All you need to do is make sure you write the database name as part of the L call. Eg: @@ -314,7 +314,7 @@ $row->discard_changes -Discarding changes and refreshing from storage are two sides fo the same coin. When you +Discarding changes and refreshing from storage are two sides of the same coin. When you want to discard your local changes, just re-fetch the row from storage. When you want to get a new, fresh copy of the row, just re-fetch the row from storage. L does just that by re-fetching the row from storage --- a/lib/DBIx/Class/Manual/Cookbook.pod +++ b/lib/DBIx/Class/Manual/Cookbook.pod @@ -1223,7 +1223,7 @@ 1; -By overridding the L +By overriding the L method and extracting a custom option from the provided \%attr hashref one can then simply iterate over all the Schema's ResultSources, renaming them as needed. --- a/lib/DBIx/Class/Manual/Joining.pod +++ b/lib/DBIx/Class/Manual/Joining.pod @@ -17,12 +17,12 @@ But I'll explain anyway. Assuming you have created your database in a more or less sensible way, you will end up with several tables that contain C information. For example, you may have a table -containing information about Cs, containing the CD title and it's +containing information about Cs, containing the CD title and its year of publication, and another table containing all the Cs for the CDs, one track per row. When you wish to extract information about a particular CD and all -it's tracks, You can either fetch the CD row, then make another query +its tracks, You can either fetch the CD row, then make another query to fetch the tracks, or you can use a join. Compare: SELECT ID, Title, Year FROM CD WHERE Title = 'Funky CD'; --- a/lib/DBIx/Class/Manual/Glossary.pod +++ b/lib/DBIx/Class/Manual/Glossary.pod @@ -127,7 +127,7 @@ =head2 prefetch -Similiar to a join, except the related result objects are fetched and +Similar to a join, except the related result objects are fetched and cached for future use, instead of used directly from the ResultSet. This allows you to jump to different relationships within a Result without worrying about generating a ton of extra SELECT statements. --- a/lib/DBIx/Class/ResultSet.pm +++ b/lib/DBIx/Class/ResultSet.pm @@ -4643,7 +4643,7 @@ =item dbic_colname Used to fill in missing sqlt_datatype and sqlt_size attributes (if they are -explicitly specified they are never overriden). Also used by some weird DBDs, +explicitly specified they are never overridden). Also used by some weird DBDs, where the column name should be available at bind_param time (e.g. Oracle). =back --- a/t/71mysql.t +++ b/t/71mysql.t @@ -210,7 +210,7 @@ INNER JOIN `artist` `artist` ON `artist`.`artistid` = `me`.`artist` )', [], - 'overriden default join type works', + 'overridden default join type works', ); } debian/copyright0000644000000000000000000001517612231231502011122 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: DBIx-Class Upstream-Contact: Matt S. Trout Source: https://metacpan.org/release/DBIx-Class/ Files: * Copyright: 2005-2011, mst: Matt S. Trout abraxxa: Alexander Hartmaier acca: Alexander Kuznetsov aherzog: Adam Herzog Alexander Keusch alexrj: Alessandro Ranellucci alnewkirk: Al Newkirk amiri: Amiri Barksdale amoore: Andrew Moore andrewalker: Andre Walker andyg: Andy Grundman ank: Andres Kievsky arc: Aaron Crane arcanez: Justin Hunter ash: Ash Berlin bert: Norbert Csongradi blblack: Brandon L. Black bluefeet: Aran Deltac bphillips: Brian Phillips boghead: Bryan Beeley brd: Brad Davis bricas: Brian Cassidy brunov: Bruno Vecchi caelum: Rafael Kitover caldrin: Maik Hentsche castaway: Jess Robinson claco: Christopher H. Laco clkao: CL Kao da5id: David Jack Olrik dariusj: Darius Jokilehto davewood: David Schmidt daxim: Lars Dɪᴇᴄᴋᴏᴡ 迪拉斯 debolaz: Anders Nor Berle dew: Dan Thomas dkubb: Dan Kubb dnm: Justin Wheeler dpetrov: Dimitar Petrov dwc: Daniel Westermann-Clark dyfrgi: Michael Leuchtenburg edenc: Eden Cardim felliott: Fitz Elliott freetime: Bill Moseley frew: Arthur Axel "fREW" Schmidt goraxe: Gordon Irving gphat: Cory G Watson Grant Street Group groditi: Guillermo Roditi Haarg: Graham Knop hobbs: Andrew Rodland ilmari: Dagfinn Ilmari Mannsåker initself: Mike Baas ironcamel: Naveed Massjouni jawnsy: Jonathan Yu jasonmay: Jason May jesper: Jesper Krogh jgoulah: John Goulah jguenther: Justin Guenther jhannah: Jay Hannah jmac: Jason McIntosh jnapiorkowski: John Napiorkowski jon: Jon Schutz jshirley: J. Shirley kaare: Kaare Rasmussen konobi: Scott McWhirter littlesavage: Alexey Illarionov lukes: Luke Saunders marcus: Marcus Ramberg mattlaw: Matt Lawrence mattp: Matt Phillips michaelr: Michael Reddick milki: Jonathan Chu mithaldu: Christian Walde mjemmeson: Michael Jemmeson mstratman: Mark A. Stratman ned: Neil de Carteret nigel: Nigel Metheringham ningu: David Kamholz Nniuq: Ron "Quinn" Straight" norbi: Norbert Buchmuller nuba: Nuba Princigalli Numa: Dan Sully ovid: Curtis "Ovid" Poe oyse: Øystein Torget paulm: Paul Makepeace penguin: K J Cheetham perigrin: Chris Prather peter: Peter Collingbourne Peter Valdemar Mørch phaylon: Robert Sedlacek plu: Johannes Plunien Possum: Daniel LeWarne quicksilver: Jules Bean rafl: Florian Ragwitz rainboxx: Matthias Dietrich rbo: Robert Bohne rbuels: Robert Buels rdj: Ryan D Johnson ribasushi: Peter Rabbitson rjbs: Ricardo Signes robkinyon: Rob Kinyon Robert Olson moltar: Roman Filippov Sadrak: Felix Antonius Wilhelm Ostmann sc_: Just Another Perl Hacker scotty: Scotty Allen semifor: Marc Mims SineSwiper: Brendan Byrd solomon: Jared Johnson spb: Stephen Bennett Squeeks sszabo: Stephan Szabo talexb: Alex Beamish tamias: Ronald J Kimball teejay : Aaron Trevena Todd Lipcon Tom Hukins tonvoon: Ton Voon triode: Pete Gamache typester: Daisuke Murase victori: Victor Igumnov wdh: Will Hawes wesm: Wes Malone willert: Sebastian Willert wreis: Wallace Reis xenoterracide: Caleb Cushing yrlnry: Mark Jason Dominus zamolxes: Bogdan Lucaciu License: Artistic or GPL-1+ Files: inc/Module/* Copyright: 2002-2012, Adam Kennedy 2002-2012, Audrey Tang 2002-2012, Brian Ingerson License: Artistic or GPL-1+ Files: t/lib/DBIC/SqlMakerTest.pm Copyright: 2008, Norbert Buchmuller License: GPL-1+ or Artistic Files: debian/* Copyright: 2008-2013, gregor herrmann 2009-2010, Jonathan Yu 2009, Ryan Niebur 2005-2009, Krzysztof Krzyzaniak (eloy) 2005, Florian Ragwitz License: Artistic or GPL-1+ License: Artistic This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License, which comes with Perl. . On Debian systems, the complete text of the Artistic License can be found in `/usr/share/common-licenses/Artistic'. License: GPL-1+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. . On Debian systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'. debian/watch0000644000000000000000000000015612126251142010215 0ustar version=3 https://metacpan.org/release/DBIx-Class/ .*/DBIx-Class-v?(\d[\d.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) debian/source/0000755000000000000000000000000011645250063010470 5ustar debian/source/format0000644000000000000000000000001411615541071011675 0ustar 3.0 (quilt) debian/libdbix-class-perl.examples0000644000000000000000000000001311615541071014401 0ustar examples/* debian/control0000644000000000000000000001260612265244311010576 0ustar Source: libdbix-class-perl Maintainer: Debian Perl Group Uploaders: Krzysztof Krzyżaniak (eloy) , gregor herrmann , Jonathan Yu , Ryan Niebur , Brian Cassidy , Ansgar Burchardt , Olly Betts Section: perl Priority: optional Build-Depends: debhelper (>= 8) Build-Depends-Indep: perl, libclass-accessor-grouped-perl (>= 0.10010), libdevel-globaldestruction-perl (>= 0.09), libconfig-any-perl (>= 0.20), libmro-compat-perl (>= 0.12), libclass-c3-componentised-perl, libclass-inspector-perl, libclass-trigger-perl, libclass-unload-perl (>= 0.07), libclone-perl, libcontext-preserve-perl, libdata-compare-perl (>= 1.22), libdata-dumper-concise-perl (>= 2.020), libdata-page-perl, libdate-simple-perl, libdatetime-format-mysql-perl, libdatetime-format-pg-perl, libdatetime-format-sqlite-perl, libdatetime-format-strptime-perl, libdbd-sqlite3-perl, libdbi-perl, libdbix-contextualfetch-perl, libdevel-cycle-perl, libgetopt-long-descriptive-perl, libhash-merge-perl, libjson-any-perl, libmath-base36-perl, libmodule-find-perl, libnamespace-autoclean-perl, libnamespace-clean-perl (>= 0.24), libpackage-stash-perl (>= 0.28), libpath-class-perl, libscope-guard-perl, libsql-abstract-perl (>= 1.73), libsql-translator-perl (>= 0.11016), libsub-name-perl, libtest-exception-perl (>= 0.31), libtest-memory-cycle-perl, perl (>= 5.11.1) | libtest-simple-perl, libtest-deep-perl, libtest-warn-perl, libtext-csv-perl, libtime-piece-mysql-perl, libtry-tiny-perl (>= 0.07), libmoo-perl (>= 1.00006), libmoose-perl, libmoosex-types-json-perl, libmoosex-types-path-class-perl, libmoosex-types-perl Standards-Version: 3.9.5 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libdbix-class-perl.git Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libdbix-class-perl.git Homepage: https://metacpan.org/release/DBIx-Class/ Package: libdbix-class-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, libclass-accessor-grouped-perl (>= 0.10010), libclass-c3-componentised-perl, libclass-inspector-perl, libconfig-any-perl (>= 0.20), libcontext-preserve-perl, libdata-compare-perl (>= 1.22), libdata-dumper-concise-perl (>= 2.020), libdata-page-perl, libdbi-perl, libdevel-globaldestruction-perl (>= 0.09), libmodule-find-perl, libmoo-perl (>= 1.00006), libmro-compat-perl (>= 0.12), libnamespace-clean-perl (>= 0.24), libpath-class-perl, libscope-guard-perl, libsql-abstract-perl (>= 1.73), libsub-name-perl, libtry-tiny-perl (>= 0.07) Recommends: libsql-translator-perl (>= 0.11016) Suggests: libgetopt-long-descriptive-perl (>= 0.081), libhash-merge-perl (>= 0.12), libjson-any-perl (>= 1.22), libmath-base36-perl, libmoose-perl (>= 0.98), libmoosex-types-json-perl, libmoosex-types-path-class-perl, libmoosex-types-perl (>= 0.21), libnamespace-autoclean-perl (>= 0.09), libtext-csv-perl (>= 1.16) Description: extensible and flexible object <-> relational mapper DBIx::Class is an SQL to OO mapper with an object API inspired by Class::DBI (and a compatibility layer as a springboard for porting) and a resultset API that allows abstract encapsulation of database operations. It aims to make representing queries in your code as perl-ish as possible while still providing access to as many of the capabilities of the database as possible, including retrieving related records from multiple tables in a single query, JOIN, LEFT JOIN, COUNT, DISTINCT, GROUP BY and HAVING support. . DBIx::Class can handle multi-column primary and foreign keys, complex queries and database-level paging, and does its best to only query the database in order to return something you've directly asked for. If a resultset is used as an iterator it only fetches rows off the statement handle as requested in order to minimise memory usage. It has auto-increment support for SQLite, MySQL, PostgreSQL, Oracle, SQL Server and DB2 and is known to be used in production on at least the first four, and is fork- and thread-safe out of the box (although your DBD may not be). debian/compat0000644000000000000000000000000211673630740010373 0ustar 8 debian/changelog0000644000000000000000000005661412265244343011061 0ustar libdbix-class-perl (0.08250-2) unstable; urgency=medium * Team upload * add patch adapting tests to DBD::SQLite 1.40 Closes: #735024 -- FTBFS: test failures * add patch fixing POD error about trailing whitespace in a link * Declare conformance with Policy 3.9.5 -- Damyan Ivanov Tue, 14 Jan 2014 16:25:33 +0200 libdbix-class-perl (0.08250-1) unstable; urgency=low [ gregor herrmann ] * debian/control: update {versioned,alternative} (build) dependencies. [ Salvatore Bonaccorso ] * Change Vcs-Git to canonical URI (git://anonscm.debian.org) * Change search.cpan.org based URIs to metacpan.org based URIs [ gregor herrmann ] * New upstream release. Closes: #708407 * debian/copyright: switch formatting to Copyright-Format 1.0. Update list of copyright holders. Update copyright years for Module::Install and debian/*. * Refresh fix-doc-typos.patch. * Update build and runtime dependencies. * Set Standards-Version to 3.9.4 (no changes). * fix-doc-typos.patch: add more fixes and forward upstream. -- gregor herrmann Fri, 17 May 2013 20:17:30 +0200 libdbix-class-perl (0.08196-3) unstable; urgency=low * Rename patch fix-doc-typo.patch to fix-doc-typos.patch and add more typo fixes to it. -- Olly Betts Fri, 09 Dec 2011 02:23:07 +0000 libdbix-class-perl (0.08196-2) UNRELEASED; urgency=low * Update dependencies for changes between 0.08195 and 0.08196. * debian/copyright: Update copyright years and contributors. * Update to debhelper compat level 8. -- Olly Betts Fri, 09 Dec 2011 00:57:54 +0000 libdbix-class-perl (0.08196-1) unstable; urgency=low [ Olly Betts ] * New upstream release + Fixes testcase t/88result_set_column.t (Closes: #642829) * Fix documentation typo spotted by lintian ("overriden" -> "overridden") [ Salvatore Bonaccorso ] * debian/copyright: Replace DEP5 Format-Specification URL from svn.debian.org to anonscm.debian.org URL. -- Olly Betts Wed, 07 Dec 2011 01:17:42 +0000 libdbix-class-perl (0.08195-1) unstable; urgency=low * New upstream release. * Remove build-dep on libtest-deep-perl. * Add (build-)dep on libdata-compare-perl (>= 1.22). * debian/control: Convert Vcs-* fields to Git. * debian/copyright: Update years of copyright for inc/Module/*. -- Ansgar Burchardt Wed, 03 Aug 2011 15:12:05 +0200 libdbix-class-perl (0.08192-1) unstable; urgency=low * New upstream release. * Drop patches fix-pod.patch, fix-pod-spelling.patch (applied upstream). * Drop (build-)dep on libcarp-clan-perl. * Add build-dep on libclass-unload-perl, libpackage-stash-perl (>= 0.28). * Bump (build-)dep on libdata-dumper-concise-perl to >= 2.020. * Lower (build-)dep on libdbi-perl to >= 1.570. * Re-add libmath-base36-perl to Build-Depends and Suggests. * Bump standards-Version to 3.9.2 (no changes). -- Ansgar Burchardt Mon, 13 Jun 2011 13:30:35 +0200 libdbix-class-perl (0.08127-1) unstable; urgency=low [ Antony Gelberg ] * New upstream release 0.08124 [ Ansgar Burchardt ] * Update my email address. [ Jonathan Yu ] * New upstream release 0.08125, 0.08126, 0.08127 * Standards-Version 3.9.1 (no changes) * Update license clauses * Update package dependencies per upstream * Add patch to fix typos in POD [ gregor herrmann ] * debian/copyright: update list of upstream copyright holders. -- Jonathan Yu Thu, 24 Feb 2011 22:11:35 -0500 libdbix-class-perl (0.08123-1) unstable; urgency=low [ Ansgar Burchardt ] * New upstream release. * Drop patch fix-pod-spelling.patch: Applied upstream. * Add (build-)dep on libmath-base36-perl. * Add (build-)dep on perl (>= 5.10.1) for File::Path 2.07. [ gregor herrmann ] * Remove (build) dep combinations that are already covered by the new unconditional "perl (>= 5.10.1)". -- Ansgar Burchardt Sat, 19 Jun 2010 09:37:36 +0900 libdbix-class-perl (0.08122-1) unstable; urgency=low [ Ansgar Burchardt ] * New upstream release. + Works with SQL::Abstract 1.67. (Closes: #584391) * Bump (build-)dep on - libclass-accessor-grouped-perl to >= 0.09003, - libsql-abstract-perl to >= 1.67, * Bump build-dep, suggests on - libhash-merge-perl to >= 0.12, - libmoosex-types-perl to >= 0.21, - libnamespace-autoclean-perl to >= 0.09, * Bump build-dep, recommends on libsql-translator-perl to >= 0.11006. * Move libnamespace-clean-perl from Suggests to Depends. Bump version requirement to >= 0.14, * Add build-dep on libmoosex-types-json-perl to enable additional tests. Was only in Suggests before. * Add (build-)dep on libtry-tiny-perl (>= 0.04). * Fix an additional spelling error. + update patch: fix-pod-spelling.patch * debian/control: Sort dependency fields. * debian/rules: Remove override_dh_fixperms target: permissions are fixed upstream. * Add myself to Uploaders. [ gregor herrmann ] * Remove build dependencies for pod* tests which were moved to xt/*. * Update list of upstream copyright holders. -- Ansgar Burchardt Wed, 09 Jun 2010 01:46:47 +0900 libdbix-class-perl (0.08121-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release * Drop RELEASE_TESTING during build as they will be moved to xt/ in a subsequent release, and one currently fails * Undo changes to examples/Schema/db/example.sql * Update copyright to new DEP5 format * Use new 3.0 (quilt) source format * Add override to fix various permissions (this issue has been reported upstream) [ gregor herrmann ] * debian/copyright: update list of copyright holders. -- Jonathan Yu Sun, 18 Apr 2010 22:41:34 -0400 libdbix-class-perl (0.08120-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release * Standards-Version 3.8.4 (no changes) * Undo changes to examples/Schema/db/example.sql * Update dependencies per upstream * Remove permissions-fixing override (no longer needed) * Now needs Context::Preserve [ gregor herrmann ] * Now needs Moose >= 0.98 for tests (Closes: #569408) * debian/copyright: update years and copyright holders. -- Jonathan Yu Wed, 03 Mar 2010 11:17:20 -0500 libdbix-class-perl (0.08115-1) unstable; urgency=low * New upstream release * Add a temporary override to fix permission issues -- Jonathan Yu Thu, 10 Dec 2009 13:05:23 -0500 libdbix-class-perl (0.08114-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release * Remove patch; whatis entry has been fixed upstream [ gregor herrmann ] * debian/control: - (build-)depend on perl instead of perl-modules - add (build) dependency on libdata-dumper-concise-perl - add perl (>= 5.10.1) as an alternative build dependency to libtest-simple-perl (>= 0.82) -- gregor herrmann Fri, 04 Dec 2009 00:06:44 +0100 libdbix-class-perl (0.08112-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release 0.08109 + Improvements to database replication + Add supports for many special database types + Massive optimization of the DBI storage layer (reduces amount of calls to ping) * Updated dependencies * Standards-Version 3.8.3 (no changes) * Now run storage stress tests during build, too * Add a whatis patch and README.source * Use RELEASE_TESTING instead of AUTOMATED_TESTING (only in the case of this package). Some tests cannot run under CPANTS, which has AUTOMATED_TESTING set, but should be run in Debian. * Move libdbd-sqlite3-perl (>= 1.25) to Depends instead of Suggests, since it is actually a requirement upstream. Some packages depend on this being available, if DBIx::Class is available. [ Ryan Niebur ] * Update jawnsy's email address * Update ryan52's email address [ gregor herrmann ] * New upstream release 0.08111 (closes: #545627). * Adjust build and runtime dependencies in debian/control. * Update environment variables for test suite in debian/rules. * debian/copyright: update list of copyright holders. [ Jose Luis Rivas ] * New upstream release 0.08112 -- Jonathan Yu Sun, 11 Oct 2009 21:10:41 -0400 libdbix-class-perl (0.08108-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release + Fixed regression when both page and offset are specified on a resultset + Fixed regression in set_column preventing sourceless object manipulations + Fixed prefetch+incomplete select regression introduced in 0.08100 + populate() now returns a list or arrayref of created objects depending on scalar vs list context + Various improvements and fixes for MSSQL/Sybase databases * Standards-Version 3.8.2 (no changes) [ gregor herrmann ] * debian/control: add libdatetime-format-pg-perl, libdatetime-format-sqlite-perl, libnamespace-clean-perl, libhash-merge-perl, libmoosex-types-perl to Build-Depends-Indep and libdatetime-format-sqlite-perl, libnamespace-clean-perl, libhash-merge-perl, libmoosex-types-perl to Suggests. * libdbix-class-perl.examples: Adjust location of examples. -- Jonathan Yu Thu, 09 Jul 2009 15:36:31 -0400 libdbix-class-perl (0.08107-1) unstable; urgency=medium [ Jonathan Yu ] * New upstream release (many bugfixes, no feature changes) -> This fixes serious regression issues introduced in 0.08103, which also affects Cursor::Cached -> The bug causes the module to return bad data, but is subtle because it did not previously cause test failures -> Several new features intermingled with this bug fix; recommend an upgrade at the nearest possible convenience * Added /me to uploaders & copyright * Updated M::I information [ Nathan Handler ] * debian/watch: Update to ignore development releases. -- Jonathan Yu Thu, 11 Jun 2009 18:38:47 -0400 libdbix-class-perl (0.08103-1) unstable; urgency=low * New upstream release. * debian/control: update dependencies. * Use newer debhelper instead of override_dh_auto_configure'ing in debian/rules. * Minimize debian/rules, move special cases to override_* targets. * debian/copyright: update packaging copyright years. -- gregor herrmann Sat, 30 May 2009 18:51:44 +0200 libdbix-class-perl (0.08102-1) unstable; urgency=low [ Brian Cassidy ] * New upstream release * debian/control: + added myself to Uploaders + bump dep on libclass-c3-componentised-perl + removed quilt as patch was integrated upstream + add libpath-class-perl to deps + bump libdbd-sqlite3-perl dep to 1.23 * debian/patches: removed, patch integrated upstream [ gregor herrmann ] * debian/control: - add build dependency on libtest-warn-perl (needed for tests) - bump debhelper dependency to >= 7.0.50 * Activate some additional tests by adding build dependencies in debian/control and setting variable in debian/rules. -- Brian Cassidy Thu, 30 Apr 2009 15:31:26 -0300 libdbix-class-perl (0.08100-1) unstable; urgency=low * New upstream release * debian/control: libmoosex-attributehelpers-perl added to dependencies. * debian/patches/pod-fixes.patch refreshed -- Krzysztof Krzyżaniak (eloy) Mon, 20 Apr 2009 11:13:28 +0200 libdbix-class-perl (0.08013-1) unstable; urgency=low [ Krzysztof Krzyżaniak (eloy) ] * New upstream release * debian/control: increase dependency version for some packages [ gregor herrmann ] * Remove Florian Ragwitz from Uploaders (closes: #523254). -- Krzysztof Krzyżaniak (eloy) Tue, 07 Apr 2009 16:06:45 +0200 libdbix-class-perl (0.08012-2) unstable; urgency=low [ Ryan Niebur ] * build depend on libtest-deep-perl, fixing FTBFS * add myself to uploaders * policy 3.8.1 * debhelper 7 in debian/rules * machine readable copyright format * add libtest-memory-cycle-perl to build-deps for extra test * add examples [ gregor herrmann ] * debian/copyright: add third-party copyright. -- Ryan Niebur Fri, 13 Mar 2009 22:39:54 -0700 libdbix-class-perl (0.08012-1) unstable; urgency=low [ Krzysztof Krzyżaniak (eloy) ] * New upstream release * debian/control: Standards-Version increased to 3.8.0 (no changes) [ gregor herrmann ] * Add debian/README.source to document quilt usage, as required by Debian Policy since 3.8.0. * debian/control: Changed: Switched Vcs-Browser field to ViewSVN (source stanza). * debian/control: Added: ${misc:Depends} to Depends: field. -- Krzysztof Krzyżaniak (eloy) Wed, 18 Feb 2009 11:10:39 +0100 libdbix-class-perl (0.08010-2) unstable; urgency=medium * debian/watch: extended regexp for matching upstream releases. * debian/control: - clean up dependencies (closes: #481031), thanks to Peter Rabbitson for the bug report + remove libclass-data-accessor-perl, libossp-uuid-perl, libuniversal-exports-perl, libtie-ixhash-perl + move libdbix-contextualfetch-perl, libclass-trigger-perl to Suggests + add libjson-any-perl to Depends and Build-Depends-Indep + add libdatetime-format-mysql-perl and libtext-csv-xs-perl to Build-Depends-Indep to enable additional tests - wrap long lines - add me to Uploaders * Set urgency to medium because of the fix on an RC bug. * debian/rules: - refresh against current dh-make-perl template - don't install README any more (text version of the inline POD documentation) - remove exec bit from *.pod files * Add patch pod-fixes.patch, fixes some pod/man errors; add quilt framework. One fix closes: #478335, thanks to Ansgar Burchardt for the bug report. * debian/copyright: use author-independent upstream source location. -- gregor herrmann Sat, 14 Jun 2008 15:29:15 +0200 libdbix-class-perl (0.08010-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyżaniak (eloy) Fri, 14 Mar 2008 10:53:16 +0100 libdbix-class-perl (0.08009-1) unstable; urgency=low * New upstream release + Move package from Catalyst Group to Debian Perl Group + debian/control: added additional headers + debian/control: Standards-Version ugpraded to 3.7.3 + debian/compat: upgraded to 6 -- Krzysztof Krzyzaniak (eloy) Thu, 31 Jan 2008 14:50:18 +0100 libdbix-class-perl (0.08008-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Fri, 16 Nov 2007 18:28:26 +0100 libdbix-class-perl (0.08007-2) unstable; urgency=low * debian/control: added libsql-translator-perl to Recommends (closes: #432391) * Closew old New upstream version bug (closes: #430374) -- Krzysztof Krzyzaniak (eloy) Tue, 11 Sep 2007 10:53:45 +0200 libdbix-class-perl (0.08007-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Tue, 11 Sep 2007 10:16:55 +0200 libdbix-class-perl (0.08006-2) unstable; urgency=low * debian/control: libclass-c3-componentised-perl should be in Depends not in Recommends (closes: #440251) -- Krzysztof Krzyzaniak (eloy) Thu, 30 Aug 2007 10:02:19 +0200 libdbix-class-perl (0.08006-1) unstable; urgency=low * New upstream release * Updated debian/control: long description and dependencies. -- Krzysztof Krzyzaniak (eloy) Mon, 20 Aug 2007 12:57:00 +0200 libdbix-class-perl (0.08003-1) unstable; urgency=low * New upstream release * debian/rules: fixed debian-rules-ignores-make-clean-error -- Krzysztof Krzyzaniak (eloy) Mon, 16 Jul 2007 16:15:47 +0200 libdbix-class-perl (0.08002-1) unstable; urgency=low * New upstream release * debian/control: libfile-spec-perl added to dependencies -- Krzysztof Krzyzaniak (eloy) Fri, 22 Jun 2007 10:46:37 +0200 libdbix-class-perl (0.08001-1) unstable; urgency=low * New upstream release * debian/control: libclass-accessor-grouped-perl added to dependencies -- Krzysztof Krzyzaniak (eloy) Tue, 19 Jun 2007 11:48:29 +0200 libdbix-class-perl (0.07006-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Wed, 18 Apr 2007 15:25:49 +0200 libdbix-class-perl (0.07005-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Mon, 15 Jan 2007 12:12:17 +0100 libdbix-class-perl (0.07004-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Wed, 10 Jan 2007 10:43:25 +0100 libdbix-class-perl (0.07003-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Fri, 17 Nov 2006 09:50:50 +0100 libdbix-class-perl (0.07002-2) unstable; urgency=low * debian/control: + added Recommends: libdatetime-format-mysql-perl, libdatetime-format-db2-perl, libdatetime-format-pg-perl -- Krzysztof Krzyzaniak (eloy) Tue, 24 Oct 2006 18:56:20 +0200 libdbix-class-perl (0.07002-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Fri, 15 Sep 2006 15:13:49 +0200 libdbix-class-perl (0.07001-1) unstable; urgency=low * New upstream release * debian/rules: temporary make test non-critical * debian/control: + Build-Depends-Indep: added libsql-translator-perl -- Krzysztof Krzyzaniak (eloy) Mon, 28 Aug 2006 10:50:20 +0200 libdbix-class-perl (0.07000-1) unstable; urgency=low * New upstream release * debian/compat: increased to 5 * debian/control: + Standards-Version: increased to 3.7.2.1 without any changes -- Krzysztof Krzyzaniak (eloy) Sun, 23 Jul 2006 13:48:56 +0200 libdbix-class-perl (0.06.003-1) unstable; urgency=low * New upstream release * debian/control: - Standards-Version: increased to 3.7.2 without any changes -- Krzysztof Krzyzaniak (eloy) Fri, 19 May 2006 21:09:15 +0200 libdbix-class-perl (0.06.002-1) unstable; urgency=low * New upstream release * debian/watch file updated -- Krzysztof Krzyzaniak (eloy) Thu, 20 Apr 2006 15:03:49 +0200 libdbix-class-perl (0.06.001-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Sun, 9 Apr 2006 00:08:01 +0200 libdbix-class-perl (0.06.000-1) unstable; urgency=low * New upstream release * debian/control: libmodule-find-perl added to dependencies -- Krzysztof Krzyzaniak (eloy) Sat, 25 Mar 2006 23:34:08 +0100 libdbix-class-perl (0.05.007-1) unstable; urgency=low * New upstream release * debian/control: - Build-Depends-Indep: libclass-c3-perl increased version to 0.11 - Depends: libclass-c3-perl increased version to 0.11 -- Krzysztof Krzyzaniak (eloy) Sat, 25 Feb 2006 00:11:09 +0100 libdbix-class-perl (0.05.006-1) unstable; urgency=low * New upstream release * debian/control - libmodule-find-perl removed from dependencies, libdatetime added to Build-Depends-Indep -- Krzysztof Krzyzaniak (eloy) Mon, 20 Feb 2006 14:34:55 +0100 libdbix-class-perl (0.05.005-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Mon, 13 Feb 2006 23:20:51 +0100 libdbix-class-perl (0.05.003-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Wed, 8 Feb 2006 20:06:24 +0100 libdbix-class-perl (0.05.002-1) unstable; urgency=low * New upstream release * debian/control - libclass-inspector-perl added to dependencies -- Krzysztof Krzyzaniak (eloy) Tue, 7 Feb 2006 18:43:16 +0100 libdbix-class-perl (0.05.001-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Mon, 6 Feb 2006 10:15:13 +0100 libdbix-class-perl (0.05.000-1) unstable; urgency=low * New upstream release * debian/control - libcarp-clan-perl added to dependencies -- Krzysztof Krzyzaniak (eloy) Thu, 2 Feb 2006 10:47:18 +0100 libdbix-class-perl (0.04.999.6experimental-1) experimental; urgency=low * New upstream release (experimental) -- Krzysztof Krzyzaniak (eloy) Sat, 28 Jan 2006 22:59:59 +0100 libdbix-class-perl (0.04.999.4experimental-1) experimental; urgency=low * New upstream release (experimental) -- Krzysztof Krzyzaniak (eloy) Wed, 25 Jan 2006 11:07:54 +0100 libdbix-class-perl (0.04.999.3experimental-1) experimental; urgency=low * New upstream release (experimental) -- Krzysztof Krzyzaniak (eloy) Tue, 24 Jan 2006 12:32:41 +0100 libdbix-class-perl (0.04.999.2experimental-1) experimental; urgency=low * New upstream (experimental) release -- Krzysztof Krzyzaniak (eloy) Sat, 14 Jan 2006 18:50:31 +0100 libdbix-class-perl (0.04.999.2-1) experimental; urgency=low * Proper source tar.gz * debian/control - Test::POD added to dependencies -- Krzysztof Krzyzaniak (eloy) Mon, 2 Jan 2006 10:31:30 +0100 libdbix-class-perl (0.04.999.1-1) experimental; urgency=low * New upstream release * debian/control: Dependencies: added libclass-data-accessor-perl, removed libclass-data-inheritable-perl -- Krzysztof Krzyzaniak (eloy) Tue, 27 Dec 2005 09:52:24 +0100 libdbix-class-perl (0.04.001-1) unstable; urgency=low * New upstream release (closes: #341652) -- Krzysztof Krzyzaniak (eloy) Wed, 14 Dec 2005 11:21:33 +0100 libdbix-class-perl (0.04-2) unstable; urgency=low * debian/control - libclass-c3-perl added to Depends -- Krzysztof Krzyzaniak (eloy) Fri, 2 Dec 2005 11:21:09 +0100 libdbix-class-perl (0.04-1) unstable; urgency=low * New upstream release * debian/control - libclass-c3-perl added to dependencies, -- Krzysztof Krzyzaniak (eloy) Sun, 27 Nov 2005 14:17:23 +0100 libdbix-class-perl (0.03.003-2) unstable; urgency=low * debian/watch - mangled value of debian version -- Krzysztof Krzyzaniak (eloy) Mon, 14 Nov 2005 19:10:31 +0100 libdbix-class-perl (0.03.003-1) unstable; urgency=low * New upstream release * debian/control - libossp-uuid-perl added to dependencies -- Krzysztof Krzyzaniak (eloy) Fri, 4 Nov 2005 21:52:41 +0100 libdbix-class-perl (0.03.002-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Fri, 28 Oct 2005 21:47:43 +0200 libdbix-class-perl (0.03.001-1) unstable; urgency=low * (NOT RELEASED YET) New upstream release -- Krzysztof Krzyzaniak (eloy) Fri, 23 Sep 2005 21:18:56 +0200 libdbix-class-perl (0.03-1) unstable; urgency=low * New upstream release * Close ITP bug (closes: #329193) -- Krzysztof Krzyzaniak (eloy) Tue, 20 Sep 2005 09:57:56 +0200 libdbix-class-perl (0.02-1) UNRELEASED; urgency=low [ Krzysztof Krzyzaniak (eloy) ] * debian/control - Added libmodule-find-perl Depends. [ Florian Ragwitz ] * Cleaned up debian/rules. * Added me to Uploaders. * Added Upstream URL to debian/copyright. * New upstream release. * Added libsql-abstract-limit-perl to Depends and Build-Depends. -- Florian Ragwitz Tue, 30 Aug 2005 19:10:36 +0200 libdbix-class-perl (0.01-1) unstable; urgency=low * Initial Release. -- Krzysztof Krzyzaniak (eloy) Tue, 9 Aug 2005 13:24:25 +0200