0.046 bump
This commit is contained in:
parent
30d901a7a6
commit
a779e1a04e
1
.gitignore
vendored
1
.gitignore
vendored
@ -12,3 +12,4 @@
|
|||||||
/HTTP-Tiny-0.039.tar.gz
|
/HTTP-Tiny-0.039.tar.gz
|
||||||
/HTTP-Tiny-0.042.tar.gz
|
/HTTP-Tiny-0.042.tar.gz
|
||||||
/HTTP-Tiny-0.043.tar.gz
|
/HTTP-Tiny-0.043.tar.gz
|
||||||
|
/HTTP-Tiny-0.046.tar.gz
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
From 05eae4936960e5c53f3e3287a4260c5ccf0ff6b0 Mon Sep 17 00:00:00 2001
|
From 71207052e4ffe2740f258834b4a885e9099c011c Mon Sep 17 00:00:00 2001
|
||||||
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
||||||
Date: Wed, 27 Nov 2013 10:45:39 +0100
|
Date: Wed, 27 Nov 2013 10:45:39 +0100
|
||||||
Subject: [PATCH] Croak on failed write into a file
|
Subject: [PATCH] Croak on failed write into a file
|
||||||
@ -16,10 +16,10 @@ Signed-off-by: Petr Písař <ppisar@redhat.com>
|
|||||||
1 file changed, 4 insertions(+), 1 deletion(-)
|
1 file changed, 4 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
diff --git a/lib/HTTP/Tiny.pm b/lib/HTTP/Tiny.pm
|
diff --git a/lib/HTTP/Tiny.pm b/lib/HTTP/Tiny.pm
|
||||||
index 6db995c..80a5a08 100644
|
index cc410fb..8caa47b 100644
|
||||||
--- a/lib/HTTP/Tiny.pm
|
--- a/lib/HTTP/Tiny.pm
|
||||||
+++ b/lib/HTTP/Tiny.pm
|
+++ b/lib/HTTP/Tiny.pm
|
||||||
@@ -266,7 +266,10 @@ sub mirror {
|
@@ -278,7 +278,10 @@ sub mirror {
|
||||||
sysopen my $fh, $tempfile, Fcntl::O_CREAT()|Fcntl::O_EXCL()|Fcntl::O_WRONLY()
|
sysopen my $fh, $tempfile, Fcntl::O_CREAT()|Fcntl::O_EXCL()|Fcntl::O_WRONLY()
|
||||||
or Carp::croak(qq/Error: Could not create temporary file $tempfile for downloading: $!\n/);
|
or Carp::croak(qq/Error: Could not create temporary file $tempfile for downloading: $!\n/);
|
||||||
binmode $fh;
|
binmode $fh;
|
||||||
@ -32,5 +32,5 @@ index 6db995c..80a5a08 100644
|
|||||||
close $fh
|
close $fh
|
||||||
or Carp::croak(qq/Error: Caught error closing temporary file $tempfile: $!\n/);
|
or Carp::croak(qq/Error: Caught error closing temporary file $tempfile: $!\n/);
|
||||||
--
|
--
|
||||||
1.8.5.3
|
1.9.3
|
||||||
|
|
@ -1,6 +1,6 @@
|
|||||||
Name: perl-HTTP-Tiny
|
Name: perl-HTTP-Tiny
|
||||||
Version: 0.043
|
Version: 0.046
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Small, simple, correct HTTP/1.1 client
|
Summary: Small, simple, correct HTTP/1.1 client
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
@ -8,7 +8,7 @@ URL: http://search.cpan.org/dist/HTTP-Tiny/
|
|||||||
Source0: http://www.cpan.org/authors/id/D/DA/DAGOLDEN/HTTP-Tiny-%{version}.tar.gz
|
Source0: http://www.cpan.org/authors/id/D/DA/DAGOLDEN/HTTP-Tiny-%{version}.tar.gz
|
||||||
# Check for write failure, bug #1031096, refused by upstream,
|
# Check for write failure, bug #1031096, refused by upstream,
|
||||||
# <https://github.com/chansen/p5-http-tiny/issues/32>
|
# <https://github.com/chansen/p5-http-tiny/issues/32>
|
||||||
Patch0: HTTP-Tiny-0.042-Croak-on-failed-write-into-a-file.patch
|
Patch0: HTTP-Tiny-0.046-Croak-on-failed-write-into-a-file.patch
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.17
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.17
|
||||||
@ -42,8 +42,9 @@ BuildRequires: perl(List::Util)
|
|||||||
# Mozilla::CA not needed
|
# Mozilla::CA not needed
|
||||||
# Net::SSLeay 1.49 not needed
|
# Net::SSLeay 1.49 not needed
|
||||||
BuildRequires: perl(open)
|
BuildRequires: perl(open)
|
||||||
|
BuildRequires: perl(Scalar::Util)
|
||||||
BuildRequires: perl(Test::More) >= 0.96
|
BuildRequires: perl(Test::More) >= 0.96
|
||||||
BuildRequires: perl(version)
|
BuildRequires: perl(version) >= 0.77
|
||||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||||
Requires: perl(bytes)
|
Requires: perl(bytes)
|
||||||
Requires: perl(Fcntl)
|
Requires: perl(Fcntl)
|
||||||
@ -80,6 +81,9 @@ make test
|
|||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jul 29 2014 Petr Pisar <ppisar@redhat.com> - 0.046-1
|
||||||
|
- 0.046 bump
|
||||||
|
|
||||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.043-2
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.043-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user