r2600 - packages/libcgi-application-perl/trunk/debian

Niko Tyni ntyni-guest at costa.debian.org
Tue Apr 18 11:05:36 UTC 2006


Author: ntyni-guest
Date: 2006-04-18 11:05:36 +0000 (Tue, 18 Apr 2006)
New Revision: 2600

Modified:
   packages/libcgi-application-perl/trunk/debian/changelog
   packages/libcgi-application-perl/trunk/debian/control
   packages/libcgi-application-perl/trunk/debian/copyright
   packages/libcgi-application-perl/trunk/debian/rules
Log:
Packaging fixes.


Modified: packages/libcgi-application-perl/trunk/debian/changelog
===================================================================
--- packages/libcgi-application-perl/trunk/debian/changelog	2006-04-18 10:47:26 UTC (rev 2599)
+++ packages/libcgi-application-perl/trunk/debian/changelog	2006-04-18 11:05:36 UTC (rev 2600)
@@ -1,8 +1,13 @@
 libcgi-application-perl (4.06-1) unstable; urgency=low
 
   * New upstream release.
+  * Move debhelper from Build-Depends-Indep to Build-Depends,
+    as it's required for the 'clean' target.
+  * Update license info in debian/copyright.
+  * debian/rules: don't ignore the return value of make {,test,realclean}
+  * Add debian/watch.
 
- -- Niko Tyni <ntyni at iki.fi>  Tue, 18 Apr 2006 13:46:48 +0300
+ -- Niko Tyni <ntyni at iki.fi>  Tue, 18 Apr 2006 14:04:39 +0300
 
 libcgi-application-perl (4.05-1) unstable; urgency=low
 

Modified: packages/libcgi-application-perl/trunk/debian/control
===================================================================
--- packages/libcgi-application-perl/trunk/debian/control	2006-04-18 10:47:26 UTC (rev 2599)
+++ packages/libcgi-application-perl/trunk/debian/control	2006-04-18 11:05:36 UTC (rev 2600)
@@ -2,8 +2,9 @@
 Section: perl
 Priority: optional
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Jaldhar H. Vyas <jaldhar at debian.org>
-Build-Depends-Indep: debhelper (>> 4.0.0), perl (>= 5.8.0-7), libhtml-template-perl
+Uploaders: Jaldhar H. Vyas <jaldhar at debian.org>, Niko Tyni <ntyni at iki.fi>
+Build-Depends: debhelper (>> 4.0.0)
+Build-Depends-Indep: perl (>= 5.8.0-7), libhtml-template-perl
 Standards-Version: 3.6.2
 
 Package: libcgi-application-perl

Modified: packages/libcgi-application-perl/trunk/debian/copyright
===================================================================
--- packages/libcgi-application-perl/trunk/debian/copyright	2006-04-18 10:47:26 UTC (rev 2599)
+++ packages/libcgi-application-perl/trunk/debian/copyright	2006-04-18 11:05:36 UTC (rev 2600)
@@ -1,14 +1,33 @@
 This package was debianized by Shell Hung <shell at shellhung.org> on
 Mon, 13 Aug 2001 16:26:50 +0800.
 
-It was downloaded from <CPAN>/modules/by-module/CGI/CGI-Application-3.22.tar.gz
+It was downloaded from <CPAN>/modules/by-module/CGI/
 
 Upstream Author: Jesse Erlbaum <jesse at vm.com>
 
-Copyright:
+Copyright for lib/CGI/Application.pm:
 
-This library is free software; you can redistribute it and/or modify it
-under the same terms as Perl itself.
+ CGI::Application : Framework for building reusable web-applications
+ Copyright (C) 2000-2003 Jesse Erlbaum <jesse at erlbaum.net>
 
-The Artistic and GPL licences which Perl is distributed can be found
-in /usr/share/common-licenses/
+ This module is free software; you can redistribute it and/or modify it
+ under the terms of either:
+
+ a) the GNU General Public License as published by the Free Software
+ Foundation; either version 1, or (at your option) any later version,
+
+ or
+
+ b) the "Artistic License" which comes with this module.
+
+The Artistic and GPL licences can be found in /usr/share/common-licenses/ .
+
+Copyright for lib/CGI/Application/MailForm.pm:
+
+ This library is free software; you can redistribute it and/or modify it
+ under the same terms as Perl itself.
+
+The Artistic and GPL licences under which Perl is distributed can be found
+in /usr/share/common-licenses/ . See /usr/share/doc/perl/copyright for
+the license of Perl itself.
+

Modified: packages/libcgi-application-perl/trunk/debian/rules
===================================================================
--- packages/libcgi-application-perl/trunk/debian/rules	2006-04-18 10:47:26 UTC (rev 2599)
+++ packages/libcgi-application-perl/trunk/debian/rules	2006-04-18 11:05:36 UTC (rev 2600)
@@ -19,8 +19,8 @@
 build-stamp:
 	dh_testdir
 	# Add here commands to compile the package.
-	-$(MAKE) OPTIMIZE="-O2 -g -Wall"
-	-$(MAKE) test
+	$(MAKE) OPTIMIZE="-O2 -g -Wall"
+	$(MAKE) test
 	touch build-stamp
 
 clean:
@@ -28,7 +28,7 @@
 	dh_testroot
 	rm -f build-stamp configure-stamp
 	# Add here commands to clean up after the build process.
-	-$(MAKE) realclean
+	[ ! -f Makefile ] || $(MAKE) realclean
 	dh_clean
 
 




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