]> git.decadent.org.uk Git - maypole.git/commitdiff
Corrected location of version 2.10 tag.
authorBen Hutchings <ben@decadent.org.uk>
Fri, 30 Dec 2005 03:16:58 +0000 (03:16 +0000)
committerBen Hutchings <ben@decadent.org.uk>
Tue, 4 Nov 2008 03:30:41 +0000 (03:30 +0000)
debian/changelog.base [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: 0644]

diff --git a/debian/changelog.base b/debian/changelog.base
new file mode 100644 (file)
index 0000000..1614d3b
--- /dev/null
@@ -0,0 +1,5 @@
+maypole (2.10-1) unstable; urgency=low
+
+  * Initial release - closes: #345275
+
+ -- Ben Hutchings <ben@decadentplace.org.uk>  Fri, 30 Dec 2005 03:05:38 +0000
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..d180b31
--- /dev/null
@@ -0,0 +1,37 @@
+Source: maypole
+Maintainer: Ben Hutchings <ben@decadentplace.org.uk>
+Section: perl
+Priority: extra
+Build-Depends-Indep: debhelper (>= 4), perl (>= 5.6.0-16),
+ libclass-dbi-sqlite-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,
+ libdigest-perl,
+ libtemplate-perl,
+ libtemplate-plugin-class-perl,
+ libuniversal-moniker-perl,
+ libuniversal-require-perl,
+ liburi-perl,
+ libwww-perl
+Standards-Version: 3.6.2
+
+Package: libmaypole-perl
+Architecture: all
+Depends: libapache-mod-perl | libapache2-mod-perl2, ${perl:Depends}
+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..cc3a91b
--- /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/
+
+The authors of Maypole are Simon Cozens <simon@cpan.org> et al.
+(see /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 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'.
diff --git a/debian/libmaypole-perl.docs b/debian/libmaypole-perl.docs
new file mode 100644 (file)
index 0000000..62deb04
--- /dev/null
@@ -0,0 +1 @@
+AUTHORS
diff --git a/debian/rules b/debian/rules
new file mode 100644 (file)
index 0000000..864a189
--- /dev/null
@@ -0,0 +1,28 @@
+#!/usr/bin/make -f
+
+build :
+       perl Makefile.PL INSTALLDIRS=vendor
+       $(MAKE)
+
+binary : binary-arch binary-indep
+
+binary-arch :
+
+binary-indep : build
+       dh_testroot
+       mkdir -p -m755 debian/libmaypole-perl/usr/share/perl5
+       $(MAKE) PREFIX=$(CURDIR)/debian/libmaypole-perl/usr install
+       dh_perl
+       mkdir -p -m755 debian/libmaypole-perl/usr/share/doc/libmaypole-perl
+       dh_installchangelogs
+       dh_installdocs
+       dh_compress
+       dh_fixperms
+       dh_gencontrol
+       dh_builddeb
+
+clean : 
+       if [ -f Makefile ]; then $(MAKE) clean; fi
+       dh_clean Makefile
+
+.PHONY : build binary binary-arch binary-dep clean