From 8b9ec93d0945f35d620b3262c230c8f114a60590 Mon Sep 17 00:00:00 2001 From: sdcb Date: Wed, 10 May 2017 11:11:00 +0800 Subject: [rxcpp] upgrade to 4.0.0 --- ports/rxcpp/CONTROL | 2 +- ports/rxcpp/portfile.cmake | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'ports/rxcpp') diff --git a/ports/rxcpp/CONTROL b/ports/rxcpp/CONTROL index 02b873816..bf4c3cae8 100644 --- a/ports/rxcpp/CONTROL +++ b/ports/rxcpp/CONTROL @@ -1,3 +1,3 @@ Source: rxcpp -Version: 3.0.0 +Version: 4.0.0 Description: Reactive Extensions for C++ \ No newline at end of file diff --git a/ports/rxcpp/portfile.cmake b/ports/rxcpp/portfile.cmake index 4a321222d..888c05a2c 100644 --- a/ports/rxcpp/portfile.cmake +++ b/ports/rxcpp/portfile.cmake @@ -1,10 +1,10 @@ #header-only library include(vcpkg_common_functions) -set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/RxCpp-3.0.0) +set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/RxCpp-4.0.0) vcpkg_download_distfile(ARCHIVE - URLS "https://github.com/Reactive-Extensions/RxCpp/archive/v3.0.0.tar.gz" - FILENAME "RxCpp-v3.0.0.tar.gz" - SHA512 6d810b6163d0920d531f32a13729e290c81b47d5fc9c3e3d3d8a25d27a6f0671fec097d091bef7383b7e556e9e5471db087bb955e7f4fd9a5fdc9e7b06050844 + URLS "https://github.com/Reactive-Extensions/RxCpp/archive/v4.0.0.tar.gz" + FILENAME "RxCpp-v4.0.0.tar.gz" + SHA512 df7582925e749fb7f9fbc085566d57a46571e18202aacaa7d35cf9da8152b29dd2886b2d07dae93e538f2a0f7b91d93fb3da23c34c7ea4467772515c794a25b7 ) vcpkg_extract_source_archive(${ARCHIVE}) -- cgit v1.2.3 From 29cc5780feaacbfa77dabbc2230f29c57dbbef29 Mon Sep 17 00:00:00 2001 From: Robert Schumacher Date: Tue, 9 May 2017 20:55:58 -0700 Subject: [rxcpp] Use vcpkg_from_github() --- ports/rxcpp/CONTROL | 2 +- ports/rxcpp/portfile.cmake | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) (limited to 'ports/rxcpp') diff --git a/ports/rxcpp/CONTROL b/ports/rxcpp/CONTROL index bf4c3cae8..7bf2aca17 100644 --- a/ports/rxcpp/CONTROL +++ b/ports/rxcpp/CONTROL @@ -1,3 +1,3 @@ Source: rxcpp -Version: 4.0.0 +Version: 4.0.0-1 Description: Reactive Extensions for C++ \ No newline at end of file diff --git a/ports/rxcpp/portfile.cmake b/ports/rxcpp/portfile.cmake index 888c05a2c..00b154989 100644 --- a/ports/rxcpp/portfile.cmake +++ b/ports/rxcpp/portfile.cmake @@ -1,12 +1,14 @@ #header-only library include(vcpkg_common_functions) set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/RxCpp-4.0.0) -vcpkg_download_distfile(ARCHIVE - URLS "https://github.com/Reactive-Extensions/RxCpp/archive/v4.0.0.tar.gz" - FILENAME "RxCpp-v4.0.0.tar.gz" + +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO Reactive-Extensions/RxCpp + REF v4.0.0 SHA512 df7582925e749fb7f9fbc085566d57a46571e18202aacaa7d35cf9da8152b29dd2886b2d07dae93e538f2a0f7b91d93fb3da23c34c7ea4467772515c794a25b7 + HEAD_REF master ) -vcpkg_extract_source_archive(${ARCHIVE}) file(INSTALL ${SOURCE_PATH}/Rx/v2/src/rxcpp -- cgit v1.2.3