r16941 - in /trunk/libdaemon-generic-perl/debian: ./ changelog compat control copyright rules watch

azatoth-guest at users.alioth.debian.org azatoth-guest at users.alioth.debian.org
Sat Mar 8 19:55:56 UTC 2008


Author: azatoth-guest
Date: Sat Mar  8 19:55:55 2008
New Revision: 16941

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

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

Added: trunk/libdaemon-generic-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libdaemon-generic-perl/debian/changelog?rev=16941&op=file
==============================================================================
--- trunk/libdaemon-generic-perl/debian/changelog (added)
+++ trunk/libdaemon-generic-perl/debian/changelog Sat Mar  8 19:55:55 2008
@@ -1,0 +1,5 @@
+libdaemon-generic-perl (0.51-1) UNRELEASED; urgency=low
+
+  * Initial Release.
+
+ -- Carl Fürstenberg <azatoth at gmail.com>  Sat, 08 Mar 2008 20:32:58 +0100

Added: trunk/libdaemon-generic-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libdaemon-generic-perl/debian/compat?rev=16941&op=file
==============================================================================
--- trunk/libdaemon-generic-perl/debian/compat (added)
+++ trunk/libdaemon-generic-perl/debian/compat Sat Mar  8 19:55:55 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libdaemon-generic-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libdaemon-generic-perl/debian/control?rev=16941&op=file
==============================================================================
--- trunk/libdaemon-generic-perl/debian/control (added)
+++ trunk/libdaemon-generic-perl/debian/control Sat Mar  8 19:55:55 2008
@@ -1,0 +1,20 @@
+Source: libdaemon-generic-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= 5.8.8-12), libfile-slurp-perl, libfile-flock-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Carl Fürstenberg <azatoth at gmail.com>
+Standards-Version: 3.7.3
+Homepage: http://search.cpan.org/dist/Daemon-Generic/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdaemon-generic-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libdaemon-generic-perl/
+
+Package: libdaemon-generic-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libfile-slurp-perl, libfile-flock-perl
+Description:  framework to provide start/stop/reload for a daemon
+ Daemon::Generic provides a framework for starting, stopping,
+ reconfiguring daemon-like programs.  The framework provides
+ for standard commands that work for as init.d files and 
+ as apachectl-like commands.

Added: trunk/libdaemon-generic-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libdaemon-generic-perl/debian/copyright?rev=16941&op=file
==============================================================================
--- trunk/libdaemon-generic-perl/debian/copyright (added)
+++ trunk/libdaemon-generic-perl/debian/copyright Sat Mar  8 19:55:55 2008
@@ -1,0 +1,10 @@
+This is the debian package for the Daemon-Generic module.
+It was created by Carl Fürstenberg <azatoth at gmail.com> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/dist/Daemon-Generic/
+
+Copyright(C) 2006 David Muir Sharnoff <muir at idiom.com>. This module may
+be used and distributed on the same terms as Perl itself.
+
+The Debian packaging is (C) 2008, Carl Fürstenberg <azatoth at gmail.com> and
+is licensed under the same terms as the software itself (see above).

Added: trunk/libdaemon-generic-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libdaemon-generic-perl/debian/rules?rev=16941&op=file
==============================================================================
--- trunk/libdaemon-generic-perl/debian/rules (added)
+++ trunk/libdaemon-generic-perl/debian/rules Sat Mar  8 19:55:55 2008
@@ -1,0 +1,81 @@
+#!/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
+
+	# As this is a architecture independent package, we are not
+	# supposed to install stuff to /usr/lib. MakeMaker creates
+	# the dirs, we prevent this by setting the INSTALLVENDORARCH
+	# and VENDORARCHEXP environment variables.
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor \
+		INSTALLVENDORARCH=/usr/share/perl5/ \
+		VENDORARCHEXP=/usr/share/perl5/
+	$(MAKE)
+	$(MAKE) test
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	dh_clean build-stamp install-stamp
+
+	# Add commands to clean up after the build process here
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+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
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	touch $@
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installexamples
+	dh_installdocs README
+	dh_installchangelogs CHANGELOG
+	dh_perl
+	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/libdaemon-generic-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libdaemon-generic-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libdaemon-generic-perl/debian/watch?rev=16941&op=file
==============================================================================
--- trunk/libdaemon-generic-perl/debian/watch (added)
+++ trunk/libdaemon-generic-perl/debian/watch Sat Mar  8 19:55:55 2008
@@ -1,0 +1,3 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+http://search.cpan.org/dist/Daemon-Generic/ .*/Daemon-Generic-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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