Accepting request 763724 from devel:libraries:c_c++
- Temporarily work around -fno-common build failure [boo#1160267]. OBS-URL: https://build.opensuse.org/request/show/763724 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gsoap?expand=0&rev=63
This commit is contained in:
commit
bfed5fa8eb
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3b18a9886f8ca46420293e32230e6f41222dad8c49a1c92c0503f8293592feb9
|
||||
size 15881084
|
3
gsoap-2.8.97.tar.xz
Normal file
3
gsoap-2.8.97.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c30b302c363beb67f988cc564eb633fb3e5b79da19960dc4c8843b347781a1bf
|
||||
size 16742724
|
@ -1,3 +1,21 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Jan 12 22:44:42 UTC 2020 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Temporarily work around -fno-common build failure [boo#1160267].
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 8 16:22:13 UTC 2020 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release 2.8.97
|
||||
* Fixed wsdl2h processing of schemas with a cyclic schema
|
||||
`<xs:include>` that may cause wsdl2h to hang when schemas
|
||||
have no `targetNamespace` attribute.
|
||||
* Improved wsdl2h code generation of unqualified types and
|
||||
names defined in imported schemas (with `<xs:import>`) when
|
||||
these schemas have no `targetNamespace`. Use wsdl2h option
|
||||
`-z10` or lesser to revert to the code generation behavior of
|
||||
versions prior to 2.8.97.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 12 12:10:24 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
|
16
gsoap.spec
16
gsoap.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package gsoap
|
||||
#
|
||||
# Copyright (c) 2019 SUSE LLC
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,8 +17,8 @@
|
||||
|
||||
|
||||
Name: gsoap
|
||||
%define lname libgsoap-2_8_96
|
||||
Version: 2.8.96
|
||||
%define lname libgsoap-2_8_97
|
||||
Version: 2.8.97
|
||||
Release: 0
|
||||
Summary: Toolkit for SOAP/REST-based C/C++ server and client web service applications
|
||||
License: SUSE-GPL-2.0+-with-openssl-exception
|
||||
@ -29,10 +29,10 @@ Source: gsoap-%version.tar.xz
|
||||
Source2: sanitize_source.sh
|
||||
Patch1: gsoap-automake1_13.diff
|
||||
Patch2: gsoap-01-sharedlibs.diff
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
BuildRequires: bison
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: flex
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: libtool
|
||||
@ -41,9 +41,6 @@ BuildRequires: xz
|
||||
BuildRequires: pkgconfig(libcrypto)
|
||||
BuildRequires: pkgconfig(libssl)
|
||||
BuildRequires: pkgconfig(zlib)
|
||||
%if 0%{?suse_version}
|
||||
BuildRequires: fdupes
|
||||
%endif
|
||||
|
||||
%description
|
||||
gSOAP is a toolkit for C and C++ server and client Web service
|
||||
@ -94,7 +91,7 @@ perl -i -lpe 's{AC_INIT\(gsoap, 2.8\)}{AC_INIT([gsoap], [%version])}' \
|
||||
# Rebuild configure - fix that utterly long mktime test.
|
||||
# Also needed because Makefile.am and configure.ac are touched.
|
||||
autoreconf -fi
|
||||
%configure --enable-ipv6 --disable-static
|
||||
%configure --enable-ipv6 --disable-static CFLAGS="%optflags -fcommon"
|
||||
pushd gsoap/src/
|
||||
# build prerequisites for parallel build first
|
||||
make soapcpp2_yacc.c
|
||||
@ -116,7 +113,6 @@ find "$b" -type f -name "*inconsolata*" -exec chmod a-x "{}" "+"
|
||||
%postun -n %lname -p /sbin/ldconfig
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%_bindir/*soap*
|
||||
%_bindir/*wsdl*
|
||||
%_datadir/%name/
|
||||
@ -130,11 +126,9 @@ find "$b" -type f -name "*inconsolata*" -exec chmod a-x "{}" "+"
|
||||
%_libdir/pkgconfig/*gsoap*.pc
|
||||
|
||||
%files -n %lname
|
||||
%defattr(-,root,root)
|
||||
%_libdir/libgsoap*-%version.so
|
||||
|
||||
%files doc
|
||||
%defattr(-,root,root)
|
||||
%_defaultdocdir/%name/
|
||||
|
||||
%changelog
|
||||
|
@ -13,7 +13,7 @@ if ! which hardlink >/dev/null; then
|
||||
exit 1;
|
||||
fi;
|
||||
|
||||
version="2.8.96"
|
||||
version="2.8.97"
|
||||
shortver="2.8" # agh...
|
||||
if [ ! -e "gsoap_$version.zip" ]; then
|
||||
wget -c "http://downloads.sf.net/gsoap2/gsoap_$version.zip"
|
||||
|
Loading…
Reference in New Issue
Block a user