diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-04-29 17:23:06 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-04-29 17:23:06 +0000 |
commit | 6c33ba9be6861238d8c7d01e1e1af32225e7b56b (patch) | |
tree | b9ae576482d4fefea5d595c47c8ca410db8fe5b4 | |
parent | 246198a554463d4778a28954ba279a21c97850cb (diff) | |
download | perl-MDK-Common-6c33ba9be6861238d8c7d01e1e1af32225e7b56b.tar perl-MDK-Common-6c33ba9be6861238d8c7d01e1e1af32225e7b56b.tar.gz perl-MDK-Common-6c33ba9be6861238d8c7d01e1e1af32225e7b56b.tar.bz2 perl-MDK-Common-6c33ba9be6861238d8c7d01e1e1af32225e7b56b.tar.xz perl-MDK-Common-6c33ba9be6861238d8c7d01e1e1af32225e7b56b.zip |
- perl_checker: more context checks
- ensure the values are used (eg: "map { ... } ...", "/xxx/")
- ensure the values "... or ...", "... and ..." are not used
-rw-r--r-- | MDK/Common.pm.pl | 2 | ||||
-rw-r--r-- | perl-MDK-Common.spec | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/MDK/Common.pm.pl b/MDK/Common.pm.pl index 3770ff6..5b8b177 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.1"; +$VERSION = "1.1.2"; 1; EOF diff --git a/perl-MDK-Common.spec b/perl-MDK-Common.spec index 47e8c5e..592b2d8 100644 --- a/perl-MDK-Common.spec +++ b/perl-MDK-Common.spec @@ -52,6 +52,11 @@ rm -rf $RPM_BUILD_ROOT # MODIFY IN THE CVS: cvs.mandrakesoft.com:/cooker soft/perl-MDK-Common %changelog +* Tue Apr 29 2003 Pixel <pixel@mandrakesoft.com> 1.1.2-1mdk +- perl_checker: more context checks + - ensure the values are used (eg: "map { ... } ...", "/xxx/") + - ensure the values "... or ...", "... and ..." are not used + * Fri Apr 25 2003 Pixel <pixel@mandrakesoft.com> 1.1.1-1mdk - perl_checker: enhanced "number of arguments" checking, including method calls |