r17835 - in /trunk/libunix-syslog-perl/debian: cdbs/1/rules/buildcore.mk cdbs/1/rules/buildinfo.mk cdbs/1/rules/copyright-check.mk cdbs/1/rules/upstream-tarball.mk changelog control control.in copyright copyright_hints rules watch

js at users.alioth.debian.org js at users.alioth.debian.org
Wed Mar 19 01:42:06 UTC 2008


Author: js
Date: Wed Mar 19 01:42:05 2008
New Revision: 17835

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=17835
Log:
* Update debian/copyright: Debian Perl Team holds copyright for Debian
  packaging in 2008.
* Pass over maintenance of the package to the Perl group: Change Maintainer,
  and add myself to Uploaders.
* Update debian/watch:
  + Use svn-upgrade (not uupdate).
  + Use by-dist upstream URL.
* 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/libunix-syslog-perl/debian/cdbs/1/rules/buildcore.mk
Modified:
    trunk/libunix-syslog-perl/debian/cdbs/1/rules/buildinfo.mk
    trunk/libunix-syslog-perl/debian/cdbs/1/rules/copyright-check.mk
    trunk/libunix-syslog-perl/debian/cdbs/1/rules/upstream-tarball.mk
    trunk/libunix-syslog-perl/debian/changelog
    trunk/libunix-syslog-perl/debian/control
    trunk/libunix-syslog-perl/debian/control.in
    trunk/libunix-syslog-perl/debian/copyright
    trunk/libunix-syslog-perl/debian/copyright_hints
    trunk/libunix-syslog-perl/debian/rules
    trunk/libunix-syslog-perl/debian/watch

Modified: trunk/libunix-syslog-perl/debian/cdbs/1/rules/buildinfo.mk
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libunix-syslog-perl/debian/cdbs/1/rules/buildinfo.mk?rev=17835&op=diff
==============================================================================
--- trunk/libunix-syslog-perl/debian/cdbs/1/rules/buildinfo.mk (original)
+++ trunk/libunix-syslog-perl/debian/cdbs/1/rules/buildinfo.mk Wed Mar 19 01:42:05 2008
@@ -1,5 +1,5 @@
 # -*- mode: makefile; coding: utf-8 -*-
-# Copyright © 2004-2005 Jonas Smedegaard <dr at jones.dk>
+# Copyright © 2004-2006 Jonas Smedegaard <dr at jones.dk>
 # Description: Generate and include build information
 #
 # This program is free software; you can redistribute it and/or
@@ -17,15 +17,12 @@
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 # 02111-1307 USA.
 
-
-ifndef _cdbs_bootstrap
 _cdbs_scripts_path ?= /usr/lib/cdbs
 _cdbs_rules_path ?= /usr/share/cdbs/1/rules
 _cdbs_class_path ?= /usr/share/cdbs/1/class
-endif
 
 ifndef _cdbs_rules_buildinfo
-_cdbs_rules_buildinfo := 1
+_cdbs_rules_buildinfo = 1
 
 include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix)
 
@@ -35,6 +32,7 @@
 
 debian/stamp-buildinfo:
 	dh_buildinfo
+	touch debian/stamp-buildinfo
 
 clean::
 	rm -f debian/stamp-buildinfo

Modified: trunk/libunix-syslog-perl/debian/cdbs/1/rules/copyright-check.mk
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libunix-syslog-perl/debian/cdbs/1/rules/copyright-check.mk?rev=17835&op=diff
==============================================================================
--- trunk/libunix-syslog-perl/debian/cdbs/1/rules/copyright-check.mk (original)
+++ trunk/libunix-syslog-perl/debian/cdbs/1/rules/copyright-check.mk Wed Mar 19 01:42:05 2008
@@ -1,5 +1,5 @@
 # -*- mode: makefile; coding: utf-8 -*-
-# Copyright © 2005-2006 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,43 +17,77 @@
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 # 02111-1307 USA.
 
-# TODO: Depend on kdesdk-scripts and use /usr/bin/licensecheck
-
-ifndef _cdbs_bootstrap
 _cdbs_scripts_path ?= /usr/lib/cdbs
 _cdbs_rules_path ?= /usr/share/cdbs/1/rules
 _cdbs_class_path ?= /usr/share/cdbs/1/class
-endif
 
 ifndef _cdbs_rules_copyright-check
 _cdbs_rules_copyright-check := 1
 
 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)
 
-clean::
+# Single regular expression for files to include or ignore
+DEB_COPYRIGHT_CHECK_REGEX = .*
+DEB_COPYRIGHT_CHECK_IGNORE_REGEX = ^(debian/.*|(.*/)?config\.(guess|sub|rpath)(\..*)?)$
+
+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 \
+
+# Perl in shell in make requires extra care:
+#  * Single-quoting ('...') protects against shell expansion
+#  * Double-dollar ($$) expands to plain dollar ($) in make
+	licensecheck -c '$(DEB_COPYRIGHT_CHECK_REGEX)' -r --copyright -i '$(DEB_COPYRIGHT_CHECK_IGNORE_REGEX)' * \
+		| LC_ALL=C perl -e \
+	'$$n=0; while (<>) {'\
+	'	if (/^([^:\s][^:]+):[\s]+(\S.*?)\s*$$/) {'\
+	'		$$files[$$n]{name}=$$1;'\
+	'		$$files[$$n]{license}=$$2;'\
+	'	};'\
+	'	if (/^\s*\[Copyright:\s*(\S.*?)\s*\]/) {'\
+	'		$$files[$$n]{copyright}=$$1;'\
+	'	};'\
+	'	/^$$/ and $$n++;'\
+	'};'\
+	'foreach $$file (@files) {'\
+	'	$$file->{license} =~ s/\s*\(with incorrect FSF address\)//;'\
+	'	$$file->{license} =~ s/\s+\(v([^)]+) or later\)/-$$1+/;'\
+	'	$$file->{copyright} =~ s/(?<=(\b\d{4}))(?{$$y=$$^N})\s*[,-]\s*((??{$$y+1}))\b/-$$2/g;'\
+	'	$$file->{copyright} =~ s/(?<=\b\d{4})\s*-\s*\d{4}(?=\s*-\s*(\d{4})\b)//g;'\
+	'	$$pattern = "$$file->{license} [$$file->{copyright}]";'\
+	'	push @{ $$patternfiles{"$$pattern"} }, $$file->{name};'\
+	'};'\
+	'foreach $$pattern ( sort {'\
+	'			@{$$patternfiles{$$b}} <=> @{$$patternfiles{$$a}}'\
+	'			||'\
+	'			$$a cmp $$b'\
+	'		} keys %patternfiles ) {'\
+	'	print "$$pattern: ", join(", ", sort @{ $$patternfiles{$$pattern} }), "\n";'\
+	'};'\
 		> 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
-	@echo "diff --normal debian/copyright_hints debian/copyright_newhints | egrep '^>'"
-	@diff --normal debian/copyright_hints debian/copyright_newhints | egrep '^>'; \
-		if [ "$$?" -eq "0" ]; then \
-			echo "New or changed copyright notices discovered! Do this:"; \
-			echo "  1) Search source for each of the above lines ('grep -r' is your friend)"; \
-			echo "  2) Update debian/copyright as needed"; \
-			echo "  3) Replace debian/copyright_hints with debian/copyright_newhints"; \
+	@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; \
+			echo "$$newstrings"; \
+			echo; \
+			echo "To fix the situation please do the following:"; \
+			echo "  1) Investigate the above changes and update debian/copyright as needed"; \
+			echo "  2) Replace debian/copyright_hints with debian/copyright_newhints"; \
 			exit 1; \
 		fi
 	
 	@echo 'No new copyright notices found - assuming no news is good news...'
 	rm -f debian/copyright_newhints
+	touch $@
+
+clean::
+	rm -f debian/stamp-copyright-check
 
 endif

Modified: trunk/libunix-syslog-perl/debian/cdbs/1/rules/upstream-tarball.mk
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libunix-syslog-perl/debian/cdbs/1/rules/upstream-tarball.mk?rev=17835&op=diff
==============================================================================
--- trunk/libunix-syslog-perl/debian/cdbs/1/rules/upstream-tarball.mk (original)
+++ trunk/libunix-syslog-perl/debian/cdbs/1/rules/upstream-tarball.mk Wed Mar 19 01:42:05 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,25 +97,41 @@
 		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 \
 		echo "Recompressing tarball ..." && \
 		$$uncompress "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_local_tarball)"; \
-		bzip -9 "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_uncompressed_tarball)"; \
+		gzip -9 "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_uncompressed_tarball)"; \
 	fi
 
 DEB_PHONY_RULES += print-version get-orig-source

Modified: trunk/libunix-syslog-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libunix-syslog-perl/debian/changelog?rev=17835&op=diff
==============================================================================
--- trunk/libunix-syslog-perl/debian/changelog (original)
+++ trunk/libunix-syslog-perl/debian/changelog Wed Mar 19 01:42:05 2008
@@ -1,8 +1,27 @@
-libunix-syslog-perl (1.0-2) UNRELEASED; urgency=low
+libunix-syslog-perl (1.0-2) unstable; urgency=low
 
   * Fix multi-lined copyright microformat in debian/copyright.
+  * Update debian/copyright: Debian Perl Team holds copyright for Debian
+    packaging in 2008.
+  * Pass over maintenance of the package to the Perl group: Change Maintainer,
+    and add myself to Uploaders.
+  * Update debian/watch:
+    + Use svn-upgrade (not uupdate).
+    + Use by-dist upstream URL.
+  * 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>  Fri, 12 Oct 2007 01:15:59 +0200
+ -- Jonas Smedegaard <dr at jones.dk>  Wed, 19 Mar 2008 02:41:25 +0100
 
 libunix-syslog-perl (1.0-1) unstable; urgency=low
 

Modified: trunk/libunix-syslog-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libunix-syslog-perl/debian/control?rev=17835&op=diff
==============================================================================
--- trunk/libunix-syslog-perl/debian/control (original)
+++ trunk/libunix-syslog-perl/debian/control Wed Mar 19 01:42:05 2008
@@ -1,9 +1,10 @@
 Source: libunix-syslog-perl
 Section: perl
 Priority: optional
-Build-Depends: cdbs (>= 0.4.39), dh-buildinfo, debhelper (>= 4.2.0), perl (>= 5.6.0-16)
-Maintainer: Jonas Smedegaard <dr at jones.dk>
-Standards-Version: 3.7.2
+Build-Depends: cdbs (>= 0.4.39), devscripts (>= 2.10.7), dh-buildinfo, debhelper (>= 4.2.0), perl (>= 5.6.0-16)
+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/libunix-syslog-perl/trunk
 Vcs-Browser: http://svn.debian.org/wsvn/collab-maint/deb-maint/libunix-syslog-perl/trunk
 Homepage: http://search.cpan.org/dist/Unix-Syslog/

Modified: trunk/libunix-syslog-perl/debian/control.in
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libunix-syslog-perl/debian/control.in?rev=17835&op=diff
==============================================================================
--- trunk/libunix-syslog-perl/debian/control.in (original)
+++ trunk/libunix-syslog-perl/debian/control.in Wed Mar 19 01:42:05 2008
@@ -2,8 +2,9 @@
 Section: perl
 Priority: optional
 Build-Depends: @cdbs@
-Maintainer: Jonas Smedegaard <dr at jones.dk>
-Standards-Version: 3.7.2
+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/libunix-syslog-perl/trunk
 Vcs-Browser: http://svn.debian.org/wsvn/collab-maint/deb-maint/libunix-syslog-perl/trunk
 Homepage: http://search.cpan.org/dist/Unix-Syslog/

Modified: trunk/libunix-syslog-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libunix-syslog-perl/debian/copyright?rev=17835&op=diff
==============================================================================
--- trunk/libunix-syslog-perl/debian/copyright (original)
+++ trunk/libunix-syslog-perl/debian/copyright Wed Mar 19 01:42:05 2008
@@ -1,4 +1,4 @@
-This is Unix::Syslog Perl module package for Debian GNU systems.
+This is Unix::Syslog Perl module packaged for Debian GNU systems.
 
 Upstream author: Marcus Harnisch <marcus.harnisch at gmx.net>
 
@@ -7,6 +7,7 @@
 Files: debian/*
 Copyright: © 2001-2002 Graeme Mathieson <mathie at wossname.org.uk>
 	   © 2003-2007 Jonas Smedegaard <dr at jones.dk>
+	   © 2008 Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 License: The Debian packaging information is under the GPL, version 2 or
 	 later
 

Modified: trunk/libunix-syslog-perl/debian/copyright_hints
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libunix-syslog-perl/debian/copyright_hints?rev=17835&op=diff
==============================================================================
--- trunk/libunix-syslog-perl/debian/copyright_hints (original)
+++ trunk/libunix-syslog-perl/debian/copyright_hints Wed Mar 19 01:42:05 2008
@@ -1,3 +1,4 @@
-Copyright (c) 1999,2000,2001,2002,2007 Marcus Harnisch
-Copyright (c) 1999,2000,2001,2002,2007 Marcus Harnisch <marcus.harnisch at gmx.net>
-Copyright (c) 2000-2006, The Perl Foundation.
+*No copyright* UNKNOWN []: Changes, MANIFEST, META.yml, Makefile.PL, test.pl
+UNKNOWN [1999-2002,2007 Marcus Harnisch <marcus.harnisch at gmx.net>]: Syslog.pm, Syslog.xs
+UNKNOWN [and distribution / 1999-2002,2007 Marcus Harnisch]: README
+UNKNOWN [notice for the entire Package / 2000-2006, The Perl Foundation / Holder / Holder of a given Package. If the / Holder's / Holder maintains some artistic / Holder" means the individual(s) or organization(s) / Holder and seek / Holder, and derivatives of that collection and/or of]: Artistic

Modified: trunk/libunix-syslog-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libunix-syslog-perl/debian/rules?rev=17835&op=diff
==============================================================================
--- trunk/libunix-syslog-perl/debian/rules (original)
+++ trunk/libunix-syslog-perl/debian/rules Wed Mar 19 01:42:05 2008
@@ -1,9 +1,8 @@
 #!/usr/bin/make -f
 # -*- mode: makefile; coding: utf-8 -*-
-# Copyright © 2003-2007 Jonas Smedegaard <dr at jones.dk>
+# Copyright © 2003-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 debian/cdbs/1/rules/buildinfo.mk

Modified: trunk/libunix-syslog-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libunix-syslog-perl/debian/watch?rev=17835&op=diff
==============================================================================
--- trunk/libunix-syslog-perl/debian/watch (original)
+++ trunk/libunix-syslog-perl/debian/watch Wed Mar 19 01:42:05 2008
@@ -1,4 +1,4 @@
 # Run the "uscan" command to check for upstream updates and more.
 version=3
-http://www.cpan.org/modules/by-module/Unix/Unix-Syslog-([\d+\.]+)\.tar\.gz debian uupdate
-http://www.cpan.org/modules/by-authors/id/M/MH/MHARNISCH/Unix-Syslog-([\d+\.]+)\.tar\.gz debian uupdate
+http://search.cpan.org/dist/Unix-Syslog/ \
+	.*/Unix-Syslog-(\d.+).tar.gz debian svn-upgrade




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