r67511 - in /trunk/libhttp-async-perl/debian: ./ changelog compat control copyright libhttp-async-perl.docs patches/ patches/fix_typo.patch patches/series rules source/ source/format watch

emhn-guest at users.alioth.debian.org emhn-guest at users.alioth.debian.org
Tue Jan 18 22:39:33 UTC 2011


Author: emhn-guest
Date: Tue Jan 18 22:39:26 2011
New Revision: 67511

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=67511
Log:
[svn-inject] Applying Debian modifications (0.09-1) to trunk

Added:
    trunk/libhttp-async-perl/debian/
    trunk/libhttp-async-perl/debian/changelog
    trunk/libhttp-async-perl/debian/compat
    trunk/libhttp-async-perl/debian/control
    trunk/libhttp-async-perl/debian/copyright
    trunk/libhttp-async-perl/debian/libhttp-async-perl.docs
    trunk/libhttp-async-perl/debian/patches/
    trunk/libhttp-async-perl/debian/patches/fix_typo.patch
    trunk/libhttp-async-perl/debian/patches/series
    trunk/libhttp-async-perl/debian/rules   (with props)
    trunk/libhttp-async-perl/debian/source/
    trunk/libhttp-async-perl/debian/source/format
    trunk/libhttp-async-perl/debian/watch

Added: trunk/libhttp-async-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-async-perl/debian/changelog?rev=67511&op=file
==============================================================================
--- trunk/libhttp-async-perl/debian/changelog (added)
+++ trunk/libhttp-async-perl/debian/changelog Tue Jan 18 22:39:26 2011
@@ -1,0 +1,5 @@
+libhttp-async-perl (0.09-1) UNRELEASED; urgency=low
+
+  * Initial Release. (Closes: #610477)
+
+ -- Ernesto Hernández-Novich (USB) <emhn at usb.ve>  Tue, 18 Jan 2011 17:37:08 -0430

Added: trunk/libhttp-async-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-async-perl/debian/compat?rev=67511&op=file
==============================================================================
--- trunk/libhttp-async-perl/debian/compat (added)
+++ trunk/libhttp-async-perl/debian/compat Tue Jan 18 22:39:26 2011
@@ -1,0 +1,1 @@
+7

Added: trunk/libhttp-async-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-async-perl/debian/control?rev=67511&op=file
==============================================================================
--- trunk/libhttp-async-perl/debian/control (added)
+++ trunk/libhttp-async-perl/debian/control Tue Jan 18 22:39:26 2011
@@ -1,0 +1,37 @@
+Source: libhttp-async-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: libhttp-server-simple-perl,
+ libtest-http-server-simple-perl,
+ libtest-pod-perl,
+ libtest-pod-coverage-perl,
+ liburi-perl,
+ libwww-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Ernesto Hernández-Novich (USB) <emhn at usb.ve>
+Standards-Version: 3.9.1
+Homepage: http://search.cpan.org/dist/HTTP-Async/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libhttp-async-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libhttp-async-perl/
+
+Package: libhttp-async-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends}, liburi-perl, libwww-perl
+Description: process multiple HTTP requests in parallel without blocking
+ Although using the conventional LWP::UserAgent is fast and easy it does have
+ some drawbacks - the code execution blocks until the request has been
+ completed and it is only possible to process one request at a time.
+ HTTP::Async attempts to address these limitations.
+ .
+ It gives you a 'Async' object that you can add requests to, and then get the
+ requests off as they finish. The actual sending and receiving of the requests
+ is abstracted. As soon as you add a request it is transmitted, if there are
+ too many requests in progress at the moment they are queued. There is no
+ concept of starting or stopping - it runs continuously.
+ .
+ Whilst it is waiting to receive data it returns control to the code that
+ called it meaning that you can carry out processing whilst fetching data from
+ the network. All without forking or threading - it is actually done using
+ select lists.
+ .

Added: trunk/libhttp-async-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-async-perl/debian/copyright?rev=67511&op=file
==============================================================================
--- trunk/libhttp-async-perl/debian/copyright (added)
+++ trunk/libhttp-async-perl/debian/copyright Tue Jan 18 22:39:26 2011
@@ -1,0 +1,32 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: Edmund von der Burg <evdb at ecclestoad.co.uk>.
+    .
+    http://www.ecclestoad.co.uk/
+Source: http://search.cpan.org/dist/HTTP-Async/
+Name: HTTP-Async
+
+Files: *
+Copyright: 2006 Edmund von der Burg <evdb at ecclestoad.co.uk>.
+    .
+    http://www.ecclestoad.co.uk/
+License: Artistic
+
+Files: debian/*
+Copyright: 2011, Ernesto Hernández-Novich (USB) <emhn at usb.ve>
+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 systems, the complete text of the Artistic License can be
+ found in `/usr/share/common-licenses/Artistic'.
+
+License: GPL-1+
+ This program is free software; you can redistribute it and/or modify
+ 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 systems, the complete text of version 1 of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-1'.

Added: trunk/libhttp-async-perl/debian/libhttp-async-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-async-perl/debian/libhttp-async-perl.docs?rev=67511&op=file
==============================================================================
--- trunk/libhttp-async-perl/debian/libhttp-async-perl.docs (added)
+++ trunk/libhttp-async-perl/debian/libhttp-async-perl.docs Tue Jan 18 22:39:26 2011
@@ -1,0 +1,1 @@
+TODO

Added: trunk/libhttp-async-perl/debian/patches/fix_typo.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-async-perl/debian/patches/fix_typo.patch?rev=67511&op=file
==============================================================================
--- trunk/libhttp-async-perl/debian/patches/fix_typo.patch (added)
+++ trunk/libhttp-async-perl/debian/patches/fix_typo.patch Tue Jan 18 22:39:26 2011
@@ -1,0 +1,15 @@
+Description: fix a typo in HTTP::Async's POD.
+Forwarded: yes
+Author: Ernesto Hernández-Novich <emhn at usb.ve>
+
+--- a/lib/HTTP/Async.pm
++++ b/lib/HTTP/Async.pm
+@@ -245,7 +245,7 @@
+     $async->poke;
+ 
+ At fairly frequent intervals some housekeeping needs to performed - such as
+-reading recieved data and starting new requests. Calling C<poke> lets the
++reading received data and starting new requests. Calling C<poke> lets the
+ object do this and then return quickly. Usually you will not need to use this
+ as most other methods do it for you.
+ 

Added: trunk/libhttp-async-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-async-perl/debian/patches/series?rev=67511&op=file
==============================================================================
--- trunk/libhttp-async-perl/debian/patches/series (added)
+++ trunk/libhttp-async-perl/debian/patches/series Tue Jan 18 22:39:26 2011
@@ -1,0 +1,1 @@
+fix_typo.patch

Added: trunk/libhttp-async-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-async-perl/debian/rules?rev=67511&op=file
==============================================================================
--- trunk/libhttp-async-perl/debian/rules (added)
+++ trunk/libhttp-async-perl/debian/rules Tue Jan 18 22:39:26 2011
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

Propchange: trunk/libhttp-async-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libhttp-async-perl/debian/source/format
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-async-perl/debian/source/format?rev=67511&op=file
==============================================================================
--- trunk/libhttp-async-perl/debian/source/format (added)
+++ trunk/libhttp-async-perl/debian/source/format Tue Jan 18 22:39:26 2011
@@ -1,0 +1,1 @@
+3.0 (quilt)

Added: trunk/libhttp-async-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-async-perl/debian/watch?rev=67511&op=file
==============================================================================
--- trunk/libhttp-async-perl/debian/watch (added)
+++ trunk/libhttp-async-perl/debian/watch Tue Jan 18 22:39:26 2011
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/HTTP-Async/   .*/HTTP-Async-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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