r63028 - in /trunk/libproc-daemon-perl/debian: ./ changelog compat control copyright rules
zugschlus at users.alioth.debian.org
zugschlus at users.alioth.debian.org
Tue Sep 28 12:39:01 UTC 2010
Author: zugschlus
Date: Tue Sep 28 12:38:42 2010
New Revision: 63028
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=63028
Log:
[svn-inject] Applying Debian modifications (0.03-2) to trunk
Added:
trunk/libproc-daemon-perl/debian/
trunk/libproc-daemon-perl/debian/changelog
trunk/libproc-daemon-perl/debian/compat
trunk/libproc-daemon-perl/debian/control
trunk/libproc-daemon-perl/debian/copyright
trunk/libproc-daemon-perl/debian/rules (with props)
Added: trunk/libproc-daemon-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-daemon-perl/debian/changelog?rev=63028&op=file
==============================================================================
--- trunk/libproc-daemon-perl/debian/changelog (added)
+++ trunk/libproc-daemon-perl/debian/changelog Tue Sep 28 12:38:42 2010
@@ -1,0 +1,19 @@
+libproc-daemon-perl (0.03-2) unstable; urgency=low
+
+ * first package version for unstable, no other changes
+ * Standards-Version: 3.6.1
+ * Build-Depend on debhelper 4
+
+ -- Marc Haber <mh+debian-packages at zugschlus.de> Tue, 7 Oct 2003 20:13:38 +0000
+
+libproc-daemon-perl (0.03-1) experimental; urgency=low
+
+ * new upstream source, clarifying license
+
+ -- Marc Haber <mh+debian-packages at zugschlus.de> Fri, 20 Jun 2003 13:41:19 +0000
+
+libproc-daemon-perl (0.02-1) experimental; urgency=low
+
+ * Initial Release.
+
+ -- Marc Haber <mh+debian-packages at zugschlus.de> Fri, 6 Jun 2003 16:41:46 +0000
Added: trunk/libproc-daemon-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-daemon-perl/debian/compat?rev=63028&op=file
==============================================================================
--- trunk/libproc-daemon-perl/debian/compat (added)
+++ trunk/libproc-daemon-perl/debian/compat Tue Sep 28 12:38:42 2010
@@ -1,0 +1,1 @@
+4
Added: trunk/libproc-daemon-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-daemon-perl/debian/control?rev=63028&op=file
==============================================================================
--- trunk/libproc-daemon-perl/debian/control (added)
+++ trunk/libproc-daemon-perl/debian/control Tue Sep 28 12:38:42 2010
@@ -1,0 +1,13 @@
+Source: libproc-daemon-perl
+Section: perl
+Priority: optional
+Build-Depends-Indep: debhelper (>= 4), perl (>= 5.8.0-7)
+Maintainer: Marc Haber <mh+debian-packages at zugschlus.de>
+Standards-Version: 3.6.1
+
+Package: libproc-daemon-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: Run Perl program as a daemon process
+ This module allows a perl program to run as a daemon. The Init
+ function does all necessary things a daemon needs to do.
Added: trunk/libproc-daemon-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-daemon-perl/debian/copyright?rev=63028&op=file
==============================================================================
--- trunk/libproc-daemon-perl/debian/copyright (added)
+++ trunk/libproc-daemon-perl/debian/copyright Tue Sep 28 12:38:42 2010
@@ -1,0 +1,24 @@
+This is the debian package for the Proc::Daemon module.
+It was created by Marc Haber <mh+debian-packages at zugschlus.de> using dh-make-perl.
+
+The upstream author is Earl Hood <earlhood at earlhood.com>, his home page is
+http://www.oac.uci.edu/indiv/ehood/.
+
+The upstream tarball is available on CPAN, or from
+http://www.mhonarc.org/tar/Proc-Daemon-0.03.tar.gz, where it was
+downloaded from on 2003-06-20.
+
+ Copyright (C) 1997-1999 Earl Hood, earl at earlhood.com
+ All rights reserved.
+
+ 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 Systems, the licenses can be found in
+/usr/share/common-licenses/GPL and /usr/share/common-licenses/Artistic
Added: trunk/libproc-daemon-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-daemon-perl/debian/rules?rev=63028&op=file
==============================================================================
--- trunk/libproc-daemon-perl/debian/rules (added)
+++ trunk/libproc-daemon-perl/debian/rules Tue Sep 28 12:38:42 2010
@@ -1,0 +1,85 @@
+#!/usr/bin/make -f
+#-*- makefile -*-
+# Made with the aid of dh_make, by Craig Small
+# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
+# Some lines taken from debmake, by Christoph Lameter.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+ifndef DESTDIR
+DESTDIR=..
+endif
+TMP =`pwd`/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+
+
+ # Add here commands to compile the package.
+ $(PERL) Makefile.PL INSTALLDIRS=vendor
+ $(MAKE) OPTIMIZE="-O2 -g -Wall"
+
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+
+ # Add here commands to clean up after the build process.
+ -$(MAKE) realclean
+
+ dh_clean
+
+install:
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+ # Add here commands to install the package into debian/tmp.
+ #$(MAKE) install DESTDIR=`pwd`/debian/tmp
+ $(MAKE) install PREFIX=$(TMP)/usr
+
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installdocs README
+ dh_installexamples
+ dh_installmenu
+# dh_installemacsen
+# dh_installinit
+ dh_installcron
+ dh_installman
+ dh_installchangelogs Changes
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+# dh_makeshlibs
+ dh_installdeb
+ dh_perl
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb --destdir=$(DESTDIR)
+
+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/libproc-daemon-perl/debian/rules
------------------------------------------------------------------------------
svn:executable = *
More information about the Pkg-perl-cvs-commits
mailing list