diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-11-25 13:16:43 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-11-25 13:16:43 +0000 |
commit | 464940c09a42f968e359606bddb8d4ee83718403 (patch) | |
tree | 82a1cead4d6d666ee284ad81bbf3b860be685372 /MDK | |
parent | dcfc8c7302059b30fc97aee62a5d29a3d690d7f5 (diff) | |
download | perl-MDK-Common-464940c09a42f968e359606bddb8d4ee83718403.tar perl-MDK-Common-464940c09a42f968e359606bddb8d4ee83718403.tar.gz perl-MDK-Common-464940c09a42f968e359606bddb8d4ee83718403.tar.bz2 perl-MDK-Common-464940c09a42f968e359606bddb8d4ee83718403.tar.xz perl-MDK-Common-464940c09a42f968e359606bddb8d4ee83718403.zip |
get rid of MDK::Common::Globals (not used anymore by drakconnect)
Diffstat (limited to 'MDK')
-rw-r--r-- | MDK/Common.pm.pl | 3 | ||||
-rw-r--r-- | MDK/Common/Globals.pm | 61 |
2 files changed, 1 insertions, 63 deletions
diff --git a/MDK/Common.pm.pl b/MDK/Common.pm.pl index 2dc0b11..d5529c0 100644 --- a/MDK/Common.pm.pl +++ b/MDK/Common.pm.pl @@ -26,7 +26,6 @@ C<MDK::Common> is a collection of packages containing various simple functions: L<MDK::Common::DataStructure>, L<MDK::Common::File>, L<MDK::Common::Func>, -L<MDK::Common::Globals>, L<MDK::Common::Math>, L<MDK::Common::String>, L<MDK::Common::System>, @@ -74,7 +73,7 @@ our @ISA = qw(Exporter); # perl_checker: RE-EXPORT-ALL our @EXPORT = map { @$_ } map { values %{'MDK::Common::' . $_ . 'EXPORT_TAGS'} } grep { /::$/ } keys %MDK::Common::; -our $VERSION = "1.1.24"; +our $VERSION = "1.1.25"; 1; EOF diff --git a/MDK/Common/Globals.pm b/MDK/Common/Globals.pm deleted file mode 100644 index 0e73b83..0000000 --- a/MDK/Common/Globals.pm +++ /dev/null @@ -1,61 +0,0 @@ -package MDK::Common::Globals; - -=head1 NAME - -Shares constant values between modules - -=head1 SYNOPSIS - - use MDK::Common::Globals "foo", qw($a $b); - - MDK::Common::Globals::init(a => 2, b => 3); - - print $a; # 2 - -=cut - - -sub import { - my (undef, $name, @globals) = @_; - foreach (@globals) { - $name =~ /^\$/ and die qq(usage : use MDK::Common::Globals "group", qw(\$var1 \$var2 ...);\n); - s/^\$// or die qq(bad parameter to "use MDK::Common::Globals": missing variable ``$_'' should be written ``\$$_''); #); - - no strict 'refs'; - my $v = caller() . '::' . $_; - my $lv = "$name __ $_"; - *$v = *$lv; - eval { undef = $$lv; tie $$lv, 'MDK::Common::Globals', $_ }; - } -} - -sub init { - @_ % 2 == 0 or die "usage MDK::Common::Globals::init(key => val, key2 => val2, ...)\n"; - my %l = @_; - foreach (keys %l) { - my $v = caller() . '::' . $_; - no strict 'refs'; - $$v = $l{$_}; - } -} - -sub TIESCALAR { - my ($class, $name) = @_; - my $var; - bless [$var, undef, $name], $class; -} - -sub STORE { - my ($o, $val) = @_; - $o->[1] and die "MDK::Common::Globals::$o->[2] already set\n"; - $o->[1] = 1; - $o->[0] = $val; -} - -sub FETCH { - my ($o) = @_; - $o->[1] or die "MDK::Common::Globals::$o->[2] unset\n"; - $o->[0]; -} - -1; |