r73252 - in /trunk/libdevel-declare-perl: Changes Declare.xs MANIFEST META.yml README debian/changelog lib/Devel/Declare.pm lib/Devel/Declare/MethodInstaller/Simple.pm t/early0.t t/early1.t t/early1_x.pm
gregoa at users.alioth.debian.org
gregoa at users.alioth.debian.org
Sat Apr 23 17:07:22 UTC 2011
Author: gregoa
Date: Sat Apr 23 17:07:08 2011
New Revision: 73252
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=73252
Log:
* New upstream release 0.006003.
Added:
trunk/libdevel-declare-perl/t/early0.t
- copied unchanged from r73251, branches/upstream/libdevel-declare-perl/current/t/early0.t
trunk/libdevel-declare-perl/t/early1.t
- copied unchanged from r73251, branches/upstream/libdevel-declare-perl/current/t/early1.t
trunk/libdevel-declare-perl/t/early1_x.pm
- copied unchanged from r73251, branches/upstream/libdevel-declare-perl/current/t/early1_x.pm
Removed:
trunk/libdevel-declare-perl/README
Modified:
trunk/libdevel-declare-perl/Changes
trunk/libdevel-declare-perl/Declare.xs
trunk/libdevel-declare-perl/MANIFEST
trunk/libdevel-declare-perl/META.yml
trunk/libdevel-declare-perl/debian/changelog
trunk/libdevel-declare-perl/lib/Devel/Declare.pm
trunk/libdevel-declare-perl/lib/Devel/Declare/MethodInstaller/Simple.pm
Modified: trunk/libdevel-declare-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-declare-perl/Changes?rev=73252&op=diff
==============================================================================
--- trunk/libdevel-declare-perl/Changes (original)
+++ trunk/libdevel-declare-perl/Changes Sat Apr 23 17:07:08 2011
@@ -1,4 +1,10 @@
Changes for Devel-Declare
+
+0.006003 - 12 Apr 2011
+ - Fix test-failures on old perl versions (Zefram).
+
+0.006002 - 08 Apr 2011
+ - Re-add Support for very early growing of PL_linestr using filters (Zefram).
0.006001 - 26 Feb 2011
- Support perl >= 5.13.7 by re-allocating PL_linestr in block hooks (Zefram).
Modified: trunk/libdevel-declare-perl/Declare.xs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-declare-perl/Declare.xs?rev=73252&op=diff
==============================================================================
--- trunk/libdevel-declare-perl/Declare.xs (original)
+++ trunk/libdevel-declare-perl/Declare.xs Sat Apr 23 17:07:08 2011
@@ -379,6 +379,8 @@
return o;
}
+#endif /* !DD_GROW_VIA_BLOCKHOOK */
+
static I32 dd_filter_realloc(pTHX_ int idx, SV *sv, int maxlen)
{
const I32 count = FILTER_READ(idx+1, sv, maxlen);
@@ -386,8 +388,6 @@
/* filter_del(dd_filter_realloc); */
return count;
}
-
-#endif /* !DD_GROW_VIA_BLOCKHOOK */
static int dd_handle_const(pTHX_ char *name) {
switch (PL_lex_inwhat) {
@@ -500,9 +500,7 @@
hook_op_check(OP_CONST, dd_ck_const, NULL);
#endif /* !DD_CONST_VIA_RV2CV */
}
-#if !DD_GROW_VIA_BLOCKHOOK
filter_add(dd_filter_realloc, NULL);
-#endif /* !DD_GROW_VIA_BLOCKHOOK */
char*
get_linestr()
Modified: trunk/libdevel-declare-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-declare-perl/MANIFEST?rev=73252&op=diff
==============================================================================
--- trunk/libdevel-declare-perl/MANIFEST (original)
+++ trunk/libdevel-declare-perl/MANIFEST Sat Apr 23 17:07:08 2011
@@ -11,7 +11,6 @@
Makefile.PL
MANIFEST This list of files
META.yml
-README
stolen_chunk_of_toke.c
t/00load.t
t/build_sub_installer.t
@@ -20,6 +19,9 @@
t/ctx-simple.t
t/debug.pl
t/debug.t
+t/early0.t
+t/early1.t
+t/early1_x.pm
t/eval.t
t/fail.t
t/lines.t
Modified: trunk/libdevel-declare-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-declare-perl/META.yml?rev=73252&op=diff
==============================================================================
--- trunk/libdevel-declare-perl/META.yml (original)
+++ trunk/libdevel-declare-perl/META.yml Sat Apr 23 17:07:08 2011
@@ -30,4 +30,4 @@
resources:
license: http://dev.perl.org/licenses/
repository: git://github.com/rafl/devel-declare.git
-version: 0.006001
+version: 0.006003
Modified: trunk/libdevel-declare-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-declare-perl/debian/changelog?rev=73252&op=diff
==============================================================================
--- trunk/libdevel-declare-perl/debian/changelog (original)
+++ trunk/libdevel-declare-perl/debian/changelog Sat Apr 23 17:07:08 2011
@@ -1,15 +1,15 @@
-libdevel-declare-perl (0.006001-1) UNRELEASED; urgency=low
-
- IGNORE-VERSION: 0.006001-1
- NOTE: forward-compatibility fixes for perl 5.13
+libdevel-declare-perl (0.006003-1) UNRELEASED; urgency=low
[ Jonathan Yu ]
- * New upstream release
+ * New upstream release 0.006001
[ Ansgar Burchardt ]
* Update my email address.
- -- Jonathan Yu <jawnsy at cpan.org> Sun, 27 Feb 2011 13:47:42 -0500
+ [ gregor herrmann ]
+ * New upstream release 0.006003.
+
+ -- gregor herrmann <gregoa at debian.org> Sat, 23 Apr 2011 19:06:14 +0200
libdevel-declare-perl (0.006000-1) unstable; urgency=low
Modified: trunk/libdevel-declare-perl/lib/Devel/Declare.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-declare-perl/lib/Devel/Declare.pm?rev=73252&op=diff
==============================================================================
--- trunk/libdevel-declare-perl/lib/Devel/Declare.pm (original)
+++ trunk/libdevel-declare-perl/lib/Devel/Declare.pm Sat Apr 23 17:07:08 2011
@@ -4,7 +4,7 @@
use warnings;
use 5.008001;
-our $VERSION = '0.006001';
+our $VERSION = '0.006003';
use constant DECLARE_NAME => 1;
use constant DECLARE_PROTO => 2;
Modified: trunk/libdevel-declare-perl/lib/Devel/Declare/MethodInstaller/Simple.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-declare-perl/lib/Devel/Declare/MethodInstaller/Simple.pm?rev=73252&op=diff
==============================================================================
--- trunk/libdevel-declare-perl/lib/Devel/Declare/MethodInstaller/Simple.pm (original)
+++ trunk/libdevel-declare-perl/lib/Devel/Declare/MethodInstaller/Simple.pm Sat Apr 23 17:07:08 2011
@@ -7,7 +7,7 @@
use strict;
use warnings;
-our $VERSION = '0.006001';
+our $VERSION = '0.006003';
sub install_methodhandler {
my $class = shift;
More information about the Pkg-perl-cvs-commits
mailing list