From 9ce56143a9a39888a732c173ffba15aa4ef0cf82 Mon Sep 17 00:00:00 2001 From: Daniele Pallastrelli Date: Tue, 17 Sep 2019 10:11:40 +0200 Subject: [PATCH 01/13] [cli] Update the version to 1.1.1 --- ports/cli/CONTROL | 2 +- ports/cli/portfile.cmake | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ports/cli/CONTROL b/ports/cli/CONTROL index a7db9c2edbef90..6df668d4a3614e 100644 --- a/ports/cli/CONTROL +++ b/ports/cli/CONTROL @@ -1,4 +1,4 @@ Source: cli -Version: 1.1-1 +Version: 1.1.1 Description: A library for interactive command line interfaces in modern C++ Build-Depends: boost-asio diff --git a/ports/cli/portfile.cmake b/ports/cli/portfile.cmake index c83f75dd80d4f6..54ae21ba05069e 100644 --- a/ports/cli/portfile.cmake +++ b/ports/cli/portfile.cmake @@ -3,8 +3,8 @@ include(vcpkg_common_functions) vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO daniele77/cli - REF v1.1.0 - SHA512 a3aeac666567359521d625442f5a03b35ea1e6cf7bd63cdc52dfea20397a1726ce34aeab08ffd7181b9390fb791c56e5aba0260e300329ff327282f1547940c8 + REF v1.1.1 + SHA512 c5046450af8818e23fc5187e66a963cfa981042a99b66c52bfe6119bf126348cd38c50472bc267197e4175ee056f8cf639b09846675450d67c06c1c64f64acba HEAD_REF master ) From f3a467b7e46285022f85a49a60d5fcc6ba330b73 Mon Sep 17 00:00:00 2001 From: Daniele Pallastrelli Date: Thu, 27 Aug 2020 11:33:47 +0200 Subject: [PATCH 02/13] [cli] Update the version to 1.2.1 --- ports/cli/CONTROL | 2 +- ports/cli/portfile.cmake | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ports/cli/CONTROL b/ports/cli/CONTROL index b84813e2ff34c6..8cda2750e5957e 100644 --- a/ports/cli/CONTROL +++ b/ports/cli/CONTROL @@ -1,5 +1,5 @@ Source: cli -Version: 1.2.0 +Version: 1.2.1 Homepage: https://github.com/daniele77/cli Description: A library for interactive command line interfaces in modern C++ Build-Depends: boost-asio diff --git a/ports/cli/portfile.cmake b/ports/cli/portfile.cmake index 77813db666b97b..c86bd6698ae389 100644 --- a/ports/cli/portfile.cmake +++ b/ports/cli/portfile.cmake @@ -3,8 +3,8 @@ include(vcpkg_common_functions) vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO daniele77/cli - REF v1.2.0 - SHA512 ff548cbc1a77ded32f67d0ff4740d2abb31226cb6f0d9d431e1a35dcdfcaf68a2b9e16e926fc88f19aa17f5c6f5f8e2aead83ff65d7557c192bdd7d4ce2a2d3e + REF v1.2.1 + SHA512 fc834608ac2ca6c3f330711c80897cc581eb1ed8da7a0d56a07efe6650d871f5317c777a6a029fdc0177684f08479bd129cc0ce748354bac3dbe6af79a390d14 HEAD_REF master ) From 988b5022a2e88afa2beeb80e211d978c8db6369b Mon Sep 17 00:00:00 2001 From: Daniele Pallastrelli Date: Thu, 27 Aug 2020 12:15:02 +0200 Subject: [PATCH 03/13] [cli] Update the version to 1.2.1: fix PR requests --- ports/cli/portfile.cmake | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ports/cli/portfile.cmake b/ports/cli/portfile.cmake index c86bd6698ae389..134c718293bff1 100644 --- a/ports/cli/portfile.cmake +++ b/ports/cli/portfile.cmake @@ -1,5 +1,3 @@ -include(vcpkg_common_functions) - vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO daniele77/cli @@ -17,4 +15,4 @@ vcpkg_install_cmake() vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/cli) file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug ${CURRENT_PACKAGES_DIR}/lib) -file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/cli RENAME copyright) +file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) From 26179bc87c93668a804ddbb9d1b44c3536b04aef Mon Sep 17 00:00:00 2001 From: Daniele Pallastrelli Date: Fri, 21 May 2021 12:46:46 +0200 Subject: [PATCH 04/13] [aricpp] create a new port (#17162) --- ports/aricpp/portfile.cmake | 18 ++++++++++++++++++ ports/aricpp/vcpkg.json | 7 +++++++ 2 files changed, 25 insertions(+) create mode 100644 ports/aricpp/portfile.cmake create mode 100644 ports/aricpp/vcpkg.json diff --git a/ports/aricpp/portfile.cmake b/ports/aricpp/portfile.cmake new file mode 100644 index 00000000000000..bd86503d433878 --- /dev/null +++ b/ports/aricpp/portfile.cmake @@ -0,0 +1,18 @@ +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO daniele77/aricpp + REF v1.1.1 + SHA512 b1e02b9ba9afc1f3315e238cd61b98a8d28eee08ddbaccaf171aa77d27ecec2b3abfaa5aae6905f9c2a1c83b0095a135f2186c977a0ae0cfafb48e3690814183 + HEAD_REF master +) + +vcpkg_configure_cmake( + SOURCE_PATH ${SOURCE_PATH} + PREFER_NINJA +) + +vcpkg_install_cmake() +vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/aricpp) + +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug ${CURRENT_PACKAGES_DIR}/lib) +file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) diff --git a/ports/aricpp/vcpkg.json b/ports/aricpp/vcpkg.json new file mode 100644 index 00000000000000..5b0130ac38cb21 --- /dev/null +++ b/ports/aricpp/vcpkg.json @@ -0,0 +1,7 @@ +{ + "name": "aricpp", + "version-string": "1.1.1", + "port-version": 1, + "description": "Asterisk ARI interface bindings for modern C++", + "homepage": "https://github.com/daniele77/aricpp" +} From 296db25af2953adf058709fbe0942842ef21eff9 Mon Sep 17 00:00:00 2001 From: Daniele Pallastrelli Date: Fri, 21 May 2021 13:00:30 +0200 Subject: [PATCH 05/13] [cli] run the command: ./vcpkg x-add-version --all --- versions/a-/aricpp.json | 9 +++++++++ versions/baseline.json | 4 ++++ 2 files changed, 13 insertions(+) create mode 100644 versions/a-/aricpp.json diff --git a/versions/a-/aricpp.json b/versions/a-/aricpp.json new file mode 100644 index 00000000000000..261b666b198a18 --- /dev/null +++ b/versions/a-/aricpp.json @@ -0,0 +1,9 @@ +{ + "versions": [ + { + "git-tree": "4bbfa3f90947fa234f7d3e3ab43ca80c5007148c", + "version-string": "1.1.1", + "port-version": 1 + } + ] +} diff --git a/versions/baseline.json b/versions/baseline.json index 3123d22539440e..3103cc09d43ea2 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -136,6 +136,10 @@ "baseline": "0.3.1", "port-version": 0 }, + "aricpp": { + "baseline": "1.1.1", + "port-version": 1 + }, "armadillo": { "baseline": "10.4.0", "port-version": 0 From fd37162356e1f85df905e7d4e06b8d09ac3492fc Mon Sep 17 00:00:00 2001 From: Daniele Pallastrelli Date: Mon, 24 May 2021 10:23:03 +0200 Subject: [PATCH 06/13] [aricpp] change request for #18048 --- ports/aricpp/portfile.cmake | 7 +++---- ports/aricpp/vcpkg.json | 12 +++++++++++- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/ports/aricpp/portfile.cmake b/ports/aricpp/portfile.cmake index bd86503d433878..7b729125151a83 100644 --- a/ports/aricpp/portfile.cmake +++ b/ports/aricpp/portfile.cmake @@ -6,13 +6,12 @@ vcpkg_from_github( HEAD_REF master ) -vcpkg_configure_cmake( +vcpkg_cmake_configure( SOURCE_PATH ${SOURCE_PATH} - PREFER_NINJA ) -vcpkg_install_cmake() -vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/aricpp) +vcpkg_cmake_install() +vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/aricpp) file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug ${CURRENT_PACKAGES_DIR}/lib) file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) diff --git a/ports/aricpp/vcpkg.json b/ports/aricpp/vcpkg.json index 5b0130ac38cb21..2b966de5c46110 100644 --- a/ports/aricpp/vcpkg.json +++ b/ports/aricpp/vcpkg.json @@ -3,5 +3,15 @@ "version-string": "1.1.1", "port-version": 1, "description": "Asterisk ARI interface bindings for modern C++", - "homepage": "https://github.com/daniele77/aricpp" + "homepage": "https://github.com/daniele77/aricpp", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ] } From 08d93796fc9d4ed0e752b28df72c89b7feecf22e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jack=C2=B7Boos=C2=B7Yu?= <47264268+JackBoosY@users.noreply.github.com> Date: Mon, 24 May 2021 17:35:11 +0800 Subject: [PATCH 07/13] Update ports/aricpp/portfile.cmake --- ports/aricpp/portfile.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ports/aricpp/portfile.cmake b/ports/aricpp/portfile.cmake index 7b729125151a83..816a9e6f46f02f 100644 --- a/ports/aricpp/portfile.cmake +++ b/ports/aricpp/portfile.cmake @@ -11,6 +11,8 @@ vcpkg_cmake_configure( ) vcpkg_cmake_install() + +vcpkg_copy_pdbs() vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/aricpp) file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug ${CURRENT_PACKAGES_DIR}/lib) From 39b97bbe891e70f183cb304e141237427057c5ef Mon Sep 17 00:00:00 2001 From: Daniele Pallastrelli Date: Tue, 25 May 2021 10:49:23 +0200 Subject: [PATCH 08/13] [aricpp] change request for #18048 --- ports/aricpp/vcpkg.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ports/aricpp/vcpkg.json b/ports/aricpp/vcpkg.json index 2b966de5c46110..4f414d66856219 100644 --- a/ports/aricpp/vcpkg.json +++ b/ports/aricpp/vcpkg.json @@ -1,6 +1,6 @@ { "name": "aricpp", - "version-string": "1.1.1", + "version-semver": "1.1.1", "port-version": 1, "description": "Asterisk ARI interface bindings for modern C++", "homepage": "https://github.com/daniele77/aricpp", @@ -12,6 +12,9 @@ { "name": "vcpkg-cmake-config", "host": true - } + }, + "boost-system", + "boost-asio", + "boost-beast" ] } From 82dee572c38ea4c63eb017a49282514dd12fe55a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jack=C2=B7Boos=C2=B7Yu?= <47264268+JackBoosY@users.noreply.github.com> Date: Tue, 25 May 2021 17:42:07 +0800 Subject: [PATCH 09/13] Update ports/aricpp/vcpkg.json --- ports/aricpp/vcpkg.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ports/aricpp/vcpkg.json b/ports/aricpp/vcpkg.json index 4f414d66856219..4372fc4e6aa3c1 100644 --- a/ports/aricpp/vcpkg.json +++ b/ports/aricpp/vcpkg.json @@ -5,6 +5,9 @@ "description": "Asterisk ARI interface bindings for modern C++", "homepage": "https://github.com/daniele77/aricpp", "dependencies": [ + "boost-asio", + "boost-beast", + "boost-system", { "name": "vcpkg-cmake", "host": true From d444ff54581f39568c02b219f25290e9c013d8c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jack=C2=B7Boos=C2=B7Yu?= <47264268+JackBoosY@users.noreply.github.com> Date: Tue, 25 May 2021 17:42:12 +0800 Subject: [PATCH 10/13] Update ports/aricpp/vcpkg.json --- ports/aricpp/vcpkg.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ports/aricpp/vcpkg.json b/ports/aricpp/vcpkg.json index 4372fc4e6aa3c1..acfc7e0fb5f162 100644 --- a/ports/aricpp/vcpkg.json +++ b/ports/aricpp/vcpkg.json @@ -15,9 +15,6 @@ { "name": "vcpkg-cmake-config", "host": true - }, - "boost-system", - "boost-asio", - "boost-beast" + } ] } From 223bcdc36a44d5cdb74d5dea688d457669ebab67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jack=C2=B7Boos=C2=B7Yu?= <47264268+JackBoosY@users.noreply.github.com> Date: Wed, 26 May 2021 16:50:03 +0800 Subject: [PATCH 11/13] Update versions/a-/aricpp.json --- versions/a-/aricpp.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/a-/aricpp.json b/versions/a-/aricpp.json index 261b666b198a18..21e03c263a9900 100644 --- a/versions/a-/aricpp.json +++ b/versions/a-/aricpp.json @@ -2,7 +2,7 @@ "versions": [ { "git-tree": "4bbfa3f90947fa234f7d3e3ab43ca80c5007148c", - "version-string": "1.1.1", + "version-semver": "1.1.1", "port-version": 1 } ] From 2b31cef86adaf6bf055ea7f9b0628e0b691cbc46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jack=C2=B7Boos=C2=B7Yu?= <47264268+JackBoosY@users.noreply.github.com> Date: Wed, 26 May 2021 17:59:27 +0800 Subject: [PATCH 12/13] Update versions/a-/aricpp.json --- versions/a-/aricpp.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/a-/aricpp.json b/versions/a-/aricpp.json index 21e03c263a9900..f3611f68c0f038 100644 --- a/versions/a-/aricpp.json +++ b/versions/a-/aricpp.json @@ -1,7 +1,7 @@ { "versions": [ { - "git-tree": "4bbfa3f90947fa234f7d3e3ab43ca80c5007148c", + "git-tree": "bf99b370ad6cd363e644bce4a62d2801791db13c", "version-semver": "1.1.1", "port-version": 1 } From 7f5762a85fd1009d04794aeab61011b0e10ed478 Mon Sep 17 00:00:00 2001 From: nicole mazzuca Date: Tue, 1 Jun 2021 14:35:28 -0500 Subject: [PATCH 13/13] [aricpp] port-version -> 0 --- ports/aricpp/vcpkg.json | 1 - versions/a-/aricpp.json | 4 ++-- versions/baseline.json | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/ports/aricpp/vcpkg.json b/ports/aricpp/vcpkg.json index acfc7e0fb5f162..ee76880bff46a3 100644 --- a/ports/aricpp/vcpkg.json +++ b/ports/aricpp/vcpkg.json @@ -1,7 +1,6 @@ { "name": "aricpp", "version-semver": "1.1.1", - "port-version": 1, "description": "Asterisk ARI interface bindings for modern C++", "homepage": "https://github.com/daniele77/aricpp", "dependencies": [ diff --git a/versions/a-/aricpp.json b/versions/a-/aricpp.json index f3611f68c0f038..36bcbe95b469c7 100644 --- a/versions/a-/aricpp.json +++ b/versions/a-/aricpp.json @@ -1,9 +1,9 @@ { "versions": [ { - "git-tree": "bf99b370ad6cd363e644bce4a62d2801791db13c", + "git-tree": "6bab43826055b88429107ef725b3c98fdded73ee", "version-semver": "1.1.1", - "port-version": 1 + "port-version": 0 } ] } diff --git a/versions/baseline.json b/versions/baseline.json index 3a86fc9bd11260..417471380a5e1d 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -138,7 +138,7 @@ }, "aricpp": { "baseline": "1.1.1", - "port-version": 1 + "port-version": 0 }, "armadillo": { "baseline": "10.4.0",