6.31 bump

This commit is contained in:
Petr Písař 2017-12-11 11:09:41 +01:00
parent 2109860ca9
commit d3363ac9f9
4 changed files with 7 additions and 119 deletions

1
.gitignore vendored
View File

@ -23,3 +23,4 @@ libwww-perl-5.834.tar.gz
/libwww-perl-6.27.tar.gz /libwww-perl-6.27.tar.gz
/libwww-perl-6.29.tar.gz /libwww-perl-6.29.tar.gz
/libwww-perl-6.30.tar.gz /libwww-perl-6.30.tar.gz
/libwww-perl-6.31.tar.gz

View File

@ -1,112 +0,0 @@
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,15 +1,12 @@
Name: perl-libwww-perl Name: perl-libwww-perl
Version: 6.30 Version: 6.31
Release: 1%{?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: http://search.cpan.org/dist/libwww-perl/ URL: http://search.cpan.org/dist/libwww-perl/
Source0: http://www.cpan.org/authors/id/O/OA/OALDERS/libwww-perl-%{version}.tar.gz Source0: http://www.cpan.org/authors/id/E/ET/ETHER/libwww-perl-%{version}.tar.gz
# Accept proxy URLs with IPv6 host names, CPAN RT#94654 # Accept proxy URLs with IPv6 host names, CPAN RT#94654
Patch0: libwww-perl-6.19-Accept-proxy-URLs-with-IPv6-host-names.patch 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 BuildArch: noarch
BuildRequires: make BuildRequires: make
BuildRequires: perl-generators BuildRequires: perl-generators
@ -126,7 +123,6 @@ use and even classes that help you implement simple HTTP servers.
%prep %prep
%setup -q -n libwww-perl-%{version} %setup -q -n libwww-perl-%{version}
%patch0 -p1 %patch0 -p1
%patch1 -p1
%build %build
# Install the aliases by default # Install the aliases by default
@ -152,6 +148,9 @@ make test
%{_mandir}/man3/*.3* %{_mandir}/man3/*.3*
%changelog %changelog
* Mon Dec 11 2017 Petr Pisar <ppisar@redhat.com> - 6.31-1
- 6.31 bump
* Mon Dec 11 2017 Petr Pisar <ppisar@redhat.com> - 6.30-1 * Mon Dec 11 2017 Petr Pisar <ppisar@redhat.com> - 6.30-1
- 6.30 bump - 6.30 bump

View File

@ -1 +1 @@
SHA512 (libwww-perl-6.30.tar.gz) = 30514733aa269228ad8f4fbcf6dce52a380f95b244133a47115ca73b7c8f6c65de31da30be4ed87975cf37d64c652c68f0d4147c1444473635aa4fe8beb7c2e3 SHA512 (libwww-perl-6.31.tar.gz) = 10de1cb2eb8bfc09cc663029a0e58c94a33776515f7d01d2e31bdd060d7124625b4d8151b6beb311ce63b02d59e7912113d054d45f7dbb19963ccd1b3595f1ad