r11027 - in /trunk/libapp-control-perl/debian: ./ changelog compat control copyright rules watch

bremner-guest at users.alioth.debian.org bremner-guest at users.alioth.debian.org
Sat Dec 8 13:52:01 UTC 2007


Author: bremner-guest
Date: Sat Dec  8 13:52:00 2007
New Revision: 11027

URL: http://svn.debian.org/wsvn/?sc=1&rev=11027
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libapp-control-perl/debian/
    trunk/libapp-control-perl/debian/changelog
    trunk/libapp-control-perl/debian/compat
    trunk/libapp-control-perl/debian/control
    trunk/libapp-control-perl/debian/copyright
    trunk/libapp-control-perl/debian/rules   (with props)
    trunk/libapp-control-perl/debian/watch

Added: trunk/libapp-control-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libapp-control-perl/debian/changelog?rev=11027&op=file
==============================================================================
--- trunk/libapp-control-perl/debian/changelog (added)
+++ trunk/libapp-control-perl/debian/changelog Sat Dec  8 13:52:00 2007
@@ -1,0 +1,5 @@
+libapp-control-perl (1.02-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- David Bremner <bremner at unb.ca>  Tue, 26 Jun 2007 12:03:56 -0300

Added: trunk/libapp-control-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libapp-control-perl/debian/compat?rev=11027&op=file
==============================================================================
--- trunk/libapp-control-perl/debian/compat (added)
+++ trunk/libapp-control-perl/debian/compat Sat Dec  8 13:52:00 2007
@@ -1,0 +1,1 @@
+5

Added: trunk/libapp-control-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libapp-control-perl/debian/control?rev=11027&op=file
==============================================================================
--- trunk/libapp-control-perl/debian/control (added)
+++ trunk/libapp-control-perl/debian/control Sat Dec  8 13:52:00 2007
@@ -1,0 +1,23 @@
+Source: libapp-control-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= 5.8.8-7)
+Maintainer: David Bremner <bremner at unb.ca>
+Standards-Version: 3.7.3
+
+Package: libapp-control-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, 
+Description:   Perl module for apachectl style control of another executable
+ App::Control is a simple module to replicate the kind of functionality you get
+ with apachectl to control apache, but for any script or executable. There is a
+ very simple OO interface, where the constructor is used to specify the
+ executable, command line arguments, and pidfile, and various methods (start,
+ stop, etc.) are used to control the executable in the obvious way.
+ .
+ The module is intended to be used in a simple wrapper control script. Currently
+ the module does a fork and exec to start the executable, and sets the signal
+ handler for SIGCHLD to 'IGNORE' to avoid zombie processes.
+ .
+ This description was automagically extracted from the module by dh-make-perl.

Added: trunk/libapp-control-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libapp-control-perl/debian/copyright?rev=11027&op=file
==============================================================================
--- trunk/libapp-control-perl/debian/copyright (added)
+++ trunk/libapp-control-perl/debian/copyright Sat Dec  8 13:52:00 2007
@@ -1,0 +1,15 @@
+This is the debian package for the App::Control module.
+It was created by David Bremner <bremner at unb.ca> using dh-make-perl.
+
+This copyright info was automatically extracted from the perl module.
+It may not be accurate, so you better check the module sources
+if don't want to get into legal troubles.
+
+The upstream author is: 
+
+Ave Wrigley <Ave.Wrigley at itn.co.uk>.
+
+
+Copyright (c) 2001 Ave Wrigley. All rights reserved. This program is free
+software; you can redistribute it and/or modify it under the same terms as Perl
+itself.

Added: trunk/libapp-control-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libapp-control-perl/debian/rules?rev=11027&op=file
==============================================================================
--- trunk/libapp-control-perl/debian/rules (added)
+++ trunk/libapp-control-perl/debian/rules Sat Dec  8 13:52:00 2007
@@ -1,0 +1,83 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# If set to a true value then MakeMaker's prompt function will
+# 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)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-Wall -O2 -g"
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add commands to install the package into debian/$PACKAGE_NAME here
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	# As this is a architecture independent package, we are not
+	# supposed to install stuff to /usr/lib. MakeMaker creates
+	# the dirs, we delete them from the deb:
+	rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+#	dh_installcron
+#	dh_installmenu
+#	dh_installexamples
+	dh_installdocs README
+	dh_installchangelogs Changes
+	dh_perl
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	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

Propchange: trunk/libapp-control-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libapp-control-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libapp-control-perl/debian/watch?rev=11027&op=file
==============================================================================
--- trunk/libapp-control-perl/debian/watch (added)
+++ trunk/libapp-control-perl/debian/watch Sat Dec  8 13:52:00 2007
@@ -1,0 +1,3 @@
+# format version number, currently 2; this line is compulsory!
+version=2
+http://www.cpan.org/modules/by-module/App/App-Control-(.*).(tar.gz|tar|tgz)




More information about the Pkg-perl-cvs-commits mailing list