r65641 - in /trunk/libcgi-psgi-perl/debian: ./ changelog compat control copyright libcgi-psgi-perl.docs rules watch

ivan at users.alioth.debian.org ivan at users.alioth.debian.org
Thu Dec 9 10:37:37 UTC 2010


Author: ivan
Date: Thu Dec  9 10:37:29 2010
New Revision: 65641

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

Added:
    trunk/libcgi-psgi-perl/debian/
    trunk/libcgi-psgi-perl/debian/changelog
    trunk/libcgi-psgi-perl/debian/compat
    trunk/libcgi-psgi-perl/debian/control
    trunk/libcgi-psgi-perl/debian/copyright
    trunk/libcgi-psgi-perl/debian/libcgi-psgi-perl.docs
    trunk/libcgi-psgi-perl/debian/rules   (with props)
    trunk/libcgi-psgi-perl/debian/watch

Added: trunk/libcgi-psgi-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-psgi-perl/debian/changelog?rev=65641&op=file
==============================================================================
--- trunk/libcgi-psgi-perl/debian/changelog (added)
+++ trunk/libcgi-psgi-perl/debian/changelog Thu Dec  9 10:37:29 2010
@@ -1,0 +1,5 @@
+libcgi-psgi-perl (0.13-1) UNRELEASED; urgency=low
+
+  * Initial Release.
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Thu, 9 Dec 2010 02:35:22 -0800

Added: trunk/libcgi-psgi-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-psgi-perl/debian/compat?rev=65641&op=file
==============================================================================
--- trunk/libcgi-psgi-perl/debian/compat (added)
+++ trunk/libcgi-psgi-perl/debian/compat Thu Dec  9 10:37:29 2010
@@ -1,0 +1,1 @@
+7

Added: trunk/libcgi-psgi-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-psgi-perl/debian/control?rev=65641&op=file
==============================================================================
--- trunk/libcgi-psgi-perl/debian/control (added)
+++ trunk/libcgi-psgi-perl/debian/control Thu Dec  9 10:37:29 2010
@@ -1,0 +1,37 @@
+Source: libcgi-psgi-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl (>= 5.10.0),
+ perl (>= 5.10.1) | libcgi-pm-perl (>= 3.33),
+ perl (>= 5.10.1) | libtest-simple-perl (>= 0.88)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Ivan Kohler <ivan-debian at 420.am>
+Standards-Version: 3.9.1
+Homepage: http://search.cpan.org/dist/CGI-PSGI/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libcgi-psgi-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libcgi-psgi-perl/
+
+Package: libcgi-psgi-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends}, perl,
+ perl (>= 5.10.1) | libcgi-pm-perl (>= 3.33)
+Description: Adapt CGI.pm to the PSGI protocol
+ CGI::PSGI is for web application framework developers who currently uses CGI
+ to handle query parameters, and would like for the frameworks to comply with
+ the PSGI protocol.
+ .
+ Only slight modifications should be required if the framework is already
+ collecting the body content to print to STDOUT at one place (rather using the
+ print-as-you-go approach).
+ .
+ On the other hand, if you are an "end user" of CGI.pm and have a CGI script
+ that you want to run under PSGI web servers, this module might not be what
+ you want. Take a look at CGI::Emulate::PSGI instead.
+ .
+ Your application, typically the web application framework adapter should
+ update the code to do CGI::PSGI->new($env) instead of CGI->new to create a
+ new CGI object. (This is similar to how CGI::Fast object is initialized in a
+ FastCGI environment.)
+ .
+ This description was automagically extracted from the module by dh-make-perl.

Added: trunk/libcgi-psgi-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-psgi-perl/debian/copyright?rev=65641&op=file
==============================================================================
--- trunk/libcgi-psgi-perl/debian/copyright (added)
+++ trunk/libcgi-psgi-perl/debian/copyright Thu Dec  9 10:37:29 2010
@@ -1,0 +1,36 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: Tatsuhiko Miyagawa <miyagawa at bulknews.net>
+Source: http://search.cpan.org/dist/CGI-PSGI/
+Name: CGI-PSGI
+DISCLAIMER: This copyright info was automatically extracted 
+ from the perl module. It may not be accurate, so you better 
+ check the module sources in order to ensure the module for its 
+ inclusion in Debian or for general legal information. Please, 
+ if licensing information is incorrectly generated, file a bug 
+ on dh-make-perl.
+ NOTE: Don't forget to remove this disclaimer once you are happy
+ with this file.
+
+Files: *
+Copyright: Tatsuhiko Miyagawa <miyagawa at bulknews.net>
+License: Artistic or GPL-1+
+
+Files: debian/*
+Copyright: 2010, Ivan Kohler <ivan-debian at 420.am>
+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
+ 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 GNU/Linux systems, the complete text of version 1 of the
+ General Public License can be found in `/usr/share/common-licenses/GPL-1'.

Added: trunk/libcgi-psgi-perl/debian/libcgi-psgi-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-psgi-perl/debian/libcgi-psgi-perl.docs?rev=65641&op=file
==============================================================================
--- trunk/libcgi-psgi-perl/debian/libcgi-psgi-perl.docs (added)
+++ trunk/libcgi-psgi-perl/debian/libcgi-psgi-perl.docs Thu Dec  9 10:37:29 2010
@@ -1,0 +1,1 @@
+README

Added: trunk/libcgi-psgi-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-psgi-perl/debian/rules?rev=65641&op=file
==============================================================================
--- trunk/libcgi-psgi-perl/debian/rules (added)
+++ trunk/libcgi-psgi-perl/debian/rules Thu Dec  9 10:37:29 2010
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

Propchange: trunk/libcgi-psgi-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libcgi-psgi-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-psgi-perl/debian/watch?rev=65641&op=file
==============================================================================
--- trunk/libcgi-psgi-perl/debian/watch (added)
+++ trunk/libcgi-psgi-perl/debian/watch Thu Dec  9 10:37:29 2010
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/CGI-PSGI/   .*/CGI-PSGI-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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