Accepting request 287859 from home:XRevan86
OBS-URL: https://build.opensuse.org/request/show/287859 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/curl?expand=0&rev=125
This commit is contained in:
parent
d124d7009f
commit
e93a5e2db2
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:47dff2367ff3343ce3a4661ddb0ce8d03b18e868f77fc82ae77b2c23587325a8
|
||||
size 2684351
|
@ -1,7 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1
|
||||
|
||||
iEYEABECAAYFAlSuPVwACgkQeOEcayedXJGBZACfVptdcgMlq4CelqPfrWdZpPP8
|
||||
UOMAnA2LcEYZ1bOCN3kr27ARQAz2OXT0
|
||||
=eJwT
|
||||
-----END PGP SIGNATURE-----
|
3
curl-7.41.0.tar.lzma
Normal file
3
curl-7.41.0.tar.lzma
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c2c40bcc1eb3e598387a1d1243b01117cd0f253e79247bd4f0f17fd760dec722
|
||||
size 2722527
|
7
curl-7.41.0.tar.lzma.asc
Normal file
7
curl-7.41.0.tar.lzma.asc
Normal file
@ -0,0 +1,7 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1
|
||||
|
||||
iEYEABECAAYFAlTte8QACgkQeOEcayedXJFByQCdEIZG6sOcXOhbe9JGSTZowdMR
|
||||
72cAoLu08rLq83AkywThzrxFG6qb7K0z
|
||||
=U309
|
||||
-----END PGP SIGNATURE-----
|
11
curl.changes
11
curl.changes
@ -1,3 +1,14 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 26 09:37:22 UTC 2015 - sor.alexei@meowr.ru
|
||||
|
||||
- update to 7.41.0:
|
||||
* Changes:
|
||||
NetWare build: added TLS-SRP enabled build
|
||||
winbuild: Added option to build with c-ares
|
||||
Added --cert-status
|
||||
Added CURLOPT_SSL_VERIFYSTATUS
|
||||
sasl: implement EXTERNAL authentication mechanism
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 14 18:29:37 UTC 2015 - mpluskal@suse.com
|
||||
|
||||
|
20
curl.spec
20
curl.spec
@ -20,7 +20,7 @@
|
||||
%bcond_with mozilla_nss
|
||||
%bcond_without testsuite
|
||||
Name: curl
|
||||
Version: 7.40.0
|
||||
Version: 7.41.0
|
||||
Release: 0
|
||||
Summary: A Tool for Transferring Data from URLs
|
||||
License: BSD-3-Clause and MIT
|
||||
@ -99,7 +99,7 @@ user interaction or any kind of interactivity.
|
||||
# curl complains if macro definition is contained in CFLAGS
|
||||
# see m4/xc-val-flgs.m4
|
||||
CPPFLAGS="-D_FORTIFY_SOURCE=2"
|
||||
CFLAGS=$(echo %{optflags} | sed 's/-D_FORTIFY_SOURCE=2//')
|
||||
CFLAGS=$(echo "%{optflags}" | sed -e 's/-D_FORTIFY_SOURCE=2//')
|
||||
export CPPFLAGS CFLAGS
|
||||
export CFLAGS="$CFLAGS -fPIE"
|
||||
export LDFLAGS="$LDFLAGS -pie"
|
||||
@ -107,7 +107,7 @@ autoreconf -fi
|
||||
# local hack to make curl-config --libs stop printing libraries it depends on
|
||||
# (currently, libtool sets link_all_deplibs=(yes|unknown) everywhere,
|
||||
# will hopefully change in the future)
|
||||
sed -i 's/link_all_deplibs=unknown/link_all_deplibs=no/' configure
|
||||
sed -i 's/\(link_all_deplibs=\)unknown/\1no/' configure
|
||||
%configure \
|
||||
--enable-ipv6 \
|
||||
%if %{with openssl}
|
||||
@ -126,14 +126,14 @@ sed -i 's/link_all_deplibs=unknown/link_all_deplibs=no/' configure
|
||||
--enable-threaded-resolver \
|
||||
--with-libmetalink
|
||||
|
||||
: if this fails, the above sed hack did not work
|
||||
# if this fails, the above sed hack did not work
|
||||
./libtool --config | grep -q link_all_deplibs=no
|
||||
# enable-hidden-symbols needs gcc4 and causes that curl exports only its API
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%if %{with testsuite}
|
||||
%check
|
||||
cd tests
|
||||
pushd tests
|
||||
make %{?_smp_mflags}
|
||||
# make sure the testsuite runs don't race on MP machines in autobuild
|
||||
if test -z "$BUILD_INCARNATION" -a -r /.buildenv; then
|
||||
@ -151,12 +151,12 @@ perl ./runtests.pl -a -b$base || {
|
||||
%endif
|
||||
}
|
||||
%endif
|
||||
popd
|
||||
|
||||
%install
|
||||
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
||||
rm %{buildroot}%{_libdir}/libcurl.la
|
||||
install -d %{buildroot}%{_datadir}/aclocal
|
||||
install -m 644 docs/libcurl/libcurl.m4 %{buildroot}%{_datadir}/aclocal/
|
||||
%make_install
|
||||
rm -f %{buildroot}%{_libdir}/libcurl.la
|
||||
install -Dm 0644 docs/libcurl/libcurl.m4 %{buildroot}%{_datadir}/aclocal/libcurl.m4
|
||||
|
||||
%post -n libcurl4 -p /sbin/ldconfig
|
||||
|
||||
@ -178,7 +178,7 @@ install -m 644 docs/libcurl/libcurl.m4 %{buildroot}%{_datadir}/aclocal/
|
||||
%defattr(-,root,root)
|
||||
%{_bindir}/curl-config
|
||||
%{_includedir}/curl
|
||||
%dir %{_datadir}/aclocal
|
||||
%dir %{_datadir}/aclocal/
|
||||
%{_datadir}/aclocal/libcurl.m4
|
||||
%{_libdir}/libcurl.so
|
||||
%{_libdir}/pkgconfig/libcurl.pc
|
||||
|
Loading…
x
Reference in New Issue
Block a user