SHA256
1
0
forked from pool/gsoap
2018-01-29 22:10:20 +00:00
committed by Git OBS Bridge
parent 8a25de7681
commit d84ea2350c
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

View File

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

View File

@@ -1,8 +1,8 @@
#!/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
echo "fdupes not installed.";
@@ -13,7 +13,7 @@ if ! which hardlink >/dev/null; then
exit 1;
fi;
version="2.8.60"
version="2.8.61"
shortver="2.8" # agh...
if [ ! -e "gsoap_$version.zip" ]; then
wget -c "http://downloads.sf.net/gsoap2/gsoap_$version.zip"