[libproc-syncexec-perl] 01/16: Import Debian changes 0.01-2

Christoph Biedl debian.axhn at manchmal.in-ulm.de
Sun Aug 6 01:14:11 UTC 2017


This is an automated email from the git hooks/post-receive script.

cbiedl-guest pushed a commit to branch master
in repository libproc-syncexec-perl.

commit a45cb518825aba52e0000c15eb79a88989593b0e
Author: Roderick Schertler <roderick at argon.org>
Date:   Wed Jul 14 14:48:56 1999 -0400

    Import Debian changes 0.01-2
---
 debian/control   | 13 +++++++++
 debian/copyright | 35 +++++++++++++++++++++++++
 debian/rules     | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 128 insertions(+)

diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..1990403
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,13 @@
+Source: libproc-syncexec-perl
+Section: interpreters
+Priority: optional
+Maintainer: Roderick Schertler <roderick at argon.org>
+Standards-Version: 3.0.0
+
+Package: libproc-syncexec-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description: spawn processes but report exec() errors properly
+ This Perl module contains functions for synchronized process spawning
+ with full error return.  If the child's exec() call fails the reason
+ for the failure is reported back to the parent.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..ccf021b
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,35 @@
+$Id: copyright,v 1.2 1999/07/14 18:49:41 roderick Exp $
+
+This is a Debian prepackaged version of the Proc::SyncExec Perl module.
+It was put together by Roderick Schertler <roderick at argon.org> with
+sources obtained from <URL:http://www.perl.com/CPAN/authors/id/ROSCH/>.
+
+The source has not been modified.
+
+The module is Copyright (c) 1997 Roderick Schertler.  All rights reserved.
+It may be distributed under the same terms as Perl.  These are:
+
+    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 this Kit.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See either
+    the GNU General Public License or the Artistic License for more details.
+
+    You should have received a copy of the Artistic License with this
+    Kit, in the file named "Artistic".  If not, I'll be glad to provide one.
+
+    You should also have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software Foundation,
+    Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
+
+On Debian systems, the complete text of the GNU General Public License can
+be found in `/usr/share/common-licenses/GPL', and the complete text of the
+Artistic License can be found in `/usr/share/common-licenses/Artistic'.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..26f9cd4
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,80 @@
+#!/usr/bin/make -f
+
+# $Id: rules,v 1.2 1999/07/14 18:49:41 roderick Exp $
+
+dt		:= debian/tmp
+prefix		 = `pwd`/$(dt)
+stamp_build	:= debian/stamp.build
+stamp_install	:= debian/stamp.install
+clean		:= $(stamp_build) $(stamp_install)
+
+ifndef PERL
+    PERL	:= perl
+endif
+
+# Setting PREFIX at Makefile generation time loses because it might or
+# might not match *perl*.  If it does the resulting hierarchy is wrong.
+# So, set it at install time, after the structure of the hierarchy has
+# been determined.  Since I have to add variables at install time anyway
+# I set them all there.
+
+build: $(stamp_build)
+$(stamp_build):
+	dh_testdir
+	$(PERL) Makefile.PL
+	$(MAKE)
+	$(MAKE) test
+	touch $@
+
+install: $(stamp_install)
+$(stamp_install): $(stamp_build)
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+    # XXX remove INSTALLPRIVLIB when the Perl packages are fixed
+	$(MAKE) \
+		PREFIX=$(prefix)/usr \
+		INSTALLPRIVLIB=$(prefix)/usr/lib/perl5 \
+		INSTALLMAN1DIR=$(prefix)/usr/man/man1 \
+		INSTALLMAN3DIR=$(prefix)/usr/man/man3 \
+	    pure_perl_install
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f $(clean)
+	[ ! -f Makefile ] || $(MAKE) realclean
+	dh_clean
+
+binary-indep: $(stamp_install)
+
+binary-arch: $(stamp_install)
+#	dh_testversion
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_installexamples
+	dh_installmenu
+#	dh_installemacsen
+#	dh_installinit
+	dh_installcron
+	dh_installmanpages
+#	dh_undocumented
+	dh_installchangelogs Changes
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_suidregister
+	dh_installdeb
+	dh_perl
+	dh_shlibdeps
+	dh_gencontrol -u -isp
+#	dh_makeshlibs
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+
+.PHONY: build install clean binary-indep binary-arch binary

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libproc-syncexec-perl.git



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