--- libclass-dbi-plugin-abstractcount-perl-0.07.orig/debian/control +++ libclass-dbi-plugin-abstractcount-perl-0.07/debian/control @@ -0,0 +1,24 @@ +Source: libclass-dbi-plugin-abstractcount-perl +Maintainer: Debian Perl Group +Uploaders: Ben Hutchings , + gregor herrmann +Section: perl +Priority: extra +Build-Depends: debhelper (>= 6) +Build-Depends-Indep: perl (>= 5.6.0-16), libclass-dbi-perl (>= 0.95), + libclass-dbi-plugin-perl (>= 0.02), libsql-abstract-perl (>= 1.10), + libtest-pod-perl, libtest-pod-coverage-perl +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/dist/Class-DBI-Plugin-AbstractCount/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libclass-dbi-plugin-abstractcount-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-dbi-plugin-abstractcount-perl/ + +Package: libclass-dbi-plugin-abstractcount-perl +Architecture: all +Depends: ${perl:Depends}, libclass-dbi-perl (>= 0.95), + libclass-dbi-plugin-perl (>= 0.02), libsql-abstract-perl (>= 1.10) +Description: Class::DBI::Plugin::AbstractCount - get COUNT(*) results with abstract SQL + This Class::DBI plugin combines the functionality from + Class::DBI::Plugin::CountSearch (counting objects without having to + use an array or an iterator), and Class::DBI::AbstractSearch, which + allows complex where-clauses a la SQL::Abstract. --- libclass-dbi-plugin-abstractcount-perl-0.07.orig/debian/rules +++ libclass-dbi-plugin-abstractcount-perl-0.07/debian/rules @@ -0,0 +1,74 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# If set to a true value then MakeMaker's prompt function will +# always return the default without waiting for user input. +export PERL_MM_USE_DEFAULT=1 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + $(MAKE) test + + touch $@ + +clean: + dh_testdir + dh_testroot + + dh_clean build-stamp install-stamp + + # Add commands to clean up after the build process here + [ ! -f Makefile ] || $(MAKE) realclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + + # Add commands to install the package into $(TMP) here + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + + [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5 + + touch $@ + +binary-arch: +# We have nothing to do here for an architecture-independent package + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs Changes + dh_perl + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary --- libclass-dbi-plugin-abstractcount-perl-0.07.orig/debian/watch +++ libclass-dbi-plugin-abstractcount-perl-0.07/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Class-DBI-Plugin-AbstractCount/ .+/Class-DBI-Plugin-AbstractCount-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libclass-dbi-plugin-abstractcount-perl-0.07.orig/debian/copyright +++ libclass-dbi-plugin-abstractcount-perl-0.07/debian/copyright @@ -0,0 +1,23 @@ +This is the Debian-packaged version of +Class::DBI::Plugin::AbstractCount put together by Ben Hutchings + using source from: + + http://search.cpan.org/~jczeus/Class-DBI-Plugin-AbstractCount/ + +Copyright 2004 Jean-Christophe Zeus . + +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself: + + This program is free software; you can redistribute it and/or modify + it under the terms of either: + + a) the GNU General Public License as published by the Free Software + Foundation; either version 1, or (at your option) any later + version, or + + b) the "Artistic License" which comes with Perl. + +On Debian systems, the complete text of the GNU General Public License +can be found in `/usr/share/common-licenses/GPL' and the Artistic +Licence in `/usr/share/common-licenses/Artistic'. --- libclass-dbi-plugin-abstractcount-perl-0.07.orig/debian/compat +++ libclass-dbi-plugin-abstractcount-perl-0.07/debian/compat @@ -0,0 +1 @@ +6 --- libclass-dbi-plugin-abstractcount-perl-0.07.orig/debian/changelog +++ libclass-dbi-plugin-abstractcount-perl-0.07/debian/changelog @@ -0,0 +1,33 @@ +libclass-dbi-plugin-abstractcount-perl (0.07-1) unstable; urgency=low + + [ Damyan Ivanov ] + * Take over for the Debian Perl Group on maintainer's + request + http://lists.debian.org/debian-perl/2008/01/msg00262.html + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Changed: + Maintainer set to Debian Perl Group (was: Ben Hutchings + ); Ben Hutchings + moved to Uploaders. + * Add debian/watch. + + [ gregor herrmann ] + * New upstream release. + * debian/control: + - remove Homepage from long description + - move debhelper to Build-Depends + - add /me to Uploaders + - wrap long lines + * Set Standards-Version to 3.7.3 (no changes). + * Set debhelper compatibility level to 6. + * debian/rules: rewrite with template from dh-make-perl. + * Don't install README anymore, doesn't provide additional information. + + -- gregor herrmann Fri, 01 Feb 2008 18:44:31 +0100 + +libclass-dbi-plugin-abstractcount-perl (0.06-1) unstable; urgency=low + + * Initial release - closes: #345452 + + -- Ben Hutchings Sat, 31 Dec 2005 22:45:23 +0000