r72563 - in /trunk/libeval-closure-perl/debian: ./ changelog compat control copyright rules source/ source/format watch

ghedo-guest at users.alioth.debian.org ghedo-guest at users.alioth.debian.org
Wed Apr 13 08:57:56 UTC 2011


Author: ghedo-guest
Date: Wed Apr 13 08:57:43 2011
New Revision: 72563

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

Added:
    trunk/libeval-closure-perl/debian/
    trunk/libeval-closure-perl/debian/changelog
    trunk/libeval-closure-perl/debian/compat
    trunk/libeval-closure-perl/debian/control
    trunk/libeval-closure-perl/debian/copyright
    trunk/libeval-closure-perl/debian/rules   (with props)
    trunk/libeval-closure-perl/debian/source/
    trunk/libeval-closure-perl/debian/source/format
    trunk/libeval-closure-perl/debian/watch

Added: trunk/libeval-closure-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libeval-closure-perl/debian/changelog?rev=72563&op=file
==============================================================================
--- trunk/libeval-closure-perl/debian/changelog (added)
+++ trunk/libeval-closure-perl/debian/changelog Wed Apr 13 08:57:43 2011
@@ -1,0 +1,5 @@
+libeval-closure-perl (0.03-1) UNRELEASED; urgency=low
+
+  * Initial Release. (Closes: #622593)
+
+ -- Alessandro Ghedini <al3xbio at gmail.com>  Wed, 13 Apr 2011 10:30:21 +0200

Added: trunk/libeval-closure-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libeval-closure-perl/debian/compat?rev=72563&op=file
==============================================================================
--- trunk/libeval-closure-perl/debian/compat (added)
+++ trunk/libeval-closure-perl/debian/compat Wed Apr 13 08:57:43 2011
@@ -1,0 +1,1 @@
+8

Added: trunk/libeval-closure-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libeval-closure-perl/debian/control?rev=72563&op=file
==============================================================================
--- trunk/libeval-closure-perl/debian/control (added)
+++ trunk/libeval-closure-perl/debian/control Wed Apr 13 08:57:43 2011
@@ -1,0 +1,38 @@
+Source: libeval-closure-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 8)
+Build-Depends-Indep: perl,
+ libpadwalker-perl,
+ libsub-exporter-perl,
+ libtest-fatal-perl,
+ libtest-output-perl,
+ libtest-requires-perl,
+ libtry-tiny-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Alessandro Ghedini <al3xbio at gmail.com>
+Standards-Version: 3.9.1
+Homepage: http://search.cpan.org/dist/Eval-Closure/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libeval-closure-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libeval-closure-perl/
+
+Package: libeval-closure-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends},
+ libsub-exporter-perl,
+ libtry-tiny-perl
+Description: Perl module to safely and cleanly create closures via string eval
+ String eval is often used for dynamic code generation. For instance, Moose
+ uses it heavily, to generate inlined versions of accessors and constructors,
+ which speeds code up at runtime by a significant amount. String eval is not
+ without its issues however - it's difficult to control the scope it's used in
+ (which determines which variables are in scope inside the eval), and it can
+ be quite slow, especially if doing a large number of evals.
+ .
+ Eval::Closure attempts to solve both of those problems. It provides an
+ eval_closure function, which evals a string in a clean environment, other
+ than a fixed list of specified variables. It also caches the result of the
+ eval, so that doing repeated evals of the same source, even with a different
+ environment, will be much faster (but note that the description is part of
+ the string to be evaled, so it must also be the same (or non-existent) if
+ caching is to work properly).

Added: trunk/libeval-closure-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libeval-closure-perl/debian/copyright?rev=72563&op=file
==============================================================================
--- trunk/libeval-closure-perl/debian/copyright (added)
+++ trunk/libeval-closure-perl/debian/copyright Wed Apr 13 08:57:43 2011
@@ -1,0 +1,28 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: Jesse Luehrs <doy at tozt.net>
+Source: http://search.cpan.org/dist/Eval-Closure/
+Name: Eval-Closure
+
+Files: *
+Copyright: 2011, Jesse Luehrs <doy at tozt.net>
+License: Artistic or GPL-1+
+
+Files: debian/*
+Copyright: 2011, Alessandro Ghedini <al3xbio at gmail.com>
+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/libeval-closure-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libeval-closure-perl/debian/rules?rev=72563&op=file
==============================================================================
--- trunk/libeval-closure-perl/debian/rules (added)
+++ trunk/libeval-closure-perl/debian/rules Wed Apr 13 08:57:43 2011
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

Propchange: trunk/libeval-closure-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libeval-closure-perl/debian/source/format
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libeval-closure-perl/debian/source/format?rev=72563&op=file
==============================================================================
--- trunk/libeval-closure-perl/debian/source/format (added)
+++ trunk/libeval-closure-perl/debian/source/format Wed Apr 13 08:57:43 2011
@@ -1,0 +1,1 @@
+3.0 (quilt)

Added: trunk/libeval-closure-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libeval-closure-perl/debian/watch?rev=72563&op=file
==============================================================================
--- trunk/libeval-closure-perl/debian/watch (added)
+++ trunk/libeval-closure-perl/debian/watch Wed Apr 13 08:57:43 2011
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Eval-Closure/   .*/Eval-Closure-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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