| Age | Commit message (Collapse) | Author |
|
* [scottt-debugbreak] Adding new port
* Run x-add-version
|
|
|
|
* [libdjinterop] update to 0.16.0
* [sqlite3] add pkgconfig file
Linux distributions typically use the SQLite autoconf package,
but this port uses the SQLite amalgamation package with a custom
CMakeLists.txt so the port needs to take care of installing the
pkgconfig file.
|
|
* [s2n] Add missing release target
* [aws-sdk-cpp] Fix targets
|
|
* Updated ports/seal and ports/apsi.
* Updated versioning.
|
|
* SObjectizer updated to 5.7.2.6.
* Baseline updated with sobjectizer-5.7.2.6.
|
|
* [soci] update to 4.0.2
* update version
* update portfile.cmake
* update version
* fix ci error
* update version
* fix-mysql-feature
* update version
* Add comment explaining fix-mysql-feature-error.patch
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
|
* [aws-c-common] Update to 0.6.9
* [aws-checksums] Update to 0.1.11
* [aws-c-event-stream] Upgrade to 0.2.7
* Add aws-c-cal port
* Add s2n port
* Add port aws-c-io
* [aws-c-event-stream] Update port to 0.2.7
* Update aws-sdk-cpp port
* Add aws-c-compression port
* Add aws-c-auth port
* Add aws-c-http port
* Add aws-c-mqtt port
* Add aws-c-s3 port
* Add aws-crt-cpp port
* [aws-sdk-cpp] Update port to 1.9.91 version
* Fix port issues.
* Upgrade aws-sdk-cpp to 1.9.96
Upgrade aws-crt-cpp to 0.15.1
* Support x64-windows
* Fix format issues
* Specify supported triplets for aws libs
* Specify platforms for more aws libs
* Support x64-windows-static triplet.
* Fix format issue for aws-c-common
* Update port versions file
* Use new vcpkg cmake methods and format
* Use new vcpkg cmake methods and format
* update version
* Fix s2n port typo
* Fix s2n port typo
Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
|
This reverts commit e201002b4f4827d7b7b672f0c5c672a77fc3b77d.
|
|
* [stduuid] Adding new port stduuid
* [stduuid] Making changes requested in pull request #16382.
* [stduuid] Changes from vcpkg x-add-version
* Update versions/s-/stduuid.json
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* Update ports/stduuid/portfile.cmake
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* [stduuid] Changes from .\vcpkg.exe x-add-version stduuid --overwrite-version.
* [stduuid] Changes requested from https://github.com/microsoft/vcpkg/pull/16382.
* [stduuid] Adding changes requested during PR.
* [stduuid] Updating version.
Co-authored-by: David McCloskey <davmcclo@gmail.com>
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
|
|
(#20089)
|
|
* [sbp] new port
Closes https://github.com/microsoft/vcpkg/issues/19218
* update portfile.cmake
* update version
* add vcpkg_fail_port_install for portifile
* update version
Co-authored-by: Jonliu1993 <13720414433@163.com>
|
|
* [sail] Update to v0.9.0-pre16
* [sail] vcpkg x-add-version --all
* [sail] Update git REPO
* [sail] vcpkg x-add-version --all --overwrite-version
|
|
* [sqlite3] update to 3.36.0
* update version
|
|
```
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
```
|
|
* [simdjson] Update to 1.0.0
* [simdjson] Bump version
|
|
* so5extra updated to the latest version.
* Fix for so5extra's manifest format.
* so5extra version added to baseline.
* Accepting suggestion for so5extra's manifest.
* Update for so5extra version in baseline.
|
|
|
|
|
|
Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>
|
|
|
|
* [anyrpc] Bump version to export missing symbol
* [spix] Add port
* versioning
* Update ports/anyrpc/vcpkg.json
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* versioning
* Update ports/anyrpc/portfile.cmake
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* versioning
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
|
|
|
|
* [sail] Update to v0.9.0-pre15
* [sail] vcpkg x-add-version --all
|
|
* [sdl2] Update to 2.0.16
* [sdl2] Update version files
* [sdl2] Fix uwp builds
* [sdl2] Update version files
* [sdl2] Change version-semver to version
* [sdl2] Fix uwp pkgconfig file creation
* [sdl2] Add alias on static build
* [sdl2] Remove cmake wrapper
* [sdl2] Update version files
* [sdl2] Disable SDL2::SDL2main target search on uwp
* [sdl2] Update version files
Co-authored-by: Rémy Tassoux <rt2@rasterizedworld.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
|
* [simdjson] Update to 0.9.7
* [simdjson] Bump version
|
|
(#19361)
* Pass 'make' between vcpkg scripts
* Restore original BSD gmake lookup
* [starlink-ast] Add ADDITIONAL_MSYS_PACKAGES to vcpkg_configure_make
* [starlink-ast] x-add-version
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
|
|
* Fix incorrect homepage URL
https://github.com/aspnet/SignalR-Client-Cpp is for the newer microsoft-signalr package.
* update version
* add Port-Version
* update version
Co-authored-by: Jonliu1993 <13720414433@163.com>
|
|
Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>
|
|
* update 2021-07-27
macOS -> 11.5.1, XCode -> 12.5.1
* update azure-pipelines
* update sha of macfuse
* change how macos-ci-base works
* fix build errors
* fix itpp:linux
* more fixes
* remove tab
* allow version changes in all the remove/rename-version patches
* fix libunistring for real
* robert CR
|
|
* Format manifest
* Add cmake wrapper
* x-add-version
* Always use vcpkg zlib for sentry native
* x-add-version
* Fix and simplify wrapper
* Update git-tree
|
|
* [sail] Update to v0.9.0-pre14
* [sail] vcpkg x-add-version --all
* [sail] Remove PREFER_NINJA
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* [sail] Add quotes
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* [sail] Add quotes
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* [sail] Add quotes
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* [sail] Add quotes
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* [sail] vcpkg x-add-version --all
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
|
|
* Added fix for installing shaderc_util in port shaderc.
* Restricted install of shaderc_util to static build.
|
|
* initial test of AST (broken)
* slight improvement to build
* almost working...
* added minpack cflags
* use static linking
* yaml and pthreads features added
* debug and release cflags
* versioning
* formated vcpkg.json
* updated version string
* adjusted based on PR feedback
* updated to 9.2.4 release to avoid source patching
* removed comments
* updated baseline version
* Apply suggestions from code review
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: autoantwort <41973254+autoantwort@users.noreply.github.com>
* adds supports field to json
* Update ports/starlink-ast/portfile.cmake
adjust configure options
Co-authored-by: autoantwort <41973254+autoantwort@users.noreply.github.com>
* removed --disabled-shared and MINPACK_NO_DLL
* use DETERMINE_BUILD_TRIPLET to determine host
* updates git-tree hash
* quotemarks fix
* git tree hash update
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: autoantwort <41973254+autoantwort@users.noreply.github.com>
|
|
* SLikeNet now builds under MinGW
Use vcpkg.json instead of CONTROL
Fix
Run x-add-version
Fix deprecation warning
Update ports/slikenet/portfile.cmake
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* Update ports/slikenet/vcpkg.json
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* Run vcpkg x-add-version
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: Billy Robert ONeal III <bion@microsoft.com>
|
|
* [soil2] Update version
* update version files
* Update ports/soil2/CONTROL
* update control file
* [soil2] Remove CMake version support
* Remove CMake version copy
* update version
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: Robert Schumacher <ras0219@outlook.com>
|
|
|
|
|
|
* [simdjson] Update to 0.9.6
* [simdjson] Update
* [simdjson] Overwrite version
* [simdjson] no-deprecated -> deprecated
Features need to be additive, not subtractive.
* [simdjson] Remove unnecessary code
* [simdjson] Overwrite version
* [simdjson] Enable deprecated APIs by default
* [simdjson] Overwrite version
|
|
* [spdlog] support wchar when targeting Windows
* filename will be `std::string`
* functions `wstr_to_utf8buf`, `utf8_to_wstrbuf` will be added
* [spdlog] update baseline and git-tree SHA
* [spdlog] make wchar_t options to port features
* new feature: `wchar`, `wchar-filenames`
* update git-tree SHA
* Update ports/spdlog/portfile.cmake
Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
* Update ports/spdlog/portfile.cmake
Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
* [spdlog] more clear SPDLOG_WCHAR_FILENAMES usage
* Update versions/s-/spdlog.json
* Update ports/spdlog/vcpkg.json
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
* Update ports/spdlog/portfile.cmake
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
* Update ports/spdlog/portfile.cmake
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
* [spdlog] update version SHA
* [spdlog] update port version
Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
|
|
* [shaderc] remove port since it does not build
* [glslang] updated to version 11.1.0
* [glslang] Add python path
* [glslang] baseline.json and glslang.json updated
* Update portfile.cmake
* Update CONTROL
* Update port_versions
* Update port_versions
* Update port_versions
* Update port_versions
* Update port_versions
* [glslang] port update to version 11.4.0
* [glslang] port version removed from json
* [glslang] remove shaderc
* [glslang] baseline update
* [glslang] versions hash update
* [glslang] portfile format fix + use of ${PORT}
* [glslang] new hash
* [glslang] revert portfile back
* [glslang] portfile apply changes
* [glslang] update hash for x86 windows
* [glslang] update to 1.5.0
* [glslang] git-tree hash update
* [glslang] remove old version 1.4.0
* [glslang] git-tree hash update
* [glslang][shaderc] Update and fix targets to match upstream
* Update versions
Co-authored-by: Lukas Lipp <llipp@cg.tuwien.ac.at>
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: JonLiu1993 <13720414433@163.com>
Co-authored-by: Robert Schumacher <ras0219@outlook.com>
|
|
* Updated sciter version to 4.4.8.3
* Update CONTROL
* Update baseline.json
* Update sciter.json
* Update portfile.cmake
* Fixed git tree hash
|
|
* 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.
|
|
Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>
|
|
* New port sleepy-discord
* Add versions for Sleepy Discord
* SleepyDiscord: use website as homepage
* SleepyDiscord: Remove No newline at end git diff
* SleepyDiscord: format manifest
* SleepyDiscord: rerun x-add-version
* SleepyDiscord: add compression feature
* SleepyDiscord: Update version string
* SleepyDiscord: rerun x-add-version again
* SleepyDiscord: set version-date
* SleepyDiscord: rerun add-version
* SleepyDiscord: Add requested changes
* SleepyDiscord: run add version
* SleepyDiscord: update library
* SleepyDiscord: rerun x-add-version
* SleepyDiscord: copy config file to share folder
* SleepyDiscord: run add-version
* SleepyDiscord: Fix issue with parallel configuring
* SleepyDiscord: x-add-version
* SleepyDiscord: replace deprecated functions
* SleepyDiscord: x-add-version
* SleepyDiscord: Install config during configure
* SleepyDiscord: x-add-version
* [sleepy-discord] update: add Select Menus
* [sleepy-discord] run add-version
* [sleepy-discord] rerun add-verion
|
|
* [boost] update generator script for boost 1.76
* [boost] update ports to 1.76.0 (run generator)
* [boost] fix windows build?
* [quantlib] update and fix mac build
* [symengine] update and fix build
* [avro-cpp] update to latest master and fix windows build
* [folly] update to 2021.05.31.00
* [fbthrift, fizz, wangle] update to v2021.05.31.00 and fix build
* [proxygen] update to version 2021.05.31.00
* [fizz, proxygen, fbthrift] fix sodium target
* [proxygen] also works on macOS
* [quantlib] use fix from upstream to fix mac build
* [symengine] minimize patch file and fix deprecation warning
* [folly,proxygen,wangle,fizz,fbthrift] update to 2021.06.14.00
* [fbthrift] remove unnecessary dependency rsocket
I couldn't find any information that this dependency exists. The term is used in the code, but not in the context of a dependency
* [fizz,fbthrift] fix zlib dependency
* [fbthrift] pass required flex executable to cmake configure
* add version files
* [boost] generate-ports.ps1: Apply code review
* [boost] changes from new version of generate-ports script
* update version files
* [boost] generate-ports.ps1: Apply code review
|
|
* update patch file
* update version
|
|
* [sdl2-mixer] Add fluidsynth feature
* [sdl2-mixer] Add fluidsynth feature
* [sdl2-mixer] Add fluidsynth feature
* Updated versions & fixed style
* Fixed version hash
|
|
* Fixed cannot find seal.
* Updated versioning.
|
|
Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>
|