r11171 - in /trunk/librunapp-perl/debian: ./ changelog compat control copyright rules watch

bremner-guest at users.alioth.debian.org bremner-guest at users.alioth.debian.org
Thu Dec 13 21:30:31 UTC 2007


Author: bremner-guest
Date: Thu Dec 13 21:30:31 2007
New Revision: 11171

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

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

Added: trunk/librunapp-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/librunapp-perl/debian/changelog?rev=11171&op=file
==============================================================================
--- trunk/librunapp-perl/debian/changelog (added)
+++ trunk/librunapp-perl/debian/changelog Thu Dec 13 21:30:31 2007
@@ -1,0 +1,6 @@
+librunapp-perl (0.13-1) UNRELEASED; urgency=low
+
+  [ David Bremner ]
+  * Initial Release (Closes: #431763).
+
+ -- David Bremner <bremner at unb.ca>  Thu, 13 Dec 2007 22:15:40 +0100

Added: trunk/librunapp-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/librunapp-perl/debian/compat?rev=11171&op=file
==============================================================================
--- trunk/librunapp-perl/debian/compat (added)
+++ trunk/librunapp-perl/debian/compat Thu Dec 13 21:30:31 2007
@@ -1,0 +1,1 @@
+5

Added: trunk/librunapp-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/librunapp-perl/debian/control?rev=11171&op=file
==============================================================================
--- trunk/librunapp-perl/debian/control (added)
+++ trunk/librunapp-perl/debian/control Thu Dec 13 21:30:31 2007
@@ -1,0 +1,21 @@
+Source: librunapp-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0), libapp-control-perl, libtemplate-perl, libyaml-perl
+Build-Depends-Indep: perl (>= 5.8.8-7)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Standards-Version: 3.7.3
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/librunapp-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/librunapp-perl/
+Homepage: http://search.cpan.org/dist/RunApp
+
+Package: librunapp-perl
+Architecture: all
+Depends: ${perl:Depends}, libapp-control-perl, libtemplate-perl, libyaml-perl
+Description:  A generic module to run web-applications
+ RunApp streamlines the process for configuring applications that
+ requires one or more web servers and/or other daemons, during
+ development or deployment.  It builds the config files required  by
+ the services (such as apache's httpd.conf) using a hash.
+
+

Added: trunk/librunapp-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/librunapp-perl/debian/copyright?rev=11171&op=file
==============================================================================
--- trunk/librunapp-perl/debian/copyright (added)
+++ trunk/librunapp-perl/debian/copyright Thu Dec 13 21:30:31 2007
@@ -1,0 +1,29 @@
+This is the debian package for the RunApp module.
+
+The original source was retrieved from:
+
+    http://search.cpan.org/dist/RunApp
+
+Upstream authors:
+ Chia-liang Kao <clkao at clkao.org>
+ Refactored from works by Leon Brocard <acme at astray.com> and
+ Tom Insam <tinsam at fotango.com>.
+
+Files: *
+License: GPL-1+ | Artistic
+Copyright: Copyright (C) 2002-5, Fotango Ltd.
+ This module is free software; you can redistribute it or modify it
+ under the same terms as Perl itself.
+ .
+ Perl is distributed under your choice of the GNU General Public License or
+ the Artistic License.  
+
+Files: debian/*
+Copyright: © 2007 David Bremner <bremner at unb.ca>
+License: GPL-2+
+ The Debian packaging is licensed under version 2 of the GNU General	
+ Public License, or at your option, any later version.
+
+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'.

Added: trunk/librunapp-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/librunapp-perl/debian/rules?rev=11171&op=file
==============================================================================
--- trunk/librunapp-perl/debian/rules (added)
+++ trunk/librunapp-perl/debian/rules Thu Dec 13 21:30:31 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/librunapp-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/librunapp-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/librunapp-perl/debian/watch?rev=11171&op=file
==============================================================================
--- trunk/librunapp-perl/debian/watch (added)
+++ trunk/librunapp-perl/debian/watch Thu Dec 13 21:30:31 2007
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/RunApp/ .*/RunApp-(\d+\.\d+)\.tar\.gz




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