--- libclass-dbi-asform-perl-2.42.orig/debian/watch +++ libclass-dbi-asform-perl-2.42/debian/watch @@ -0,0 +1,7 @@ +# Example watch control file for uscan +# Rename this file to "watch" and then you can run the "uscan" command +# to check for upstream updates and more. +# Site Directory Pattern Version Script +version=2 +http://www.cpan.org/authors/id/T/TM/TMTM/Class-DBI-AsForm-(\d+\.\d+)\.tar\.gz debian uupdate + --- libclass-dbi-asform-perl-2.42.orig/debian/changelog +++ libclass-dbi-asform-perl-2.42/debian/changelog @@ -0,0 +1,36 @@ +libclass-dbi-asform-perl (2.42-1) unstable; urgency=low + + * New upstream release, closes: #329512. + * Switched to my debian.org email address. + + -- Stephen Quinney Thu, 22 Sep 2005 20:25:41 +0100 + +libclass-dbi-asform-perl (2.41-2) unstable; urgency=high + + * Build depend against libdbd-sqlite2-perl instead of + libdbd-sqlite-perl, fixes FTBFS in Sarge so urgency is high. + When this fix reaches Sarge it will close #301659. + * Remove the test.db in the debian/rules "clean" stage + + -- Stephen Quinney Fri, 1 Apr 2005 16:05:19 +0100 + +libclass-dbi-asform-perl (2.41-1) unstable; urgency=low + + * New upstream release - new maintainer. + * Updated debian/copyright and debian/watch to reflect change of + upstream maintainer. + + -- Stephen Quinney Wed, 29 Dec 2004 12:41:03 +0000 + +libclass-dbi-asform-perl (2.3-1) unstable; urgency=low + + * New upstream release - first upload, closes: #271975. + + -- Stephen Quinney Fri, 17 Sep 2004 10:40:45 +0100 + +libclass-dbi-asform-perl (2.2-1) unstable; urgency=low + + * Initial Release. + + -- Stephen Quinney Fri, 28 May 2004 12:05:59 +0100 + --- libclass-dbi-asform-perl-2.42.orig/debian/control +++ libclass-dbi-asform-perl-2.42/debian/control @@ -0,0 +1,17 @@ +Source: libclass-dbi-asform-perl +Section: perl +Priority: optional +Maintainer: Stephen Quinney +Build-Depends-Indep: debhelper (>= 4), perl (>= 5.6.0-16), libhtml-tree-perl, libclass-dbi-perl (>= 0.94), libclass-dbi-plugin-type-perl, libdbi-perl (>= 1.21), libdbd-sqlite3-perl +Standards-Version: 3.6.2 + +Package: libclass-dbi-asform-perl +Architecture: all +Depends: ${perl:Depends}, libhtml-tree-perl, libclass-dbi-perl (>= 0.94), libclass-dbi-plugin-type-perl, libdbi-perl (>= 1.21) +Description: Produce HTML form elements for database columns using Class::DBI + This module helps to generate HTML forms for creating new database + rows or editing existing rows. It maps column names in a database + table to HTML form elements which fit the schema. Large text fields + are turned into textareas, and fields with a has-a relationship to + other Class::DBI tables are turned into select drop-downs populated + with objects from the joined class. --- libclass-dbi-asform-perl-2.42.orig/debian/rules +++ libclass-dbi-asform-perl-2.42/debian/rules @@ -0,0 +1,72 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# Define the perl interpreter + +PACKAGE = $(shell dh_listpackages) + +TMP =`pwd`/debian/$(PACKAGE) + +PERL = /usr/bin/perl + +configure: configure-stamp +configure-stamp: + dh_testdir + + perl Makefile.PL verbose INSTALLDIRS=vendor + + touch configure-stamp + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + + $(MAKE) + $(MAKE) test + touch build-stamp + +clean: + dh_testdir + dh_testroot + + [ ! -e Makefile ] || $(MAKE) distclean + rm -f test.db + dh_clean build-stamp configure-stamp + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install PREFIX=$(TMP)/usr + + # Remove any empty directories + + find $(TMP) -type d -empty -print0 | xargs --no-run-if-empty --null rmdir -p --ignore-fail-on-non-empty + +# Build architecture-independent files here. +binary-arch: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_perl + dh_installdocs README + dh_installman + dh_installchangelogs Changes + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- libclass-dbi-asform-perl-2.42.orig/debian/copyright +++ libclass-dbi-asform-perl-2.42/debian/copyright @@ -0,0 +1,25 @@ +This package was debianized by Stephen Quinney on +Fri, 28 May 2004 12:07:39 +0100 + +It was downloaded from http://search.cpan.org/CPAN/authors/id/T/TM/TMTM/ + +Current Maintainer: Tony Bowden + +Original Author: Simon Cozens + +Copyright: + + Copyright 2003-2004 by Simon Cozens / Tony Bowden + + 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 GNU/Linux 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-asform-perl-2.42.orig/debian/compat +++ libclass-dbi-asform-perl-2.42/debian/compat @@ -0,0 +1 @@ +4