Accepting request 573168 from devel:libraries:c_c++

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/573168
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gsoap?expand=0&rev=40
This commit is contained in:
2018-02-07 17:37:56 +00:00
committed by Git OBS Bridge
5 changed files with 29 additions and 8 deletions

BIN
gsoap-2.8.60.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
gsoap-2.8.61.tar.xz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,3 +1,24 @@
-------------------------------------------------------------------
Mon Jan 29 22:06:17 UTC 2018 - jengelh@inai.de
- Update to new upstream release 2.8.61
* Added `WITH_DEFAULT_VIRTUAL` to generate default methods that
return `SOAP_NO_METHOD` for C++ services generated with
soapcpp2 option `-j` or `-i`. A derived class can then
selectively implement service methods as needed. This
addition required the use of a new macro
`SOAP_PURE_VIRTUAL_COPY` for virtual `::copy()` methods,
replacing `SOAP_PURE_VIRTUAL` for `::copy()`.
* Added the `SOAP_H_FILE` macro to improve the use of plugins
and custom serializers in project builds with soapcpp2
options `-p` and `-q` that rename the generated files such as
`soapH.h`, the macro changes the `#include "soapH.h"` to
`#include "nameH.h"` by invoking the C/C++ compiler with
option `-DSOAP_H_FILE=nameH.h`.
* Fixed a glitch in soapcpp2 to generate `soap_write_T`
functions for `typedef ... T` types that represent XML
elements.
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jan 16 09:15:30 UTC 2018 - jengelh@inai.de Tue Jan 16 09:15:30 UTC 2018 - jengelh@inai.de

View File

@@ -17,8 +17,8 @@
Name: gsoap Name: gsoap
%define lname libgsoap-2_8_60 %define lname libgsoap-2_8_61
Version: 2.8.60 Version: 2.8.61
Release: 0 Release: 0
Summary: Toolkit for SOAP/REST-based C/C++ server and client web service applications Summary: Toolkit for SOAP/REST-based C/C++ server and client web service applications
License: SUSE-GPL-2.0+-with-openssl-exception License: SUSE-GPL-2.0+-with-openssl-exception

View File

@@ -1,8 +1,8 @@
#!/bin/sh -ex #!/bin/sh -ex
# #
# Shrink the gsoap archive from 20 MB -> 6 MB. # Shrink the gsoap archive from 32 MB -> 17 MB and removes .exe/.dll files.
# #
# Requires: fdupes, hxtools # Requires: fdupes, hardlink
if ! which fdupes >/dev/null; then if ! which fdupes >/dev/null; then
echo "fdupes not installed."; echo "fdupes not installed.";
@@ -13,7 +13,7 @@ if ! which hardlink >/dev/null; then
exit 1; exit 1;
fi; fi;
version="2.8.60" version="2.8.61"
shortver="2.8" # agh... shortver="2.8" # agh...
if [ ! -e "gsoap_$version.zip" ]; then if [ ! -e "gsoap_$version.zip" ]; then
wget -c "http://downloads.sf.net/gsoap2/gsoap_$version.zip" wget -c "http://downloads.sf.net/gsoap2/gsoap_$version.zip"