r70963 - in /trunk/libhttp-daemon-perl/debian: ./ changelog compat control copyright libhttp-daemon-perl.docs rules source/ source/format watch

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Wed Mar 9 15:32:59 UTC 2011


Author: periapt-guest
Date: Wed Mar  9 15:32:37 2011
New Revision: 70963

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

Added:
    trunk/libhttp-daemon-perl/debian/
    trunk/libhttp-daemon-perl/debian/changelog
    trunk/libhttp-daemon-perl/debian/compat
    trunk/libhttp-daemon-perl/debian/control
    trunk/libhttp-daemon-perl/debian/copyright
    trunk/libhttp-daemon-perl/debian/libhttp-daemon-perl.docs
    trunk/libhttp-daemon-perl/debian/rules   (with props)
    trunk/libhttp-daemon-perl/debian/source/
    trunk/libhttp-daemon-perl/debian/source/format
    trunk/libhttp-daemon-perl/debian/watch

Added: trunk/libhttp-daemon-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-daemon-perl/debian/changelog?rev=70963&op=file
==============================================================================
--- trunk/libhttp-daemon-perl/debian/changelog (added)
+++ trunk/libhttp-daemon-perl/debian/changelog Wed Mar  9 15:32:37 2011
@@ -1,0 +1,8 @@
+libhttp-daemon-perl (6.00-1) UNRELEASED; urgency=low
+
+  WAITS-FOR: libhttp-request-perl, libhttp-response-perl,
+  libhttp-status-perl, libhttp-date-perl, liblwp-mediatypes-perl
+
+  * Initial Release (Closes: #617520).
+
+ -- Nicholas Bamber <nicholas at periapt.co.uk>  Wed, 9 Mar 2011 15:14:36 +0000

Added: trunk/libhttp-daemon-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-daemon-perl/debian/compat?rev=70963&op=file
==============================================================================
--- trunk/libhttp-daemon-perl/debian/compat (added)
+++ trunk/libhttp-daemon-perl/debian/compat Wed Mar  9 15:32:37 2011
@@ -1,0 +1,1 @@
+7

Added: trunk/libhttp-daemon-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-daemon-perl/debian/control?rev=70963&op=file
==============================================================================
--- trunk/libhttp-daemon-perl/debian/control (added)
+++ trunk/libhttp-daemon-perl/debian/control Wed Mar  9 15:32:37 2011
@@ -1,0 +1,35 @@
+Source: libhttp-daemon-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl, libhttp-request-perl, libhttp-response-perl,
+ libhttp-status-perl, libhttp-date-perl, liblwp-mediatypes-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Nicholas Bamber <nicholas at periapt.co.uk>
+Standards-Version: 3.9.1
+Homepage: http://search.cpan.org/dist/HTTP-Daemon/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libhttp-daemon-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libhttp-daemon-perl/
+
+Package: libhttp-daemon-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends}, libhttp-request-perl,
+ libhttp-response-perl, libhttp-status-perl, libhttp-date-perl,
+ liblwp-mediatypes-perl
+Replaces: libwww-perl (<< 6.00)
+Breaks: libwww-perl (<< 6.00)
+Description: simple http server class
+ Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen on a
+ socket for incoming requests. The HTTP::Daemon is a subclass of
+ IO::Socket::INET, so you can perform socket operations directly on it too.
+ .
+ The accept() method will return when a connection from a client is available.
+ The returned value will be an HTTP::Daemon::ClientConn object which is
+ another IO::Socket::INET subclass. Calling the get_request() method on this
+ object will read data from the client and return an HTTP::Request object. The
+ ClientConn object also provide methods to send back various responses.
+ .
+ This HTTP daemon does not fork(2) for you. Your application, i.e. the user of
+ the HTTP::Daemon is responsible for forking if that is desirable. Also note
+ that the user is responsible for generating responses that conform to the
+ HTTP/1.1 protocol.

Added: trunk/libhttp-daemon-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-daemon-perl/debian/copyright?rev=70963&op=file
==============================================================================
--- trunk/libhttp-daemon-perl/debian/copyright (added)
+++ trunk/libhttp-daemon-perl/debian/copyright Wed Mar  9 15:32:37 2011
@@ -1,0 +1,28 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: Gisle Aas <gisle at activestate.com>
+Source: http://search.cpan.org/dist/HTTP-Daemon/
+Name: HTTP-Daemon
+
+Files: *
+Copyright: 1996-2003, Gisle Aas <gisle at activestate.com>
+License: Artistic or GPL-1+
+
+Files: debian/*
+Copyright: 2011, Nicholas Bamber <nicholas at periapt.co.uk>
+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-daemon-perl/debian/libhttp-daemon-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-daemon-perl/debian/libhttp-daemon-perl.docs?rev=70963&op=file
==============================================================================
--- trunk/libhttp-daemon-perl/debian/libhttp-daemon-perl.docs (added)
+++ trunk/libhttp-daemon-perl/debian/libhttp-daemon-perl.docs Wed Mar  9 15:32:37 2011
@@ -1,0 +1,1 @@
+README

Added: trunk/libhttp-daemon-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-daemon-perl/debian/rules?rev=70963&op=file
==============================================================================
--- trunk/libhttp-daemon-perl/debian/rules (added)
+++ trunk/libhttp-daemon-perl/debian/rules Wed Mar  9 15:32:37 2011
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

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

Added: trunk/libhttp-daemon-perl/debian/source/format
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-daemon-perl/debian/source/format?rev=70963&op=file
==============================================================================
--- trunk/libhttp-daemon-perl/debian/source/format (added)
+++ trunk/libhttp-daemon-perl/debian/source/format Wed Mar  9 15:32:37 2011
@@ -1,0 +1,1 @@
+3.0 (quilt)

Added: trunk/libhttp-daemon-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-daemon-perl/debian/watch?rev=70963&op=file
==============================================================================
--- trunk/libhttp-daemon-perl/debian/watch (added)
+++ trunk/libhttp-daemon-perl/debian/watch Wed Mar  9 15:32:37 2011
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/HTTP-Daemon/   .*/HTTP-Daemon-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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