commit 6b362fc9de264704dbb7a5312b5801d636d7481a Author: overweight <5324761+overweight@user.noreply.gitee.com> Date: Mon Sep 30 11:12:39 2019 -0400 Package init diff --git a/libnet-3.08-Do-not-create-Net-libnet.cfg.patch b/libnet-3.08-Do-not-create-Net-libnet.cfg.patch new file mode 100644 index 0000000..911bc10 --- /dev/null +++ b/libnet-3.08-Do-not-create-Net-libnet.cfg.patch @@ -0,0 +1,43 @@ +From a40f2774eede8e65dd6128b45525ec88f469e031 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= +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. + + + +Signed-off-by: Petr Písař +--- + 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 + diff --git a/libnet-3.11.tar.gz b/libnet-3.11.tar.gz new file mode 100644 index 0000000..9cfb1bc Binary files /dev/null and b/libnet-3.11.tar.gz differ diff --git a/libnetFAQ.pod b/libnetFAQ.pod new file mode 100644 index 0000000..8cd15d3 --- /dev/null +++ b/libnetFAQ.pod @@ -0,0 +1,6 @@ +=encoding utf-8 + +The L. You can +access the original document on +L. diff --git a/perl-libnet.spec b/perl-libnet.spec new file mode 100644 index 0000000..0c630ff --- /dev/null +++ b/perl-libnet.spec @@ -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 - 3.11-419 +- Package init