diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-08-11 02:19:36 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-08-11 02:19:36 +0000 |
commit | f8fa8660f722e12a6d787a99c16394dd8033a97f (patch) | |
tree | 5dd8ebb83d1ac255301593323404f1b112d42c6b | |
parent | 192dba75d27ad63be7de152c29a2aa641276d453 (diff) | |
download | perl-MDK-Common-f8fa8660f722e12a6d787a99c16394dd8033a97f.tar perl-MDK-Common-f8fa8660f722e12a6d787a99c16394dd8033a97f.tar.gz perl-MDK-Common-f8fa8660f722e12a6d787a99c16394dd8033a97f.tar.bz2 perl-MDK-Common-f8fa8660f722e12a6d787a99c16394dd8033a97f.tar.xz perl-MDK-Common-f8fa8660f722e12a6d787a99c16394dd8033a97f.zip |
- perl_checker:
- allow $_o_XXX parameter name which is both unused and optional (same for $_b_XXX)
- shift is a ONE_SCALAR_PARA so that $box->pack_start(shift @l, 0, 0, 4) is parsed correctly
- in arrange_global_vars_declared(), don't keep anything in global_vars_declared, better
create shadow packages to contain them
- much better merging of multiple files defining functions in the same package.
This fixes the bad behaviour when using the cache (esp. do_pkgs, but it was even worse
with things in ugtk2.pm)
- adapt to perl-Gtk2 xs (which replace the perl-GTK2 inline version)
-rw-r--r-- | MDK/Common.pm.pl | 2 | ||||
-rw-r--r-- | perl-MDK-Common.spec | 13 |
2 files changed, 13 insertions, 2 deletions
diff --git a/MDK/Common.pm.pl b/MDK/Common.pm.pl index d60dabe..146e09d 100644 --- a/MDK/Common.pm.pl +++ b/MDK/Common.pm.pl @@ -71,7 +71,7 @@ use vars qw(@ISA @EXPORT $VERSION); #); # perl_checker: RE-EXPORT-ALL @EXPORT = map { @$_ } map { values %{'MDK::Common::' . $_ . 'EXPORT_TAGS'} } grep { /::$/ } keys %MDK::Common::; -$VERSION = "1.1.5"; +$VERSION = "1.1.6"; 1; EOF diff --git a/perl-MDK-Common.spec b/perl-MDK-Common.spec index 23f0aa1..cea836c 100644 --- a/perl-MDK-Common.spec +++ b/perl-MDK-Common.spec @@ -2,7 +2,7 @@ # do not change the version here, change in MDK/Common.pm.pl %define version THEVERSION -%define release 2mdk +%define release 1mdk %ifarch x86_64 %define build_option PERL_CHECKER_TARGET='debug-code BCSUFFIX=""' @@ -72,6 +72,17 @@ rm -rf $RPM_BUILD_ROOT # MODIFY IN THE CVS: cvs.mandrakesoft.com:/cooker soft/perl-MDK-Common %changelog +* Mon Aug 11 2003 Pixel <pixel@mandrakesoft.com> 1.1.6-1mdk +- perl_checker: + - allow $_o_XXX parameter name which is both unused and optional (same for $_b_XXX) + - shift is a ONE_SCALAR_PARA so that $box->pack_start(shift @l, 0, 0, 4) is parsed correctly + - in arrange_global_vars_declared(), don't keep anything in global_vars_declared, better + create shadow packages to contain them + - much better merging of multiple files defining functions in the same package. + This fixes the bad behaviour when using the cache (esp. do_pkgs, but it was even worse + with things in ugtk2.pm) + - adapt to perl-Gtk2 xs (which replace the perl-GTK2 inline version) + * Fri Aug 1 2003 Pixel <pixel@mandrakesoft.com> 1.1.5-2mdk - rebuild for new perl (it helps DrakX build script) |