--- libsql-abstract-perl-1.21.orig/debian/watch +++ libsql-abstract-perl-1.21/debian/watch @@ -0,0 +1,6 @@ +# 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/N/NW/NWIGER/SQL-Abstract-(\d+\.\d+)\.tar\.gz debian uupdate --- libsql-abstract-perl-1.21.orig/debian/changelog +++ libsql-abstract-perl-1.21/debian/changelog @@ -0,0 +1,45 @@ +libsql-abstract-perl (1.21-1) unstable; urgency=low + + * New upstream release + + -- Stephen Quinney Sun, 16 Apr 2006 17:48:28 +0100 + +libsql-abstract-perl (1.20-1) unstable; urgency=low + + * New upstream release + + -- Stephen Quinney Sat, 3 Sep 2005 08:19:18 +0100 + +libsql-abstract-perl (1.19-1) unstable; urgency=low + + * New upstream release + + -- Stephen Quinney Sat, 11 Jun 2005 11:41:12 +0100 + +libsql-abstract-perl (1.18-1) unstable; urgency=low + + * New upstream release - various new features. + + -- Stephen Quinney Sat, 12 Mar 2005 10:25:56 +0000 + +libsql-abstract-perl (1.17-1) unstable; urgency=low + + * New upstream release - some changes to make it work better with + databases such as Oracle. + * Updated to policy version 3.6.1.1 + * Tidied and updated debian/rules + + -- Stephen Quinney Thu, 26 Aug 2004 08:53:44 +0100 + +libsql-abstract-perl (1.15-1) unstable; urgency=low + + * New upstream release + + -- Stephen Quinney Tue, 16 Dec 2003 11:05:52 +0000 + +libsql-abstract-perl (1.13-1) unstable; urgency=low + + * Initial Release, closes: #202702. + + -- Stephen Quinney Fri, 25 Jul 2003 10:24:37 +0100 + --- libsql-abstract-perl-1.21.orig/debian/rules +++ libsql-abstract-perl-1.21/debian/rules @@ -0,0 +1,66 @@ +#!/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 + +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 + + dh_clean build-stamp configure-stamp + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install PREFIX=$(TMP)/usr + + find $(TMP)/usr -type d -empty -print0 | xargs --no-run-if-empty --null rmdir -p --ignore-fail-on-non-empty + +binary-arch: build install +# We have nothing to do by default. + +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 --- libsql-abstract-perl-1.21.orig/debian/control +++ libsql-abstract-perl-1.21/debian/control @@ -0,0 +1,27 @@ +Source: libsql-abstract-perl +Section: perl +Priority: optional +Maintainer: Stephen Quinney +Build-Depends-Indep: debhelper (>= 4), perl (>= 5.6.0-16) +Standards-Version: 3.6.2 + +Package: libsql-abstract-perl +Architecture: all +Depends: ${perl:Depends} +Description: Generate SQL from Perl data structures + This module was inspired by the DBIx::Abstract. The intention of this + module is provide abstract SQL generation methods. With this module + you can generate SQL, but still retain complete control over the + statement handles and use the DBI interface if you wish. + . + While based on the concepts used by DBIx::Abstract, there are several + important differences, especially when it comes to WHERE + clauses. Some of the concepts used have been modified to make the SQL + easier to generate from Perl data structures and hopefully more + intuitive. The underlying idea is for this module to do what you + mean, based on the data structures you provide it. The big advantage + is that you don't have to modify your code every time your data + changes, as this module figures it out. + + + --- libsql-abstract-perl-1.21.orig/debian/copyright +++ libsql-abstract-perl-1.21/debian/copyright @@ -0,0 +1,24 @@ +This package was debianized by Stephen Quinney on +Sat, 12 Jul 2003 11:42:23 +0100 + +It was downloaded from http://search.cpan.org/CPAN/authors/id/N/NW/NWIGER/ + +Upstream Author: Nathan Wiger + +Copyright: + + Copyright (c) 2001-2004 Nathan Wiger . All Rights + Reserved. + + 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'. --- libsql-abstract-perl-1.21.orig/debian/compat +++ libsql-abstract-perl-1.21/debian/compat @@ -0,0 +1 @@ +4