r66395 - in /trunk/libclone-fast-perl/debian: changelog control copyright libclone-fast-perl.docs patches/ patches/fix-pod-spelling.patch patches/series source/ source/format

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat Dec 25 21:23:46 UTC 2010


Author: jawnsy-guest
Date: Sat Dec 25 21:23:39 2010
New Revision: 66395

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=66395
Log:
builds clean, looks good, dch -r

Added:
    trunk/libclone-fast-perl/debian/patches/
    trunk/libclone-fast-perl/debian/patches/fix-pod-spelling.patch
    trunk/libclone-fast-perl/debian/patches/series
    trunk/libclone-fast-perl/debian/source/
    trunk/libclone-fast-perl/debian/source/format
Removed:
    trunk/libclone-fast-perl/debian/libclone-fast-perl.docs
Modified:
    trunk/libclone-fast-perl/debian/changelog
    trunk/libclone-fast-perl/debian/control
    trunk/libclone-fast-perl/debian/copyright

Modified: trunk/libclone-fast-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclone-fast-perl/debian/changelog?rev=66395&op=diff
==============================================================================
--- trunk/libclone-fast-perl/debian/changelog (original)
+++ trunk/libclone-fast-perl/debian/changelog Sat Dec 25 21:23:39 2010
@@ -1,5 +1,5 @@
-libclone-fast-perl (0.93-1) UNRELEASED; urgency=low
+libclone-fast-perl (0.93-1) unstable; urgency=low
 
-  * Initial Release.
+  * Initial Release (Closes: #608001)
 
- -- Jonathan Yu <jawnsy at cpan.org>  Sat, 25 Dec 2010 15:37:22 -0500
+ -- Jonathan Yu <jawnsy at cpan.org>  Sat, 25 Dec 2010 16:40:07 -0500

Modified: trunk/libclone-fast-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclone-fast-perl/debian/control?rev=66395&op=diff
==============================================================================
--- trunk/libclone-fast-perl/debian/control (original)
+++ trunk/libclone-fast-perl/debian/control Sat Dec 25 21:23:39 2010
@@ -11,25 +11,10 @@
 
 Package: libclone-fast-perl
 Architecture: any
-Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, perl
-Description: Natively copying Perl data structures
- Essentially, this module is a very optimized version of Clone::More. By
- taking advantage of one of Clone::More's 'OPTIMIZATION_HACKS' as well as
- removing all the Pure Perl from the More.pm, I was able to gain a lot of
- speed out of the module. Essentially, though, the core of the module is
- exactly as that of Clone::More.
- .
- You will see that by useing Benchmark::cmpthese, I ran a simple comparison
- between Storable::dclone, Clone::More::clone, and Clone::Fast::clone. You
- will (should) begin to see the reason why I loaded this module along side of
- Clone::More.
- .
- Rate Storable Clone::More Clone::Fast
- .
- Storable 7552/s -- -39% -59%
- .
- Clone::More 12400/s 64% -- -33%
- .
- Clone::Fast 18442/s 144% 49% --
- .
- This description was automagically extracted from the module by dh-make-perl.
+Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}
+Description: module for fast data structure copying
+ Clone::Fast is a Perl module for quickly copying (cloning) arbitrary data
+ structures. Deep references in the structure will refer to the cloned data
+ structure. It is similar in concept to Storable's clone function, but is             
+ significantly faster since it doesn't need to convert data structures to
+ and from a binary format. 

Modified: trunk/libclone-fast-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclone-fast-perl/debian/copyright?rev=66395&op=diff
==============================================================================
--- trunk/libclone-fast-perl/debian/copyright (original)
+++ trunk/libclone-fast-perl/debian/copyright Sat Dec 25 21:23:39 2010
@@ -1,19 +1,17 @@
 Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
-Maintainer: Trevor Hall, <wazzuteke at cpan.org>
+Maintainer: Trevor Hall <wazzuteke at cpan.org>
 Source: http://search.cpan.org/dist/Clone-Fast/
 Name: Clone-Fast
-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: Trevor Hall, <wazzuteke at cpan.org>
-License: 
+Copyright: 2006, Trevor Hall <wazzuteke at cpan.org>
+License: Artistic or GPL-1+
+
+Files: ppport.h
+Copyright: 2004-2009, Marcus Holland-Moritz <mhx-cpan at gmx.net>
+ 2001, Paul Marquess <pmqs at cpan.org> (Version 2.x)
+ 1999, Kenneth Albanowski <kjahds at kjahds.com> (Version 1.x)
+License: Artistic or GPL-1+
 
 Files: debian/*
 Copyright: 2010, Jonathan Yu <jawnsy at cpan.org>

Added: trunk/libclone-fast-perl/debian/patches/fix-pod-spelling.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclone-fast-perl/debian/patches/fix-pod-spelling.patch?rev=66395&op=file
==============================================================================
--- trunk/libclone-fast-perl/debian/patches/fix-pod-spelling.patch (added)
+++ trunk/libclone-fast-perl/debian/patches/fix-pod-spelling.patch Sat Dec 25 21:23:39 2010
@@ -1,0 +1,15 @@
+Description: fix POD spelling errors
+Author: Jonathan Yu <jawnsy at cpan.org>
+Origin: vendor
+Forwarded: no
+--- a/lib/Clone/Fast.pm
++++ b/lib/Clone/Fast.pm
+@@ -307,7 +307,7 @@
+ This module works great for blessed references, how ever the paradigm changes when trying to clone
+ inside out objects (or Conway's 'flywaight' style of object creation).  Clone does not, nor will not,
+ clone the stash of an object's class; this would break more than anything.  Given this, HOOKS have
+-been provided in order to programatically handle wierd stuff like this.  I am hoping applications,
++been provided in order to programatically handle weird stuff like this.  I am hoping applications,
+ developers and all of the like whom are using inside out objects will know what the heck it is I'm
+ talking about here.  There is a lot more information about this in the PROGRAMATIC HOOKS section.
+ 

Added: trunk/libclone-fast-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclone-fast-perl/debian/patches/series?rev=66395&op=file
==============================================================================
--- trunk/libclone-fast-perl/debian/patches/series (added)
+++ trunk/libclone-fast-perl/debian/patches/series Sat Dec 25 21:23:39 2010
@@ -1,0 +1,1 @@
+fix-pod-spelling.patch

Added: trunk/libclone-fast-perl/debian/source/format
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclone-fast-perl/debian/source/format?rev=66395&op=file
==============================================================================
--- trunk/libclone-fast-perl/debian/source/format (added)
+++ trunk/libclone-fast-perl/debian/source/format Sat Dec 25 21:23:39 2010
@@ -1,0 +1,1 @@
+3.0 (quilt)




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