r15343 - in /trunk/libhtml-wikiconverter-perl/debian: README.cdbs-tweaks cdbs/1/rules/buildcore.mk cdbs/1/rules/copyright-check.mk cdbs/1/rules/upstream-tarball.mk changelog control control.in copyright_hints rules watch

js at users.alioth.debian.org js at users.alioth.debian.org
Thu Feb 21 03:26:03 UTC 2008


Author: js
Date: Thu Feb 21 03:26:02 2008
New Revision: 15343

URL: http://svn.debian.org/wsvn/?sc=1&rev=15343
Log:
* Pass over maintenance of the package to the Perl group: Change Maintainer,
  and add myself to Uploaders.
* Change debian/watch to use svn-upgrade (not uupdate).
* Bump up standards-version to 3.7.3 (no changes needed).
* Update local cdbs snippets:
  + Major improvements to update-tarball (but none of them affecting this
    current packaging).
  + Major improvements to copyright-check, including new versioned
    build-dependency on devscripts.  Update debian/copyright_hints.
  + Drop buildcore.mk override.  Set DEB_AUTO_UPDATE_DEBIAN_CONTROL directly
    instead when needed.
  + Update debian/README.cdbs-tweaks to no longer mention buildcore.mk
    override.
* Semi-auto-update debian/control to apply changes contained in the above:
  DEB_AUTO_UPDATE_DEBIAN_CONTROL=yes fakeroot debian/rules clean

Removed:
    trunk/libhtml-wikiconverter-perl/debian/cdbs/1/rules/buildcore.mk
Modified:
    trunk/libhtml-wikiconverter-perl/debian/README.cdbs-tweaks
    trunk/libhtml-wikiconverter-perl/debian/cdbs/1/rules/copyright-check.mk
    trunk/libhtml-wikiconverter-perl/debian/cdbs/1/rules/upstream-tarball.mk
    trunk/libhtml-wikiconverter-perl/debian/changelog
    trunk/libhtml-wikiconverter-perl/debian/control
    trunk/libhtml-wikiconverter-perl/debian/control.in
    trunk/libhtml-wikiconverter-perl/debian/copyright_hints
    trunk/libhtml-wikiconverter-perl/debian/rules
    trunk/libhtml-wikiconverter-perl/debian/watch

Modified: trunk/libhtml-wikiconverter-perl/debian/README.cdbs-tweaks
URL: http://svn.debian.org/wsvn/trunk/libhtml-wikiconverter-perl/debian/README.cdbs-tweaks?rev=15343&op=diff
==============================================================================
--- trunk/libhtml-wikiconverter-perl/debian/README.cdbs-tweaks (original)
+++ trunk/libhtml-wikiconverter-perl/debian/README.cdbs-tweaks Thu Feb 21 03:26:02 2008
@@ -15,24 +15,6 @@
 is here: svn://svn.debian.org/build-common/people/js/overlay/
 
 Web access: http://svn.debian.org/wsvn/build-common/people/js/overlay/
-
-
-
-Improved support for cdbs-autoupdate
-------------------------------------
-
-CDBS invented a cool way to help keep build-dependencies up-to-date.
-
-It is disabled by default, as messing with debian/rules at build time
-violates Debian Policy: A build must not change conditions for building.
-
-Some consider this CDBS feature evil.
-
-Some enable the feature within a package, and gets smacked by ftp-master
-or others (there's even a lintian check to complain about it now).
-
-This tweak enables the feature when the build environment contains the
-non-default hint "cdbs-autoupdate" in the DEB_BUILD_OPTIONS variable.
 
 
 

Modified: trunk/libhtml-wikiconverter-perl/debian/cdbs/1/rules/copyright-check.mk
URL: http://svn.debian.org/wsvn/trunk/libhtml-wikiconverter-perl/debian/cdbs/1/rules/copyright-check.mk?rev=15343&op=diff
==============================================================================
--- trunk/libhtml-wikiconverter-perl/debian/cdbs/1/rules/copyright-check.mk (original)
+++ trunk/libhtml-wikiconverter-perl/debian/cdbs/1/rules/copyright-check.mk Thu Feb 21 03:26:02 2008
@@ -1,5 +1,5 @@
 # -*- mode: makefile; coding: utf-8 -*-
-# Copyright © 2005-2007 Jonas Smedegaard <dr at jones.dk>
+# Copyright © 2005-2008 Jonas Smedegaard <dr at jones.dk>
 # Description: Check for changes to copyright notices in source
 #
 # This program is free software; you can redistribute it and/or
@@ -17,10 +17,6 @@
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 # 02111-1307 USA.
 
-# TODO: Save scan as "file: match" (needs rewrite of main loop in perl)
-
-# TODO: Save scan as "file (license): match" (needs /usr/bin/licensecheck from kdesdk-scripts)
-
 _cdbs_scripts_path ?= /usr/lib/cdbs
 _cdbs_rules_path ?= /usr/share/cdbs/1/rules
 _cdbs_class_path ?= /usr/share/cdbs/1/class
@@ -30,28 +26,34 @@
 
 include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix)
 
-cdbs_copyright-check_find_opts := -not -regex 'debian/.*' -not -regex '\(.*/\)?config\.\(guess\|sub\|rpath\)\(\..*\)?'
-cdbs_copyright-check_egrep_opts := --text -rih '(copyright|\(c\) ).*[0-9]{4}'
+CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), devscripts (>= 2.10.7)
+
+# Single regular expression for files to include or ignore
+DEB_COPYRIGHT_CHECK_REGEX = .*
+DEB_COPYRIGHT_CHECK_IGNORE_REGEX = ^(debian/.*|(.*/)?config\.(guess|sub|rpath)(\..*)?)$
+
+# By default sort by license and then by filename
+DEB_COPYRIGHT_CHECK_SORT_OPTS = -t : -k2,1 -k1
 
 pre-build:: debian/stamp-copyright-check
 
 debian/stamp-copyright-check:
 	@echo 'Scanning upstream source for new/changed copyright notices (except debian subdir!)...'
-	find * -type f $(cdbs_copyright-check_find_opts) -exec cat '{}' ';' \
-		| tr '\r' '\n' \
-		| LC_ALL=C sed -e 's/[^[:print:]]//g' \
-		| egrep $(cdbs_copyright-check_egrep_opts) \
-		| sed -e 's/^[[:space:]*#]*//' -e 's/[[:space:]]*$$//' \
-		| LC_ALL=C sort -u \
+
+	licensecheck -c '$(DEB_COPYRIGHT_CHECK_REGEX)' -r --copyright -i '$(DEB_COPYRIGHT_CHECK_IGNORE_REGEX)' * \
+		| grep -v '^\(\|.*: \*No copyright\* \(GENERATED FILE\|UNKNOWN\)\)$$' - \
+		| sed 's/\s*(with incorrect FSF address)\s*$$//; s/\s(\+v\(.\+\) or later)/-\1\+/; s/^\s*\[Copyright:\s*/ \[/' \
+		| awk '/^[^ ]/{printf "%s",$$0;next}{print}' \
+		| LC_ALL=C sort $(DEB_COPYRIGHT_CHECK_SORT_OPTS) \
 		> debian/copyright_newhints
+	@patterncount="`cat debian/copyright_newhints | sed 's/^[^:]*://' | LANG=C sort -u | grep . -c -`"; \
+		echo "Found $$patterncount different copyright and licensing combinations."
 	@if [ ! -f debian/copyright_hints ]; then touch debian/copyright_hints; fi
-	@newstrings=`diff -u debian/copyright_hints debian/copyright_newhints | sed '1,2d' | egrep '^\+' | sed 's/^\+//'`; \
+	@newstrings=`diff -u debian/copyright_hints debian/copyright_newhints | sed '1,2d' | egrep '^\+' - | sed 's/^\+//'`; \
 		if [ -n "$$newstrings" ]; then \
-			echo "Error: The following new or changed copyright notices discovered:"; \
+			echo "ERROR: The following new or changed copyright notices discovered:"; \
+			echo; \
 			echo "$$newstrings"; \
-			echo "Trying to locate the files containing the new/changed copyright notices..."; \
-			echo "(Strings part of binary data you need to resolve yourself)"; \
-			find * -type f $(cdbs_copyright-check_find_opts) -exec grep -F -l -e "$$newstrings" '{}' ';'; \
 			echo; \
 			echo "To fix the situation please do the following:"; \
 			echo "  1) Investigate the above changes and update debian/copyright as needed"; \

Modified: trunk/libhtml-wikiconverter-perl/debian/cdbs/1/rules/upstream-tarball.mk
URL: http://svn.debian.org/wsvn/trunk/libhtml-wikiconverter-perl/debian/cdbs/1/rules/upstream-tarball.mk?rev=15343&op=diff
==============================================================================
--- trunk/libhtml-wikiconverter-perl/debian/cdbs/1/rules/upstream-tarball.mk (original)
+++ trunk/libhtml-wikiconverter-perl/debian/cdbs/1/rules/upstream-tarball.mk Thu Feb 21 03:26:02 2008
@@ -1,5 +1,5 @@
 # -*- mode: makefile; coding: utf-8 -*-
-# Copyright © 2007 Jonas Smedegaard <dr at jones.dk>
+# Copyright © 2007-2008 Jonas Smedegaard <dr at jones.dk>
 # Description: Convenience rules for dealing with upstream tarballs
 #
 # This program is free software; you can redistribute it and/or
@@ -30,26 +30,33 @@
 
 # Prefix for upstream location of all upstream tarballs (mandatory!)
 #DEB_UPSTREAM_URL = 
+
 DEB_UPSTREAM_PACKAGE = $(DEB_SOURCE_PACKAGE)
 DEB_UPSTREAM_TARBALL_VERSION = $(if $(strip $(DEB_UPSTREAM_REPACKAGE_EXCLUDE)),$(DEB_UPSTREAM_VERSION:$(DEB_UPSTREAM_REPACKAGE_DELIMITER)$(DEB_UPSTREAM_REPACKAGE_TAG)=),$(DEB_UPSTREAM_VERSION))
-DEB_UPSTREAM_TARBALL_BASENAME = $(DEB_UPSTREAM_PACKAGE)-$(DEB_UPSTREAM_TARBALL_VERSION)
 DEB_UPSTREAM_TARBALL_EXTENSION = tar.gz
 # Checksum to ensure integrity of downloadeds using get-orig-source (optional)
 #DEB_UPSTREAM_TARBALL_MD5 = 
 
 DEB_UPSTREAM_WORKDIR = ../tarballs
 
+# Perl regexp to change locally used string into that in upstream URL and srcdir
+#DEB_UPSTREAM_TARBALL_VERSION_MANGLE
+cdbs_upstream_tarball_version_mangled = $(if $(strip $(DEB_UPSTREAM_TARBALL_VERSION_MANGLE)),$(shell echo '$(DEB_UPSTREAM_TARBALL_VERSION)' | perl -pe '$(DEB_UPSTREAM_TARBALL_VERSION_MANGLE)'),$(DEB_UPSTREAM_TARBALL_VERSION))
+
+# Base filename (without extension) as used in upstream URL
+DEB_UPSTREAM_TARBALL_BASENAME = $(DEB_UPSTREAM_PACKAGE)-$(cdbs_upstream_tarball_version_mangled)
+
 # Base directory within tarball
-DEB_UPSTREAM_TARBALL_SRCDIR = $(DEB_UPSTREAM_PACKAGE)-$(DEB_UPSTREAM_TARBALL_VERSION)
+DEB_UPSTREAM_TARBALL_SRCDIR = $(DEB_UPSTREAM_PACKAGE)-$(cdbs_upstream_tarball_version_mangled)
 
 # Space-delimited list of directories and files to strip (optional)
 #DEB_UPSTREAM_REPACKAGE_EXCLUDE = CVS .cvsignore doc/rfc*.txt doc/draft*.txt
 DEB_UPSTREAM_REPACKAGE_TAG = dfsg
-DEB_UPSTREAM_REPACKAGE_DELIMITER = .
+DEB_UPSTREAM_REPACKAGE_DELIMITER = ~
 
 cdbs_upstream_tarball = $(DEB_UPSTREAM_TARBALL_BASENAME).$(DEB_UPSTREAM_TARBALL_EXTENSION)
 cdbs_upstream_local_tarball = $(DEB_SOURCE_PACKAGE)_$(DEB_UPSTREAM_TARBALL_VERSION).orig.$(if $(findstring $(DEB_UPSTREAM_TARBALL_EXTENSION),tgz),tar.gz,$(DEB_UPSTREAM_TARBALL_EXTENSION))
-cdbs_upstream_repackaged_tarball = $(DEB_SOURCE_PACKAGE)_$(DEB_UPSTREAM_TARBALL_VERSION)$(DEB_UPSTREAM_REPACKAGE_DELIMITER)$(DEB_UPSTREAM_REPACKAGE_TAG).orig.tar.gz
+cdbs_upstream_repackaged_basename = $(DEB_SOURCE_PACKAGE)_$(DEB_UPSTREAM_TARBALL_VERSION)$(DEB_UPSTREAM_REPACKAGE_DELIMITER)$(DEB_UPSTREAM_REPACKAGE_TAG).orig
 cdbs_upstream_uncompressed_tarball = $(DEB_SOURCE_PACKAGE)_$(DEB_UPSTREAM_TARBALL_VERSION).orig.tar
 
 # # These variables are deprecated
@@ -90,19 +97,35 @@
 		echo "Upstream tarball NOT trusted (current md5sum is $$md5current)!" ; \
 	fi
 
-	@case "$(cdbs_upstream_local_tarball)" in \
+# TODO: Rewrite using make variables like cdbs_upstream_unpack_cmd and
+# DEB_UPSTREAM_SUPPORTED_COMPRESSIONS (recent dpkg supports bz2)
+	@untar="tar -x -C"; \
+	case "$(cdbs_upstream_local_tarball)" in \
 	    *.tar.gz)  unpack="gunzip -c";; \
 	    *.tar.bz2) unpack="bunzip2 -c";    uncompress="bunzip2";; \
 	    *.tar.Z)   unpack="uncompress -c"; uncompress="uncompress";; \
+	    *.zip)     unpack="unzip -q";      uncompress="false";       untar="-d"; nopipe="true";; \
 	    *.tar)     unpack="cat";           uncompress="true";; \
 	    *) echo "Unknown extension for upstream tarball $(cdbs_upstream_local_tarball)"; false;; \
 	esac && \
-	if [ -n "$(strip $(DEB_UPSTREAM_REPACKAGE_EXCLUDE))" ]; then \
+	if [ -n "$(strip $(DEB_UPSTREAM_REPACKAGE_EXCLUDE))" ] || [ "$$uncompress" = "false" ]; then \
 		echo "Repackaging tarball ..." && \
 		mkdir -p "$(DEB_UPSTREAM_WORKDIR)/$(DEB_UPSTREAM_REPACKAGE_TAG)" && \
-		$$unpack "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_local_tarball)" \
-			| tar -x -C "$(DEB_UPSTREAM_WORKDIR)/$(DEB_UPSTREAM_REPACKAGE_TAG)" $(patsubst %,--exclude='%',$(DEB_UPSTREAM_REPACKAGE_EXCLUDE)) && \
-		GZIP=-9 tar -b1 -czf "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_repackaged_tarball)" -C "$(DEB_UPSTREAM_WORKDIR)/$(DEB_UPSTREAM_REPACKAGE_TAG)" $(DEB_UPSTREAM_TARBALL_SRCDIR) && \
+		if [ -n "$$nopipe" ]; then \
+			$$unpack "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_local_tarball)" \
+				$$untar "$(DEB_UPSTREAM_WORKDIR)/$(DEB_UPSTREAM_REPACKAGE_TAG)" $(patsubst %,--exclude='%',$(DEB_UPSTREAM_REPACKAGE_EXCLUDE)); \
+		else \
+			$$unpack "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_local_tarball)" \
+				| $$untar "$(DEB_UPSTREAM_WORKDIR)/$(DEB_UPSTREAM_REPACKAGE_TAG)" $(patsubst %,--exclude='%',$(DEB_UPSTREAM_REPACKAGE_EXCLUDE)); \
+		fi && \
+		if [ "$(DEB_UPSTREAM_TARBALL_SRCDIR)" != "$(cdbs_upstream_repackaged_basename)" ]; then \
+			mv -T "$(DEB_UPSTREAM_WORKDIR)/$(DEB_UPSTREAM_REPACKAGE_TAG)/$(DEB_UPSTREAM_TARBALL_SRCDIR)" "$(DEB_UPSTREAM_WORKDIR)/$(DEB_UPSTREAM_REPACKAGE_TAG)/$(cdbs_upstream_repackaged_basename)"; \
+		fi && \
+		if [ -n "$(strip $(DEB_UPSTREAM_REPACKAGE_EXCLUDE))" ]; then \
+			GZIP=-9 tar -b1 -czf "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_repackaged_basename).tar.gz" -C "$(DEB_UPSTREAM_WORKDIR)/$(DEB_UPSTREAM_REPACKAGE_TAG)" "$(cdbs_upstream_repackaged_basename)"; \
+		else \
+			GZIP=-9 tar -b1 -czf "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_uncompressed_tarball).gz" -C "$(DEB_UPSTREAM_WORKDIR)/$(DEB_UPSTREAM_REPACKAGE_TAG)" "$(cdbs_upstream_repackaged_basename)"; \
+		fi && \
 		echo "Cleaning up" && \
 		rm -rf "$(DEB_UPSTREAM_WORKDIR)/$(DEB_UPSTREAM_REPACKAGE_TAG)"; \
 	elif [ -n "$$uncompress" ]; then \

Modified: trunk/libhtml-wikiconverter-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libhtml-wikiconverter-perl/debian/changelog?rev=15343&op=diff
==============================================================================
--- trunk/libhtml-wikiconverter-perl/debian/changelog (original)
+++ trunk/libhtml-wikiconverter-perl/debian/changelog Thu Feb 21 03:26:02 2008
@@ -1,3 +1,23 @@
+libhtml-wikiconverter-perl (0.61-2) unstable; urgency=low
+
+  * Pass over maintenance of the package to the Perl group: Change Maintainer,
+    and add myself to Uploaders.
+  * Change debian/watch to use svn-upgrade (not uupdate).
+  * Bump up standards-version to 3.7.3 (no changes needed).
+  * Update local cdbs snippets:
+    + Major improvements to update-tarball (but none of them affecting this
+      current packaging).
+    + Major improvements to copyright-check, including new versioned
+      build-dependency on devscripts.  Update debian/copyright_hints.
+    + Drop buildcore.mk override.  Set DEB_AUTO_UPDATE_DEBIAN_CONTROL directly
+      instead when needed.
+    + Update debian/README.cdbs-tweaks to no longer mention buildcore.mk
+      override.
+  * Semi-auto-update debian/control to apply changes contained in the above:
+    DEB_AUTO_UPDATE_DEBIAN_CONTROL=yes fakeroot debian/rules clean
+
+ -- Jonas Smedegaard <dr at jones.dk>  Thu, 21 Feb 2008 04:25:56 +0100
+
 libhtml-wikiconverter-perl (0.61-1) unstable; urgency=low
 
   * New upstream source.

Modified: trunk/libhtml-wikiconverter-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libhtml-wikiconverter-perl/debian/control?rev=15343&op=diff
==============================================================================
--- trunk/libhtml-wikiconverter-perl/debian/control (original)
+++ trunk/libhtml-wikiconverter-perl/debian/control Thu Feb 21 03:26:02 2008
@@ -1,13 +1,14 @@
 Source: libhtml-wikiconverter-perl
 Section: perl
 Priority: optional
-Build-Depends: cdbs (>= 0.4.39), quilt, patchutils (>= 0.2.25), dh-buildinfo, debhelper (>= 5), 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)
+Build-Depends: cdbs (>= 0.4.39), devscripts (>= 2.10.7), quilt, patchutils (>= 0.2.25), dh-buildinfo, debhelper (>= 5), 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)
 Build-conflicts: libwww-perl
-Maintainer: Jonas Smedegaard <dr at jones.dk>
-Standards-Version: 3.7.2
-Homepage: http://diberri.dyndns.org/wikipedia/html2wiki/
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Jonas Smedegaard <dr at jones.dk>
+Standards-Version: 3.7.3
 Vcs-Svn: svn://svn.debian.org/collab-maint/deb-maint/libhtml-wikiconverter-perl/trunk
 Vcs-Browser: http://svn.debian.org/wsvn/collab-maint/deb-maint/libhtml-wikiconverter-perl/trunk
+Homepage: http://diberri.dyndns.org/wikipedia/html2wiki/
 
 Package: libhtml-wikiconverter-perl
 Architecture: all

Modified: trunk/libhtml-wikiconverter-perl/debian/control.in
URL: http://svn.debian.org/wsvn/trunk/libhtml-wikiconverter-perl/debian/control.in?rev=15343&op=diff
==============================================================================
--- trunk/libhtml-wikiconverter-perl/debian/control.in (original)
+++ trunk/libhtml-wikiconverter-perl/debian/control.in Thu Feb 21 03:26:02 2008
@@ -3,11 +3,12 @@
 Priority: optional
 Build-Depends: @cdbs@
 Build-conflicts: libwww-perl
-Maintainer: Jonas Smedegaard <dr at jones.dk>
-Standards-Version: 3.7.2
-Homepage: http://diberri.dyndns.org/wikipedia/html2wiki/
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Jonas Smedegaard <dr at jones.dk>
+Standards-Version: 3.7.3
 Vcs-Svn: svn://svn.debian.org/collab-maint/deb-maint/libhtml-wikiconverter-perl/trunk
 Vcs-Browser: http://svn.debian.org/wsvn/collab-maint/deb-maint/libhtml-wikiconverter-perl/trunk
+Homepage: http://diberri.dyndns.org/wikipedia/html2wiki/
 
 Package: libhtml-wikiconverter-perl
 Architecture: all

Modified: trunk/libhtml-wikiconverter-perl/debian/copyright_hints
URL: http://svn.debian.org/wsvn/trunk/libhtml-wikiconverter-perl/debian/copyright_hints?rev=15343&op=diff
==============================================================================
--- trunk/libhtml-wikiconverter-perl/debian/copyright_hints (original)
+++ trunk/libhtml-wikiconverter-perl/debian/copyright_hints Thu Feb 21 03:26:02 2008
@@ -1,3 +1,1 @@
-Copyright (C) 1989, 1991 Free Software Foundation, Inc.
-Copyright (c) 2004-2006 David J. Iberri <diberri at cpan.org>
-Copyright 2006 David J. Iberri, all rights reserved.
+LICENSE: UNKNOWN [1989, 1991 Free Software Foundation, Inc / the software, and]

Modified: trunk/libhtml-wikiconverter-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libhtml-wikiconverter-perl/debian/rules?rev=15343&op=diff
==============================================================================
--- trunk/libhtml-wikiconverter-perl/debian/rules (original)
+++ trunk/libhtml-wikiconverter-perl/debian/rules Thu Feb 21 03:26:02 2008
@@ -1,9 +1,8 @@
 #!/usr/bin/make -f
 # -*- mode: makefile; coding: utf-8 -*-
-# Copyright © 2007 Jonas Smedegaard <dr at jones.dk>
+# Copyright © 2007-2008 Jonas Smedegaard <dr at jones.dk>
 
 # See debian/README.cdbs-tweaks for info on local overrides
-include debian/cdbs/1/rules/buildcore.mk
 include debian/cdbs/1/rules/upstream-tarball.mk
 include debian/cdbs/1/rules/copyright-check.mk
 include /usr/share/cdbs/1/rules/patchsys-quilt.mk
@@ -17,14 +16,14 @@
 DEB_UPSTREAM_TARBALL_MD5 = ded45e93a28f6916b06859f7b31045e8
 
 # Needed both by upstream build process and at runtime
-#FIXME: Automatically include these to debian/control Depends: line
+#TODO: Automatically include these to debian/control Depends: line
 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)
 
 # Needed by upstream build process
 CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), $(dependencies), libtest-simple-perl
 # Additional undocumented upstream needs
 #CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), libtest-pod-perl (>= 1.14), libtest-pod-coverage-perl (>= 1.04), libwww-perl
-#FIXME: build tests fail when libwww-perl installed
+#TODO: Solve building tests while libwww-perl is installed
 CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), libtest-pod-perl (>= 1.14), libtest-pod-coverage-perl (>= 1.04)
 
 # Fix double cdbs build-dependencies

Modified: trunk/libhtml-wikiconverter-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libhtml-wikiconverter-perl/debian/watch?rev=15343&op=diff
==============================================================================
--- trunk/libhtml-wikiconverter-perl/debian/watch (original)
+++ trunk/libhtml-wikiconverter-perl/debian/watch Thu Feb 21 03:26:02 2008
@@ -1,3 +1,3 @@
 # Run the "uscan" command to check for upstream updates and more.
 version=3
-http://www.cpan.org/modules/by-module/HTML/HTML-WikiConverter-([0-9\.]+).tar.gz debian uupdate
+http://www.cpan.org/modules/by-module/HTML/HTML-WikiConverter-([0-9\.]+).tar.gz debian svn-upgrade




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