r39691 - in /trunk/libguard-perl/debian: changelog control copyright
jawnsy-guest at users.alioth.debian.org
jawnsy-guest at users.alioth.debian.org
Sat Jul 11 04:08:38 UTC 2009
Author: jawnsy-guest
Date: Sat Jul 11 04:08:26 2009
New Revision: 39691
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=39691
Log:
cleaned up control description, added proper copyright info to copyright. still waiting for an e-mail reply.
Modified:
trunk/libguard-perl/debian/changelog
trunk/libguard-perl/debian/control
trunk/libguard-perl/debian/copyright
Modified: trunk/libguard-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libguard-perl/debian/changelog?rev=39691&op=diff
==============================================================================
--- trunk/libguard-perl/debian/changelog (original)
+++ trunk/libguard-perl/debian/changelog Sat Jul 11 04:08:26 2009
@@ -1,4 +1,6 @@
libguard-perl (1.02-1) UNRELEASED; urgency=low
+
+ WAITS for copyright info from upstream
* Initial Release (Closes: #536550)
Modified: trunk/libguard-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libguard-perl/debian/control?rev=39691&op=diff
==============================================================================
--- trunk/libguard-perl/debian/control (original)
+++ trunk/libguard-perl/debian/control Sat Jul 11 04:08:26 2009
@@ -4,7 +4,7 @@
Build-Depends: debhelper (>= 7), perl (>= 5.6.0-12)
Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
Uploaders: Jonathan Yu <frequency at cpan.org>
-Standards-Version: 3.8.1
+Standards-Version: 3.8.2
Homepage: http://search.cpan.org/dist/Guard/
Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libguard-perl/
Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libguard-perl/
@@ -12,12 +12,10 @@
Package: libguard-perl
Architecture: any
Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends}
-Description: safe cleanup blocks
- Guard implements so-called "guards". A guard is something (usually an object)
- that "guards" a resource, ensuring that it is cleaned up when expected.
- .
- Specifically, this module supports two different types of guards: guard
- objects, which execute a given code block when destroyed, and scoped guards,
- which are tied to the scope exit.
- .
- This description was automagically extracted from the module by dh-make-perl.
+Description: Perl module providing safe cleanup using guard objects
+ Guard is a Perl module implementing so-called "guards," which are things that
+ "guard" a resource, ensuring that it is safely cleaned up when expected, even
+ if exceptional conditions interrupt the normal control flow. This allows one
+ to write code which executes an arbitrary code block or subroutine when either
+ the related Guard Object is destroyed or when the current scope ends. In other
+ languages, this sort of functionality is provided by the 'finally' keyword.
Modified: trunk/libguard-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libguard-perl/debian/copyright?rev=39691&op=diff
==============================================================================
--- trunk/libguard-perl/debian/copyright (original)
+++ trunk/libguard-perl/debian/copyright Sat Jul 11 04:08:26 2009
@@ -1,23 +1,50 @@
Format-Specification:
http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
-Upstream-Maintainer: (information incomplete)
+Upstream-Maintainer: Marc Lehmann <schmorp at schmorp.de>
Upstream-Source: http://search.cpan.org/dist/Guard/
Upstream-Name: Guard
-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.
Files: *
-Copyright: (information incomplete)
+Copyright: Marc Lehmann <schmorp at schmorp.de>
License-Alias: Perl
License: Artistic | GPL-1+
+
+Files: Coro/libcoro/*
+Copyright: 2000-2005, Marc Alexander Lehmann <schmorp at schmorp.de>
+License: BSD
Files: debian/*
Copyright: 2009, Jonathan Yu <frequency at cpan.org>
License: Artistic | GPL-1+
+
+License: BSD
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above
+ copyright notice, this list of conditions and the following
+ disclaimer in the documentation and/or other materials provided
+ with the distribution.
+
+ 3. The name of the author may not be used to endorse or promote
+ products derived from this software without specific prior
+ written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRA-
+ NTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+ OF THE POSSIBILITY OF SUCH DAMAGE.
License: Artistic
This program is free software; you can redistribute it and/or modify
More information about the Pkg-perl-cvs-commits
mailing list