From: Ben Hutchings Date: Tue, 4 Nov 2008 03:31:30 +0000 (+0000) Subject: Merge commit '2.11+2.111' into HEAD X-Git-Tag: 2.11+2.111-1~23 X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=83769a6653a8736141d035a8a963c6cc99970a17;hp=dd369c8a18080c4f27237f23b5842d53da05f570;p=maypole.git Merge commit '2.11+2.111' into HEAD --- diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..1944844 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +maypole (2.10-1) unstable; urgency=low + + * Initial release - closes: #345275 + + -- Ben Hutchings Sat, 31 Dec 2005 14:55:42 +0000 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +4 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..d46030b --- /dev/null +++ b/debian/control @@ -0,0 +1,18 @@ +Source: maypole +Maintainer: Ben Hutchings +Section: perl +Priority: extra +Build-Depends-Indep: debhelper (>= 4), perl (>= 5.6.0-16), libapache-request-perl, libcgi-simple-perl, libcgi-untaint-perl, libclass-accessor-perl, libclass-data-inheritable-perl, libclass-dbi-abstractsearch-perl, libclass-dbi-asform-perl, libclass-dbi-fromcgi-perl, libclass-dbi-loader-perl, libclass-dbi-loader-relationship-perl, libclass-dbi-pager-perl, libclass-dbi-perl, libclass-dbi-plugin-retrieveall-perl, libclass-dbi-sqlite-perl, libdigest-perl, libtemplate-perl, libtemplate-plugin-class-perl, libtest-mockmodule-perl, libtest-pod-perl, libtest-pod-coverage-perl, libuniversal-moniker-perl, libuniversal-require-perl, liburi-perl, libwww-perl +Standards-Version: 3.6.2 + +Package: libmaypole-perl +Architecture: all +Depends: ${perl:Depends}, libcgi-simple-perl, libcgi-untaint-perl, libclass-accessor-perl, libclass-data-inheritable-perl, libclass-dbi-abstractsearch-perl, libclass-dbi-asform-perl, libclass-dbi-fromcgi-perl, libclass-dbi-loader-perl, libclass-dbi-loader-relationship-perl, libclass-dbi-pager-perl, libclass-dbi-perl, libclass-dbi-plugin-retrieveall-perl, libclass-dbi-sqlite-perl, libdigest-perl, libtemplate-perl, libtemplate-plugin-class-perl, libuniversal-moniker-perl, libuniversal-require-perl, liburi-perl, libwww-perl +Recommends: libapache-mod-perl | libapache2-mod-perl2 +Description: Perl framework for MVC-oriented web applications + Maypole is a Perl framework for MVC-oriented web applications, similar + to Jakarta's Struts. Maypole is designed to minimize coding requirements + for creating simple web interfaces to databases, while remaining flexible + enough to support enterprise web applications. + . + Homepage: http://maypole.perl.org/ diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..20ea33b --- /dev/null +++ b/debian/copyright @@ -0,0 +1,22 @@ +This is the Debian-packaged version of Maypole, put together by Ben +Hutchings using source from: + + http://maypole.perl.org/ + +Copyright 2005 Simon Cozens et al. +(See list of authors in `/usr/share/doc/libmaypole-perl/AUTHORS'.) + +You may distribute this code 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'. diff --git a/debian/libmaypole-perl.docs b/debian/libmaypole-perl.docs new file mode 100644 index 0000000..574a5d0 --- /dev/null +++ b/debian/libmaypole-perl.docs @@ -0,0 +1,3 @@ +AUTHORS +ex +README diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..e763e3f --- /dev/null +++ b/debian/rules @@ -0,0 +1,29 @@ +#!/usr/bin/make -f + +build : build-stamp + +build-stamp : Makefile.PL + perl Makefile.PL INSTALLDIRS=vendor + $(MAKE) test + touch build-stamp + +binary : binary-arch binary-indep + +binary-arch : + +binary-indep : build-stamp + dh_testroot + $(MAKE) PREFIX=$(CURDIR)/debian/libmaypole-perl/usr install + dh_perl + dh_installchangelogs Changes + dh_installdocs + dh_compress + dh_fixperms + dh_gencontrol + dh_builddeb + +clean : + if [ -f Makefile ]; then $(MAKE) clean; fi + dh_clean Makefile Makefile.old build-stamp + +.PHONY : build binary binary-arch binary-dep clean