[libproc-waitstat-perl] 01/05: Import Debian changes 1.00-1

gregor herrmann gregoa at debian.org
Fri Aug 4 15:52:48 UTC 2017


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

gregoa pushed a commit to branch master
in repository libproc-waitstat-perl.

commit 8525794f78bea998beae631a6ca66b198d432cd4
Author: Roderick Schertler <roderick at argon.org>
Date:   Wed Oct 27 10:57:31 1999 -0400

    Import Debian changes 1.00-1
    
    libproc-waitstat-perl (1.00-1) unstable; urgency=low
    
      * New upstream release.
      * Put manpages in /usr/share/man.
    
    libproc-waitstat-perl (0.01-2) unstable; urgency=low
    
      * Simple updates for 3.0.0 standards.
      * Simple updates for new Perl policy.
    
    libproc-waitstat-perl (0.01-1) unstable; urgency=low
    
      * Initial version.
---
 debian/changelog | 21 +++++++++++++++
 debian/control   | 12 +++++++++
 debian/copyright | 35 +++++++++++++++++++++++++
 debian/rules     | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 148 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..7db837c
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,21 @@
+libproc-waitstat-perl (1.00-1) unstable; urgency=low
+
+  * New upstream release.
+  * Put manpages in /usr/share/man.
+
+ -- Roderick Schertler <roderick at argon.org>  Wed, 27 Oct 1999 10:57:31 -0400
+
+libproc-waitstat-perl (0.01-2) unstable; urgency=low
+
+  * Simple updates for 3.0.0 standards.
+  * Simple updates for new Perl policy.
+
+ -- Roderick Schertler <roderick at argon.org>  Wed, 14 Jul 1999 14:55:39 -0400
+
+libproc-waitstat-perl (0.01-1) unstable; urgency=low
+
+  * Initial version.
+
+ -- Roderick Schertler <roderick at argon.org>  Mon, 28 Dec 1998 22:50:19 -0500
+
+$Id: changelog,v 1.3 1999/10/27 15:01:40 roderick Exp $
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..f49d902
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,12 @@
+Source: libproc-waitstat-perl
+Section: interpreters
+Priority: optional
+Maintainer: Roderick Schertler <roderick at argon.org>
+Standards-Version: 3.0.0
+
+Package: libproc-waitstat-perl
+Architecture: all
+Depends: ${perl:Depends}, libipc-signal-perl
+Description: interpret and act on wait() status values
+ This Perl module contains functions which are useful for interpreting
+ and acting on wait() status values.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..86658eb
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,35 @@
+$Id: copyright,v 1.2 1999/07/14 18:57:00 roderick Exp $
+
+This is a Debian prepackaged version of the Proc::WaitStat 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..28f891c
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,80 @@
+#!/usr/bin/make -f
+
+# $Id: rules,v 1.3 1999/10/27 15:01:32 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/share/man/man1 \
+		INSTALLMAN3DIR=$(prefix)/usr/share/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-waitstat-perl.git



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