summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/Tie/Registry.pm
diff options
context:
space:
mode:
authorSiep Kroonenberg <siepo@cybercomm.nl>2011-02-17 12:20:49 +0000
committerSiep Kroonenberg <siepo@cybercomm.nl>2011-02-17 12:20:49 +0000
commit316ee97c621496b0fe3267f57cce81bee44ca1e6 (patch)
treecb2cab1192b4f58a7971af19b213e980bceda4b4 /Master/tlpkg/tlperl/lib/Tie/Registry.pm
parentcd0f87b5d39480d85ad9bd4ee37f520f75bed560 (diff)
Moving old tlperl prior to committing new one
git-svn-id: svn://tug.org/texlive/trunk@21422 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Tie/Registry.pm')
-rwxr-xr-xMaster/tlpkg/tlperl/lib/Tie/Registry.pm45
1 files changed, 0 insertions, 45 deletions
diff --git a/Master/tlpkg/tlperl/lib/Tie/Registry.pm b/Master/tlpkg/tlperl/lib/Tie/Registry.pm
deleted file mode 100755
index 2ded338d342..00000000000
--- a/Master/tlpkg/tlperl/lib/Tie/Registry.pm
+++ /dev/null
@@ -1,45 +0,0 @@
-package Tie::Registry;
-
-# Tie/Registry.pm -- Provides backward compatibility for Win32::TieRegistry
-# that was called Tie::Registry prior to version 0.20.
-# by Tye McQueen, tye@metronet.com, see http://www.metronet.com/~tye/.
-
-use strict;
-use Carp;
-
-use vars qw( $VERSION @ISA );
-BEGIN {
- require Win32::TieRegistry;
- $VERSION = '0.15';
- @ISA = qw{Win32::TieRegistry};
-}
-
-sub import {
- my $pkg = shift;
- Win32::TieRegistry->import( ExportLevel => 1, SplitMultis => 0, @_ );
-}
-
-1;
-
-__END__
-
-=pod
-
-=head1 NAME
-
-Tie::Registry - Legacy interface to Win32::TieRegistry (DEPRECATED)
-
-=head1 DESCRIPTION
-
-This module provides backward compatibility for L<Win32::TieRegistry>
-that was called Tie::Registry prior to version 0.20.
-
-=head1 AUTHOR
-
-Tye McQueen E<lt>tye@metronet.comE<gt>
-
-=head1 COPYRIGHT
-
-Copyright 1999 Tye McQueen.
-
-=cut