r69791 - in /trunk/libdpkg-log-perl/debian: changelog control copyright libdpkg-log-perl.docs libdpkg-log-perl.examples patches/ patches/series patches/spelling.patch source/ source/format

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sat Feb 26 18:58:03 UTC 2011


Author: gregoa
Date: Sat Feb 26 18:57:41 2011
New Revision: 69791

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=69791
Log:
* debian/control: 
  - add Vcs-Svn and Vcs-Browser fields
  - make short description a noun phrase
  - add missing build dependencies (closes: #615470)
  - add /me to Uploaders
* Switch to source format 3.0 (quilt).
* Don't install README anymore.
* Install examples.
* Add a patch to fix some spelling mistakes.

Added:
    trunk/libdpkg-log-perl/debian/libdpkg-log-perl.examples
    trunk/libdpkg-log-perl/debian/patches/
    trunk/libdpkg-log-perl/debian/patches/series
    trunk/libdpkg-log-perl/debian/patches/spelling.patch
    trunk/libdpkg-log-perl/debian/source/
    trunk/libdpkg-log-perl/debian/source/format
Removed:
    trunk/libdpkg-log-perl/debian/libdpkg-log-perl.docs
Modified:
    trunk/libdpkg-log-perl/debian/changelog
    trunk/libdpkg-log-perl/debian/control
    trunk/libdpkg-log-perl/debian/copyright

Modified: trunk/libdpkg-log-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdpkg-log-perl/debian/changelog?rev=69791&op=diff
==============================================================================
--- trunk/libdpkg-log-perl/debian/changelog (original)
+++ trunk/libdpkg-log-perl/debian/changelog Sat Feb 26 18:57:41 2011
@@ -1,3 +1,17 @@
+libdpkg-log-perl (1.20-2) UNRELEASED; urgency=low
+
+  * debian/control: 
+    - add Vcs-Svn and Vcs-Browser fields
+    - make short description a noun phrase
+    - add missing build dependencies (closes: #615470)
+    - add /me to Uploaders
+  * Switch to source format 3.0 (quilt).
+  * Don't install README anymore.
+  * Install examples.
+  * Add a patch to fix some spelling mistakes.
+
+ -- gregor herrmann <gregoa at debian.org>  Sat, 26 Feb 2011 19:44:57 +0100
+
 libdpkg-log-perl (1.20-1) unstable; urgency=low
 
   * New upstream release

Modified: trunk/libdpkg-log-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdpkg-log-perl/debian/control?rev=69791&op=diff
==============================================================================
--- trunk/libdpkg-log-perl/debian/control (original)
+++ trunk/libdpkg-log-perl/debian/control Sat Feb 26 18:57:41 2011
@@ -2,16 +2,26 @@
 Section: perl
 Priority: optional
 Build-Depends: debhelper (>= 7)
-Build-Depends-Indep: perl
+Build-Depends-Indep: perl,
+ libdatetime-perl,
+ libdatetime-format-strptime-perl,
+ libparams-validate-perl,
+ libtest-pod-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Patrick Schoenfeld <schoenfeld at debian.org>
+Uploaders: Patrick Schoenfeld <schoenfeld at debian.org>,
+ gregor herrmann <gregoa at debian.org>
 Standards-Version: 3.9.1
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdpkg-log-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libdpkg-log-perl/
 Homepage: http://search.cpan.org/dist/DPKG-Log/
 
 Package: libdpkg-log-perl
 Architecture: all
-Depends: libdatetime-perl, libdatetime-format-strptime-perl, libparams-validate-perl, ${misc:Depends}, ${perl:Depends}
-Description: Parse and analyse dpkg log files
+Depends: ${misc:Depends}, ${perl:Depends},
+ libdatetime-perl,
+ libdatetime-format-strptime-perl,
+ libparams-validate-perl
+Description: module for parsing and analysing dpkg log files
  DPKG::Log is a perl library which aims at parsing and analysing
  a dpkg logfile.
  .

Modified: trunk/libdpkg-log-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdpkg-log-perl/debian/copyright?rev=69791&op=diff
==============================================================================
--- trunk/libdpkg-log-perl/debian/copyright (original)
+++ trunk/libdpkg-log-perl/debian/copyright Sat Feb 26 18:57:41 2011
@@ -9,13 +9,14 @@
 
 Files: debian/*
 Copyright: 2011, Patrick Schoenfeld <schoenfeld at debian.org>
+ 2011, gregor herrmann <gregoa at debian.org>
 License: Artistic or GPL-1+
 
 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
+ On Debian systems, the complete text of the Artistic License
  can be found in `/usr/share/common-licenses/Artistic'.
 
 License: GPL-1+
@@ -24,5 +25,5 @@
  the Free Software Foundation; either version 1, or (at your option)
  any later version.
  .
- On Debian GNU/Linux systems, the complete text of version 1 of the
+ On Debian systems, the complete text of version 1 of the
  General Public License can be found in `/usr/share/common-licenses/GPL-1'.

Added: trunk/libdpkg-log-perl/debian/libdpkg-log-perl.examples
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdpkg-log-perl/debian/libdpkg-log-perl.examples?rev=69791&op=file
==============================================================================
--- trunk/libdpkg-log-perl/debian/libdpkg-log-perl.examples (added)
+++ trunk/libdpkg-log-perl/debian/libdpkg-log-perl.examples Sat Feb 26 18:57:41 2011
@@ -1,0 +1,1 @@
+examples/*

Added: trunk/libdpkg-log-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdpkg-log-perl/debian/patches/series?rev=69791&op=file
==============================================================================
--- trunk/libdpkg-log-perl/debian/patches/series (added)
+++ trunk/libdpkg-log-perl/debian/patches/series Sat Feb 26 18:57:41 2011
@@ -1,0 +1,1 @@
+spelling.patch

Added: trunk/libdpkg-log-perl/debian/patches/spelling.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdpkg-log-perl/debian/patches/spelling.patch?rev=69791&op=file
==============================================================================
--- trunk/libdpkg-log-perl/debian/patches/spelling.patch (added)
+++ trunk/libdpkg-log-perl/debian/patches/spelling.patch Sat Feb 26 18:57:41 2011
@@ -1,0 +1,51 @@
+Description: fix some spelling mistakes
+Origin: vendor
+Forwarded: no
+Author: gregor herrmann <gregoa at debian.org>
+Last-Update: 2011-02-26
+
+--- a/lib/DPKG/Log.pm
++++ b/lib/DPKG/Log.pm
+@@ -48,7 +48,7 @@
+ Returns a new DPKG::Log object. If parse is set to a true value the logfile
+ specified by filename is parsed at the end of the object initialisation.
+ Otherwise the parse routine has to be called.
+-Filename parameter can be ommitted, it defaults to /var/log/dpkg.log.
++Filename parameter can be omitted, it defaults to /var/log/dpkg.log.
+ 
+ Optionally its possible to specify B<from> or B<to> arguments as timestamps
+ in the standard dpkg.log format or as DateTime objects.
+@@ -58,7 +58,7 @@
+ can use B<filter_by_time()> instead.
+ 
+ By default the module will assume that those timestamps are in the local timezone
+-as determined by DateTime::TimeZone. This can be overriden by giving the
++as determined by DateTime::TimeZone. This can be overridden by giving the
+ argument B<time_zone> which takes a timezone string (e.g. 'Europe/Berlin')
+ or a DateTime::TimeZone object.
+ Additionally its possible to override the timestamp_pattern by specifying
+@@ -411,4 +411,4 @@
+ =cut
+ 
+ 1;
+-# vim: expandtab:ts=4:sw=4
+\ No newline at end of file
++# vim: expandtab:ts=4:sw=4
+--- a/lib/DPKG/Log/Analyse.pm
++++ b/lib/DPKG/Log/Analyse.pm
+@@ -43,7 +43,7 @@
+ =item $analyser = DPKG::Log::Analyse->new('log_handle' => \$dpkg_log)
+ 
+ Returns a new DPKG::Log::Analyse object.
+-Filename parameter can be ommitted, it defaults to /var/log/dpkg.log.
++Filename parameter can be omitted, it defaults to /var/log/dpkg.log.
+ 
+ Its possible to specify an existing DPKG::Log object instead of a filename.
+ This will be used and overrides any filename setting.
+@@ -252,4 +252,4 @@
+ =cut
+ 
+ 1;
+-# vim: expandtab:ts=4:sw=4
+\ No newline at end of file
++# vim: expandtab:ts=4:sw=4

Added: trunk/libdpkg-log-perl/debian/source/format
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdpkg-log-perl/debian/source/format?rev=69791&op=file
==============================================================================
--- trunk/libdpkg-log-perl/debian/source/format (added)
+++ trunk/libdpkg-log-perl/debian/source/format Sat Feb 26 18:57:41 2011
@@ -1,0 +1,1 @@
+3.0 (quilt)




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