r66920 - in /trunk/libtest-cgi-multipart-perl/debian: ./ changelog compat control copyright rules source/ source/format watch

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Tue Jan 4 12:31:36 UTC 2011


Author: periapt-guest
Date: Tue Jan  4 12:31:29 2011
New Revision: 66920

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

Added:
    trunk/libtest-cgi-multipart-perl/debian/
    trunk/libtest-cgi-multipart-perl/debian/changelog
    trunk/libtest-cgi-multipart-perl/debian/compat
    trunk/libtest-cgi-multipart-perl/debian/control
    trunk/libtest-cgi-multipart-perl/debian/copyright
    trunk/libtest-cgi-multipart-perl/debian/rules   (with props)
    trunk/libtest-cgi-multipart-perl/debian/source/
    trunk/libtest-cgi-multipart-perl/debian/source/format
    trunk/libtest-cgi-multipart-perl/debian/watch

Added: trunk/libtest-cgi-multipart-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-cgi-multipart-perl/debian/changelog?rev=66920&op=file
==============================================================================
--- trunk/libtest-cgi-multipart-perl/debian/changelog (added)
+++ trunk/libtest-cgi-multipart-perl/debian/changelog Tue Jan  4 12:31:29 2011
@@ -1,0 +1,5 @@
+libtest-cgi-multipart-perl (0.0.3-1) UNRELEASED; urgency=low
+
+  * Initial Release. (Closes: #608883)
+
+ -- Nicholas Bamber <nicholas at periapt.co.uk>  Tue, 4 Jan 2011 12:07:50 +0000

Added: trunk/libtest-cgi-multipart-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-cgi-multipart-perl/debian/compat?rev=66920&op=file
==============================================================================
--- trunk/libtest-cgi-multipart-perl/debian/compat (added)
+++ trunk/libtest-cgi-multipart-perl/debian/compat Tue Jan  4 12:31:29 2011
@@ -1,0 +1,1 @@
+8

Added: trunk/libtest-cgi-multipart-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-cgi-multipart-perl/debian/control?rev=66920&op=file
==============================================================================
--- trunk/libtest-cgi-multipart-perl/debian/control (added)
+++ trunk/libtest-cgi-multipart-perl/debian/control Tue Jan  4 12:31:29 2011
@@ -1,0 +1,34 @@
+Source: libtest-cgi-multipart-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 8)
+Build-Depends-Indep: 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/Test-CGI-Multipart/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtest-cgi-multipart-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtest-cgi-multipart-perl/
+
+Package: libtest-cgi-multipart-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends}
+Description: support for testing posting of multi-part form data
+ It is quite difficult to write test code to capture the behaviour 
+ of CGI or similar objects handling forms that include a file upload.
+ Such code needs to harvest the parameters, build file content in MIME
+ format, set the environment variables accordingly and pump it into the 
+ the standard input of the required CGI object. This module provides
+ simple methods so that having prepared suitable content, the test script
+ can simulate the submission of web forms including file uploads.
+ .
+ Moreover a test script is not always the best place to prepare content. Rather
+ a test script would rather specify requirements for a file a upload: type,
+ size, mismatches between the file name and its contents and so on. This module
+ cannot hope to provide such open ended functionality but it can provide
+ extension mechanisms.
+ .
+ This module works with CGI (the default), CGI::Minimal and CGI::Simple. In
+ principle it ought to work with all equivalent modules however each module has
+ a slightly different interface when it comes to file uploads and so requires
+ slightly different test code.

Added: trunk/libtest-cgi-multipart-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-cgi-multipart-perl/debian/copyright?rev=66920&op=file
==============================================================================
--- trunk/libtest-cgi-multipart-perl/debian/copyright (added)
+++ trunk/libtest-cgi-multipart-perl/debian/copyright Tue Jan  4 12:31:29 2011
@@ -1,0 +1,28 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: Nicholas Bamber <nicholas at periapt.co.uk>
+Source: http://search.cpan.org/dist/Test-CGI-Multipart/
+Name: Test-CGI-Multipart
+
+Files: *
+Copyright: 2010, Nicholas Bamber <nicholas at periapt.co.uk>
+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/libtest-cgi-multipart-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-cgi-multipart-perl/debian/rules?rev=66920&op=file
==============================================================================
--- trunk/libtest-cgi-multipart-perl/debian/rules (added)
+++ trunk/libtest-cgi-multipart-perl/debian/rules Tue Jan  4 12:31:29 2011
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

Propchange: trunk/libtest-cgi-multipart-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libtest-cgi-multipart-perl/debian/source/format
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-cgi-multipart-perl/debian/source/format?rev=66920&op=file
==============================================================================
--- trunk/libtest-cgi-multipart-perl/debian/source/format (added)
+++ trunk/libtest-cgi-multipart-perl/debian/source/format Tue Jan  4 12:31:29 2011
@@ -1,0 +1,1 @@
+3.0 (quilt)

Added: trunk/libtest-cgi-multipart-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-cgi-multipart-perl/debian/watch?rev=66920&op=file
==============================================================================
--- trunk/libtest-cgi-multipart-perl/debian/watch (added)
+++ trunk/libtest-cgi-multipart-perl/debian/watch Tue Jan  4 12:31:29 2011
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Test-CGI-Multipart/   .*/Test-CGI-Multipart-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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