r54112 - in /trunk/libio-async-perl/debian: NEWS changelog control copyright patches/ patches/fix-pod-spelling.patch patches/series source/ source/format

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Thu Mar 11 19:01:34 UTC 2010


Author: jawnsy-guest
Date: Thu Mar 11 19:01:16 2010
New Revision: 54112

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=54112
Log:
* Standards-Version 3.8.4 (no changes)
* Add a patch to fix POD spelling problems
* Use 3.0 (quilt) source format

Added:
    trunk/libio-async-perl/debian/patches/
    trunk/libio-async-perl/debian/patches/fix-pod-spelling.patch
    trunk/libio-async-perl/debian/patches/series
    trunk/libio-async-perl/debian/source/
    trunk/libio-async-perl/debian/source/format
Modified:
    trunk/libio-async-perl/debian/NEWS
    trunk/libio-async-perl/debian/changelog
    trunk/libio-async-perl/debian/control
    trunk/libio-async-perl/debian/copyright

Modified: trunk/libio-async-perl/debian/NEWS
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-async-perl/debian/NEWS?rev=54112&op=diff
==============================================================================
--- trunk/libio-async-perl/debian/NEWS (original)
+++ trunk/libio-async-perl/debian/NEWS Thu Mar 11 19:01:16 2010
@@ -10,3 +10,4 @@
   have already been brought up-to-date.
 
  -- Jonathan Yu <jawnsy at cpan.org>  Tue, 13 Oct 2009 10:39:17 -0400
+

Modified: trunk/libio-async-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-async-perl/debian/changelog?rev=54112&op=diff
==============================================================================
--- trunk/libio-async-perl/debian/changelog (original)
+++ trunk/libio-async-perl/debian/changelog Thu Mar 11 19:01:16 2010
@@ -1,9 +1,12 @@
 libio-async-perl (0.28-1) UNRELEASED; urgency=low
 
   * New upstream release
+  * Standards-Version 3.8.4 (no changes)
   * Update copyright information
+  * Add a patch to fix POD spelling problems
+  * Use 3.0 (quilt) source format
 
- -- Jonathan Yu <jawnsy at cpan.org>  Thu, 11 Mar 2010 12:09:57 -0500
+ -- Jonathan Yu <jawnsy at cpan.org>  Thu, 11 Mar 2010 14:26:56 -0500
 
 libio-async-perl (0.27-1) unstable; urgency=low
 

Modified: trunk/libio-async-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-async-perl/debian/control?rev=54112&op=diff
==============================================================================
--- trunk/libio-async-perl/debian/control (original)
+++ trunk/libio-async-perl/debian/control Thu Mar 11 19:01:16 2010
@@ -2,23 +2,23 @@
 Section: perl
 Priority: optional
 Build-Depends: debhelper (>= 7)
-Build-Depends-Indep: perl, libsocket-getaddrinfo-perl (>= 0.08),
- libheap-perl (>= 0.8), libtest-exception-perl, libasync-mergepoint-perl,
- libtest-refcount-perl, libtest-pod-perl, netbase
+Build-Depends-Indep: perl, libsocket-getaddrinfo-perl, libheap-perl (>= 0.80),
+ libtest-exception-perl, libasync-mergepoint-perl, libtest-refcount-perl,
+ libtest-pod-perl, netbase
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Jonathan Yu <jawnsy at cpan.org>
-Standards-Version: 3.8.3
+Standards-Version: 3.8.4
 Homepage: http://search.cpan.org/dist/IO-Async/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libio-async-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libio-async-perl/
 
 Package: libio-async-perl
 Architecture: all
-Depends: ${misc:Depends}, ${perl:Depends}, libheap-perl (>= 0.8),
- libasync-mergepoint-perl, libsocket-getaddrinfo-perl (>= 0.08)
+Depends: ${misc:Depends}, ${perl:Depends}, libsocket-getaddrinfo-perl,
+ libheap-perl (>= 0.80), libasync-mergepoint-perl
 Breaks: libio-async-loop-epoll-perl (<< 0.07),
  libio-async-loop-glib-perl (<< 0.17)
-Description: Perl package providing asynchronous filehandle I/O
+Description: module providing asynchronous filehandle I/O
  IO::Async is a collection of Perl modules that allow programs to perform
  various operations on filehandles asynchronously.
  .

Modified: trunk/libio-async-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-async-perl/debian/copyright?rev=54112&op=diff
==============================================================================
--- trunk/libio-async-perl/debian/copyright (original)
+++ trunk/libio-async-perl/debian/copyright Thu Mar 11 19:01:16 2010
@@ -5,7 +5,6 @@
 
 Files: *
 Copyright: 2010, Paul Evans <leonerd at leonerd.org.uk>
-License-Alias: Perl
 License: Artistic or GPL-1+
 
 Files: debian/*

Added: trunk/libio-async-perl/debian/patches/fix-pod-spelling.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-async-perl/debian/patches/fix-pod-spelling.patch?rev=54112&op=file
==============================================================================
--- trunk/libio-async-perl/debian/patches/fix-pod-spelling.patch (added)
+++ trunk/libio-async-perl/debian/patches/fix-pod-spelling.patch Thu Mar 11 19:01:16 2010
@@ -1,0 +1,15 @@
+Description: fix POD spelling errors
+Author: Jonathan Yu <jawnsy at cpan.org>
+Origin: vendor
+Forwarded: no
+--- a/lib/IO/Async.pm
++++ b/lib/IO/Async.pm
+@@ -122,7 +122,7 @@
+ =head2 Merge Points
+ 
+ The L<IO::Async::MergePoint> object class allows for a program to wait on the
+-completion of multiple seperate subtasks. It allows for each subtask to return
++completion of multiple separate subtasks. It allows for each subtask to return
+ some data, which will be collected and given to the callback provided to the
+ merge point, which is called when every subtask has completed.
+ 

Added: trunk/libio-async-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-async-perl/debian/patches/series?rev=54112&op=file
==============================================================================
--- trunk/libio-async-perl/debian/patches/series (added)
+++ trunk/libio-async-perl/debian/patches/series Thu Mar 11 19:01:16 2010
@@ -1,0 +1,1 @@
+fix-pod-spelling.patch

Added: trunk/libio-async-perl/debian/source/format
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-async-perl/debian/source/format?rev=54112&op=file
==============================================================================
--- trunk/libio-async-perl/debian/source/format (added)
+++ trunk/libio-async-perl/debian/source/format Thu Mar 11 19:01:16 2010
@@ -1,0 +1,1 @@
+3.0 (quilt)




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