diff options
| author | JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> | 2021-06-11 07:02:29 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-10 16:02:29 -0700 |
| commit | 4ea49a1cf82f93784a220bc1d1d998d2c1d4180f (patch) | |
| tree | 9f986db1bebea68a9b78ca6bf9260d4d04368ceb /ports/xtensor | |
| parent | 0d0f8e7e8d81d059e96da253361c4bef0b9e569b (diff) | |
| download | vcpkg-4ea49a1cf82f93784a220bc1d1d998d2c1d4180f.tar.gz vcpkg-4ea49a1cf82f93784a220bc1d1d998d2c1d4180f.zip | |
[xtensor] update to 0.23.9 (#18206)
* [xtensor] update to 0.23.9
* update version
* [xtl] update to 0.7.2
* update version
* update patch
* update version
* Update ports/xtl/portfile.cmake
* update version
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Diffstat (limited to 'ports/xtensor')
| -rw-r--r-- | ports/xtensor/CONTROL | 13 | ||||
| -rw-r--r-- | ports/xtensor/portfile.cmake | 9 | ||||
| -rw-r--r-- | ports/xtensor/vcpkg.json | 24 |
3 files changed, 29 insertions, 17 deletions
diff --git a/ports/xtensor/CONTROL b/ports/xtensor/CONTROL deleted file mode 100644 index 217b7f816..000000000 --- a/ports/xtensor/CONTROL +++ /dev/null @@ -1,13 +0,0 @@ -Source: xtensor
-Version: 0.21.9
-Description: C++ tensors with broadcasting and lazy computing
-Homepage: https://github.com/xtensor-stack/xtensor
-Build-Depends: nlohmann-json, xtl
-
-Feature: xsimd
-Description: xtensor with xsimd support
-Build-Depends: xsimd
-
-Feature: tbb
-Description: xtensor with tbb support
-Build-Depends: tbb
diff --git a/ports/xtensor/portfile.cmake b/ports/xtensor/portfile.cmake index d2722c563..a9be2459d 100644 --- a/ports/xtensor/portfile.cmake +++ b/ports/xtensor/portfile.cmake @@ -3,14 +3,15 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO xtensor-stack/xtensor
- REF a377fb84c29624e91b6b2451018f3aa3abec1c4f # 0.21.9
- SHA512 627eaefef3526b59e9fdc6b0aebca1a47bac2adf382bc8381115c7f9fbf04a1496a46490985b16b5855166f03a873a7b00ea1f062131fd49d5adb545e5c8ecf5
+ REF f3c11b2d810159e7063daddeaa0764f4006e5a73 # 0.23.10
+ SHA512 85d94a3e346a13f8d802260e7b182a34f83ed7adddb5c082f10fdaac995ba5b895ea20daf33ac99d3f44e9eb95fdc4ec051eb006259258c4c2ae762c5f08399f
HEAD_REF master
)
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
- xsimd XTENSOR_USE_XSIMD
- tbb XTENSOR_USE_TBB
+ FEATURES
+ xsimd XTENSOR_USE_XSIMD
+ tbb XTENSOR_USE_TBB
)
vcpkg_configure_cmake(
diff --git a/ports/xtensor/vcpkg.json b/ports/xtensor/vcpkg.json new file mode 100644 index 000000000..439e46066 --- /dev/null +++ b/ports/xtensor/vcpkg.json @@ -0,0 +1,24 @@ +{ + "name": "xtensor", + "version": "0.23.10", + "description": "C++ tensors with broadcasting and lazy computing", + "homepage": "https://github.com/xtensor-stack/xtensor", + "dependencies": [ + "nlohmann-json", + "xtl" + ], + "features": { + "tbb": { + "description": "xtensor with tbb support", + "dependencies": [ + "tbb" + ] + }, + "xsimd": { + "description": "xtensor with xsimd support", + "dependencies": [ + "xsimd" + ] + } + } +} |
