| Age | Commit message (Collapse) | Author |
|
* Add new port pffft
* Add pffft to baseline
Co-authored-by: chausner <chausner@users.noreply.github.com>
|
|
* [python3] Update to Python 3.10.0rc2 (for testing).
* [python3] Revert trivial patch changes.
* [python3] Bump to 3.10.0 final.
* x-add-version
* update python tools to 3.10.0
* [ecm] Add patch from upstream for Python 3.10.
Remove this on the next release.
* x-add-version
* [python3] Add patch to fix static interpreter.
* x-add-version
|
|
* Remove unused EXTRA_QUOTES
* Uniformly invoke 'configure'
* [libtasn1] Fix mingw build
* Unify prefix handling
* Revise install dir processing
* x-add-version
* Force libdir to lib (adopted from #19666)
* [skip actions] CI rebuild
* CR request: Put backslash before shell var
* CR request: Use vcpkg_list
* Update versions
* Fix python3 options
* Update versions
* Bump python port-version.
* CR request: Add comment about backslashes before prefix
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
|
* Update promise-cpp to 1.0.3
* Update CI baseline
* Fix portfile
* Update git-tree hash
* Update to version 2.1.0
* Update CI baseline and git-tree hash
* Add usage
* Update git-tree hash
* Update to promise-cpp 2.1.2
* Update git-tree hash
Co-authored-by: chausner <chausner@users.noreply.github.com>
|
|
* [python3] Remove spurious dependencies.
* [python3] Add workaround for SDK 10.0.22000.0
* x-add-version
|
|
* Update pegtl to 3.2.1
* Update CI baseline
* Update ports/pegtl/portfile.cmake
* Update versions/p-/pegtl.json
Co-authored-by: chausner <chausner@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
|
|
* [proj4] remove database feature
* [mapnik] remove dependency an feature 'database' of proj4
* add version files
|
|
* Update platform-folders to 4.1.0
* Update CI baseline
* Apply suggestions from code review
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* Update git-tree hash
Co-authored-by: chausner <chausner@users.noreply.github.com>
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
|
|
|
|
* [vcpkg/script/meson] add option NO_PKG_CONFIG to skip pkg-config setup
* [vcpkg/script/pkgconfig] move vcpkg_find_acquire_program(PKGCONFIG) into the check section where it is used
* [pkgconf] Update to 1.8.0
* version stuff
* remove unused patch.
* (CR) quote string
* version update.
|
|
* Update pangomm port to 2.48.1
This update should fix #18824
* Updating version in vcpkg.json
* Updating version database
|
|
* pdcurses: fixed homepage
* add port version
* update version
* revert 3.9 version hash
Co-authored-by: Jonliu1993 <13720414433@163.com>
|
|
* [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
|
|
* many-ports: Update supports field
* Fix several "version-string"s.
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
|
* [portmidi] Add *inx support, refactory install process
* update support
* version
* Re-fix dynamic build and use
* version
* Fix build on *inx
* version
* Re-fix installation
* version
* Add MAYBE_UNUSED_VARIABLES
* version
* Change macro judgment value and macro value
* version stuff
* Update versions/p-/portmidi.json
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
|
|
|
* [Python3] update to 3.9.7
* update version
* update vcpkg tool python3 to 3.9.7
* update hash to lowercase
* update portifile.cmake
* update version
|
|
* [vcpkg baseline][pangolin] Add features, fix dependency pybind11
* Fix dependency name realsense2
* Remove default-feature gles
* Re-generated patch, add MAYBE_UNUSED_VARIABLES, fix build with core
* version
* Fix desc, add more MAYBE_UNUSED_VARIABLES
* version
* more MAYBE_UNUSED_VARIABLES
* version
* Remove some CMAKE_DISABLE_FIND_PACKAGE_*
* version
* Remove more CMAKE_DISABLE_FIND_* since they are disabled
* Remove BUILD_FOR_GLES_2
* version
* Restore BUILD_FOR_GLES_2
* version
* Fix more dependencies
* [libuvc]Fix build type, fix usage
* version
* Re-make patch
* version
* Use libjpeg macros instead of target name to avoid use `find_dependency`
* version
* Fix usage on non-Windows
* version
* commit suggestions
* version
* Apply suggestion
* version
* Re-fix JPEG
* version
* typo
* format
* version
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.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
```
|
|
* Remove prior arm/uwp patch since host dependencies now allow for proj database generation, and add a new patch that repairs Win32 API calls to use UWP counterparts in UWP builds
* Update ci baseline for port changes
* Update port version
* Fix patch list for PR
* Bump port-version, disable some broken downstream libs
* Update port version commit
|
|
* rename `libpystring` to `pystring`
* run `vcpkg x-add-version --all`
* [pystring] Simplify CMake
* [pystring] Use target name as per opencolorio
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
|
|
* [pangolin] Update to 0.6
* Update version files
* Format manifest
* Revert to CRLF in original patches
* Update versions/p-/pangolin.json
* Support osx and add features
* Remove extra space line
* Update versions/p-/pangolin.json
* Remove unused options
* Update versions/p-/pangolin.json
* Add MAYBE_UNUSED_VARIABLES
* Update versions/p-/pangolin.json
|
|
* [portmidi] add osx support
* [portmidi] replace CONTROL with vcpkg.json
* [portmidi] Introduce "port-version": 1
* [portmidi] quote all path strings
* [portmidi] update version database
* [portmidi] make use of ${PORT}
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
|
|
* Update parallel-hashmap to version 1.33
* Result or running ./vcpkg x-add-version --all
Co-authored-by: Andrew Dean <Andrew.Dean@microsoft.com>
|
|
* [plf-colony] Update from 5.33 to 6.28
* [plf-colony] Update version files
Co-authored-by: Rémy Tassoux <rt2@rasterizedworld.com>
|
|
* [cgns] update to 4.2.0
* [vtk-m] update to 1.6.0
* [vtk] Update to 9.0.1-pv5.9.1
- VTK update to match release version of ParaView
* [ParaView] Update to 5.9.1
* version stuff
* fix automatic svg linkage in static builds
* update qt5-svg
* revisit vtk
- fix build with vtk-m 1.6
- remove unused patches
- remove comments
* bump version
* remove two commented lines
* version stuff
* remove old PR version
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
|
|
|
* [many ports]Add vcpkg_fixup_pkgconfig
* version
* Update ports/libepoxy/vcpkg.json
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
* Update versions/l-/libepoxy.json
* Update versions/l-/libepoxy.json
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
|
|
* [proj4] Fix the usage
* Update the baseline
* Small changes
* Update the baseline version
* Remove PREFER_NINJA
* Update the baseline revision
* Update the version scheme
* Update the baseline version
* Avoid configure_file to fill out proj4.
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
|
* [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
|
|
* update to 2.7.1
* use `semver` version field
* fixup deprecated commands
* apply cmake guidelines for quoting arguments
* set `Python_EXECUTABLE` instead
pybind11 uses the `FindPython` module instead of `FindPython3`
* update baseline
* skip passing python executable on command line
* update baseline
* remove extraneous quotes
* remove unused function call
* update baseline
|
|
This fixes a missing #include <cstring> in one of the library's
headers (allegro.h). Also the header files are installed to the
lowercase "portsmf" directory to match the old build system.
|
|
* [proj4] Export target both proj and proj4
* version
* fix the generated cmake file name
* Fix config.cmake
* version
* update
* Update ports/proj4/usage
* Update versions/p-/proj4.json
|
|
testing (#19453)
* [vcpkg baseline][rbdl-orb/rbdl] file conflicts, skip rbdl-orb in Ci testing
* [ptex] Add DISABLE_PARALLEL_CONFIGURE
* Update the baseline version
* Add missing quotes
* Update the baseline version
|
|
|
|
* 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
|
|
* [protobuf] add support for mingw subsystem
* [protobuf] support for mingw
* Update the port version
* Update the baseline version
Co-authored-by: PhoebeHui <20694052+PhoebeHui@users.noreply.github.com>
|
|
* [Poco] update to 1.11.0
* update version
* fix ci error
* update version
* Modernizes the port
* update poco
* update portfile.cmake
* update version
|
|
* [pistache] fix install
* fix ci.baseline.txt, versions
Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
|
|
* [physfs] Patches to fix behavior on macOS / Linux
* Run x-add-version physfs
* Update ports/physfs/portfile.cmake
* Update ports/physfs/portfile.cmake
* Update versions/p-/physfs.json
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
|
|
* Add PcapPlusPlus port
* Fix non-windows installation
* Run json formatting and x-add-version
* Run x-add-version
* Fix sha
* Apply suggestions to `vcpkg.json` from code review
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* Fix versions
* Fix sha for pcapplusplus.json
* Apply suggestions from code review
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* Revert back from 'version' to 'version-string'
* Apply suggestions from code review
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* Fix SHA in pcapplusplus.json
* Remove the patches and copy the lib files from the `Dist` folder
* Fix sha
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
|
|
* [pcg] update to most recent version.
* [pcg] update versioning.
* [pcg] Add suggested changes.
* update version
Co-authored-by: Jonliu1993 <13720414433@163.com>
|
|
|
|
* update presentmon to 1.7.0 release
* Commit running of x-add-version for presentmon port update
* fixes for presentmon port
* rerun x-add-version
|
|
* [Pistache] update to HEAD
* update version
* fix linux Error
* update version
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
|
* [python3] Bump to 3.9.6
* x-add-version
* Update all tools to Python 3.9.6.
|
|
* [PMDK] update to 1.11.0
* update version
* remove patch
* update version
|
|
* update protozero to 1.7.0
* update versions
* apply suggestions
* version
|
|
* [protopuf] update to 2.1.0
* [protopuf] add version info
|
|
* [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
|