--- libdbix-dr-perl-0.26.orig/lib/DBIx/DR.pm +++ libdbix-dr-perl-0.26/lib/DBIx/DR.pm @@ -303,6 +303,10 @@ Do not bless rowset into any class. +=item -noitem_iter + +Do not pass iterator as second argument to item constructor. + =item -dbi => HASHREF Additional DBI arguments. --- libdbix-dr-perl-0.26.orig/debian/changelog +++ libdbix-dr-perl-0.26/debian/changelog @@ -0,0 +1,57 @@ +libdbix-dr-perl (0.26-1) unstable; urgency=low + + * Add option -noitem_iter (for Mouse objects). + + -- Dmitry E. Oboukhov Fri, 01 Nov 2013 20:30:59 +0400 + +libdbix-dr-perl (0.25-1) unstable; urgency=low + + * Some fixes for Perl 5.18 + + -- Dmitry E. Oboukhov Wed, 25 Sep 2013 16:49:04 +0400 + +libdbix-dr-perl (0.24-1) unstable; urgency=low + + * Update cpan metainfo. + * Fix cpan issue in iterator + (https://rt.cpan.org/Public/Bug/Display.html?id=87313). + + -- Dmitry E. Oboukhov Sat, 17 Aug 2013 12:32:50 +0400 + +libdbix-dr-perl (0.23-1) unstable; urgency=low + + * Update perldoc. + + -- Dmitry E. Oboukhov Sun, 14 Apr 2013 21:16:26 +0400 + +libdbix-dr-perl (0.22-1) unstable; urgency=low + + * Add option '-warn' for all requests. + + -- Dmitry E. Oboukhov Sun, 14 Apr 2013 21:06:22 +0400 + +libdbix-dr-perl (0.21-1) unstable; urgency=low + + * Add option '-die' for all requests. + + -- Dmitry E. Oboukhov Sun, 06 Jan 2013 02:32:19 +0400 + +libdbix-dr-perl (0.20-1) unstable; urgency=low + + * New upstream version. + * Add debian/watch. + + -- Dmitry E. Oboukhov Fri, 11 May 2012 10:19:06 +0400 + +libdbix-dr-perl (0.19-1) unstable; urgency=low + + * Update copyright (by ftp-masters' notices). + * New upstream version. + + -- Dmitry E. Oboukhov Fri, 11 May 2012 09:03:12 +0400 + +libdbix-dr-perl (0.18-1) unstable; urgency=low + + * Initial release. (Closes: #671341) + + -- Dmitry E. Oboukhov Thu, 03 May 2012 14:23:32 +0400 --- libdbix-dr-perl-0.26.orig/debian/copyright +++ libdbix-dr-perl-0.26/debian/copyright @@ -0,0 +1,18 @@ +Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135 +Maintainer: Dmitry E. Oboukhov +Source: http://search.cpan.org/dist/DBIx-DR/ +Name: DBIx::DR + +Files: * +Copyright: + 2011-2012 Dmitry E. Oboukhov + 2011-2012 Roman V. Nikolaev +License: Artistic + +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'. + --- libdbix-dr-perl-0.26.orig/debian/watch +++ libdbix-dr-perl-0.26/debian/watch @@ -0,0 +1,3 @@ +version=3 + http://search.cpan.org/dist/DBIx-DR/ \ + /CPAN/authors/id/U/UN/UNERA/DBIx-DR-(\d+(?:\.\d+)+).tar.gz --- libdbix-dr-perl-0.26.orig/debian/compat +++ libdbix-dr-perl-0.26/debian/compat @@ -0,0 +1 @@ +7 --- libdbix-dr-perl-0.26.orig/debian/rules +++ libdbix-dr-perl-0.26/debian/rules @@ -0,0 +1,29 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/perl-makemaker.mk + +MAIN_MODULE = lib/DBIx/DR.pm + +DEBVERSION = $(shell dpkg-parsechangelog \ + |grep ^Version|awk '{print $$2}'|sed 's/-.*//' ) +PERLVERSION = $(shell grep '^our[[:space:]]\+$$VERSION' $(MAIN_MODULE) \ + |head -n 1 \ + |awk '{print $$4}'|sed "s/[';']//g" ) + +install/libdbix-dr-perl:: + test $(DEBVERSION) = $(PERLVERSION) + make tardist + +clean:: + rm -f Makefile.old + rm -fr .pc + rm -f DBIx-DR-*.tar.gz* + +tarball: + cd .. && tar \ + --exclude=debian \ + --exclude=.git \ + -czf libdbix-dr-perl_$(DEBVERSION).orig.tar.gz \ + libdbix-dr-perl-$(DEBVERSION) + --- libdbix-dr-perl-0.26.orig/debian/control +++ libdbix-dr-perl-0.26/debian/control @@ -0,0 +1,23 @@ +Source: libdbix-dr-perl +Section: perl +Homepage: http://search.cpan.org/dist/DBIx-DR/ +Maintainer: Dmitry E. Oboukhov +Build-Depends: debhelper (>= 7), cdbs, + libdbi-perl, + libdbd-sqlite3-perl, + libmouse-perl +Standards-Version: 3.9.2 +Priority: extra +VCS-Browser: https://github.com/unera/dbix-dr + +Package: libdbix-dr-perl +Depends: ${perl:Depends}, ${misc:Depends}, libdbi-perl, libmouse-perl +Architecture: all +Description: easy DBI helper + The package extends DBI and allows You: + . + * to use perl inside Your SQL requests; + * to bless resultsets into Your package; + * to place Your SQL's into dedicated directory; + * to use usual DBI methods. +