Skip to content

Commit

Permalink
Merge pull request #7 from josephsnyder/update-tocastxml-0.3.6
Browse files Browse the repository at this point in the history
Update CastXML to version 0.3.6
  • Loading branch information
josephsnyder authored Sep 28, 2020
2 parents e03b460 + 891fac5 commit 37c6977
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions CastXMLUrls.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
set(linux32_binary_url "NA") # Linux 32-bit binaries not available
set(linux32_binary_sha512 "NA")

set(linux64_binary_url "https://data.kitware.com/api/v1/file/5ee7eb659014a6d84ec1f25e/download")
set(linux64_binary_sha512 "a3c929ebd652fd159709826e154d566235fb12903dac04070854e83abf0e091ae369421b83699d4d78d4334ce1c5b7c9fda5f90e0c8e31170b7e902273eb4a09")
set(linux64_binary_url "https://data.kitware.com/api/v1/file/5f6c9d2650a41e3d19a8e7ec/download")
set(linux64_binary_sha512 "85514042f024c705ea9647b4830ac5e58c83167792c2cfe9edab6ea4af52b0f8cb967ff53c5bfee6f8d6096f4de6a83c95d67c538f6fc0c537bc596948817585")

set(macosx_binary_url "https://data.kitware.com/api/v1/file/5ee7eb5c9014a6d84ec1f240/download")
set(macosx_binary_sha512 "0ba8deff17b3a8f5a2cd22939ff83a864629201d8b881e44d7ed01d0fd2aa578338e3319e402c226b3648a6027a4538e8c4cd066d6fe2c49eb1a4471e803b827")
set(macosx_binary_url "https://data.kitware.com/api/v1/file/5f6c9e3d50a41e3d19a8e85c/download")
set(macosx_binary_sha512 "cf7abb0eeb76ede7a36b6f1ac2545f2dcd00303c817810d118d12aaa1fe058d3348b6555e3ebe7bd47aba713ee02d489f1a33ba58d94d5b6e722fd1cae22647e")

set(win64_binary_url "https://data.kitware.com/api/v1/file/5ee7eb539014a6d84ec1f22a/download")
set(win64_binary_sha512 "fa7a38dbdb71e0484cfeb255aef6d085abf23496a85051e3dccac593d9eec042fad5be72110d7f3528b424d90fbf5b5053c31f054470d691a7109c1f13776229")
set(win64_binary_url "https://data.kitware.com/api/v1/file/5f6c9cd150a41e3d19a8e7b9/download")
set(win64_binary_sha512 "ed396ebd56301a4dd4c414a02f8c41293d1ed60df0802ccf4eb1f6db63bdf7d2ddea0eb66cc5ce1e1fd244e29d446072eae9fbe9f13159fb0213772a796a10eb")

# See https://github.com/CastXML/CastXML-python-distributions/issues/5
set(win32_binary_url "${win64_binary_url}")
set(win32_binary_sha512 "${win64_binary_sha512}")
set(win32_binary_sha512 "${win64_binary_sha512}")
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Introduction
============

The latest CastXML python wheels provide CastXML 0.3.4 executable.
The latest CastXML python wheels provide CastXML 0.3.6 executable.

CastXML is a C-family abstract syntax tree XML output tool.

Expand Down
8 changes: 4 additions & 4 deletions docs/update_castxml_version.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ Available CastXML archives can be found `here <https://data.kitware.com/#folder/
2. Execute `scripts/update_castxml_version.py` command line tool with the desired
``X.Y.Z`` CastXML version available for download. For example::

$ release=0.3.4
$ release=0.3.6
$ python scripts/update_castxml_version.py ${release}

Collecting URLs and SHAs from 'https://data.kitware.com/#folder/57b5de948d777f10f2696370'
Collecting URLs and SHAs from 'https://data.kitware.com/#folder/57b5de948d777f10f2696370' - done
Updating 'CastXMLUrls.cmake' with CastXML version 0.3.4
Updating 'CastXMLUrls.cmake' with CastXML version 0.3.4 - done
Updating 'CastXMLUrls.cmake' with CastXML version 0.3.6
Updating 'CastXMLUrls.cmake' with CastXML version 0.3.6 - done
Updating README.md
Updating README.md - done
Updating docs/update_castxml_version.rst
Expand All @@ -33,7 +33,7 @@ Available CastXML archives can be found `here <https://data.kitware.com/#folder/
3. Create a topic named `update-to-castxml-X.Y.Z` and commit the changes.
For example::

release=0.3.4
release=0.3.6
git checkout -b update-to-castxml-${release}
git add CastXMLUrls.cmake README.md docs/update_castxml_version.rst tests/test_distribution.py
git commit -m "Update to CastXML ${release}"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_distribution.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


def _check_castxml_install(virtualenv, tmpdir):
expected_version = "0.3.4"
expected_version = "0.3.6"

for executable_name in ["castxml"]:
output = virtualenv.run(
Expand Down

0 comments on commit 37c6977

Please sign in to comment.