6.30 bump

This commit is contained in:
Petr Písař 2017-12-11 10:59:02 +01:00
parent 3dcb63b448
commit 2109860ca9
4 changed files with 123 additions and 2 deletions

1
.gitignore vendored
View File

@ -22,3 +22,4 @@ libwww-perl-5.834.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

View File

@ -0,0 +1,112 @@
From 08ec89f0c024348ef3214e197cd9df08995b45ea Mon Sep 17 00:00:00 2001
From: Olaf Alders <olaf@wundersolutions.com>
Date: Fri, 8 Dec 2017 08:47:23 -0500
Subject: [PATCH] Fix versions which should have been bumped
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Petr Písař <ppisar@redhat.com>
---
lib/LWP.pm | 2 +-
lib/LWP/Authen/Ntlm.pm | 2 +-
lib/LWP/ConnCache.pm | 2 +-
lib/LWP/Protocol.pm | 2 +-
lib/LWP/RobotUA.pm | 2 +-
lib/LWP/Simple.pm | 2 +-
lib/LWP/UserAgent.pm | 2 +-
7 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/lib/LWP.pm b/lib/LWP.pm
index 12f071fd..597f14c2 100644
--- a/lib/LWP.pm
+++ b/lib/LWP.pm
@@ -1,6 +1,6 @@
package LWP;
-our $VERSION = '6.29';
+our $VERSION = '6.30';
require LWP::UserAgent; # this should load everything you need
diff --git a/lib/LWP/Authen/Ntlm.pm b/lib/LWP/Authen/Ntlm.pm
index 2bc9129c..08672597 100644
--- a/lib/LWP/Authen/Ntlm.pm
+++ b/lib/LWP/Authen/Ntlm.pm
@@ -2,7 +2,7 @@ package LWP::Authen::Ntlm;
use strict;
-our $VERSION = '6.29';
+our $VERSION = '6.30';
use Authen::NTLM "1.02";
use MIME::Base64 "2.12";
diff --git a/lib/LWP/ConnCache.pm b/lib/LWP/ConnCache.pm
index ceccc1b5..045ccc35 100644
--- a/lib/LWP/ConnCache.pm
+++ b/lib/LWP/ConnCache.pm
@@ -2,7 +2,7 @@ package LWP::ConnCache;
use strict;
-our $VERSION = '6.29';
+our $VERSION = '6.30';
our $DEBUG;
sub new {
diff --git a/lib/LWP/Protocol.pm b/lib/LWP/Protocol.pm
index 1b01ccb5..bf63eebe 100644
--- a/lib/LWP/Protocol.pm
+++ b/lib/LWP/Protocol.pm
@@ -2,7 +2,7 @@ package LWP::Protocol;
use base 'LWP::MemberMixin';
-our $VERSION = '6.29';
+our $VERSION = '6.30';
use strict;
use Carp ();
diff --git a/lib/LWP/RobotUA.pm b/lib/LWP/RobotUA.pm
index f7042227..fe97d046 100644
--- a/lib/LWP/RobotUA.pm
+++ b/lib/LWP/RobotUA.pm
@@ -2,7 +2,7 @@ package LWP::RobotUA;
use base qw(LWP::UserAgent);
-our $VERSION = '6.29';
+our $VERSION = '6.30';
require WWW::RobotRules;
require HTTP::Request;
diff --git a/lib/LWP/Simple.pm b/lib/LWP/Simple.pm
index 174446ea..e6f6568c 100644
--- a/lib/LWP/Simple.pm
+++ b/lib/LWP/Simple.pm
@@ -2,7 +2,7 @@ package LWP::Simple;
use strict;
-our $VERSION = '6.29';
+our $VERSION = '6.30';
require Exporter;
diff --git a/lib/LWP/UserAgent.pm b/lib/LWP/UserAgent.pm
index dff71a57..a7b29e25 100644
--- a/lib/LWP/UserAgent.pm
+++ b/lib/LWP/UserAgent.pm
@@ -15,7 +15,7 @@ use LWP::Protocol ();
use Scalar::Util qw(blessed);
use Try::Tiny qw(try catch);
-our $VERSION = '6.29';
+our $VERSION = '6.30';
sub new
{
--
2.13.6

View File

@ -1,5 +1,5 @@
Name: perl-libwww-perl
Version: 6.29
Version: 6.30
Release: 1%{?dist}
Summary: A Perl interface to the World-Wide Web
License: GPL+ or Artistic
@ -7,6 +7,9 @@ URL: http://search.cpan.org/dist/libwww-perl/
Source0: http://www.cpan.org/authors/id/O/OA/OALDERS/libwww-perl-%{version}.tar.gz
# Accept proxy URLs with IPv6 host names, CPAN RT#94654
Patch0: libwww-perl-6.19-Accept-proxy-URLs-with-IPv6-host-names.patch
# Fix module versions, in upstream afterr 6.30,
# <https://github.com/libwww-perl/libwww-perl/issues/275>
Patch1: libwww-perl-6.30-Fix-versions-which-should-have-been-bumped.patch
BuildArch: noarch
BuildRequires: make
BuildRequires: perl-generators
@ -51,6 +54,7 @@ BuildRequires: perl(MIME::Base64) >= 2.1
# Net::FTP 2.58 not used at tests
BuildRequires: perl(Net::HTTP) >= 6.07
# Net::NNTP not used at tests
BuildRequires: perl(parent)
BuildRequires: perl(Scalar::Util)
BuildRequires: perl(Try::Tiny)
BuildRequires: perl(URI) >= 1.10
@ -122,6 +126,7 @@ use and even classes that help you implement simple HTTP servers.
%prep
%setup -q -n libwww-perl-%{version}
%patch0 -p1
%patch1 -p1
%build
# Install the aliases by default
@ -147,6 +152,9 @@ make test
%{_mandir}/man3/*.3*
%changelog
* Mon Dec 11 2017 Petr Pisar <ppisar@redhat.com> - 6.30-1
- 6.30 bump
* Tue Nov 07 2017 Petr Pisar <ppisar@redhat.com> - 6.29-1
- 6.29 bump

View File

@ -1 +1 @@
SHA512 (libwww-perl-6.29.tar.gz) = 77e96f05f23dacfcc5fbca4e8d60fc0609323282dc716eae0359cea19da05580dcec253601aa846f8b5f78823d2862d2cea560d602a85941781de8faae047d8f
SHA512 (libwww-perl-6.30.tar.gz) = 30514733aa269228ad8f4fbcf6dce52a380f95b244133a47115ca73b7c8f6c65de31da30be4ed87975cf37d64c652c68f0d4147c1444473635aa4fe8beb7c2e3