[liberror-perl] 02/28: Imported Debian patch 0.13-2

gregor herrmann gregoa at debian.org
Sun Jul 17 14:55:40 UTC 2016


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

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

commit 8d9d2f23fa3cf5068d854f7cb3b0bf5ceac9b8bb
Merge: 68e98fd a6e4e92
Author: Paolo Molaro <lupus at debian.org>
Date:   Fri Feb 23 19:34:20 2001 +0100

    Imported Debian patch 0.13-2

 ChangeLog                  |  22 ++
 Error.pm                   | 202 +++++++-------
 Error.ppd                  |  10 +
 MANIFEST                   |   5 +-
 Makefile.PL                |  34 ++-
 Makefile.old               | 659 ---------------------------------------------
 README                     |  38 ++-
 debian/changelog           |  13 +
 debian/control             |   3 +-
 debian/ex.doc-base.package |  22 --
 debian/postinst.ex         |  47 ----
 debian/postrm.ex           |  38 ---
 debian/preinst.ex          |  40 ---
 debian/prerm.ex            |  37 ---
 debian/rules               |  14 +-
 debian/watch.ex            |   5 -
 16 files changed, 218 insertions(+), 971 deletions(-)

diff --cc debian/changelog
index 9a00a44,0000000..c21acc6
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,15 -1,0 +1,28 @@@
++liberror-perl (0.13-2) unstable; urgency=low
++
++  * Package cleanup.
++  * Updated to the new perl and debian policy.
++
++ -- Paolo Molaro <lupus at debian.org>  Fri, 23 Feb 2001 19:34:20 +0100
++
++liberror-perl (0.13-1) unstable; urgency=low
++
++  * New upstream release (closes: #74890).
++
++ -- Paolo Molaro <lupus at debian.org>  Thu, 19 Oct 2000 14:00:24 +0200
++
 +liberror-perl (0.12-2) unstable; urgency=low
 +
 +  * Renamed the source.
 +
 + -- Paolo Molaro <lupus at debian.org>  Fri,  1 Oct 1999 08:58:11 +0200
 +
 +error (0.12-1) unstable; urgency=low
 +
 +  * Initial Release.
 +
 + -- Paolo Molaro <lupus at debian.org>  Wed, 22 Sep 1999 14:33:11 +0200
 +
 +Local variables:
 +mode: debian-changelog
 +End:
diff --cc debian/control
index 1a22730,0000000..fa9c0be
mode 100644,000000..100644
--- a/debian/control
+++ b/debian/control
@@@ -1,13 -1,0 +1,14 @@@
 +Source: liberror-perl
 +Section: interpreters
 +Priority: optional
++Build-Depends: debhelper (>= 3.0.5), perl (>= 5.6.0-18)
 +Maintainer: Paolo Molaro <lupus at debian.org>
- Standards-Version: 2.5.1
++Standards-Version: 3.5.1
 +
 +Package: liberror-perl
 +Architecture: all
 +Depends: ${perl:Depends}
 +Description: Exception module for Perl
 + This is a Perl module that allows the use of exceptions
 + in perl code with some syntactic sugar.
 +
diff --cc debian/rules
index 37af0b6,0000000..f6cbbcc
mode 100755,000000..100755
--- a/debian/rules
+++ b/debian/rules
@@@ -1,89 -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
++export DH_COMPAT=3
 +
 +ifndef PERL
 +PERL = /usr/bin/perl
 +endif
 +
- TMP     =`pwd`/debian/tmp
- archlib =`$(PERL) -MConfig -e 'print $$Config{installarchlib}'`
- config  =INSTALLDIRS=perl INSTALLMAN1DIR=$(TMP)/usr/share/man/man1 INSTALLMAN3DIR=$(TMP)/usr/share/man/man3 INSTALLPRIVLIB=$(TMP)/usr/lib/perl5 INSTALLARCHLIB=$(TMP)$(archlib)
- 
++TMP     =`pwd`/debian/liberror-perl
 +
 +build: build-stamp
 +build-stamp:
 +	dh_testdir
 +
- 	
 +	# Add here commands to compile the package.
- 	$(PERL) Makefile.PL $(config)
++	$(PERL) Makefile.PL INSTALLDIRS=vendor
 +	$(MAKE) CFLAGS="-O2 -g -Wall"
 +
 +	touch build-stamp
 +
 +clean:
 +	dh_testdir
 +	dh_testroot
 +	rm -f build-stamp install-stamp
 +
 +	# Add here commands to clean up after the build process.
 +	-$(MAKE) clean
++	-rm -f Makefile.old
 +
 +	dh_clean
 +
 +install: install-stamp
 +install-stamp: build-stamp
 +	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) pure_install
++	$(MAKE) pure_install PREFIX=$(TMP)/usr
 +
 +	touch install-stamp
 +
 +# Build architecture-independent files here.
 +binary-indep: build install
 +# We have nothing to do by default.
 +
 +# Build architecture-dependent files here.
 +binary-arch: build 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 ChangeLog
 +	dh_link
 +	dh_strip
 +	dh_compress
 +	dh_fixperms
- 	# You may want to make some executables suid here
- 	dh_suidregister
 +#	dh_makeshlibs
 +	dh_installdeb
 +	dh_perl 
 +	dh_shlibdeps
 +	dh_gencontrol
 +	dh_md5sums
 +	dh_builddeb
 +
 +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

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



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