| Age | Commit message (Collapse) | Author |
|
* [mimalloc] Update to 2.0.2
* [mimalloc] Update version files
Co-authored-by: Rémy Tassoux <rt2@rasterizedworld.com>
|
|
* Update msdfgen to 1.9.1
* Update CI baseline
Co-authored-by: chausner <chausner@users.noreply.github.com>
|
|
* Update minisat-master-keying to 2.3.6
* Update CI baseline
Co-authored-by: chausner <chausner@users.noreply.github.com>
|
|
https://dev.azure.com/vcpkg/public/_build/results?buildId=60445
PASSING, REMOVE FROM FAIL LIST: soundtouch:x64-windows-static
Probably fixed by: https://github.com/microsoft/vcpkg/pull/19377
REGRESSION: mosquitto:x86-windows
REGRESSION: mosquitto:x64-windows
Probably broken by: https://github.com/microsoft/vcpkg/pull/20148/
```
The following EXEs were found in /bin or /debug/bin. EXEs are not valid distribution targets.
D:/packages/mosquitto_x86-windows/bin/mosquitto_ctrl.exe
The following EXEs were found in /bin or /debug/bin. EXEs are not valid distribution targets.
D:/packages/mosquitto_x86-windows/debug/bin/mosquitto_ctrl.exe
Found 2 error(s). Please correct the portfile:
C:\a\1\s\ports\mosquitto\portfile.cmake
-- Performing post-build validation done
```
The upstream build system has this:
```
option(WITH_CJSON "Build with cJSON support (required for dynamic security plugin and useful for mosquitto_sub)?" ON)
if (WITH_CJSON)
FIND_PACKAGE(cJSON)
if (CJSON_FOUND)
message(STATUS ${CJSON_FOUND})
else (CJSON_FOUND)
message(STATUS "Optional dependency cJSON not found. Some features will be disabled.")
endif(CJSON_FOUND)
endif()
```
and indeed, I repro the problem if cjson is installed first. Disable WITH_CJSON as a fix.
OSX never finishing: Hopefully fixed by https://github.com/microsoft/vcpkg/pull/20388
|
|
* [minizip-ng] Make dependencies optional
* minor changes from review
* improve implementation of crypto feature
* x-add-version
* split crypto into 3 features
* properly forward features
|
|
* [mozjpeg] Update to latest commit
* update version
* Convert patch format
* update version
* Add double quotes
* update version
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
|
* Update meshoptimizer to 0.16
* Update CI baseline
* Address PR feedback
* Update git-tree hash
Co-authored-by: chausner <chausner@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
|
* [proj4] remove database feature
* [mapnik] remove dependency an feature 'database' of proj4
* add version files
|
|
* update mosquitto to 2.0.12
* update json
* Update ports/mosquitto/vcpkg.json
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* Update ports/libwebsockets/vcpkg.json
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* add head ref
* remove plugins
* update jsons
* update libwebsockets
* Update versions/m-/mosquitto.json
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* Update versions/l-/libwebsockets.json
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* Update ports/mosquitto/portfile.cmake
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* update version
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
|
|
|
|
Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
|
|
* many-ports: Update supports field
* Fix several "version-string"s.
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
|
* [mimalloc] update to v1.7.2
* update version
* update suggestion review
* update version
* update patch EOF
* update version
|
|
* add mapnik
* version
* update to latest ref
* overwrite version
* latest ref
* fix hash
* verison
* update to latest upstream
* version
* false jpeg lib
* version
* update to latest ref
* verssion
* proj not needed
* versioon
* fix proj patch
* version
* actually the linkage is already checked in `supports`. Apply latest policies. Added default features
* version
* update to original ref
* enable dynamic again
* version
* use date version
* update version
* do not add a second version
* fix linux installing
* version
* Apply suggestions from code review
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* do not use port var
* version
* drop mapnik::core from general usage info.
* version
* don't add a new version
* add comment to trigger ci
* version
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
|
|
```
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
```
|
|
* Fixes source writes rather than using DISABLE_PARALLEL_CONFIGURE
* Fixes to use modern vcpkg helpers.
* Fixes to install to the correct include path rather than moving the resulting includes after the fact.
* Remove do-nothign renames.
* Fixes to make static cmake configs find the correct bits.
|
|
* [ms-gltf] Fix the wrong homepage
* Update pdb file path
* Pass WINDOWS_USE_MSBUILD to vcpkg_cmake_configure
* Update to latest release r1.9.5.4
|
|
vcpkg CMake scripts (#19435)
* [magnum/-plugins] Remove obsolete patches that no longer apply
Signed-off-by: Squareys <squareys@googlemail.com>
* [corrade] Make feature to flag translation consistent to fix warning
Consistent with magnum & magnum-plugins
Signed-off-by: Squareys <squareys@googlemail.com>
* Fix warning message for dlls without matching pdbs always displayed
Signed-off-by: Squareys <squareys@googlemail.com>
* Fix the baseline version
* Revert the changes in vcpkg_copy_pdbs.cmake
Co-authored-by: PhoebeHui <20694052+PhoebeHui@users.noreply.github.com>
|
|
* [Mesa] update to 21.2.0
* update verison
|
|
* [mesa] Update to 21.1.2
* Update to 21.1.5
* Update to 21.1.6
* Update the baseline version
|
|
* Update microsoft-signalr port
* x-add-version
|
|
* [ms-quic] create a new port
* rewrite to fix garbled history of #18225
* [ms-quic] update port/version SHA
* [ms-quic] disable windows-static triplet
* Update ports/ms-quic/vcpkg.json
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
* Update ports/ms-quic/vcpkg.json
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
* [ms-quic] update patch files
* [ms-quic] make quictls only
* reduce feature list for future updates
* update version SHA
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
|
|
* upgrade the flatbuffers's version
* run `vcpkg x-add-version`
* upgrade flatbuffers to v2.0.0 for mnn
* add new port-version of `mnn` after upgrade the flatbuffers
* fix the port-version of `mnn`
* Update ports/mnn/vcpkg.json
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* Update ports/flatbuffers/CONTROL
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* run `vcpkg x-add-version flatbuffers --overwrite-version`
* run `vcpkg x-add-version mnn --overwrite-version`
* regenerate code files by flatc before build
* run `vcpkg x-add-version mnn --overwrite-version`
* add `flatbuffers` in dependencies
* run `vcpkg x-add-version mnn --overwrite-version`
* new port version for mnn
* run `vcpkg x-add-version mnn --overwrite-version` to rebuild
* Update versions/m-/mnn.json
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* Update ports/mnn/vcpkg.json
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* run `vcpkg x-add-version mnn --overwrite-version`
* Add missing quotes.
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Billy Robert ONeal III <bion@microsoft.com>
|
|
* [mlpack] Add feature openmp
* format manifest
* add version stuff
* Update ports/mlpack/portfile.cmake
* Update versions/m-/mlpack.json
|
|
* 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.
|
|
* add wagyu
* add versions
* update hash
* update versions
|
|
* Fix mongo-c-driver for custom VCPKG_BUILD_TYPE
* Update version
* Update ports/mongo-c-driver/portfile.cmake
* Update versions/m-/mongo-c-driver.json
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Billy Robert ONeal III <bion@microsoft.com>
|
|
* Update morton-nd to v4.0.0.
* Update baselines.
|
|
* [mpg123] Upgrade to 1.28.0
* [libopenmpt] Upgrade to 2017-01-28-cf2390140-2
* [mpg123] Disable UWP port
* Fix libmpg123 UWP build
* Fix libout123 UWP build
* Fix libsyn123 UWP build
* Update ports/libopenmpt/CMakeLists.txt
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* Update ports/libopenmpt/CMakeLists.txt
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* [libopenmpt] Update libopenmpt.json
* [mpg123] Separate UWP patches
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
|
|
* [llvm] update to 12.0.0, enable zlib and libxml2
* [llvm] disable libxml2 by default, arm64-windows should be supported
* [llvm] try to fix build with ffi on Windows #17663
* [llvm] re-enable libxml2
* [llvm] fix formatting
* [llvm] overwrite version
* [mesa] update to v21.1.0
* [llvm] update ci.baseline
* [halide] update to the latest master commit
* [llvm] disable libxml2 port until complete PR #15390
* update versions
* [llvm] fix disabling of external libraries
* update version
* update ci.baseline
* update ci.baseline
* fix typo
* [llvm] fix libxml2 (depends on #17945)
* revert "[halide] update to the latest master commit"
* update versions
* [halide] fix zlib dependency for tools
* update versions
* [halide] update to official release v12.0.0
* update versions
* [halide] update to v12.0.1
* update version
* [mesa] remove llvm from defaults
* update version
* update ci.baseline
* [mesa] update to v21.1.2 and fix build with LLVM on Windows
* [llvm] allow to build libunwind project on Windows
* update versions
* [mesa] update ci.baseline.txt to disable x64-windows-static-md, may be fixed in the PR #18495
|
|
* [magic-enum] Update to v0.7.3
* fix
|
|
* [matplotplusplus] Fix usage
* update version record
* Remove rename code
* update version
|
|
* [minizip] Fix usage, fix minizipConfig.cmake
* update version record
|
|
* [matplotplusplus] Re-fix 3rd libraries installation.
* update version record
|
|
* [matio] Use official CMakeLists, add features
* Fix portfile.cmake
* update version record
* Commit missing files
* Update versions/m-/matio.json
* Update ports/matio/portfile.cmake
* Update ports/matio/portfile.cmake
* Update versions/m-/matio.json
|
|
|
|
* [vcpkg baseline][wxwidgets] Fix build error
* [mlpack] Fix configure error (upstream bug)
* [vcpkg baseline] [embree2/embree3] Set cmake policy
* Remove control file
* Update baseline version
* [mlpack] Re-write the dependency
* [mlpack] Remove dependency boost-test since only feature test need it, add more boost dependencies.
* [mlpack] Add dependency boost-heap
* [mlpack] Fix uwp build
* update version record
* [mlpack] Revert uwp fix
* update version record
* [mlpack] Remove dependency boost-test
* update version record
* update baseline
* [clamav] Update hash
* update version record
Co-authored-by: PhoebeHui <20694052+PhoebeHui@users.noreply.github.com>
|
|
* [minizip-ng] made cmake installs relative
* [minizip-ng] update version
* Update versions/m-/minizip-ng.json
* formated ports/minzip-ng/vcpkg.json
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
|
|
* [msmpi] Update the download hash
* update version record
* Update ports/msmpi/portfile.cmake
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
* Update versions/m-/msmpi.json
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
|
|
* [matplotplusplus] Fix find and use dependencies
* update version record
|
|
Signed-off-by: Squareys <squareys@googlemail.com>
|
|
* [marl] update to 2021-2-19
* update version
* update vcpkg-json
* update json file
* update version
* [marl] update to 2021-04-25
* update version
* Update vcpkg.json
* Update baseline.json
* update version
|
|
|
|
* [matplotplusplus] Install extra 3rd libraries
* update version record
|
|
* [vcpkg baseline][marble] Disable find I18n
* update version record
|
|
* [matplotplusplus] Add new port
* [matplotplusplus] Update tips
* [matplotplusplus] Update to fix opengl backend
* [matplotplusplus] Update to lastest
* [matplotplusplus] Update to 2021-03-07
* [matplotplusplus] Add FEATURES keyword
* [matplotplusplus] Modernize
* [matplotplusplus] Fix mistake
* [matplotplusplus] UWP not supported
* [matplotplusplus] Format manifest
* [matplotplusplus] Add version file
* [matplotplusplus] Experimental filesystem support
* [matplotplusplus] Overwrite version
* [matplotplusplus] Do not support arm64-windows yet
* [matplotplusplus] Update to 2021-04-11
* [matplotplusplus] vcpkg x-add-version --overwrite-version matplotplusplus
* [matplotplusplus] Modernize
* [matplotplusplus] Overwrite version
* [matplotplusplus] Fixup cmake targets
* [matplotplusplus] Overwrite version
* [matplotplusplus] Modernize
* [matplotplusplus] Overwrite version
|
|
* [minizip] support iOS triplets
* DISABLE_INSTALL_TOOLS when VCPKG_TARGET_IS_IOS
* [minizip] update git-tree SHA
* [minizip] IOAPI_NO_64 in Android
* add a patch to use standard C API
* [minizip] update port SHA
|
|
|
|
* [minizip-ng] Modify the output include path of the header file
* Update json file
Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
|
|
* [minizip-ng] add new port
* [celero] Updated to Celero v2.8.0 (#16802)
* [celero] Updated to Celero v2.8.0
* [celero] Improving static linking support in VCPKG.
Celero issue #154 is tracking a fix.
https://github.com/DigitalInBlue/Celero/issues/154
* [celero] Updated to v2.8.1
* [celero] Updated version for VCPKG.
* [celero] Updates to better support VCPKG.
* [celero] Updated versions.
* Update celero.json
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
|