Compare commits
No commits in common. "c9s" and "c8-stream-6.34" have entirely different histories.
c9s
...
c8-stream-
@ -1 +0,0 @@
|
|||||||
1
|
|
49
.gitignore
vendored
49
.gitignore
vendored
@ -1,48 +1 @@
|
|||||||
libwww-perl-5.834.tar.gz
|
SOURCES/libwww-perl-6.34.tar.gz
|
||||||
/libwww-perl-5.837.tar.gz
|
|
||||||
/libwww-perl-6.01.tar.gz
|
|
||||||
/libwww-perl-6.02.tar.gz
|
|
||||||
/libwww-perl-6.03.tar.gz
|
|
||||||
/libwww-perl-6.04.tar.gz
|
|
||||||
/libwww-perl-6.05.tar.gz
|
|
||||||
/libwww-perl-6.06.tar.gz
|
|
||||||
/libwww-perl-6.07.tar.gz
|
|
||||||
/libwww-perl-6.08.tar.gz
|
|
||||||
/libwww-perl-6.13.tar.gz
|
|
||||||
/libwww-perl-6.15.tar.gz
|
|
||||||
/libwww-perl-6.16.tar.gz
|
|
||||||
/libwww-perl-6.17.tar.gz
|
|
||||||
/libwww-perl-6.18.tar.gz
|
|
||||||
/libwww-perl-6.19.tar.gz
|
|
||||||
/libwww-perl-6.21.tar.gz
|
|
||||||
/libwww-perl-6.22.tar.gz
|
|
||||||
/libwww-perl-6.23.tar.gz
|
|
||||||
/libwww-perl-6.24.tar.gz
|
|
||||||
/libwww-perl-6.25.tar.gz
|
|
||||||
/libwww-perl-6.26.tar.gz
|
|
||||||
/libwww-perl-6.27.tar.gz
|
|
||||||
/libwww-perl-6.29.tar.gz
|
|
||||||
/libwww-perl-6.30.tar.gz
|
|
||||||
/libwww-perl-6.31.tar.gz
|
|
||||||
/libwww-perl-6.32.tar.gz
|
|
||||||
/libwww-perl-6.33.tar.gz
|
|
||||||
/libwww-perl-6.34.tar.gz
|
|
||||||
/libwww-perl-6.35.tar.gz
|
|
||||||
/libwww-perl-6.36.tar.gz
|
|
||||||
/libwww-perl-6.37.tar.gz
|
|
||||||
/libwww-perl-6.38.tar.gz
|
|
||||||
/libwww-perl-6.39.tar.gz
|
|
||||||
/libwww-perl-6.40.tar.gz
|
|
||||||
/libwww-perl-6.41.tar.gz
|
|
||||||
/libwww-perl-6.42.tar.gz
|
|
||||||
/libwww-perl-6.43.tar.gz
|
|
||||||
/libwww-perl-6.44.tar.gz
|
|
||||||
/libwww-perl-6.45.tar.gz
|
|
||||||
/libwww-perl-6.46.tar.gz
|
|
||||||
/libwww-perl-6.47.tar.gz
|
|
||||||
/libwww-perl-6.48.tar.gz
|
|
||||||
/libwww-perl-6.49.tar.gz
|
|
||||||
/libwww-perl-6.50.tar.gz
|
|
||||||
/libwww-perl-6.51.tar.gz
|
|
||||||
/libwww-perl-6.52.tar.gz
|
|
||||||
/libwww-perl-6.53.tar.gz
|
|
||||||
|
1
.perl-libwww-perl.metadata
Normal file
1
.perl-libwww-perl.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
bbdfb8a675369a78f9eac233a8c5db00579b9fcf SOURCES/libwww-perl-6.34.tar.gz
|
@ -0,0 +1,31 @@
|
|||||||
|
From 572538753601755b4b6acace1d445bc8e1cc10c8 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
||||||
|
Date: Thu, 16 Feb 2017 14:00:57 +0100
|
||||||
|
Subject: [PATCH] Accept proxy URLs with IPv6 host names
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
<https://rt.cpan.org/Public/Bug/Display.html?id=94654>
|
||||||
|
|
||||||
|
Signed-off-by: Petr Písař <ppisar@redhat.com>
|
||||||
|
---
|
||||||
|
lib/LWP/UserAgent.pm | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/lib/LWP/UserAgent.pm b/lib/LWP/UserAgent.pm
|
||||||
|
index ea03157..8549808 100644
|
||||||
|
--- a/lib/LWP/UserAgent.pm
|
||||||
|
+++ b/lib/LWP/UserAgent.pm
|
||||||
|
@@ -1039,7 +1039,7 @@ sub proxy
|
||||||
|
my $url = shift;
|
||||||
|
if (defined($url) && length($url)) {
|
||||||
|
Carp::croak("Proxy must be specified as absolute URI; '$url' is not") unless $url =~ /^$URI::scheme_re:/;
|
||||||
|
- Carp::croak("Bad http proxy specification '$url'") if $url =~ /^https?:/ && $url !~ m,^https?://\w,;
|
||||||
|
+ Carp::croak("Bad http proxy specification '$url'") if $url =~ /^https?:/ && $url !~ m,^https?://(?:\w|\[),;
|
||||||
|
}
|
||||||
|
$self->{proxy}{$key} = $url;
|
||||||
|
$self->set_my_handler("request_preprepare", \&_need_proxy)
|
||||||
|
--
|
||||||
|
2.7.4
|
||||||
|
|
@ -1,20 +1,13 @@
|
|||||||
# Run optional tests
|
|
||||||
%bcond_without perl_libwww_perl_enables_optional_test
|
|
||||||
# Perform tests that need the Internet
|
|
||||||
%bcond_with perl_libwww_perl_enables_internet_test
|
|
||||||
|
|
||||||
Name: perl-libwww-perl
|
Name: perl-libwww-perl
|
||||||
Version: 6.53
|
Version: 6.34
|
||||||
Release: 4%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A Perl interface to the World-Wide Web
|
Summary: A Perl interface to the World-Wide Web
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
URL: https://metacpan.org/release/libwww-perl
|
URL: https://metacpan.org/release/libwww-perl
|
||||||
Source0: https://cpan.metacpan.org/authors/id/O/OA/OALDERS/libwww-perl-%{version}.tar.gz
|
Source0: https://cpan.metacpan.org/authors/id/E/ET/ETHER/libwww-perl-%{version}.tar.gz
|
||||||
# Normalize shelbangs, not suitable for an upstream
|
# Accept proxy URLs with IPv6 host names, CPAN RT#94654
|
||||||
Patch0: libwww-perl-6.39-Normalize-shebangs-in-examples.patch
|
Patch0: libwww-perl-6.19-Accept-proxy-URLs-with-IPv6-host-names.patch
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: coreutils
|
|
||||||
BuildRequires: findutils
|
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
BuildRequires: perl-generators
|
BuildRequires: perl-generators
|
||||||
BuildRequires: perl-interpreter
|
BuildRequires: perl-interpreter
|
||||||
@ -43,14 +36,14 @@ BuildRequires: perl(Exporter)
|
|||||||
BuildRequires: perl(HTML::Entities)
|
BuildRequires: perl(HTML::Entities)
|
||||||
BuildRequires: perl(HTML::HeadParser)
|
BuildRequires: perl(HTML::HeadParser)
|
||||||
BuildRequires: perl(HTTP::Config)
|
BuildRequires: perl(HTTP::Config)
|
||||||
BuildRequires: perl(HTTP::Cookies) >= 6
|
# HTTP::Cookies 6 not used at tests
|
||||||
BuildRequires: perl(HTTP::Date) >= 6
|
BuildRequires: perl(HTTP::Date) >= 6
|
||||||
BuildRequires: perl(HTTP::Headers::Util)
|
BuildRequires: perl(HTTP::Headers::Util)
|
||||||
# HTTP::Negotiate 6 not used at tests
|
# HTTP::Negotiate 6 not used at tests
|
||||||
BuildRequires: perl(HTTP::Request) >= 6
|
BuildRequires: perl(HTTP::Request) >= 6
|
||||||
BuildRequires: perl(HTTP::Request::Common) >= 6
|
BuildRequires: perl(HTTP::Request::Common) >= 6
|
||||||
BuildRequires: perl(HTTP::Response) >= 6
|
BuildRequires: perl(HTTP::Response) >= 6
|
||||||
BuildRequires: perl(HTTP::Status) >= 6.07
|
BuildRequires: perl(HTTP::Status) >= 6
|
||||||
# Tests fail with buggy HTTP::Status 6.17
|
# Tests fail with buggy HTTP::Status 6.17
|
||||||
BuildConflicts: perl(HTTP::Status) = 6.17
|
BuildConflicts: perl(HTTP::Status) = 6.17
|
||||||
# integer not used at tests
|
# integer not used at tests
|
||||||
@ -60,7 +53,7 @@ BuildRequires: perl(LWP::MediaTypes) >= 6
|
|||||||
# Mail::Internet not needed
|
# Mail::Internet not needed
|
||||||
BuildRequires: perl(MIME::Base64) >= 2.1
|
BuildRequires: perl(MIME::Base64) >= 2.1
|
||||||
# Net::FTP 2.58 not used at tests
|
# Net::FTP 2.58 not used at tests
|
||||||
BuildRequires: perl(Net::HTTP) >= 6.18
|
BuildRequires: perl(Net::HTTP) >= 6.07
|
||||||
# Net::NNTP not used at tests
|
# Net::NNTP not used at tests
|
||||||
BuildRequires: perl(parent)
|
BuildRequires: perl(parent)
|
||||||
BuildRequires: perl(Scalar::Util)
|
BuildRequires: perl(Scalar::Util)
|
||||||
@ -78,22 +71,14 @@ BuildRequires: perl(Config)
|
|||||||
BuildRequires: perl(File::Spec)
|
BuildRequires: perl(File::Spec)
|
||||||
BuildRequires: perl(File::Temp)
|
BuildRequires: perl(File::Temp)
|
||||||
BuildRequires: perl(FindBin)
|
BuildRequires: perl(FindBin)
|
||||||
BuildRequires: perl(HTTP::Daemon) >= 6.01
|
BuildRequires: perl(HTTP::Daemon) >= 6
|
||||||
BuildRequires: perl(Test::Fatal)
|
BuildRequires: perl(Test::Fatal)
|
||||||
BuildRequires: perl(Test::More) >= 0.96
|
BuildRequires: perl(Test::More)
|
||||||
%if %{with perl_libwww_perl_enables_internet_test}
|
|
||||||
BuildRequires: perl(Test::RequiresInternet)
|
BuildRequires: perl(Test::RequiresInternet)
|
||||||
%endif
|
|
||||||
BuildRequires: perl(utf8)
|
BuildRequires: perl(utf8)
|
||||||
%if %{with perl_libwww_perl_enables_internet_test}
|
|
||||||
BuildRequires: perl(Test::Needs)
|
|
||||||
%if %{with perl_libwww_perl_enables_optional_test}
|
|
||||||
# Optional tests:
|
# Optional tests:
|
||||||
# CPAN::Meta not helpful
|
# CPAN::Meta not helpful
|
||||||
# CPAN::Meta::Prereqs not helpful
|
# CPAN::Meta::Prereqs not helpful
|
||||||
BuildRequires: perl(Test::LeakTrace)
|
|
||||||
%endif
|
|
||||||
%endif
|
|
||||||
|
|
||||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||||
Requires: perl(Authen::NTLM) >= 1.02
|
Requires: perl(Authen::NTLM) >= 1.02
|
||||||
@ -116,12 +101,12 @@ Requires: perl(HTTP::Negotiate) >= 6
|
|||||||
Requires: perl(HTTP::Request) >= 6
|
Requires: perl(HTTP::Request) >= 6
|
||||||
Requires: perl(HTTP::Request::Common) >= 6
|
Requires: perl(HTTP::Request::Common) >= 6
|
||||||
Requires: perl(HTTP::Response) >= 6
|
Requires: perl(HTTP::Response) >= 6
|
||||||
Requires: perl(HTTP::Status) >= 6.07
|
Requires: perl(HTTP::Status) >= 6
|
||||||
Requires: perl(LWP::MediaTypes) >= 6
|
Requires: perl(LWP::MediaTypes) >= 6
|
||||||
Suggests: perl(LWP::Protocol::https) >= 6.02
|
Suggests: perl(LWP::Protocol::https) >= 6.02
|
||||||
Requires: perl(MIME::Base64) >= 2.1
|
Requires: perl(MIME::Base64) >= 2.1
|
||||||
Requires: perl(Net::FTP) >= 2.58
|
Requires: perl(Net::FTP) >= 2.58
|
||||||
Requires: perl(Net::HTTP) >= 6.18
|
Requires: perl(Net::HTTP) >= 6.07
|
||||||
Requires: perl(URI) >= 1.10
|
Requires: perl(URI) >= 1.10
|
||||||
Requires: perl(URI::Escape)
|
Requires: perl(URI::Escape)
|
||||||
Requires: perl(WWW::RobotRules) >= 6
|
Requires: perl(WWW::RobotRules) >= 6
|
||||||
@ -129,9 +114,6 @@ Provides: perl(LWP::Debug::TraceHTTP::Socket) = %{version}
|
|||||||
Provides: perl(LWP::Protocol::http::Socket) = %{version}
|
Provides: perl(LWP::Protocol::http::Socket) = %{version}
|
||||||
Provides: perl(LWP::Protocol::http::SocketMethods) = %{version}
|
Provides: perl(LWP::Protocol::http::SocketMethods) = %{version}
|
||||||
|
|
||||||
# Remove underspecified dependencies
|
|
||||||
%global __requires_exclude %{?__requires_exclude:%{__requires_exclude}|}^perl\\((Authen::NTLM|Encode|File::Listing|HTTP::Cookies|HTTP::Daemon|HTTP::Date|HTTP::Negotiate|HTTP::Request|HTTP::Response|HTTP::Status|LWP::MediaTypes|MIME::Base64|Net::FTP|Net::HTTP|Test::More|URI|WWW::RobotRules)\\)$
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The libwww-perl collection is a set of Perl modules which provides a simple and
|
The libwww-perl collection is a set of Perl modules which provides a simple and
|
||||||
consistent application programming interface to the World-Wide Web. The main
|
consistent application programming interface to the World-Wide Web. The main
|
||||||
@ -139,71 +121,29 @@ focus of the library is to provide classes and functions that allow you to
|
|||||||
write WWW clients. The library also contain modules that are of more general
|
write WWW clients. The library also contain modules that are of more general
|
||||||
use and even classes that help you implement simple HTTP servers.
|
use and even classes that help you implement simple HTTP servers.
|
||||||
|
|
||||||
%package tests
|
# Remove underspecified dependencies
|
||||||
Summary: Tests for %{name}
|
%global __requires_exclude %{?__requires_exclude:%{__requires_exclude}|}^perl\\((Authen::NTLM|Encode|File::Listing|HTTP::Date|HTTP::Negotiate|HTTP::Request|HTTP::Response|HTTP::Status|LWP::MediaTypes|MIME::Base64|Net::FTP|Net::HTTP|URI|WWW::RobotRules)\\)$
|
||||||
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
||||||
Requires: coreutils
|
|
||||||
Requires: perl-Test-Harness
|
|
||||||
Requires: perl(HTTP::Cookies) >= 6
|
|
||||||
Requires: perl(HTTP::Daemon) >= 6.01
|
|
||||||
Requires: perl(HTTP::Request) >= 6
|
|
||||||
Requires: perl(HTTP::Response) >= 6
|
|
||||||
Requires: perl(Net::HTTP) >= 6.18
|
|
||||||
Requires: perl(Test::More) >= 0.96
|
|
||||||
%if %{with perl_libwww_perl_enables_internet_test} && %{with perl_libwww_perl_enables_optional_test}
|
|
||||||
Requires: perl(Test::LeakTrace)
|
|
||||||
%endif
|
|
||||||
Requires: perl(URI) >= 1.10
|
|
||||||
|
|
||||||
%description tests
|
|
||||||
Tests from %{name}. Execute them
|
|
||||||
with "%{_libexecdir}/%{name}/test".
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n libwww-perl-%{version}
|
%setup -q -n libwww-perl-%{version}
|
||||||
%patch0 -p1
|
%patch0 -p1
|
||||||
%if !%{with perl_libwww_perl_enables_internet_test}
|
|
||||||
rm t/base/protocols/nntp.t t/leak/no_leak.t t/redirect.t
|
|
||||||
perl -i -ne 'print $_ unless m{^(?:t/base/protocols/nntp\.t|t/leak/no_leak\.t|t/redirect\.t)}' MANIFEST
|
|
||||||
%endif
|
|
||||||
# Help generators to recognize a Perl code
|
|
||||||
for F in $(find t -name '*.t') talk-to-ourself; do
|
|
||||||
perl -i -MConfig -ple 'print $Config{startperl} if $. == 1 && !s{\A#!.*\bperl}{$Config{startperl}}' "$F"
|
|
||||||
chmod +x "$F"
|
|
||||||
done
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# Install the aliases by default
|
# Install the aliases by default
|
||||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1 --aliases < /dev/null
|
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 --aliases < /dev/null
|
||||||
%{make_build}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%{make_install}
|
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
||||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
||||||
# Install tests
|
|
||||||
mkdir -p %{buildroot}%{_libexecdir}/%{name}
|
|
||||||
cp -a t talk-to-ourself %{buildroot}%{_libexecdir}/%{name}
|
|
||||||
cat > %{buildroot}%{_libexecdir}/%{name}/test << 'EOF'
|
|
||||||
#!/bin/bash
|
|
||||||
set -e
|
|
||||||
# t/local/http.t writes to CWD
|
|
||||||
DIR=$(mktemp -d)
|
|
||||||
cp -a %{_libexecdir}/%{name}/* "$DIR"
|
|
||||||
pushd "$DIR"
|
|
||||||
unset COVERAGE PERL_LWP_ENV_HTTP_TEST_SERVER_TIMEOUT PERL_LWP_ENV_HTTP_TEST_URL
|
|
||||||
prove -I . -j "$(getconf _NPROCESSORS_ONLN)" -r
|
|
||||||
popd
|
|
||||||
rm -r "$DIR"
|
|
||||||
EOF
|
|
||||||
chmod +x %{buildroot}%{_libexecdir}/%{name}/test
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
unset COVERAGE PERL_LWP_ENV_HTTP_TEST_SERVER_TIMEOUT PERL_LWP_ENV_HTTP_TEST_URL
|
unset PERL_LWP_ENV_HTTP_TEST_SERVER_TIMEOUT PERL_LWP_ENV_HTTP_TEST_URL
|
||||||
make test
|
make test
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc Changes examples README.SSL
|
%doc Changes README.SSL
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
%{perl_vendorlib}/libwww/
|
%{perl_vendorlib}/libwww/
|
||||||
%{perl_vendorlib}/LWP.pm
|
%{perl_vendorlib}/LWP.pm
|
||||||
@ -211,111 +151,7 @@ make test
|
|||||||
%{_mandir}/man1/*.1*
|
%{_mandir}/man1/*.1*
|
||||||
%{_mandir}/man3/*.3*
|
%{_mandir}/man3/*.3*
|
||||||
|
|
||||||
%files tests
|
|
||||||
%{_libexecdir}/%{name}
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 6.53-4
|
|
||||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
||||||
Related: rhbz#1991688
|
|
||||||
|
|
||||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 6.53-3
|
|
||||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
||||||
|
|
||||||
* Tue Mar 09 2021 Petr Pisar <ppisar@redhat.com> - 6.53-2
|
|
||||||
- Package talk-to-ourself script with the tests
|
|
||||||
|
|
||||||
* Mon Mar 08 2021 Petr Pisar <ppisar@redhat.com> - 6.53-1
|
|
||||||
- 6.53 bump
|
|
||||||
- Package tests
|
|
||||||
|
|
||||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 6.52-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jan 08 2021 Petr Pisar <ppisar@redhat.com> - 6.52-1
|
|
||||||
- 6.52 bump
|
|
||||||
|
|
||||||
* Tue Jan 05 2021 Petr Pisar <ppisar@redhat.com> - 6.51-1
|
|
||||||
- 6.51 bump
|
|
||||||
|
|
||||||
* Thu Dec 17 2020 Petr Pisar <ppisar@redhat.com> - 6.50-1
|
|
||||||
- 6.50 bump
|
|
||||||
|
|
||||||
* Thu Sep 24 2020 Petr Pisar <ppisar@redhat.com> - 6.49-1
|
|
||||||
- 6.49 bump
|
|
||||||
|
|
||||||
* Mon Sep 21 2020 Petr Pisar <ppisar@redhat.com> - 6.48-1
|
|
||||||
- 6.48 bump
|
|
||||||
|
|
||||||
* Wed Aug 19 2020 Petr Pisar <ppisar@redhat.com> - 6.47-1
|
|
||||||
- 6.47 bump
|
|
||||||
|
|
||||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 6.46-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jun 27 2020 Jitka Plesnikova <jplesnik@redhat.com> - 6.46-2
|
|
||||||
- Perl 5.32 re-rebuild updated packages
|
|
||||||
|
|
||||||
* Wed Jun 24 2020 Petr Pisar <ppisar@redhat.com> - 6.46-1
|
|
||||||
- 6.46 bump
|
|
||||||
|
|
||||||
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 6.45-2
|
|
||||||
- Perl 5.32 rebuild
|
|
||||||
|
|
||||||
* Tue Jun 09 2020 Petr Pisar <ppisar@redhat.com> - 6.45-1
|
|
||||||
- 6.45 bump
|
|
||||||
|
|
||||||
* Wed Apr 15 2020 Petr Pisar <ppisar@redhat.com> - 6.44-1
|
|
||||||
- 6.44 bump
|
|
||||||
|
|
||||||
* Fri Feb 14 2020 Petr Pisar <ppisar@redhat.com> - 6.43-3
|
|
||||||
- Do not perform tests that need the Internet by default
|
|
||||||
|
|
||||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 6.43-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Nov 27 2019 Petr Pisar <ppisar@redhat.com> - 6.43-1
|
|
||||||
- 6.43 bump
|
|
||||||
|
|
||||||
* Thu Nov 21 2019 Petr Pisar <ppisar@redhat.com> - 6.42-1
|
|
||||||
- 6.42 bump
|
|
||||||
|
|
||||||
* Fri Nov 01 2019 Petr Pisar <ppisar@redhat.com> - 6.41-1
|
|
||||||
- 6.41 bump
|
|
||||||
|
|
||||||
* Fri Oct 25 2019 Jitka Plesnikova <jplesnik@redhat.com> - 6.40-1
|
|
||||||
- 6.40 bump
|
|
||||||
|
|
||||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 6.39-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 6.39-2
|
|
||||||
- Perl 5.30 rebuild
|
|
||||||
|
|
||||||
* Tue May 07 2019 Petr Pisar <ppisar@redhat.com> - 6.39-1
|
|
||||||
- 6.39 bump
|
|
||||||
|
|
||||||
* Tue Mar 26 2019 Petr Pisar <ppisar@redhat.com> - 6.38-1
|
|
||||||
- 6.38 bump
|
|
||||||
|
|
||||||
* Thu Mar 07 2019 Petr Pisar <ppisar@redhat.com> - 6.37-1
|
|
||||||
- 6.37 bump
|
|
||||||
|
|
||||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 6.36-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Oct 11 2018 Jitka Plesnikova <jplesnik@redhat.com> - 6.36-1
|
|
||||||
- 6.36 bump
|
|
||||||
|
|
||||||
* Mon Jul 16 2018 Petr Pisar <ppisar@redhat.com> - 6.35-1
|
|
||||||
- 6.35 bump
|
|
||||||
|
|
||||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.34-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 6.34-2
|
|
||||||
- Perl 5.28 rebuild
|
|
||||||
|
|
||||||
* Wed Jun 06 2018 Petr Pisar <ppisar@redhat.com> - 6.34-1
|
* Wed Jun 06 2018 Petr Pisar <ppisar@redhat.com> - 6.34-1
|
||||||
- 6.34 bump
|
- 6.34 bump
|
||||||
|
|
@ -1,7 +0,0 @@
|
|||||||
--- !Policy
|
|
||||||
product_versions:
|
|
||||||
- fedora-*
|
|
||||||
decision_context: bodhi_update_push_stable
|
|
||||||
subject_type: koji_build
|
|
||||||
rules:
|
|
||||||
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional}
|
|
@ -1,26 +0,0 @@
|
|||||||
From 6b042eb2188528afa0b9c4eb490973430c802344 Mon Sep 17 00:00:00 2001
|
|
||||||
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
|
||||||
Date: Tue, 7 May 2019 10:30:00 +0200
|
|
||||||
Subject: [PATCH] Normalize shebangs in examples
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=UTF-8
|
|
||||||
Content-Transfer-Encoding: 8bit
|
|
||||||
|
|
||||||
Signed-off-by: Petr Písař <ppisar@redhat.com>
|
|
||||||
---
|
|
||||||
examples/handler-order.pl | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/examples/handler-order.pl b/examples/handler-order.pl
|
|
||||||
index 813fac7..fb49424 100755
|
|
||||||
--- a/examples/handler-order.pl
|
|
||||||
+++ b/examples/handler-order.pl
|
|
||||||
@@ -1,4 +1,4 @@
|
|
||||||
-#!/usr/bin/env perl
|
|
||||||
+#!/usr/bin/perl
|
|
||||||
|
|
||||||
use strict;
|
|
||||||
use warnings;
|
|
||||||
--
|
|
||||||
2.20.1
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
|||||||
from Config import *
|
|
||||||
addFilter("-tests.noarch: W: no-documentation");
|
|
@ -1,5 +0,0 @@
|
|||||||
summary: Sanity tests
|
|
||||||
discover:
|
|
||||||
how: fmf
|
|
||||||
execute:
|
|
||||||
how: tmt
|
|
1
sources
1
sources
@ -1 +0,0 @@
|
|||||||
SHA512 (libwww-perl-6.53.tar.gz) = d45bba79bf2f3d49cf6b14591a58d04f551e0f6666e6bac32ec31018091590d5efe4313781605287dab22693bafa547dc916b010aafcc677a35a7c3a1154c8ff
|
|
@ -1,4 +0,0 @@
|
|||||||
summary: Upstream tests
|
|
||||||
component: perl-libwww-perl
|
|
||||||
require: perl-libwww-perl-tests
|
|
||||||
test: /usr/libexec/perl-libwww-perl/test
|
|
Loading…
Reference in New Issue
Block a user