diff options
| author | Christian Breunig <christian@breunig.cc> | 2024-07-01 13:26:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-01 13:26:09 +0200 |
| commit | b8bdc8a668ee7786fc6c19f91d18b944a5e9cdbc (patch) | |
| tree | e9697cbe7ef50908ce96a0a57e76f7d7b7bcaeb2 /perl_dmod/Cstore/lib/Cstore.pm | |
| parent | 6f435de5a5ee165d24a11a28c5aa10b735bace03 (diff) | |
| parent | 069bd35b3cc58e0deeae02d3a7811d29c1ccea3f (diff) | |
| download | vyatta-cfg-b8bdc8a668ee7786fc6c19f91d18b944a5e9cdbc.tar.gz vyatta-cfg-b8bdc8a668ee7786fc6c19f91d18b944a5e9cdbc.zip | |
Merge pull request #83 from c-po/no-legacy
T6527: remove legacy Perl library components
Diffstat (limited to 'perl_dmod/Cstore/lib/Cstore.pm')
| -rw-r--r-- | perl_dmod/Cstore/lib/Cstore.pm | 96 |
1 files changed, 0 insertions, 96 deletions
diff --git a/perl_dmod/Cstore/lib/Cstore.pm b/perl_dmod/Cstore/lib/Cstore.pm deleted file mode 100644 index 7cf2169..0000000 --- a/perl_dmod/Cstore/lib/Cstore.pm +++ /dev/null @@ -1,96 +0,0 @@ -# Copyright (C) 2010 Vyatta, Inc. -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License version 2 as -# published by the Free Software Foundation. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. - -package Cstore; - -use 5.010000; -use strict; -use warnings; - -require Exporter; -use AutoLoader qw(AUTOLOAD); - -our @ISA = qw(Exporter); - -# Items to export into callers namespace by default. Note: do not export -# names by default without a very good reason. Use EXPORT_OK instead. -# Do not simply export all your public functions/methods/constants. - -# This allows declaration use Cstore ':all'; -# If you do not need this, moving things directly into @EXPORT or @EXPORT_OK -# will save memory. -our %EXPORT_TAGS = ( 'all' => [ qw( - -) ] ); - -our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); - -our @EXPORT = qw( - -); - -our $VERSION = '0.01'; - -require XSLoader; -XSLoader::load('Cstore', $VERSION); - -# Preloaded methods go here. - -# Autoload methods go after =cut, and are processed by the autosplit program. - -1; -__END__ -=head1 NAME - -Cstore - Perl binding for the Vyatta Cstore library - -=head1 SYNOPSIS - - use Cstore; - my $cstore = new Cstore; - -=head1 DESCRIPTION - -This module provides the Perl binding for the Vyatta Cstore library. - -=head2 EXPORT - -None by default. - -=head1 SEE ALSO - -For more information on the Cstore library, see the documentation and -source code for the main library. - -=head1 AUTHOR - -Vyatta, Inc. E<lt>eng@vyatta.comE<gt> - -=head1 COPYRIGHT AND LICENSE - -Copyright (C) 2010 Vyatta, Inc. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as -published by the Free Software Foundation. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see <http://www.gnu.org/licenses/>. - -=cut |
