|
@@ -7,7 +7,7 @@
|
|
|
Summary: A utility for getting files from remote servers (FTP, HTTP, and others).
|
|
|
Summary(ja): リモートサーバ(FTP,HTTPなど)からファイルを取得するためのユーティリティ
|
|
|
Name: curl
|
|
|
-Version: 7.62.0
|
|
|
+Version: 7.65.3
|
|
|
Release: 1%{?_dist_release}
|
|
|
|
|
|
License: MIT
|
|
@@ -15,6 +15,12 @@ Group: Applications/Internet
|
|
|
URL: http://curl.haxx.se/
|
|
|
Source: http://curl.haxx.se/download/%{name}-%{version}.tar.xz
|
|
|
|
|
|
+# improve handling of gss_init_sec_context() failures
|
|
|
+Patch1: 0001-curl-7.65.3-negotiate-fails.patch
|
|
|
+
|
|
|
+# avoid reporting spurious error in the HTTP2 framing layer (#1690971)
|
|
|
+Patch2: 0002-curl-7.65.3-h2-framing-layer-error.patch
|
|
|
+
|
|
|
# patch making libcurl multilib ready
|
|
|
Patch101: 0101-curl-7.32.0-multilib.patch
|
|
|
|
|
@@ -27,6 +33,9 @@ Patch103: 0103-curl-7.59.0-python3.patch
|
|
|
# use localhost6 instead of ip6-localhost in the curl test-suite
|
|
|
Patch104: 0104-curl-7.19.7-localhost6.patch
|
|
|
|
|
|
+# prevent valgrind from reporting false positives on x86_64
|
|
|
+Patch105: 0105-curl-7.63.0-lib1560-valgrind.patch
|
|
|
+
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
|
BuildRequires: openssl-devel
|
|
|
BuildRequires: gnutls-devel
|
|
@@ -97,13 +106,15 @@ use cURL's capabilities internally.
|
|
|
%setup -q
|
|
|
|
|
|
# upstream patches
|
|
|
-# (none)
|
|
|
+%patch1 -p1
|
|
|
+%patch2 -p1
|
|
|
|
|
|
# Fedora patches
|
|
|
%patch101 -p1
|
|
|
%patch102 -p1
|
|
|
#patch103 -p1
|
|
|
%patch104 -p1
|
|
|
+%patch105 -p1
|
|
|
|
|
|
# make tests/*.py use Python 3
|
|
|
sed -e '1 s|^#!/.*python|&3|' -i tests/*.py
|
|
@@ -201,6 +212,11 @@ rm -rf $RPM_BUILD_ROOT
|
|
|
%endif
|
|
|
|
|
|
%changelog
|
|
|
+* Thu Aug 29 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.65.3-1
|
|
|
+- new upstream release.
|
|
|
+- updated patches.
|
|
|
+- imported Patch1, 2 and 105 from rawhide.
|
|
|
+
|
|
|
* Sat Nov 03 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.62.0-1
|
|
|
- new upstream release.
|
|
|
- imported patches from rawhide.
|