Package init

This commit is contained in:
overweight 2019-09-30 11:12:39 -04:00
commit 6b362fc9de
4 changed files with 114 additions and 0 deletions

View File

@ -0,0 +1,43 @@
From a40f2774eede8e65dd6128b45525ec88f469e031 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
Date: Fri, 10 Jul 2015 13:02:00 +0200
Subject: [PATCH 2/2] Do not create Net/libnet.cfg
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
I will remove the Net/libnet.cfg because:
(1) it's content equals to default configuration hard-coded in the
code
(2) it's kind of configuration file we do not mark it as a configuration
file, so it's overwritten on each update
(3) it's loaded from directory based on Net::Config module location.
I.e. core module will search it in core path, vendor module in vendor
path and site module in site path.
perl.spec does not provide it either.
<https://bugzilla.redhat.com/show_bug.cgi?id=1238689>
Signed-off-by: Petr Písař <ppisar@redhat.com>
---
Makefile.PL | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.PL b/Makefile.PL
index 64d6959..25fc626 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -235,7 +235,7 @@ MAIN: {
sub MY::post_initialize {
my $self = shift;
- return '' if $self->{PERL_CORE};
+ return '';
if (not -f $CfgFile) {
my @args = qw(Configure);
--
2.5.0

BIN
libnet-3.11.tar.gz Normal file

Binary file not shown.

6
libnetFAQ.pod Normal file
View File

@ -0,0 +1,6 @@
=encoding utf-8
The L<libnetFAQ document is not distributed because of the
license|https://rt.cpan.org/Public/Bug/Display.html?id=117888>. You can
access the original document on
L<http://search.cpan.org/~shay/libnet/lib/Net/libnetFAQ.pod>.

65
perl-libnet.spec Normal file
View File

@ -0,0 +1,65 @@
Name: perl-libnet
Version: 3.11
Release: 419
Summary: Perl clients for various network protocols
License: GPL+ or Artistic
URL: https://metacpan.org/release/libnet
Source0: https://cpan.metacpan.org/authors/id/S/SH/SHAY/libnet-%{version}.tar.gz
Source1: libnetFAQ.pod
# Form Redhat https://bugzilla.redhat.com/show_bug.cgi?id=1238689
Patch0: libnet-3.08-Do-not-create-Net-libnet.cfg.patch
BuildArch: noarch
BuildRequires: coreutils make perl-generators perl-interpreter perl(ExtUtils::MakeMaker) >= 6.76
BuildRequires: perl(strict) perl(warnings) perl(Carp) perl(constant) perl(Errno) perl(Exporter) perl(Fcntl)
BuildRequires: perl(FileHandle) perl(IO::Select) perl(IO::Socket) >= 1.05 perl(IO::Socket::IP) >= 0.25 perl(POSIX)
BuildRequires: perl(Socket) >= 2.016 perl(Symbol) perl(Time::Local) perl(IO::Socket::SSL) >= 2.007
#For Test:
BuildRequires: perl(Config) perl(Cwd) perl(File::Temp) perl(IO::File) perl(Test::More)
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
Requires: perl(File::Basename)
Requires: perl(IO::Socket) >= 1.05
Requires: perl(IO::Socket::IP) >= 0.25
Requires: perl(POSIX)
Requires: perl(Socket) >= 2.016
Requires: perl(Digest::MD5)
Suggests: perl(Authen::SASL)
Suggests: perl(MIME::Base64)
Suggests: perl(IO::Socket::SSL) >= 2.007
Conflicts: perl < 4:5.22.0-347
%description
libnet is a collection of Perl modules which provides a simple
and consistent programming interface (API) to the client side
of various protocols used in the internet community.
%package_help
%prep
%autosetup -n libnet-%{version} -p1
install -m 0644 %{SOURCE1} lib/Net
%build
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
%make_build
%install
make pure_install DESTDIR=%{buildroot}
%{_fixperms} %{buildroot}/*
%check
make test
%files
%license Artistic Copying LICENCE
%doc Changes README
%{perl_vendorlib}/*
%files help
%{_mandir}/man3/*
%changelog
* Wed Sep 11 2019 openEuler Buildteam <buildteam@openeuler.org> - 3.11-419
- Package init