r40842 - in /trunk/libclass-dbi-fromcgi-perl/debian: changelog compat control copyright rules

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Mon Jul 27 20:07:50 UTC 2009


Author: ansgar-guest
Date: Mon Jul 27 20:07:26 2009
New Revision: 40842

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=40842
Log:
* Bump Standards-Version to 3.8.2.
* Use debhelper 7 instead of cdbs.
* Convert debian/copyright to proposed machine-readable format.
* Drop alternate build-dep on libtest-simple-perl: perl 5.8 is even in
  oldstable
* No longer install README (copy of POD documentation).
* Add myself to Uploaders.
* debian/control: Reword description a bit.

Modified:
    trunk/libclass-dbi-fromcgi-perl/debian/changelog
    trunk/libclass-dbi-fromcgi-perl/debian/compat
    trunk/libclass-dbi-fromcgi-perl/debian/control
    trunk/libclass-dbi-fromcgi-perl/debian/copyright
    trunk/libclass-dbi-fromcgi-perl/debian/rules

Modified: trunk/libclass-dbi-fromcgi-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-dbi-fromcgi-perl/debian/changelog?rev=40842&op=diff
==============================================================================
--- trunk/libclass-dbi-fromcgi-perl/debian/changelog (original)
+++ trunk/libclass-dbi-fromcgi-perl/debian/changelog Mon Jul 27 20:07:26 2009
@@ -1,4 +1,4 @@
-libclass-dbi-fromcgi-perl (1.00-4) UNRELEASED; urgency=low
+libclass-dbi-fromcgi-perl (1.00-4) unstable; urgency=low
 
   [ Ryan Niebur ]
   * moved with permission from Bart (Closes: #531511)
@@ -14,7 +14,17 @@
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
 
- -- Ryan Niebur <ryanryan52 at gmail.com>  Mon, 01 Jun 2009 18:14:16 -0700
+  [ Ansgar Burchardt ]
+  * Bump Standards-Version to 3.8.2.
+  * Use debhelper 7 instead of cdbs.
+  * Convert debian/copyright to proposed machine-readable format.
+  * Drop alternate build-dep on libtest-simple-perl: perl 5.8 is even in
+    oldstable
+  * No longer install README (copy of POD documentation).
+  * Add myself to Uploaders.
+  * debian/control: Reword description a bit.
+
+ -- Ansgar Burchardt <ansgar at 43-1.org>  Mon, 27 Jul 2009 22:06:31 +0200
 
 libclass-dbi-fromcgi-perl (1.00-3) unstable; urgency=low
 

Modified: trunk/libclass-dbi-fromcgi-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-dbi-fromcgi-perl/debian/compat?rev=40842&op=diff
==============================================================================
--- trunk/libclass-dbi-fromcgi-perl/debian/compat (original)
+++ trunk/libclass-dbi-fromcgi-perl/debian/compat Mon Jul 27 20:07:26 2009
@@ -1,1 +1,1 @@
-5
+7

Modified: trunk/libclass-dbi-fromcgi-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-dbi-fromcgi-perl/debian/control?rev=40842&op=diff
==============================================================================
--- trunk/libclass-dbi-fromcgi-perl/debian/control (original)
+++ trunk/libclass-dbi-fromcgi-perl/debian/control Mon Jul 27 20:07:26 2009
@@ -2,9 +2,12 @@
 Section: perl
 Priority: optional
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Build-Depends: cdbs, debhelper (>= 5)
-Build-Depends-Indep: perl (>= 5.6.0-16), libclass-dbi-perl (>= 0.93), libcgi-untaint-perl (>= 0.8), libtest-simple-perl (>= 0.17) | perl (>= 5.8.0), libtest-pod-perl, libtest-pod-coverage-perl, libdbd-sqlite3-perl, libclass-dbi-sqlite-perl
-Standards-Version: 3.8.0
+Uploaders: Ansgar Burchardt <ansgar at 43-1.org>
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl (>= 5.8.0), libclass-dbi-perl (>= 0.93),
+ libcgi-untaint-perl (>= 0.8), libtest-pod-perl, libtest-pod-coverage-perl,
+ libdbd-sqlite3-perl, libclass-dbi-sqlite-perl
+Standards-Version: 3.8.2
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libclass-dbi-fromcgi-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libclass-dbi-fromcgi-perl/
 Homepage: http://search.cpan.org/~tmtm/Class-DBI-FromCGI/
@@ -12,22 +15,21 @@
 Package: libclass-dbi-fromcgi-perl
 Architecture: all
 Depends: ${misc:Depends}, ${perl:Depends}, libclass-dbi-perl (>= 0.93), libcgi-untaint-perl (>= 0.8)
-Description: Update Class::DBI data using CGI::Untaint
+Description: Perl module to update Class::DBI data using CGI::Untaint
  Lots of times, Class::DBI is used in web-based applications. (In
  fact, coupled with a templating system that allows you to pass
  objects, such as Template::Toolkit, Class::DBI is very much your
  friend for these.)
  .
- And, as we all know, one of the most irritating things about writing
- web-based applications is the monotony of writing much of the same
- stuff over and over again. And, where there's monotony there's a
- tendency to skip over stuff that we all know is really important, but
- is a pain to write - like Taint Checking and sensible input
- validation. (Especially as we can still show a 'working' application
- without it!). So, we now have CGI::Untaint to take care of a lot of
- that for us.
+ One of the most irritating things about writing web-based applications
+ is the monotony of writing much of the same stuff over and over again.
+ And, where there's monotony there's a tendency to skip over stuff that
+ is really important, but is a pain to write - like Taint Checking and
+ sensible input validation. (Especially as you can still show a 'working'
+ application without it!). CGI::Untaint can take care of a lot of that
+ for us.
  .
  It so happens that CGI::Untaint also plays well with Class::DBI. All
  you need to do is to 'use Class::DBI::FromCGI' in your class (or in
  your local Class::DBI subclass that all your other classes inherit
- from. You do do that, don't you?).
+ from. You do that, don't you?).

Modified: trunk/libclass-dbi-fromcgi-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-dbi-fromcgi-perl/debian/copyright?rev=40842&op=diff
==============================================================================
--- trunk/libclass-dbi-fromcgi-perl/debian/copyright (original)
+++ trunk/libclass-dbi-fromcgi-perl/debian/copyright Mon Jul 27 20:07:26 2009
@@ -1,23 +1,31 @@
-This package was debianized by Stephen Quinney <sjq at debian.org> on
-Thu, 14 Aug 2003 14:45:07 +0100
+Format-Specification:
+    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: Tony Bowden
+Upstream-Source: http://search.cpan.org/dist/Class-DBI-FromCGI/
+Upstream-Name: Class-DBI-FromCGI
 
-It was downloaded from http://search.cpan.org/CPAN/authors/id/T/TM/TMTM/
+Files: *
+Copyright: © 2001-2005, Kasei
+License-Alias: Perl
+License: Artistic | GPL-1+
 
-Upstream Author: Tony Bowden <tmtm at kasei.com>
+Files: debian/*
+Copyright:
+ © 2003-2005, Stephen Quinney <sjq at debian.org>
+ © 2006-2008, Bart Martens <bartm at knars.be>
+ © 2009,      Ansgar Burchardt <ansgar at 43-1.org>
+License: Artistic | GPL-1+
 
-Copyright:
+License: Artistic
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the Artistic License, which comes with Perl.
+    On Debian GNU/Linux systems, the complete text of the Artistic License
+    can be found in `/usr/share/common-licenses/Artistic'
 
-    Copyright (C) 2001-2005 Kasei. All rights reserved.
-
+License: GPL-1+
     This program 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 Perl.
-
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 1, or (at your option)
+    any later version.
     On Debian GNU/Linux systems, the complete text of the GNU General
-    Public License can be found in `/usr/share/common-licenses/GPL' and
-    the Artistic Licence in `/usr/share/common-licenses/Artistic'.
+    Public License can be found in `/usr/share/common-licenses/GPL'

Modified: trunk/libclass-dbi-fromcgi-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-dbi-fromcgi-perl/debian/rules?rev=40842&op=diff
==============================================================================
--- trunk/libclass-dbi-fromcgi-perl/debian/rules (original)
+++ trunk/libclass-dbi-fromcgi-perl/debian/rules Mon Jul 27 20:07:26 2009
@@ -1,4 +1,3 @@
 #!/usr/bin/make -f
-
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/perlmodule.mk
+%:
+	dh $@




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