]> git.decadent.org.uk Git - maypole.git/commitdiff
Merge commit '2.11+2.111' into HEAD
authorBen Hutchings <ben@decadent.org.uk>
Tue, 4 Nov 2008 03:31:30 +0000 (03:31 +0000)
committerBen Hutchings <ben@decadent.org.uk>
Tue, 4 Nov 2008 03:31:30 +0000 (03:31 +0000)
debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/libmaypole-perl.docs [new file with mode: 0644]
debian/rules [new file with mode: 0755]

diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..1944844
--- /dev/null
@@ -0,0 +1,5 @@
+maypole (2.10-1) unstable; urgency=low
+
+  * Initial release - closes: #345275
+
+ -- Ben Hutchings <ben@decadentplace.org.uk>  Sat, 31 Dec 2005 14:55:42 +0000
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..b8626c4
--- /dev/null
@@ -0,0 +1 @@
+4
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..d46030b
--- /dev/null
@@ -0,0 +1,18 @@
+Source: maypole
+Maintainer: Ben Hutchings <ben@decadentplace.org.uk>
+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 (file)
index 0000000..20ea33b
--- /dev/null
@@ -0,0 +1,22 @@
+This is the Debian-packaged version of Maypole, put together by Ben
+Hutchings <ben@decadentplace.org.uk> using source from:
+
+  http://maypole.perl.org/
+
+Copyright 2005 Simon Cozens <simon@simon-cozens.org> 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 (file)
index 0000000..574a5d0
--- /dev/null
@@ -0,0 +1,3 @@
+AUTHORS
+ex
+README
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..e763e3f
--- /dev/null
@@ -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