aboutsummaryrefslogtreecommitdiff
path: root/SBO-Lib/lib/SBO/Lib.pm
diff options
context:
space:
mode:
Diffstat (limited to 'SBO-Lib/lib/SBO/Lib.pm')
-rw-r--r--SBO-Lib/lib/SBO/Lib.pm99
1 files changed, 0 insertions, 99 deletions
diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm
deleted file mode 100644
index b249dc6..0000000
--- a/SBO-Lib/lib/SBO/Lib.pm
+++ /dev/null
@@ -1,99 +0,0 @@
-#!/usr/bin/env perl
-#
-# vim: set ts=4:noet
-#
-# Lib.pm
-# shared functions for the sbo_ scripts.
-#
-use 5.16.0;
-use strict;
-use warnings FATAL => 'all';
-
-package SBO::Lib;
-our $VERSION = '2.8.0';
-
-=pod
-
-=encoding UTF-8
-
-=head1 NAME
-
-SBO::Lib - Library for working with SlackBuilds.org.
-
-=head1 SYNOPSIS
-
- use SBO::Lib qw/ :all /;
-
-=head1 DESCRIPTION
-
-SBO::Lib is the entry point for all the related modules, and is simply re-
-exporting all of their exports.
-
-=head1 SEE ALSO
-
-=over
-
-=item L<SBO::Lib::Cryptography>
-
-=item L<SBO::Lib::Util>
-
-=item L<SBO::Lib::Info>
-
-=item L<SBO::Lib::Repo>
-
-=item L<SBO::Lib::Tree>
-
-=item L<SBO::Lib::Pkgs>
-
-=item L<SBO::Lib::Build>
-
-=item L<SBO::Lib::Readme>
-
-=item L<SBO::Lib::Download>
-
-=back
-
-=cut
-
-use SBO::Lib::Cryptography qw/ :all /;
-use SBO::Lib::Util qw/ :all /;
-use SBO::Lib::Info qw/ :all /;
-use SBO::Lib::Repo qw/ :all /;
-use SBO::Lib::Tree qw/ :all /;
-use SBO::Lib::Pkgs qw/ :all /;
-use SBO::Lib::Build qw/:all /;
-use SBO::Lib::Readme qw/ :all /;
-use SBO::Lib::Download qw/ :all /;
-
-use Exporter 'import';
-
-our @EXPORT_OK = (
- @SBO::Lib::Cryptography::EXPORT_OK,
- @SBO::Lib::Util::EXPORT_OK,
- @SBO::Lib::Info::EXPORT_OK,
- @SBO::Lib::Repo::EXPORT_OK,
- @SBO::Lib::Tree::EXPORT_OK,
- @SBO::Lib::Pkgs::EXPORT_OK,
- @SBO::Lib::Build::EXPORT_OK,
- @SBO::Lib::Readme::EXPORT_OK,
- @SBO::Lib::Download::EXPORT_OK,
-);
-
-our %EXPORT_TAGS = (
- all => \@EXPORT_OK,
- cryptography => \@SBO::Lib::Cryptography::EXPORT_OK,
- util => \@SBO::Lib::Util::EXPORT_OK,
- info => \@SBO::Lib::Info::EXPORT_OK,
- repo => \@SBO::Lib::Repo::EXPORT_OK,
- tree => \@SBO::Lib::Tree::EXPORT_OK,
- pkgs => \@SBO::Lib::Pkgs::EXPORT_OK,
- build => \@SBO::Lib::Build::EXPORT_OK,
- readme => \@SBO::Lib::Readme::EXPORT_OK,
- download => \@SBO::Lib::Download::EXPORT_OK,
- const => $SBO::Lib::Util::EXPORT_TAGS{const},
- config => $SBO::Lib::Util::EXPORT_TAGS{config},
-);
-
-'ok';
-
-__END__