forked from pool/gsoap
gsoap-2.8.61
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/gsoap?expand=0&rev=122
This commit is contained in:
parent
8a25de7681
commit
d84ea2350c
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:9929315415d8194229d8f4026c8c218e47f3a213703d5e598b6ca57bed42fbcc
|
|
||||||
size 17373204
|
|
3
gsoap-2.8.61.tar.xz
Normal file
3
gsoap-2.8.61.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:a4d8365fd77507127a9371c31f7ed53c46f9d931584e0734c923572062e88e52
|
||||||
|
size 17240784
|
@ -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
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
@ -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"
|
||||||
|
Loading…
Reference in New Issue
Block a user