diff options
| author | Sönke Schau <xgcssch@users.noreply.github.com> | 2019-03-15 22:31:00 +0100 |
|---|---|---|
| committer | Phil Christensen <philc@microsoft.com> | 2019-03-15 14:31:00 -0700 |
| commit | d433d21904ca849fdce193584153db46fa121f84 (patch) | |
| tree | 20bde305f935897e52f44c3d6e3dbafed0b5c898 | |
| parent | 9ca11f3a6dc7ef8838c6bc078dfb6ce4c288833e (diff) | |
| download | vcpkg-d433d21904ca849fdce193584153db46fa121f84.tar.gz vcpkg-d433d21904ca849fdce193584153db46fa121f84.zip | |
[upstream] Update toversion 2.8.81 and added missing folder (#5668)
* Update to upstream version 2.8.81
Copy import directory to the share folder, so it can be used by clients.
| -rw-r--r-- | ports/gsoap/CONTROL | 2 | ||||
| -rw-r--r-- | ports/gsoap/portfile.cmake | 7 |
2 files changed, 6 insertions, 3 deletions
diff --git a/ports/gsoap/CONTROL b/ports/gsoap/CONTROL index 2da6f0409..60a1953fe 100644 --- a/ports/gsoap/CONTROL +++ b/ports/gsoap/CONTROL @@ -1,4 +1,4 @@ Source: gsoap
-Version: 2.8.78-1
+Version: 2.8.81-1
Build-Depends: curl
Description: The gSOAP toolkit is a C and C++ software development toolkit for SOAP and REST XML Web services and generic C/C++ XML data bindings.
\ No newline at end of file diff --git a/ports/gsoap/portfile.cmake b/ports/gsoap/portfile.cmake index 8162d6780..211eb6669 100644 --- a/ports/gsoap/portfile.cmake +++ b/ports/gsoap/portfile.cmake @@ -1,12 +1,12 @@ include(vcpkg_common_functions)
set(GSOAP_VERSION 2.8)
-set(GSOAP_SUB_VERSION .78)
+set(GSOAP_SUB_VERSION .81)
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/gsoap-${GSOAP_VERSION})
vcpkg_download_distfile(ARCHIVE
URLS "https://ayera.dl.sourceforge.net/project/gsoap2/gsoap-${GSOAP_VERSION}/gsoap_${GSOAP_VERSION}${GSOAP_SUB_VERSION}.zip"
FILENAME "gsoap_${GSOAP_VERSION}${GSOAP_SUB_VERSION}.zip"
- SHA512 c115044d2662c2dd355c4756a974a0013b7213dd28c536aba179e53c19466279bfa34ce16b4426db5aa7a24d94c18e0ed7e7cdf05e799bf89f7b54031aa0874e
+ SHA512 f49a249f9d4d5c1d306897e4d11dfe797d4f31dee43a687f9efd4f035f14d996b4fc602b474c955602e491ec973113014a20b73b51e7282895ab94430f40f1b9
)
vcpkg_extract_source_archive_ex(
@@ -52,6 +52,9 @@ endif() file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/include)
file(COPY ${SOURCE_PATH}/gsoap/stdsoap2.h ${SOURCE_PATH}/gsoap/stdsoap2.c ${SOURCE_PATH}/gsoap/stdsoap2.cpp DESTINATION ${CURRENT_PACKAGES_DIR}/include)
+# Handle import files
+file(COPY ${SOURCE_PATH}/gsoap/import DESTINATION ${CURRENT_PACKAGES_DIR}/share/gsoap)
+
# Handle copyright
file(COPY ${SOURCE_PATH}/LICENSE.txt ${SOURCE_PATH}/INSTALL.txt ${SOURCE_PATH}/README.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/gsoap)
file(RENAME ${CURRENT_PACKAGES_DIR}/share/gsoap/LICENSE.txt ${CURRENT_PACKAGES_DIR}/share/gsoap/copyright)
|
