Codebase list libpoe-component-sslify-perl / b648b80
Switched to debhelper v7, updated debian/rules, added debian/docs, updated debian/control b-d on debhelper to >=7, updated debian/compat to 7. Added me as uploader Ready to release Jose Luis Rivas Contreras 15 years ago
5 changed file(s) with 16 addition(s) and 60 deletion(s). Raw diff Collapse all Expand all
0 libpoe-component-sslify-perl (0.14-1) UNRELEASED; urgency=low
0 libpoe-component-sslify-perl (0.14-1) unstable; urgency=low
11
2 * (NOT RELEASED YET) New upstream release
2 * New upstream release
3 * Switched to debhelper v7, debian/rules is now only 3 lines long.
4 * Added debian/docs.
5 * debian/control: Updated to debhelper >= 7.
6 * debian/compat: 7.
7 * Added me as uploader.
38
4 -- Jose Luis Rivas <ghostbar38@gmail.com> Sat, 01 Nov 2008 18:43:22 -0430
9 -- Jose Luis Rivas <ghostbar38@gmail.com> Sat, 01 Nov 2008 19:06:35 -0430
510
611 libpoe-component-sslify-perl (0.13-2) unstable; urgency=low
712
11 Section: perl
22 Priority: optional
33 Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
4 Uploaders: Niko Tyni <ntyni@debian.org>, Martín Ferrari <tincho@debian.org>
5 Build-Depends: debhelper (>= 5.0.0)
4 Uploaders: Niko Tyni <ntyni@debian.org>, Martín Ferrari <tincho@debian.org>,
5 Jose Luis Rivas <ghostbar38@gmail.com>
6 Build-Depends: debhelper (>= 7)
67 Build-Depends-Indep: perl (>= 5.8.8-7), libnet-ssleay-perl (>= 1.30)
78 Standards-Version: 3.8.0
89 Homepage: http://search.cpan.org/dist/POE-Component-SSLify/
0 README
1 examples/
00 #!/usr/bin/make -f
1
2 #export DH_VERBOSE=1
3 export PERL_MM_USE_DEFAULT=1
4
5 PERL ?= /usr/bin/perl
6 PACKAGE = $(shell dh_listpackages)
7 TMP = $(CURDIR)/debian/$(PACKAGE)
8
9 build: build-stamp
10 build-stamp:
11 dh_testdir
12 $(PERL) Makefile.PL INSTALLDIRS=vendor
13 $(MAKE)
14 # Almost all tests are author tests, and the (trivial) one remaining
15 # needs a module not in Debian.
16 #$(MAKE) test
17 touch $@
18
19 clean:
20 dh_testdir
21 dh_testroot
22 dh_clean build-stamp install-stamp
23 [ ! -f Makefile ] || $(MAKE) realclean
24
25 install: install-stamp
26 install-stamp: build-stamp
27 dh_testdir
28 dh_testroot
29 dh_clean -k
30 $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
31 [ ! -d $(TMP)/usr/lib/perl5 ] || \
32 rmdir --ignore-fail-on-non-empty --parents --verbose \
33 $(TMP)/usr/lib/perl5
34 touch $@
35
36 binary-arch:
37 # We have nothing to do here for an architecture-independent package
38
39 binary-indep: build install
40 dh_testdir
41 dh_testroot
42 dh_installexamples examples/*
43 dh_installdocs
44 dh_installchangelogs Changes
45 dh_perl
46 dh_compress
47 dh_fixperms
48 dh_installdeb
49 dh_gencontrol
50 dh_md5sums
51 dh_builddeb
52
53 binary: binary-indep binary-arch
54 .PHONY: build clean binary-indep binary-arch binary install
1 %:
2 dh $@