diff --git a/gsoap-2.8.14.tar.xz b/gsoap-2.8.14.tar.xz deleted file mode 100644 index 277d3fd..0000000 --- a/gsoap-2.8.14.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fee2410fa8082bdbb4d9109043c8ae7123891e7ceda7aa1abaa29c20e1aafca2 -size 7890404 diff --git a/gsoap-2.8.15.tar.xz b/gsoap-2.8.15.tar.xz new file mode 100644 index 0000000..14d38f3 --- /dev/null +++ b/gsoap-2.8.15.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ac05a0dde1981301885c2bb8d7a8182ad27292434248ced8816442e7deec2e5 +size 5778572 diff --git a/gsoap.changes b/gsoap.changes index 4a1a97b..97d8c34 100644 --- a/gsoap.changes +++ b/gsoap.changes @@ -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 diff --git a/gsoap.spec b/gsoap.spec index de1bdf8..7430b9f 100644 --- a/gsoap.spec +++ b/gsoap.spec @@ -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 diff --git a/sanitize_source.sh b/sanitize_source.sh index 7fd3387..2e65404 100644 --- a/sanitize_source.sh +++ b/sanitize_source.sh @@ -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 | \