--- liborlite-perl-0.15.orig/debian/copyright +++ liborlite-perl-0.15/debian/copyright @@ -0,0 +1,34 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Adam Kennedy +Upstream-Source: http://search.cpan.org/dist/ORLite/ +Upstream-Name: ORLite + +Files: * +Copyright: 2008 Adam Kennedy +License-Alias: Perl +License: Artistic | GPL-1+ + This program is free software; you can redistribute it and/or modify it + under the same terms as Perl itself. + +Files: inc/* +Copyright: © 2002-2008, Brian Ingerson, Audrey Tang and Adam Kennedy. +License: GPL-1+ | Artistic + +Files: debian/* +Copyright: 2008, Damyan Ivanov +License: Artistic | 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 GNU/Linux 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 GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' --- liborlite-perl-0.15.orig/debian/rules +++ liborlite-perl-0.15/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + RELEASE_TESTING=1 dh build + touch $@ + +clean: + dh $@ + +install: install-stamp +install-stamp: build-stamp + dh install + touch $@ + +binary-arch: + +binary-indep: install + dh $@ + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build --- liborlite-perl-0.15.orig/debian/changelog +++ liborlite-perl-0.15/debian/changelog @@ -0,0 +1,18 @@ +liborlite-perl (0.15-1) unstable; urgency=low + + * New upstream release + * Added myself as an uploader + + -- Gunnar Wolf Mon, 13 Oct 2008 23:58:20 -0500 + +liborlite-perl (0.13-1) unstable; urgency=low + + * New upstream release + + -- Damyan Ivanov Fri, 19 Sep 2008 23:20:30 +0300 + +liborlite-perl (0.11-1) unstable; urgency=low + + * Initial Release. Closes: #498921 -- ITP + + -- Damyan Ivanov Sun, 14 Sep 2008 18:50:03 +0300 --- liborlite-perl-0.15.orig/debian/watch +++ liborlite-perl-0.15/debian/watch @@ -0,0 +1,4 @@ +# format version number, currently 3; this line is compulsory! +version=3 +# URL to the package page followed by a regex to search +http://search.cpan.org/dist/ORLite/ .*/ORLite-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- liborlite-perl-0.15.orig/debian/compat +++ liborlite-perl-0.15/debian/compat @@ -0,0 +1 @@ +7 --- liborlite-perl-0.15.orig/debian/control +++ liborlite-perl-0.15/debian/control @@ -0,0 +1,26 @@ +Source: liborlite-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.6.0), libparams-util-perl, + libdbd-sqlite3-perl (>= 1.14), libdbi-perl (>= 1.58), + libtest-cpan-meta-perl, + libpod-simple-perl (>= 3.07), libtest-pod-perl, libtest-minimumversion-perl +Maintainer: Debian Perl Group +Uploaders: Damyan Ivanov , Gunnar Wolf +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/ORLite/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/liborlite-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/liborlite-perl/ + +Package: liborlite-perl +Architecture: all +Depends: perl (>= 5.6.0), ${misc:Depends}, libparams-util-perl, + libdbd-sqlite3-perl (>= 1.14), libdbi-perl (>= 1.58) +Description: Extremely light weight SQLite-specific ORM + ORLite is an object-relation system specifically for SQLite that + follows many of the same principles as the ::Tiny series of modules and + has a design that aligns directly to the capabilities of SQLite. + . + ORLite discovers the schema of a SQLite database, and then uses code + generation to build a set of packages for talking to that database.