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

gregoa pushed a commit to branch master
in repository libstring-shellquote-perl.

commit 10bccdc8d596613a9871d92003bd7249ecb8c57f
Author: Roderick Schertler <[email protected]>
Date:   Tue Jul 31 10:37:13 2001 -0400

    Import Debian changes 1.00-4
    
    libstring-shellquote-perl (1.00-4) unstable; urgency=low
    
      * Don't install extraneous empty directories.
    
    libstring-shellquote-perl (1.00-3) unstable; urgency=low
    
      * Update to policy 3.5.2 (closes: #91196, #91561).
      * 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 74e9a0c..63bf0b1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,16 @@
+libstring-shellquote-perl (1.00-4) unstable; urgency=low
+
+  * Don't install extraneous empty directories.
+
+ -- Roderick Schertler <[email protected]>  Tue, 31 Jul 2001 10:37:13 -0400
+
+libstring-shellquote-perl (1.00-3) unstable; urgency=low
+
+  * Update to policy 3.5.2 (closes: #91196, #91561).
+  * Update to latest Perl policy.
+
+ -- Roderick Schertler <[email protected]>  Mon,  9 Apr 2001 08:10:41 -0400
+
 libstring-shellquote-perl (1.00-2) unstable; urgency=low
 
   * Simple updates for 3.0.0 standards.
@@ -11,4 +24,4 @@ libstring-shellquote-perl (1.00-1) unstable; urgency=low
 
  -- Roderick Schertler <[email protected]>  Mon, 28 Dec 1998 22:50:19 -0500
 
-$Id: changelog,v 1.2 1999/07/14 19:06:14 roderick Exp $
+$Id: changelog,v 1.4 2001/07/31 14:37:35 roderick Exp $
diff --git a/debian/control b/debian/control
index d7d41c2..2e0f024 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,8 @@ Source: libstring-shellquote-perl
 Section: interpreters
 Priority: optional
 Maintainer: Roderick Schertler <[email protected]>
-Standards-Version: 3.0.0
+Standards-Version: 3.5.2
+Build-Depends: debhelper (>= 3.0.5), perl (>= 5.6.0-16)
 
 Package: libstring-shellquote-perl
 Architecture: all
diff --git a/debian/rules b/debian/rules
index 9f4898b..587b663 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,28 +1,24 @@
 #!/usr/bin/make -f
 
-# $Id: rules,v 1.2 1999/07/14 19:06:14 roderick Exp $
+# $Id: rules,v 1.5 2001/07/31 14:37:35 roderick Exp $
 
-dt             := debian/tmp
+dt             := debian/libstring-shellquote-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/man/man1 \
-               INSTALLMAN3DIR=$(prefix)/usr/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/libstring-shellquote-perl.git

_______________________________________________
Pkg-perl-cvs-commits mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to