[libproc-waitstat-perl] 02/05: Import Debian changes 1.00-3

gregor herrmann gregoa at debian.org
Fri Aug 4 15:52:49 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 7004529bfbe6cf2860b8171389a199506a9bb93f
Author: Roderick Schertler <roderick at argon.org>
Date:   Thu Feb 14 08:47:40 2002 -0500

    Import Debian changes 1.00-3
    
    libproc-waitstat-perl (1.00-3) unstable; urgency=low
    
      * Add missing build-depends on libipc-signal-perl (closes: #133873).
    
    libproc-waitstat-perl (1.00-2) unstable; urgency=low
    
      * Update to policy 3.5.2.
      * Update to latest Perl policy.
---
 debian/changelog | 15 ++++++++++++++-
 debian/control   |  3 ++-
 debian/rules     | 51 ++++++++++++++++++++++-----------------------------
 3 files changed, 38 insertions(+), 31 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 7db837c..d6f6f73 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,16 @@
+libproc-waitstat-perl (1.00-3) unstable; urgency=low
+
+  * Add missing build-depends on libipc-signal-perl (closes: #133873).
+
+ -- Roderick Schertler <roderick at argon.org>  Thu, 14 Feb 2002 08:47:40 -0500
+
+libproc-waitstat-perl (1.00-2) unstable; urgency=low
+
+  * Update to policy 3.5.2.
+  * Update to latest Perl policy.
+
+ -- Roderick Schertler <roderick at argon.org>  Tue, 31 Jul 2001 10:33:18 -0400
+
 libproc-waitstat-perl (1.00-1) unstable; urgency=low
 
   * New upstream release.
@@ -18,4 +31,4 @@ libproc-waitstat-perl (0.01-1) unstable; urgency=low
 
  -- 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 $
+$Id: changelog,v 1.5 2002/02/14 13:48:29 roderick Exp $
diff --git a/debian/control b/debian/control
index f49d902..d871276 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,8 @@ Source: libproc-waitstat-perl
 Section: interpreters
 Priority: optional
 Maintainer: Roderick Schertler <roderick at argon.org>
-Standards-Version: 3.0.0
+Standards-Version: 3.5.2
+Build-Depends: debhelper (>= 3.0.5), perl (>= 5.6.0-16), libipc-signal-perl
 
 Package: libproc-waitstat-perl
 Architecture: all
diff --git a/debian/rules b/debian/rules
index 28f891c..67a1e69 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,28 +1,24 @@
 #!/usr/bin/make -f
 
-# $Id: rules,v 1.3 1999/10/27 15:01:32 roderick Exp $
+# $Id: rules,v 1.4 2001/07/31 14:34:41 roderick Exp $
 
-dt		:= debian/tmp
+dt		:= debian/libproc-waitstat-perl
 prefix		 = `pwd`/$(dt)
 stamp_build	:= debian/stamp.build
 stamp_install	:= debian/stamp.install
 clean		:= $(stamp_build) $(stamp_install)
 
-ifndef PERL
-    PERL	:= perl
+ifneq "" "$(findstring debug,$(DEB_BUILD_OPTIONS))"
+    CFLAGS		+= -g
 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.
+export DH_COMPAT	:= 3
+PERL			?= perl
 
 build: $(stamp_build)
 $(stamp_build):
 	dh_testdir
-	$(PERL) Makefile.PL
-	$(MAKE)
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-O2 -Wall $(CFLAGS)"
 	$(MAKE) test
 	touch $@
 
@@ -32,49 +28,46 @@ $(stamp_install): $(stamp_build)
 	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
+	$(MAKE) install PREFIX=$(prefix)/usr
+	find $(prefix) -depth -type d -print0 | \
+	    xargs -0r rmdir --ignore-fail-on-non-empty
 	touch $@
 
 clean:
 	dh_testdir
 	dh_testroot
-	rm -f $(clean)
 	[ ! -f Makefile ] || $(MAKE) realclean
-	dh_clean
+	dh_clean $(clean)
 
+binary: binary-indep binary-arch
+binary-arch:
 binary-indep: $(stamp_install)
-
-binary-arch: $(stamp_install)
-#	dh_testversion
 	dh_testdir
 	dh_testroot
+#	dh_installdebconf
 	dh_installdocs README
 	dh_installexamples
 	dh_installmenu
+#	dh_installlogrotate
 #	dh_installemacsen
+#	dh_installpam
+#	dh_installmime
 #	dh_installinit
 	dh_installcron
-	dh_installmanpages
+	dh_installman
+	dh_installinfo
 #	dh_undocumented
 	dh_installchangelogs Changes
+	dh_link
 	dh_strip
 	dh_compress
 	dh_fixperms
-	dh_suidregister
+#	dh_makeshlibs
 	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