Jan Engelhardt 2013-06-27 06:46:00 +00:00 committed by Git OBS Bridge
parent 1a71ac5883
commit 433ea44bdd
5 changed files with 25 additions and 9 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fee2410fa8082bdbb4d9109043c8ae7123891e7ceda7aa1abaa29c20e1aafca2
size 7890404

3
gsoap-2.8.15.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9ac05a0dde1981301885c2bb8d7a8182ad27292434248ced8816442e7deec2e5
size 5778572

View File

@ -1,3 +1,17 @@
-------------------------------------------------------------------
Thu Jun 27 06:44:56 UTC 2013 - jengelh@inai.de
- Update to new upstream release 2.8.15
* Added wsdl2h option -R for auto-generation of REST-based service
operations (also added examples/rest example).
* Change soap_read_X() and soap_write_X() to prevent removal of
HTTP headers after calling soap_connect().
* Fixed automatic detection of DIME/MIME transfers.
* Fixed a HTTP 1.0 chunking issue.
* Fixed HTTP digest authentication with DIME/MIME transfers.
* Fixed OpenSSL subject alt name check.
* Fixed a HTTP 100 message handling issue.
-------------------------------------------------------------------
Thu Feb 28 22:31:47 UTC 2013 - jengelh@inai.de

View File

@ -21,11 +21,11 @@ Name: gsoap
Summary: Toolkit for C/C++ server and client web service applications
License: SUSE-GPL-2.0+-with-openssl-exception
Group: Development/Libraries/C and C++
Version: 2.8.14
Version: 2.8.15
Release: 0
Url: http://gsoap2.sf.net/
#DL-URL: http://downloads.sf.net/gsoap2/gsoap_2.8.14.zip
#DL-URL: http://downloads.sf.net/gsoap2/gsoap_2.8.15.zip
Source: gsoap-%version.tar.xz
Source2: sanitize_source.sh
Patch0: gsoap-automake1_13.diff

View File

@ -1,6 +1,6 @@
#!/bin/sh -x
#
# Shrink the gsoap archive from 18 MB -> 7 MB.
# Shrink the gsoap archive from 20 MB -> 6 MB.
#
# Requires: fdupes, hxtools
@ -13,7 +13,7 @@ if ! which fduphl >/dev/null; then
exit 1;
fi;
version="2.8.14";
version="2.8.15";
shortver="2.8"; # agh...
rm -Rf "gsoap-$shortver" "gsoap-$version";
@ -22,14 +22,16 @@ unzip "gsoap_$version.zip";
# Someone failed at sane version number tagging.
mv "gsoap-$shortver" "gsoap-$version";
# Remove executables, backups.
# Remove executables, backups, cache files, non-Linux parts...
rm -Rf "gsoap-$version/gsoap/bin" \
"gsoap-$version/samples/link++/xmas" \
"gsoap-$version"/*.old \
"gsoap-$version/autom4te.cache";
find "gsoap-$version" -type d -name "*.pbxindex" -exec rm -Rf "{}" "+"
rm -Rf "gsoap-$version/gsoap/ios_plugin";
find "gsoap-$version" -type f "(" \
-iname "*.exe" -o -iname "*.dll" -o -name "*.o" -o \
-name "*~" ")" -delete;
-name "*~" -o -name .DS_Store ")" -delete;
fduphl "gsoap-$version";
echo Now...
find "gsoap-$version" -print0 | sort -z | \