Codebase list libhtml-wikiconverter-perl / 87477de
convert package to debhelper7 Krzysztof Krzyzaniak 15 years ago
2 changed file(s) with 29 addition(s) and 28 deletion(s). Raw diff Collapse all Expand all
00 Source: libhtml-wikiconverter-perl
11 Section: perl
22 Priority: optional
3 Build-Depends: cdbs (>= 0.4.39), devscripts (>= 2.10.7), quilt, patchutils (>= 0.2.25), dh-buildinfo, debhelper (>= 5.0.44), perl (>= 5.6.0-16), libhtml-tree-perl (>= 3.18), libcss-perl, liburi-perl (>= 1.35), libhtml-parser-perl, libhtml-tagset-perl, libparams-validate-perl (>= 0.77), libclass-data-accessor-perl (>= 0.02), libtest-simple-perl, libtest-pod-perl (>= 1.14), libtest-pod-coverage-perl (>= 1.04)
4 Build-conflicts: libwww-perl
3 Build-Depends: quilt, debhelper (>= 7.2), perl (>= 5.6.0-16),
4 libhtml-tree-perl (>= 3.18), libcss-perl, liburi-perl (>= 1.35),
5 libhtml-parser-perl, libhtml-tagset-perl, libparams-validate-perl (>= 0.77),
6 libclass-data-accessor-perl (>= 0.02), libtest-simple-perl,
7 libtest-pod-perl (>= 1.14), libtest-pod-coverage-perl (>= 1.04)
58 Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
69 Uploaders: Jonas Smedegaard <dr@jones.dk>,
7 Rene Mayorga <rmayorga@debian.org>,
10 Rene Mayorga <rmayorga@debian.org.sv>,
811 Krzysztof Krzyżaniak (eloy) <eloy@debian.org>
912 Standards-Version: 3.8.1
1013 Vcs-Svn: svn://svn.debian.org/collab-maint/deb-maint/libhtml-wikiconverter-perl/trunk
1316
1417 Package: libhtml-wikiconverter-perl
1518 Architecture: all
16 Depends: ${perl:Depends}, ${misc:Depends}, libhtml-tree-perl (>= 3.18), libcss-perl, liburi-perl (>= 1.35), libhtml-parser-perl, libhtml-tagset-perl, libparams-validate-perl (>= 0.77), libclass-data-accessor-perl (>= 0.02)
19 Depends: ${perl:Depends}, ${misc:Depends}, libhtml-tree-perl (>= 3.18),
20 libcss-perl, liburi-perl (>= 1.35), libhtml-parser-perl, libhtml-tagset-perl,
21 libparams-validate-perl (>= 0.77), libclass-data-accessor-perl (>= 0.02)
1722 Recommends: libhtml-wikiconverter-dialect, libfile-slurp-perl, libhtml-wikiconverter-dokuwiki-perl, libhtml-wikiconverter-kwiki-perl, libhtml-wikiconverter-mediawiki-perl, libhtml-wikiconverter-moinmoin-perl, libhtml-wikiconverter-oddmuse-perl, libhtml-wikiconverter-phpwiki-perl, libhtml-wikiconverter-pmwiki-perl, libhtml-wikiconverter-snipsnap-perl, libhtml-wikiconverter-tikiwiki-perl, libhtml-wikiconverter-usemod-perl, libhtml-wikiconverter-wakkawiki-perl, libhtml-wikiconverter-wikkawiki-perl
1823 Description: An HTML to wiki markup converter
1924 HTML::WikiConverter is an HTML to wiki converter. It can convert HTML
2126 .
2227 This package contains the core modules. You will need at a dialect
2328 package too for this package to be of any real use.
29 Build-conflicts: libwww-perl
00 #!/usr/bin/make -f
1 # -*- mode: makefile; coding: utf-8 -*-
2 # Copyright © 2007-2008 Jonas Smedegaard <dr@jones.dk>
31
4 # See debian/README.cdbs-tweaks for info on local overrides
5 include debian/cdbs/1/rules/upstream-tarball.mk
6 include debian/cdbs/1/rules/copyright-check.mk
7 include /usr/share/cdbs/1/rules/patchsys-quilt.mk
8 include debian/cdbs/1/rules/buildinfo.mk
9 include /usr/share/cdbs/1/rules/debhelper.mk
10 # Put perlmodule.mk after debhelper.mk to dh_clean temp files not in MANIFEST
11 include /usr/share/cdbs/1/class/perlmodule.mk
2 include /usr/share/quilt/quilt.make
123
13 DEB_UPSTREAM_PACKAGE = HTML-WikiConverter
14 DEB_UPSTREAM_URL = http://www.cpan.org/modules/by-module/HTML
15 DEB_UPSTREAM_TARBALL_MD5 = cde89dabd0609ba25e44cae96e761bf5
4 build: build-stamp
5 build-stamp:
6 dh build
7 touch $@
168
17 # Needed both by upstream build process and at runtime
18 #TODO: Automatically include these to debian/control Depends: line
19 dependencies = libhtml-tree-perl (>= 3.18), libcss-perl, liburi-perl (>= 1.35), libhtml-parser-perl, libhtml-tagset-perl, libparams-validate-perl (>= 0.77), libclass-data-accessor-perl (>= 0.02)
9 clean:
10 dh $@
2011
21 # Needed by upstream build process
22 CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), $(dependencies), libtest-simple-perl
23 # Additional undocumented upstream needs
24 #CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), libtest-pod-perl (>= 1.14), libtest-pod-coverage-perl (>= 1.04), libwww-perl
25 #TODO: Solve building tests while libwww-perl is installed
26 CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), libtest-pod-perl (>= 1.14), libtest-pod-coverage-perl (>= 1.04)
12 install: install-stamp
13 install-stamp: build-stamp
14 dh install
15 touch $@
2716
28 # Fix double cdbs build-dependencies
29 CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bcdbs (>= 0.4.39)/ s/ *,* *\bcdbs (>= \(0.4.23-1.1\|0.4.27\)) *,* */, /g' -e 's/^ *, *//' -e 's/ *, *$$//')
17 binary-arch:
18
19 binary-indep: install
20 dh $@
21
22 binary: binary-arch binary-indep
23
24 .PHONY: binary binary-arch binary-indep install clean build