Compare commits
No commits in common. "3dccea3fcdba71ee17bd74a262b5326285c345ea" and "26661c35cc4b520f9d7577ebe95c3a0a1007065e" have entirely different histories.
3dccea3fcd
...
26661c35cc
@ -1,46 +0,0 @@
|
|||||||
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>
|
|
||||||
|
|
||||||
Reference:https://src.fedoraproject.org/rpms/perl-libnet/blob/rawhide/f/libnet-3.08-Do-not-create-Net-libnet.cfg.patch
|
|
||||||
Conflict:NA
|
|
||||||
---
|
|
||||||
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
BIN
libnet-3.11.tar.gz
Normal file
Binary file not shown.
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
Name: perl-libnet
|
Name: perl-libnet
|
||||||
Version: 3.15
|
Version: 3.11
|
||||||
Release: 1
|
Release: 420
|
||||||
Summary: Perl clients for various network protocols
|
Summary: Perl clients for various network protocols
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
URL: https://metacpan.org/release/libnet
|
URL: https://metacpan.org/release/libnet
|
||||||
@ -8,8 +8,6 @@ Source0: https://cpan.metacpan.org/authors/id/S/SH/SHAY/libnet-%{version}
|
|||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
Patch6000: backport-libnet-3.08-Do-not-create-Net-libnet.cfg.patch
|
|
||||||
|
|
||||||
BuildRequires: coreutils make perl-generators perl-interpreter perl(ExtUtils::MakeMaker) >= 6.76
|
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(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(FileHandle) perl(IO::Select) perl(IO::Socket) >= 1.05 perl(IO::Socket::IP) >= 0.25 perl(POSIX)
|
||||||
@ -59,33 +57,6 @@ make test
|
|||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Jul 18 2023 wangjiang <wangjiang37@h-partners.com> - 3.15-1
|
|
||||||
- Type:enhancement
|
|
||||||
- ID:NA
|
|
||||||
- SUG:NA
|
|
||||||
- DESC:upgrade version to 3.15
|
|
||||||
|
|
||||||
* Thu Nov 17 2022 wangjiang <wangjiang37@h-partners.com> 3.14-2
|
|
||||||
- Type:bugfix
|
|
||||||
- ID:NA
|
|
||||||
- SUG:NA
|
|
||||||
- DESC:modify source package
|
|
||||||
|
|
||||||
* Tue Oct 25 2022 wangjiang <wangjiang37@h-partners.com> 3.14-1
|
|
||||||
- Type: enhancement
|
|
||||||
- ID:NA
|
|
||||||
- SUG:NA
|
|
||||||
- DESC:upgrade version to 3.14
|
|
||||||
|
|
||||||
* Fri Jul 01 2022 tianwei <tianwei12@h-partners.com> - 3.13-2
|
|
||||||
- Type:bugfix
|
|
||||||
- CVE:NA
|
|
||||||
- SUG:NA
|
|
||||||
- DESC:Do not create Net/libnet.cfg
|
|
||||||
|
|
||||||
* Tue Jan 26 2021 liudabo <liudabo1@huawei.com> - 3.13-1
|
|
||||||
- upgrade version to 3.13
|
|
||||||
|
|
||||||
* Sat Jan 11 2020 openEuler Buildteam <buildteam@openeuler.org> - 3.11-420
|
* Sat Jan 11 2020 openEuler Buildteam <buildteam@openeuler.org> - 3.11-420
|
||||||
- Type: enhancement
|
- Type: enhancement
|
||||||
- ID: NA
|
- ID: NA
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user