aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-05-19 07:59:23 +0200
committerGitHub <noreply@github.com>2021-05-18 22:59:23 -0700
commit5e7278a224f26c598a34cc57695cc81eb1b726b3 (patch)
tree55301da90461782beafcd4a6d64bcaa90c66780c
parent822153e37facfc18c133ea4ff751a52ec95785dd (diff)
downloadvcpkg-5e7278a224f26c598a34cc57695cc81eb1b726b3.tar.gz
vcpkg-5e7278a224f26c598a34cc57695cc81eb1b726b3.zip
[ace] Upgrade to 7.0.2 (#17933)
* Make sure C++11 is enabled on macosx * ports/ace/portfile.cmake: * [ace] Upgrade to 7.0.2 * [ace] Revert change * Ran vcpkg x-add-version
-rw-r--r--ports/ace/CONTROL2
-rw-r--r--ports/ace/portfile.cmake10
-rw-r--r--versions/a-/ace.json5
-rw-r--r--versions/baseline.json2
4 files changed, 12 insertions, 7 deletions
diff --git a/ports/ace/CONTROL b/ports/ace/CONTROL
index 1e041b8e1..c465a2914 100644
--- a/ports/ace/CONTROL
+++ b/ports/ace/CONTROL
@@ -1,5 +1,5 @@
Source: ace
-Version: 7.0.1
+Version: 7.0.2
Homepage: https://www.dre.vanderbilt.edu/~schmidt/ACE.html
Description: The ADAPTIVE Communication Environment
Port-Version: 0
diff --git a/ports/ace/portfile.cmake b/ports/ace/portfile.cmake
index fa6da34d5..743a8498a 100644
--- a/ports/ace/portfile.cmake
+++ b/ports/ace/portfile.cmake
@@ -1,7 +1,7 @@
# Using zip archive under Linux would cause sh/perl to report "No such file or directory" or "bad interpreter"
# when invoking `prj_install.pl`.
# So far this issue haven't yet be triggered under WSL 1 distributions. Not sure the root cause of it.
-set(ACE_VERSION 7.0.1)
+set(ACE_VERSION 7.0.2)
string(REPLACE "." "_" ACE_VERSION_DIRECTORY ${ACE_VERSION})
if("tao" IN_LIST FEATURES)
@@ -10,14 +10,14 @@ if("tao" IN_LIST FEATURES)
vcpkg_download_distfile(ARCHIVE
URLS "https://github.com/DOCGroup/ACE_TAO/releases/download/ACE%2BTAO-${ACE_VERSION_DIRECTORY}/ACE%2BTAO-src-${ACE_VERSION}.zip"
FILENAME ACE-TAO-${ACE_VERSION}.zip
- SHA512 0f7fb37d85026d75db454176ca0b4820c4e972953c4c5218843b0adc94f2fd0f63a94403028f7bc32e443e70957befb18d256bbd72a0e275f505b5221725c245
+ SHA512 dd10db547e76716d8021e9f0faf9467cc86a9990eb03c60988979eb4a54c3b617a500c6afc53ea16a4b63ada903eaaf98df7456c8fd96b6adadfe459eaea86b9
)
else()
# VCPKG_TARGET_IS_LINUX
vcpkg_download_distfile(ARCHIVE
URLS "https://github.com/DOCGroup/ACE_TAO/releases/download/ACE%2BTAO-${ACE_VERSION_DIRECTORY}/ACE%2BTAO-src-${ACE_VERSION}.tar.gz"
FILENAME ACE-TAO-${ACE_VERSION}.tar.gz
- SHA512 881343a7f23552d699c22654e62cb926433938bc5afae8d785be2ca0409528b5cc701aecbc97ce16ae42b14a94e73060a347e2c8ee8b44d9e59837b0c0339709
+ SHA512 43d7e37ef26169f4ad1a9a6a7f5e0aabd03019f44386dad54cda0f2d61ca52cb34e5da3e62a4b9d06a30caec43732a2043b07f9de59f796b8d552b36c40fcff9
)
endif()
else()
@@ -26,14 +26,14 @@ else()
vcpkg_download_distfile(ARCHIVE
URLS "https://github.com/DOCGroup/ACE_TAO/releases/download/ACE%2BTAO-${ACE_VERSION_DIRECTORY}/ACE-src-${ACE_VERSION}.zip"
FILENAME ACE-src-${ACE_VERSION}.zip
- SHA512 36ef4f189c777f54f0381a31c1e635155f32576e56ed9a4b6b663d37c3f45057e5a75a0009cf5c73f040c19f5bda364984102d818c3a301d14c2d11917d938a9
+ SHA512 4cde539074587c26c317581dbeaa0d057bf0d641db27dee84bb262af4859744158d91dc072b70c351e7be59c70345ea138511cbb3297ff090f7b9c71f5166610
)
else(VCPKG_TARGET_IS_WINDOWS)
# VCPKG_TARGET_IS_LINUX
vcpkg_download_distfile(ARCHIVE
URLS "https://github.com/DOCGroup/ACE_TAO/releases/download/ACE%2BTAO-${ACE_VERSION_DIRECTORY}/ACE-src-${ACE_VERSION}.tar.gz"
FILENAME ACE-src-${ACE_VERSION}.tar.gz
- SHA512 52277899796d1c0c0f70afc48b5557c467ee48003261e5dac775bb02a2191959e54cd5b33f111a9dbcffdc4f473999dda557e52ef409668e30a2e75e2287e243
+ SHA512 8b2b1988a7cdda4a0ff5064def3cd750bf4fbcad074efbb41eedfa2f5e970874568610de2f8495679f1eeb2f7403be91e10392ca9aa6016d1cf8c051e595d6cb
)
endif()
endif()
diff --git a/versions/a-/ace.json b/versions/a-/ace.json
index 3aa8c9c4b..5d0d36227 100644
--- a/versions/a-/ace.json
+++ b/versions/a-/ace.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "f29d3acc8eb434569566d4300239ab584b32a3c5",
+ "version-string": "7.0.2",
+ "port-version": 0
+ },
+ {
"git-tree": "f78fceaf77115253b6aac710881d0d8f705fead6",
"version-string": "7.0.1",
"port-version": 0
diff --git a/versions/baseline.json b/versions/baseline.json
index 4d350e16c..5342dd1b9 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -17,7 +17,7 @@
"port-version": 0
},
"ace": {
- "baseline": "7.0.1",
+ "baseline": "7.0.2",
"port-version": 0
},
"activemq-cpp": {