r22161 - in /trunk/libcgi-formbuilder-perl/debian: README.cdbs-tweaks cdbs/1/rules/copyright-check.mk cdbs/1/rules/upstream-tarball.mk changelog compat control copyright_hints

js at users.alioth.debian.org js at users.alioth.debian.org
Wed Jun 25 23:23:23 UTC 2008


Author: js
Date: Wed Jun 25 23:23:23 2008
New Revision: 22161

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=22161
Log:
* Update local cdbs snippets:
  + Update copyright-check.mk to parse licensecheck output using perl:
    + No longer randomly drops newlines
    + More compact hint file (and ordered more like wiki-proposed new
      copyright syntax).
    + No longer ignore files without copyright.
  + Drop wget options broken with recent versions of wget in
    update-tarball.mk.
  + Relax copyright-check to only warn by default.  Closes:
    bug#487055, thanks to Lucas Nussbaum.
  + Cosmetic updates to README.cdbs-tweaks.
* Update debian/copyright-hints.
* Bump debhelper compatibility level to 6.
* Semi-auto-update debian/control to update build-dependencies:
    DEB_AUTO_UPDATE_DEBIAN_CONTROL=yes fakeroot debian/rules clean

Modified:
    trunk/libcgi-formbuilder-perl/debian/README.cdbs-tweaks
    trunk/libcgi-formbuilder-perl/debian/cdbs/1/rules/copyright-check.mk
    trunk/libcgi-formbuilder-perl/debian/cdbs/1/rules/upstream-tarball.mk
    trunk/libcgi-formbuilder-perl/debian/changelog
    trunk/libcgi-formbuilder-perl/debian/compat
    trunk/libcgi-formbuilder-perl/debian/control
    trunk/libcgi-formbuilder-perl/debian/copyright_hints

Modified: trunk/libcgi-formbuilder-perl/debian/README.cdbs-tweaks
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-formbuilder-perl/debian/README.cdbs-tweaks?rev=22161&op=diff
==============================================================================
--- trunk/libcgi-formbuilder-perl/debian/README.cdbs-tweaks (original)
+++ trunk/libcgi-formbuilder-perl/debian/README.cdbs-tweaks Wed Jun 25 23:23:23 2008
@@ -30,14 +30,16 @@
 
 Create and clean builddir _after_ resolving per-package DEB_BUILDDIR.
 
-Honour per-package DEB_BUILDDIR in makefile class.
+Honour per-package DEB_BUILDDIR in makefile and autotools classes.
+
+Support multiple build flavors in makefile and autotools classes.
 
 
 
 Various improvements to python-distutils class
 ----------------------------------------------
 
-Use full path to python interpreter (Python Policy section 1.3.2).
+Use full path to Python interpreter (Python Policy section 1.3.2).
 
 Add CDBS_BUILD_DEPENDS to old policy method.
 
@@ -50,6 +52,20 @@
 Unify install path using new DEB_PYTHON_DESTDIR.
 
 Quote install path.
+
+
+
+New python-autotools class
+--------------------------
+
+Handle autotools-based Python packaging.
+
+
+
+New python-sugar class
+----------------------
+
+Handle packaging of Sugar activities.
 
 
 

Modified: trunk/libcgi-formbuilder-perl/debian/cdbs/1/rules/copyright-check.mk
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-formbuilder-perl/debian/cdbs/1/rules/copyright-check.mk?rev=22161&op=diff
==============================================================================
--- trunk/libcgi-formbuilder-perl/debian/cdbs/1/rules/copyright-check.mk (original)
+++ trunk/libcgi-formbuilder-perl/debian/cdbs/1/rules/copyright-check.mk Wed Jun 25 23:23:23 2008
@@ -28,41 +28,67 @@
 
 CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), devscripts (>= 2.10.7)
 
+# Set to yes to fail on changed/new hints are found
+#DEB_COPYRIGHT_CHECK_STRICT := yes
+
 # 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!)...'
 
+# 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)' * \
-		| 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) \
+		| LC_ALL=C perl -e \
+	'$$n=0; while (<>) {'\
+	'	s/[^[:print:]]//g;'\
+	'	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("\n\t", 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
 	@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 "$(if $(DEB_COPYRIGHT_CHECK_STRICT),ERROR,WARNING): 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; \
+			$(if $(DEB_COPYRIGHT_CHECK_STRICT),exit 1,:); \
+		else \
+			echo 'No new copyright notices found - assuming no news is good news...'; \
+			rm -f debian/copyright_newhints; \
 		fi
-	
-	@echo 'No new copyright notices found - assuming no news is good news...'
-	rm -f debian/copyright_newhints
 	touch $@
 
 clean::

Modified: trunk/libcgi-formbuilder-perl/debian/cdbs/1/rules/upstream-tarball.mk
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-formbuilder-perl/debian/cdbs/1/rules/upstream-tarball.mk?rev=22161&op=diff
==============================================================================
--- trunk/libcgi-formbuilder-perl/debian/cdbs/1/rules/upstream-tarball.mk (original)
+++ trunk/libcgi-formbuilder-perl/debian/cdbs/1/rules/upstream-tarball.mk Wed Jun 25 23:23:23 2008
@@ -77,7 +77,7 @@
 			rm "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_local_tarball)" ; \
 		fi ; \
 		echo "Downloading $(cdbs_upstream_local_tarball) from $(DEB_UPSTREAM_URL)/$(cdbs_upstream_tarball) ..." ; \
-		wget -N -nv -T10 -t3 -O "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_local_tarball)" "$(DEB_UPSTREAM_URL)/$(cdbs_upstream_tarball)" ; \
+		wget -nv -T10 -t3 -O "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_local_tarball)" "$(DEB_UPSTREAM_URL)/$(cdbs_upstream_tarball)" ; \
 	else \
 		echo "Upstream source tarball have been already downloaded: $(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_local_tarball)" ; \
 	fi

Modified: trunk/libcgi-formbuilder-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-formbuilder-perl/debian/changelog?rev=22161&op=diff
==============================================================================
--- trunk/libcgi-formbuilder-perl/debian/changelog (original)
+++ trunk/libcgi-formbuilder-perl/debian/changelog Wed Jun 25 23:23:23 2008
@@ -1,3 +1,23 @@
+libcgi-formbuilder-perl (3.05.01-5) unstable; urgency=low
+
+  * Update local cdbs snippets:
+    + Update copyright-check.mk to parse licensecheck output using perl:
+      + No longer randomly drops newlines
+      + More compact hint file (and ordered more like wiki-proposed new
+        copyright syntax).
+      + No longer ignore files without copyright.
+    + Drop wget options broken with recent versions of wget in
+      update-tarball.mk.
+    + Relax copyright-check to only warn by default.  Closes:
+      bug#487055, thanks to Lucas Nussbaum.
+    + Cosmetic updates to README.cdbs-tweaks.
+  * Update debian/copyright-hints.
+  * Bump debhelper compatibility level to 6.
+  * Semi-auto-update debian/control to update build-dependencies:
+      DEB_AUTO_UPDATE_DEBIAN_CONTROL=yes fakeroot debian/rules clean
+
+ -- Jonas Smedegaard <dr at jones.dk>  Thu, 26 Jun 2008 01:19:00 +0200
+
 libcgi-formbuilder-perl (3.05.01-4) UNRELEASED; urgency=low
 
   * Move build-dependency resolving to debian/rules from debian/control.in.

Modified: trunk/libcgi-formbuilder-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-formbuilder-perl/debian/compat?rev=22161&op=diff
==============================================================================
--- trunk/libcgi-formbuilder-perl/debian/compat (original)
+++ trunk/libcgi-formbuilder-perl/debian/compat Wed Jun 25 23:23:23 2008
@@ -1,1 +1,1 @@
-5
+6

Modified: trunk/libcgi-formbuilder-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-formbuilder-perl/debian/control?rev=22161&op=diff
==============================================================================
--- trunk/libcgi-formbuilder-perl/debian/control (original)
+++ trunk/libcgi-formbuilder-perl/debian/control Wed Jun 25 23:23:23 2008
@@ -1,7 +1,7 @@
 Source: libcgi-formbuilder-perl
 Section: perl
 Priority: optional
-Build-Depends: cdbs (>= 0.4.39), devscripts (>= 2.10.7), dh-buildinfo, debhelper (>= 5), perl (>= 5.6.0-16), libhtml-template-perl (>= 2.6), libtemplate-perl (>= 2.08), libtext-template-perl (>= 1.43), libcgi-session-perl
+Build-Depends: cdbs (>= 0.4.39), devscripts (>= 2.10.7), dh-buildinfo, debhelper (>= 5.0.44), perl (>= 5.6.0-16), libhtml-template-perl (>= 2.6), libtemplate-perl (>= 2.08), libtext-template-perl (>= 1.43), libcgi-session-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Jonas Smedegaard <dr at jones.dk>
 Standards-Version: 3.7.3

Modified: trunk/libcgi-formbuilder-perl/debian/copyright_hints
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-formbuilder-perl/debian/copyright_hints?rev=22161&op=diff
==============================================================================
--- trunk/libcgi-formbuilder-perl/debian/copyright_hints (original)
+++ trunk/libcgi-formbuilder-perl/debian/copyright_hints Wed Jun 25 23:23:23 2008
@@ -1,59 +1,152 @@
-INSTALL: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org> All Rights Reserved]
-lib/CGI/FormBuilder.pm.orig: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Field.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Field/button.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Field/checkbox.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Field/file.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Field/hidden.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Field/image.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Field/password.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Field/radio.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Field/select.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Field/static.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Field/submit.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Field/text.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Field/textarea.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages/C.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages/_example.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages/da.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages/da_DK.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages/de.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages/de_DE.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages/default.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages/en.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages/en_US.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages/es.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages/es_ES.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages/fr.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages/fr_FR.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages/ja.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages/ja_JP.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages/no.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages/no_NO.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages/tr.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Messages/tr_TR.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Multi.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Source.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Source/File.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Template.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Template/Builtin.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Template/Div.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Template/Fast.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Template/HTML.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Template/TT2.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Template/Text.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Test.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved / 2005-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-lib/CGI/FormBuilder/Util.pm: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]
-pod/INSTALL.pod: UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>]
-t/1a-generate.t: UNKNOWN [2000-2006 Nathan Wiger <nate at wiger.org>]
-t/1b-fields.t: UNKNOWN [2000-2006 Nathan Wiger <nate at wiger.org>]
-t/1c-validate.t: UNKNOWN [2000-2006 Nathan Wiger <nate at wiger.org>]
-t/1d-messages.t: UNKNOWN [2000-2006 Nathan Wiger <nate at wiger.org>]
-t/2a-template-html.t: UNKNOWN [2000-2006 Nathan Wiger <nate at wiger.org>]
-t/2b-template-text.t: UNKNOWN [2000-2006 Nathan Wiger <nate at wiger.org>]
-t/2c-template-tt2.t: UNKNOWN [2000-2006 Nathan Wiger <nate at wiger.org>]
-t/2d-template-fast.t: UNKNOWN [2000-2006 Nathan Wiger <nate at wiger.org>]
-t/3a-source-file.t: UNKNOWN [2000-2006 Nathan Wiger <nate at wiger.org>]
-t/3b-multi-page.t: UNKNOWN [2000-2006 Nathan Wiger <nate at wiger.org>]
+*No copyright* UNKNOWN []: Changes
+	MANIFEST
+	Makefile.PL
+	README
+	lib/CGI/FormBuilder.pod
+	pod/Changes.pod
+	pod/README.pod
+	t/1a-test01.html
+	t/1a-test02.html
+	t/1a-test03.html
+	t/1a-test04.html
+	t/1a-test05.html
+	t/1a-test06.html
+	t/1a-test07.html
+	t/1a-test08.html
+	t/1a-test09.html
+	t/1a-test10.html
+	t/1a-test11.html
+	t/1a-test12.html
+	t/1a-test13.html
+	t/1a-test14.html
+	t/1a-test15.html
+	t/1a-test16.html
+	t/1a-test17.html
+	t/1a-test18.html
+	t/1a-test19.html
+	t/1a-test20.html
+	t/1a-test21.html
+	t/1a-test22.html
+	t/1a-test23.html
+	t/1a-test24.html
+	t/1a-test25.html
+	t/1a-test26.html
+	t/1a-test27.html
+	t/1a-test28.html
+	t/1a-test29.html
+	t/1a-test30.html
+	t/1a-test31.html
+	t/1a-test32.html
+	t/1a-test33.html
+	t/1a-test34.html
+	t/1a-test35.html
+	t/1a-test36.html
+	t/1b-test24.html
+	t/1b-test25.html
+	t/1b-test26.html
+	t/2a-test00.html
+	t/2a-test01.html
+	t/2a-test02.html
+	t/2a-test03.html
+	t/2a-test04.html
+	t/2a-test99.html
+	t/2b-test00.html
+	t/2b-test01.html
+	t/2b-test02.html
+	t/2b-test03.html
+	t/2c-test00.html
+	t/2c-test01.html
+	t/2c-test02.html
+	t/2c-test03.html
+	t/2c-test04.html
+	t/2d-test01.html
+	t/2d-test02.html
+	t/2d-test03.html
+	t/3a-test01.html
+	t/3a-test02.html
+	t/3a-test03.html
+	t/3a-test04.html
+	t/3a-test05.html
+	t/3a-test06.html
+	t/3a-test07.html
+	t/3a-test08.html
+	t/3a-test09.html
+	t/3a-test10.html
+	t/3a-test11.html
+	t/3a-test12.html
+	t/3a-test13.html
+	t/3a-test14.html
+	t/3a-test15.html
+	t/3a-test16.html
+	t/3a-test17.html
+	t/3a-test18.html
+	t/3a-test19.html
+	t/3a-test20.html
+	t/3a-test21.html
+	t/3a-test22.html
+	t/3a-test23.html
+	t/3a-test24.html
+	t/3a-test25.html
+	t/3a-test26.html
+	t/3a-test27.html
+	t/3a-test28.html
+	t/3b-test22.html
+	t/runtests
+UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]: lib/CGI/FormBuilder.pm
+	lib/CGI/FormBuilder/Field.pm
+	lib/CGI/FormBuilder/Field/button.pm
+	lib/CGI/FormBuilder/Field/checkbox.pm
+	lib/CGI/FormBuilder/Field/file.pm
+	lib/CGI/FormBuilder/Field/hidden.pm
+	lib/CGI/FormBuilder/Field/image.pm
+	lib/CGI/FormBuilder/Field/password.pm
+	lib/CGI/FormBuilder/Field/radio.pm
+	lib/CGI/FormBuilder/Field/select.pm
+	lib/CGI/FormBuilder/Field/static.pm
+	lib/CGI/FormBuilder/Field/submit.pm
+	lib/CGI/FormBuilder/Field/text.pm
+	lib/CGI/FormBuilder/Field/textarea.pm
+	lib/CGI/FormBuilder/Messages.pm
+	lib/CGI/FormBuilder/Messages/C.pm
+	lib/CGI/FormBuilder/Messages/_example.pm
+	lib/CGI/FormBuilder/Messages/da.pm
+	lib/CGI/FormBuilder/Messages/da_DK.pm
+	lib/CGI/FormBuilder/Messages/de.pm
+	lib/CGI/FormBuilder/Messages/de_DE.pm
+	lib/CGI/FormBuilder/Messages/default.pm
+	lib/CGI/FormBuilder/Messages/en.pm
+	lib/CGI/FormBuilder/Messages/en_US.pm
+	lib/CGI/FormBuilder/Messages/es.pm
+	lib/CGI/FormBuilder/Messages/es_ES.pm
+	lib/CGI/FormBuilder/Messages/ja.pm
+	lib/CGI/FormBuilder/Messages/ja_JP.pm
+	lib/CGI/FormBuilder/Messages/no.pm
+	lib/CGI/FormBuilder/Messages/no_NO.pm
+	lib/CGI/FormBuilder/Messages/tr.pm
+	lib/CGI/FormBuilder/Messages/tr_TR.pm
+	lib/CGI/FormBuilder/Multi.pm
+	lib/CGI/FormBuilder/Source.pm
+	lib/CGI/FormBuilder/Source/File.pm
+	lib/CGI/FormBuilder/Template.pm
+	lib/CGI/FormBuilder/Template/Builtin.pm
+	lib/CGI/FormBuilder/Template/Div.pm
+	lib/CGI/FormBuilder/Template/Fast.pm
+	lib/CGI/FormBuilder/Template/HTML.pm
+	lib/CGI/FormBuilder/Template/TT2.pm
+	lib/CGI/FormBuilder/Template/Text.pm
+	lib/CGI/FormBuilder/Util.pm
+UNKNOWN [2000-2006 Nathan Wiger <nate at wiger.org>]: t/1a-generate.t
+	t/1b-fields.t
+	t/1c-validate.t
+	t/1d-messages.t
+	t/2a-template-html.t
+	t/2b-template-text.t
+	t/2c-template-tt2.t
+	t/2d-template-fast.t
+	t/3a-source-file.t
+	t/3b-multi-page.t
+UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved / reu.']: lib/CGI/FormBuilder/Messages/fr.pm
+	lib/CGI/FormBuilder/Messages/fr_FR.pm
+UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org> All Rights Reserved]: INSTALL
+UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved / 2005-2006 Nate Wiger <nate at wiger.org>. All Rights Reserved]: lib/CGI/FormBuilder/Test.pm
+UNKNOWN [2000-2006 Nate Wiger <nate at wiger.org>]: pod/INSTALL.pod




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