r19765 - in /trunk/libmasonx-interp-withcallbacks-perl/debian: changelog control rules
gregoa at users.alioth.debian.org
gregoa at users.alioth.debian.org
Fri May 9 13:08:43 UTC 2008
Author: gregoa
Date: Fri May 9 13:08:42 2008
New Revision: 19765
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=19765
Log:
* debian/control: add Suggests: libapache2-mod-perl2 and Depends:
libhtml-mason-perl (>= 1:1.23), libparams-callbackrequest-perl (>=
1.15), libclass-container-perl (>= 0.09).
* Refresh debian/rules, no functional changes Except for dropping README,
which is just a text version of the POD documentation).
Modified:
trunk/libmasonx-interp-withcallbacks-perl/debian/changelog
trunk/libmasonx-interp-withcallbacks-perl/debian/control
trunk/libmasonx-interp-withcallbacks-perl/debian/rules
Modified: trunk/libmasonx-interp-withcallbacks-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmasonx-interp-withcallbacks-perl/debian/changelog?rev=19765&op=diff
==============================================================================
--- trunk/libmasonx-interp-withcallbacks-perl/debian/changelog (original)
+++ trunk/libmasonx-interp-withcallbacks-perl/debian/changelog Fri May 9 13:08:42 2008
@@ -11,8 +11,13 @@
years of copyright.
* Set Standards-Version to 3.7.3 (no changes).
* debian/control: change my email address and wrap long lines.
+ * debian/control: add Suggests: libapache2-mod-perl2 and Depends:
+ libhtml-mason-perl (>= 1:1.23), libparams-callbackrequest-perl (>=
+ 1.15), libclass-container-perl (>= 0.09).
+ * Refresh debian/rules, no functional changes Except for dropping README,
+ which is just a text version of the POD documentation).
- -- gregor herrmann <gregoa at debian.org> Fri, 09 May 2008 14:52:09 +0200
+ -- gregor herrmann <gregoa at debian.org> Fri, 09 May 2008 15:05:44 +0200
libmasonx-interp-withcallbacks-perl (1.17-1) unstable; urgency=low
Modified: trunk/libmasonx-interp-withcallbacks-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmasonx-interp-withcallbacks-perl/debian/control?rev=19765&op=diff
==============================================================================
--- trunk/libmasonx-interp-withcallbacks-perl/debian/control (original)
+++ trunk/libmasonx-interp-withcallbacks-perl/debian/control Fri May 9 13:08:42 2008
@@ -16,7 +16,9 @@
Package: libmasonx-interp-withcallbacks-perl
Architecture: all
-Depends: ${perl:Depends}, ${misc:Depends},
+Depends: ${perl:Depends}, ${misc:Depends}, libhtml-mason-perl (>= 1:1.23),
+ libparams-callbackrequest-perl (>= 1.15), libclass-container-perl (>= 0.09)
+Suggests: libapache2-mod-perl2
Description: Mason callback support via Params::CallbackRequest
MasonX::Interp::WithCallbacks subclasses HTML::Mason::Interp in order to
provide a Mason callback system built on Params::CallbackRequest.
Modified: trunk/libmasonx-interp-withcallbacks-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmasonx-interp-withcallbacks-perl/debian/rules?rev=19765&op=diff
==============================================================================
--- trunk/libmasonx-interp-withcallbacks-perl/debian/rules (original)
+++ trunk/libmasonx-interp-withcallbacks-perl/debian/rules Fri May 9 13:08:42 2008
@@ -14,51 +14,41 @@
# always return the default without waiting for user input.
export PERL_MM_USE_DEFAULT=1
-PACKAGE=$(shell dh_listpackages)
-
-ifndef PERL
-PERL = /usr/bin/perl
-endif
-
-TMP =$(CURDIR)/debian/$(PACKAGE)
+PERL ?= /usr/bin/perl
+PACKAGE = $(shell dh_listpackages)
+TMP = $(CURDIR)/debian/$(PACKAGE)
build: build-stamp
build-stamp:
dh_testdir
-
- # Add commands to compile the package here
$(PERL) Build.PL installdirs=vendor
- OPTIMIZE="-Wall -O2 -g" $(PERL) Build
- touch build-stamp
+ $(PERL) Build
+ $(PERL) Build test
+ touch $@
clean:
dh_testdir
dh_testroot
- # Add commands to clean up after the build process here
- [ ! -f Build ] || $(PERL) Build distclean
dh_clean build-stamp install-stamp
+ [ ! -f Build ] || $(PERL) Build --allow_mb_mismatch 1 distclean
-install: build install-stamp
-install-stamp:
+install: install-stamp
+install-stamp: build-stamp
dh_testdir
dh_testroot
dh_clean -k
- # Add commands to install the package into debian/$PACKAGE_NAME here
- $(PERL) Build test
- $(PERL) Build install destdir=$(TMP)
- touch install-stamp
+ $(PERL) Build install destdir=$(TMP) create_packlist=0
+ touch $@
binary-arch:
-# We have nothing to do by default.
+# We have nothing to do here for an architecture-independent package
binary-indep: build install
dh_testdir
dh_testroot
- dh_installdocs README
+ dh_installdocs
dh_installchangelogs Changes
dh_perl
- dh_link
- dh_strip
dh_compress
dh_fixperms
dh_installdeb
@@ -66,8 +56,5 @@
dh_md5sums
dh_builddeb
-source diff:
- @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
-
binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary
+.PHONY: build clean binary-indep binary-arch binary install
More information about the Pkg-perl-cvs-commits
mailing list