r49672 - in /trunk/libmoosex-clone-perl/debian: changelog control copyright patches/remove_libhash-util-fieldhash-compat.patch patches/series

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Fri Jan 1 00:35:26 UTC 2010


Author: jawnsy-guest
Date: Fri Jan  1 00:35:19 2010
New Revision: 49672

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=49672
Log:
polish up for release

Modified:
    trunk/libmoosex-clone-perl/debian/changelog
    trunk/libmoosex-clone-perl/debian/control
    trunk/libmoosex-clone-perl/debian/copyright
    trunk/libmoosex-clone-perl/debian/patches/remove_libhash-util-fieldhash-compat.patch
    trunk/libmoosex-clone-perl/debian/patches/series

Modified: trunk/libmoosex-clone-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoosex-clone-perl/debian/changelog?rev=49672&op=diff
==============================================================================
--- trunk/libmoosex-clone-perl/debian/changelog (original)
+++ trunk/libmoosex-clone-perl/debian/changelog Fri Jan  1 00:35:19 2010
@@ -1,13 +1,5 @@
 libmoosex-clone-perl (0.04-1) UNRELEASED; urgency=low
-
-  [ franck cuny ]
-  NEEDS libhash-util-fieldhash-compat-perl (or a patch)
   
   * Initial Release (Closes: #531401).
 
-  [ Salvatore Bonaccorso ]
-  * debian/control: Changed: Replace versioned (build-)dependency on
-    perl (>= 5.6.0-{12,16}) with an unversioned dependency on perl (as
-    permitted by Debian Policy 3.8.3).
-
- -- franck cuny <franck at lumberjaph.net>  Mon, 08 Jun 2009 08:51:38 +0200
+ -- Jonathan Yu <jawnsy at cpan.org>  Thu, 31 Dec 2009 19:35:29 -0500

Modified: trunk/libmoosex-clone-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoosex-clone-perl/debian/control?rev=49672&op=diff
==============================================================================
--- trunk/libmoosex-clone-perl/debian/control (original)
+++ trunk/libmoosex-clone-perl/debian/control Fri Jan  1 00:35:19 2010
@@ -1,13 +1,12 @@
 Source: libmoosex-clone-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7)
-Build-Depends-Indep: libdata-visitor-perl (>= 0.24),
-  libmoose-perl (>= 0.74), libnamespace-clean-perl (>= 0.08),
-  libtest-use-ok-perl, perl, quilt (>= 0.46-7)
+Build-Depends: debhelper (>= 7.0.8), quilt (>= 0.46-7)
+Build-Depends-Indep: perl, libdata-visitor-perl (>= 0.24),
+ libmoose-perl (>= 0.74), libnamespace-clean-perl, libtest-use-ok-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: franck cuny <franck at lumberjaph.net>
-Standards-Version: 3.8.1
+Uploaders: Jonathan Yu <jawnsy at cpan.org>
+Standards-Version: 3.8.3
 Homepage: http://search.cpan.org/dist/MooseX-Clone/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libmoosex-clone-perl
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libmoosex-clone-perl
@@ -15,14 +14,9 @@
 Package: libmoosex-clone-perl
 Architecture: all
 Depends: ${misc:Depends}, ${perl:Depends}, libdata-visitor-perl (>= 0.24),
-  libmoose-perl (>= 0.74), libnamespace-clean-perl (>= 0.08),
-  libhash-util-fieldhash-compat-perl (>= 0.03)
-Description: fine grained cloning support for Moose objects
- Out of the box Moose only provides very barebones cloning support in order to
- maximize flexibility.
- .
- MooseX::Clone provides a clone method that makes use of the low level cloning
- support already in Moose and adds selective deep cloning based on
- introspection on top of that. Attributes with the Clone trait will handle
- cloning of data within the object, typically delegating to the attribute
- value's own clone method.
+ libmoose-perl (>= 0.74), libnamespace-clean-perl
+Description: Moose extension providing fine-grained cloning support
+ MooseX::Clone extends Moose's low level cloning functionality by providing
+ selective deep cloning using introspection. Attributes with the Clone trait
+ will handle cloning of data within the object, typically delegating to the
+ attribute value's own clone method.

Modified: trunk/libmoosex-clone-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoosex-clone-perl/debian/copyright?rev=49672&op=diff
==============================================================================
--- trunk/libmoosex-clone-perl/debian/copyright (original)
+++ trunk/libmoosex-clone-perl/debian/copyright Fri Jan  1 00:35:19 2010
@@ -12,6 +12,7 @@
 
 Files: debian/*
 Copyright: 2009, franck cuny <franck at lumberjaph.net>
+ 2009, Jonathan Yu <jawnsy at cpan.org>
 License: Artistic | GPL-1+
 
 License: Artistic

Modified: trunk/libmoosex-clone-perl/debian/patches/remove_libhash-util-fieldhash-compat.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoosex-clone-perl/debian/patches/remove_libhash-util-fieldhash-compat.patch?rev=49672&op=diff
==============================================================================
--- trunk/libmoosex-clone-perl/debian/patches/remove_libhash-util-fieldhash-compat.patch (original)
+++ trunk/libmoosex-clone-perl/debian/patches/remove_libhash-util-fieldhash-compat.patch Fri Jan  1 00:35:19 2010
@@ -1,5 +1,12 @@
+Description: Don't require Hash::Util::FieldHash::Compat
+ This module requires Hash::Util::FieldHash::Compat, which just
+ loads Hash::Util::FieldHash if available or provides a slower
+ alternate implementation otherwise. Since Perl 5.10 has the
+ Hash::Util::FieldHash module already, we can use it directly.
 Author: franck cuny <franck at lumberjaph.net>
-Description: replace Hash::Util::FieldHash::Compat with Hash:Util::FieldHash
+Reviewed-by: Jonathan Yu <jawnsy at cpan.org>
+Origin: vendor
+Forwarded: not-needed
 Index: libmoosex-clone-perl/META.yml
 ===================================================================
 --- libmoosex-clone-perl.orig/META.yml	2009-06-29 20:57:06.000000000 +0200

Modified: trunk/libmoosex-clone-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoosex-clone-perl/debian/patches/series?rev=49672&op=diff
==============================================================================
--- trunk/libmoosex-clone-perl/debian/patches/series (original)
+++ trunk/libmoosex-clone-perl/debian/patches/series Fri Jan  1 00:35:19 2010
@@ -1,1 +1,1 @@
-remove_libhash-util-fieldhash-compat.path
+remove_libhash-util-fieldhash-compat.patch




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