Cheney Wang
0e672e7254
[openjpeg] Update version to 2.4.0 ( #20021 )
...
* [openjpeg] Update version to 2.4.0
* Modify linkage check and remove unused parameters
* Enable the tool generation of each features
Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
2021-09-27 17:20:33 -07:00
Yury Bura
cc471dc0f5
[boost] update to 1.77.0 ( #19556 )
2021-09-27 17:12:39 -07:00
Billy O'Neal
3768cef9c2
Add workaround suggested by Robert in #18098 ( #20310 )
2021-09-27 13:59:30 -07:00
Niall Douglas
46700e2a0c
[ned14-internal-quickcpplib/llfio/outcome] Update to latest release ( #20171 )
...
* Update ned14-internal-quickcpplib and LLFIO to latest matching Outcome v2.2.1 (bugfixed) release.
* Implement suggested changes during review. Update Outcome and LLFIO to latest.
* Re x-add-version.
* Fix version database.
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-27 12:42:44 -07:00
Stefano Sinigardi
6a398a2b9b
[OpenCV3] fix build with latest protobuf ( #20301 )
...
* [OpenCV3] fix compatibility with latest protobuf
* [OpenCV3] fix references
2021-09-24 10:48:01 -07:00
Phoebe
e6256745c6
[openmpi] Disable fortran mpi bindings explicitly ( #20300 )
2021-09-23 17:54:30 -07:00
Alberto Luaces
5b61ee0226
[openmvg] Fix for building with eigen 3.4.0. ( #20056 )
...
* [openmvg] Fix for building with eigen 3.4.0.
* Bump port version.
* Convert "version-string" field into "version"
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* Update vcpkg_check_features call
* [openmvg] x-add-version
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
2021-09-23 17:37:57 -07:00
Carlos O'Ryan
b29f8ef37e
[protobuf] upgrade to latest release (v3.18.0) ( #20208 )
...
* [protobuf] upgrade to latest release (v3.18.0)
This requires patching OpenCV as it uses a function removed in the
latest version of protobuf (FWIW, upstream OpenCV has a similar patch).
* The arcus port also needs a patch
* The caffe2 port also needs a patch
* The brpc port also needs a patch
2021-09-22 13:09:55 -07:00
Sergii Baitala
680de654a9
[opentelemetry-cpp] Update to v1.0.0 ( #20260 )
2021-09-20 12:29:40 -07:00
Jack·Boos·Yu
574c125d6f
[openimageio] Re-fix the usage ( #20092 )
...
* [openimageio] Re-fix the usage
* version
2021-09-16 17:25:52 -07:00
Park DongHa
2aa021c307
[onnx-optimizer] create a new port ( #19258 )
...
* [onnx-optimizer] create a new port
* migrate changes to new branch
* [onnx-optimizer] specify maybe unused
* ONNX_USE_PROTOBUF_SHARED_LIBS is for Windows
* [onnx-optimizer] update baseline
* [onnx-optimizer] make protobuf option constant
2021-09-16 16:19:50 -07:00
Jack·Boos·Yu
d3d8dad4b4
[openimageio] Fix find and use dependencies ( #19916 )
...
* [openimageio] Fix find and use dependencies
* version
* Restore FindOpenEXR.cmake
* version
* Update ports/openimageio/portfile.cmake
* Update versions/o-/openimageio.json
* Re-make patch
* version
* Update versions/o-/openimageio.json
* Update ports/openimageio/portfile.cmake
* version
2021-09-09 21:05:50 -07:00
Billy O'Neal
b295670e4b
Bulk convert control files. ( #19986 )
...
```
function Convert-Control {
Param($full)
.\vcpkg.exe format-manifest $full
$root = $full.Substring(0, $full.Length - 7) # CONTROL
$new = $root + 'vcpkg.json'
$content = Get-Content -Raw $new
$asJson = ConvertFrom-Json $content -AsHashtable -Depth 100
$oldVersion = $asJson['port-version']
if ($null -eq $oldVersion) {
$oldVersionFull = $asJson['version-string']
Write-Host "Got version $oldVersionFull"
$match = [System.Text.RegularExpressions.Regex]::Match($oldVersionFull, '^(.+)-(\d+)$')
if ($match.Success -and -not [System.Text.RegularExpressions.Regex]::IsMatch($oldVersionFull, '^\d\d\d\d-\d\d-\d\d$')) {
$newFullVersion = [string]$match.Groups[1].Value
$oldVersion = [int]$match.Groups[2].Value
Write-Host "newFullVersion $newFullVersion oldVersion $oldVersion"
$newVersion = $oldVersion + 1
$asJson['version-string'] = $newFullVersion
Write-Host "Previous version for $full extracted from version field -- setting version-string $newFullVersion and port-version $newVersion"
} else {
Write-Host "No previous version for $full -- setting 1"
$newVersion = 1
}
} else {
$newVersion = [int]$oldVersion + 1
Write-Host "New version for $full : $newVersion"
}
$asJson['port-version'] = $newVersion
$content = ConvertTo-Json $asJson -Depth 100
Set-Content -Path $new -Value $content
.\vcpkg.exe format-manifest $new
}
Get-ChildItem ports\CONTROL -Recurse | Foreach-Object {
Convert-Control $_.FullName
}
git commit -am "this message"
.\vcpkg.exe x-add-version -all
git commit -a --amend
```
2021-09-09 01:24:04 -07:00
Phoebe
277e9a7f46
[glew/openvdb/xtensor-io] Update to latest release version ( #20022 )
...
* [glew/openvdb/xtensor-io] Update to latest release version
* [glew] Update patch
* [xtensor-io] Update version
2021-09-08 07:56:56 -07:00
Cheney Wang
4814a51290
[openimageio] update version to 2.3.7.2 ( #19961 )
...
* [openimageio] update version to 2.3.7.2
* Disable the test in vcpkg
Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
2021-09-07 21:09:32 -07:00
Stefano Sinigardi
09019cbc9a
[OpenCV] fix protobuf references ( #19770 )
...
* [OpenCV] fix protobuf targets
* [OpenCV] fix port versions
* [OpenCV] fix references
2021-09-03 22:25:12 -07:00
Pablo Busse
887cc9c15a
[openssl] Support static builds on UWP ( #19636 )
...
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-03 00:01:15 -07:00
Michael Heyman
2b4ff3419f
[oatpp-openssl] new port ( #19265 )
...
* [oatpp-openssl] new port
* [oatpp-openssl] uses version-semver
* [oatpp-openssl] uses version-semver
* [oatpp-version] has paramters with arguments surrounded by quotes
* [oatpp-openssl] vcpkg x-add-version oatpp-openssl --overwrite-version
* [oatpp-openssl] no unused vcpkg_cmake_configure options
* [oatpp-openssl] no unused vcpkg_cmake_configure options
Co-authored-by: mheyman <mheyman@localdomain>
2021-09-01 11:48:01 -07:00
Park DongHa
ab3095a27d
[onnx] create a new port ( #18073 )
2021-08-27 14:20:15 -07:00
Bradley Austin Davis
a6ce2965b5
[openxr-loader] Update to 1.0.18 ( #19574 )
2021-08-26 10:54:11 -07:00
Xing Ji
17818aa503
[OpenColorIO] Fix OpenColorIO v2.0.1 can't be find_package ( #19725 )
...
* fix that opencolorio v2.0.1 can't be `find_package`, reference the master branch of opencolorio to generate `OpenColorIOTargets`
* run `vcpkg x-add-version --all`
* fix the `OpenColorIO` for linux
* vcpkg x-add-version --all
* patch for `OpenColorIOConfig.cmake` by https://github.com/AcademySoftwareFoundation/OpenColorIO/pull/1397
* vcpkg x-add-version --all
2021-08-26 10:10:12 -07:00
autoantwort
772d435ba1
[openssl] Update to 1.1.1l ( #19739 )
2021-08-25 19:38:37 -07:00
Sergii Baitala
bfc992771e
[opentelemetry-cpp] New port ( #19536 )
...
* add openteletry-cpp
* update vcpkg
* Apply suggestions from code review
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* update version
* check etw for linux/osx
* Remove otlp feature
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
2021-08-18 17:14:57 -07:00
Stefano Sinigardi
801f40c688
[OpenCV] update to v4.5.3 and to v3.4.15 ( #18827 )
...
* [OpenCV] update to v4.5.3 and to v3.4.15
* [OpenCV] update refs
* [libxml2] add missing find_dependency(Iconv)
[libiconv] update cmake wrapper
* [libiconv] fix hints
* [opencv4] do not require cudnn if cuda enabled
* [opencv] update refs
* [OpenCV] increase CI coverage even more
* [vcpkg-ci-opencv] trying to restore x64-uwp ci tests
* restore previous patches to avoid unnecessary modifications
* [OpenCV] fix refs
* [OpenCV] fix CMake Warning related to protobuf dependency
* [OpenCV] fix refs
* [libxml2] fix references
* [libxml2] restore previous cmake wrapper, new one is broken
* [libxml2] fix references
* bump versions
* update refs
* [libxml2] Update the format for vcpkg-cmake-wrapper.cmake
* Update versions/l-/libxml2.json
* [libxml2] update port version
* [libxml2] update refs
* [OpenCV] fix refs
Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
2021-08-13 13:57:28 -07:00
Phoebe
4e3500436c
[openimageio] Fix broken hash ( #19541 )
...
* [openimageio] Fix broken hash
* Update the baseline
2021-08-13 13:40:07 -07:00
Phoebe
eb9cb29166
[ffmpeg/opencv4] Update opencv4 feature dependency and remove ffmpeg feature 'postproc' from default feature ( #19358 )
...
* [ffmpeg/opencv4] Update opencv4 feature dependency and remove ffmpeg feature 'postproc' from default feature
* Update the baseline version
* [opencv3] Update the feature dependency
* Update the baseline
* [opencv2] Update the feature dependency
* Update the baseline version
* Fix uwp build failures
* Update the baseline version
* Fix opencv2 version
* update the baseline version
* update the baseline version
* Un-edit git-tree.
* Update cuda feature
* Update the baseline
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-08-13 08:46:11 -07:00
Edoardo Lolletti
63aa65e65b
[openal-soft] enable coreaudio backend for ios ( #19464 )
...
* [openal-soft] enable coreaudio backend for ios
* update port version
* Merge cmake checks
* Rename outdated cmake variable
* Update version files
2021-08-11 19:42:28 -07:00
autoantwort
be456649fd
[yaml-cpp] update to 0.7.0 ( #19272 )
...
* [yaml-cpp] update to 0.7.0
* [opencolorio] update to 2.0.1
* [openimageio] Update to 2.2.17.0
* [pystring] move header to pystring subfolder
* add version files
2021-08-10 01:11:41 -07:00
NancyLi1013
8ac6ffd19e
[openal-soft] Add pkgconfig ( #19318 )
...
* [openal-soft] Add pkgconfig
* Update version files
2021-08-05 03:02:40 -07:00
Ilya Arzhannikov
ce91faf83e
[openblas] update to 0.3.15 version and add dynamic arch feature ( #15238 )
...
* [openblas] dynamic arch feature
* remove debug output
* Update ports/openblas/CONTROL
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* update version to 0.3.13
* osx build
* fix CONTROL, add FEATURES keyword to vcpkg_check_features
* x-add-version
* bump openblas version to 0.3.14
* ./vcpkg x-add-version openblas
* apply format.diff from ci
* ./vcpkg x-add-version openblas --overwrite-version
* Update versions/o-/openblas.json
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* update port to version 0.3.15
* ./vcpkg x-add-version openblas
* vcpkg_check_linkage
* ./vcpkg x-add-version openblas --overwrite-version
* ./vcpkg x-add-version openblas --overwrite-version
* Update versions/o-/openblas.json
Co-authored-by: Ilya Arzhannikov <iarzhannikov@artec3d.com>
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
2021-07-25 17:26:55 -07:00
Phoebe
92bbf7b331
[openssl] Fix vcpkg-cmake-wrapper.cmake ( #18475 )
...
* [openssl] Fix vcpkg-cmake-wrapper.cmake
* Update baseline revision
* Update the wrapper
* Update the baseline
* Update the wrapper
* Update the baseline
* Update the wrapper
* Update the baseline
* Update the wrapper
* Update the baseline
* Update the wrapper
* Update the baseline
* Update the wrapper
* Update the baseline
* Bump port-version.
* Update the baseline version
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-07-22 22:11:45 -07:00
Johannes Schönberger
dec95c6eae
[openblas] Fix C/CXX flag customization in openblas ( #18535 )
...
* Fix C/CXX flag customization in openblas
* Update ports/openblas/portfile.cmake
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>
* Update versions
* Update versions/o-/openblas.json
* Fix merge conflict
* Update versions/o-/openblas.json
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Billy Robert ONeal III <bion@microsoft.com>
2021-07-22 22:05:06 -07:00
Akash
d12cbb40ed
[ompl] Fix linking using ${OMPL_LIBRARIES} ( #18908 )
...
* Fix _IMPORT_PREFIX
* Export cmake targets file
* Fix config
* Make separate omplapp port
* Run x-add-version for omplapp
* Fix versions
* Fix omplapp static builds
* Run x-add-version
* Update ports/omplapp/portfile.cmake
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
* Update ports/omplapp/portfile.cmake
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
* Put files in quotes
* Run x-add-version
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
2021-07-22 15:00:49 -07:00
Fei Chong
dc9e8e1497
[osg-qt] Remove unnecessary dependency ( #19000 )
...
* [osg-qt] Remove unnecessary dependency
* [osg-qt] update version baseline
Co-authored-by: Fei Chong <fei.chong@calmcar.com>
2021-07-22 13:58:05 -07:00
Lucius Q. User
588b1e66f9
[openssl] Fix x86-osx -> arm64-osx cross-compilation ( #18630 )
2021-07-16 12:51:32 -07:00
JonLiu1993
4d2568ee8d
[openvdb] update to v8.0.0 ( #16034 )
2021-07-16 00:48:26 -07:00
Billy O'Neal
957d2024b8
Update to Ubuntu 20.04. ( #18892 )
...
* Update Ubuntu to 20.04.
* [tfhe] Disable -Wall -Werror
* [sophus] Disable -Werror.
* Fix typo in deployment of CUDA.
* Add libxxf86vm-dev for opensubdiv.
* [opensubdiv] Fix OpenCL search on Ubuntu 20.04, and document libxxf86vm-dev dependency
* [msgpack11] Disable -Werror.
* [qtwayland, qt5wayland] Add system library notice.
* Add python-is-python3 to unbreak tensorflow, v8, and others
* [graphqlparser] Remove directive rejected by Bison 3.5.1
* [ogdf] Mark as failing in ci.baseline.txt. Issue filed https://github.com/microsoft/vcpkg/issues/18936
* [bde] Mark failing in ci.baseline.txt, issue filed https://github.com/microsoft/vcpkg/issues/18937
* [soem] Patch out -Werror
* Update pool.
2021-07-14 12:46:05 -07:00
nicole mazzuca
d369df7ecf
[rollup:2021-07-06] Rollup PR ( #18838 )
...
* [rollup:2021-07-06 1/8] PR #18272 (@strega-nil)
[scripts-audit] vcpkg_from_*
* [rollup:2021-07-06 2/8] PR #18319 (@strega-nil)
[scripts-audit] add guidelines for cmake
* [rollup 2021-07-06 3/8] PR #18410 (@mheyman)
[vcpkg-cmake-config] documentation fix
* [rollup:2021-07-06 4/8] PR #18488 (@strega-nil)
[scripts-audit] vcpkg_execute_*
* [rollup:2021-07-06 5/8] PR #18517 (@strega-nil)
[scripts-audit] vcpkg_extract_source_archive
* [rollup:2021-07-06 6/8] PR #18674 (@NancyLi1013)
[vcpkg doc] Update examples
* [rollup:2021-07-06 7/8] PR #18695 (@JackBoosY)
[vcpkg] Update the minimum version of vcpkg
* [rollup:2021-07-06 8/8] PR #18758 (@ras0219-msft)
[vcpkg_from_git] Fix error if downloads folder does not exist
* build docs!
* fix bond:*-windows
* fix nmap
Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
Co-authored-by: Michael Heyman <Michael.Heyman@jhuapl.edu>
Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: Robert Schumacher <ras0219@outlook.com>
2021-07-14 12:45:18 -07:00
Lev Stipakov
06f8fd637d
[OpenSSL] support for "no-autoload-config" config option ( #18389 )
...
* [OpenSSL]: support for "no-autoload-config" config option
OpenSSL has "no-autoload-config" config option,
which disables automatic config loading:
https://github.com/openssl/openssl/pull/5959
This patch allows to set above option via variable
in custom triplet:
# build-openssl-no-autoload-config.cmake
set(OPENSSL_NO_AUTOLOAD_CONFIG ON)
and use it like:
vcpkg install --overlay-triplets=<path-to-triplets> \
openssl:build-openssl-no-autoload-config
Signed-off-by: Lev Stipakov <lev@openvpn.net>
* [OpenSSL] bump version
Signed-off-by: Lev Stipakov <lev@openvpn.net>
2021-07-01 10:21:44 -07:00
NancyLi1013
c527fabf35
[openblas] Fix the macro collision with Windows 10 SDK ( #18530 )
...
* [openblas] Fix the macro collision with Windows 10 SDK
* Update version files
* Update feature thread as threads in vcpkg.json
* Update versions/o-/openblas.json
2021-06-21 13:32:55 -07:00
Stefano Sinigardi
a7d3367cec
[OpenCV] update to 4.5.2 ( #18572 )
...
* [OpenCV] update to 4.5.2
* update version refs
* [OpenCV4] fix qt integration
* fix refs
2021-06-21 13:21:02 -07:00
Silvio Traversaro
16ecf1ba14
[open6254] Enable uwp support ( #18390 )
...
* open62541: Enable uwp support
* Update versions for open62541
2021-06-15 10:25:49 -07:00
Phoebe
3a2259c41f
[vcpkg baseline][otl] Update to 40463 ( #18383 )
...
* [vcpkg baseline][otl] Update to 40463
* Update the version
* Upate the baseline
2021-06-11 09:58:36 -07:00
Matthias C. M. Troffaes
1d8133122b
[openexr] fixup pkgconfig ( #18123 )
...
* [openexr] fixup pkgconfig
* [openexr] x-add-version
* [openexr] drop _d library suffix for debug builds (ensures correct .pc file)
* [openexr] x-add-version
* [openexr] rename patches in order, add pkg-config debug suffix patch
* [openexr] x-add-version
* [openexr] update patch to match upstream PR
* [openexr] x-add-version
2021-06-11 08:46:46 -07:00
Jack·Boos·Yu
02fa0eb4c6
[openssl] Add cmake wrapper to handle OPENSSL_ROOT_DIR ( #18042 )
...
* [openssl] Add cmake wrapper to handle OPENSSL_ROOT_DIR
* Get the abs path
* update version record
* apply suggestion.
* Clean up openssl related code, move to openssl wrapper.
* update version record
* [kf5holidays] Disable parallel configure
* update version record
* update version record
* bump version
* Update versions/o-/openssl.json
* update baseline
* Update ports/openssl/vcpkg-cmake-wrapper.cmake
* Update ports/openssl/vcpkg-cmake-wrapper.cmake
* Update versions/o-/openssl.json
* Update ports/openssl/vcpkg.json
* Update versions/o-/openssl.json
* Update ports/openssl/vcpkg.json
* Update versions/o-/openssl.json
* update version record
2021-06-11 08:45:08 -07:00
Jack·Boos·Yu
cbe38c8280
[openblas] Add feature simplethread and thread ( #18265 )
...
* [openblas] Add feature simplethread and thread
* update version record
* Update ports/openblas/portfile.cmake
* Update ports/openblas/vcpkg.json
* Update ports/openblas/vcpkg.json
* Update versions/o-/openblas.json
2021-06-10 16:16:36 -07:00
NancyLi1013
680b27d15f
[orocos-kdl] Export include path to targets ( #18203 )
...
* [orocos-kdl] Export include path to targets
* Update version files
2021-06-09 17:07:01 -07:00
Ankur Verma
c21792bd04
[osgearth] Fix undefined references due to openjp2 and xml2 ( #17993 )
...
* Fix osgearth
* Fix linking
* Update version files
Co-authored-by: Ankur Verma <ankurv@microsoft.com>
Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
2021-06-09 15:27:43 -07:00
Ahmed Yarub Hani Al Nuaimi
c1c253fabc
[aws-sdk-cpp] [openssl] Fix iOS build ( #17338 )
...
* Add curl try_compile parameters
Don't set compiler when compiling for iOS
* Update OpenSSL and AWS SDK for C++ port versions
* [vcpkg baseline][marble] Disable find I18n
* update version record
* Update versions/a-/aws-sdk-cpp.json
* Update versions/o-/openssl.json
* Fix port-versions after merging master branch
* Update versions/a-/aws-sdk-cpp.json
* Update versions/o-/openssl.json
* Fix merge conflicts
* Merge master branch
* Refactor OpenSSL's build script
* Refactor OpenSSL's build script
* Fix version
* Fix WASM build
* Fix version
* Fix disabled flags
* Disable treating warnings as errors
* Disable treating warnings as errors
* Fix hashes
* fix indentation
* [aws-sdk-cpp] use the powershell file to generate
* Fix versions after merging
* Fix versions after merging
Co-authored-by: Ahmed Yarub Hani Al Nuaimi <ahmed.alnuaimi@zwift.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2021-06-07 12:05:29 -07:00
Eric Hripko
ab3a32e2af
[openssl] Restore Blowfish cipher in OpenSSL ( #18148 )
...
* Include Blowfish cipher in OpenSSL
* Bump the version of the port
* x-add-version
2021-06-02 15:36:17 -05:00