LilyWangLL
821d0d20d7
[leptonica] Update to 1.82.0 and fix link 'openjp2.lib' failed ( #23624 )
...
* [leptonica] Fix find openjpeg
* update version
* update patch
* update version
* format portfile.cmake
* update version
* update patch
* update version
* format portfile.cmake
* update version
* update to 1.82.0
* update version
* update patches
* update version
* update patches
* update version
* Revise patching and configuration
* Update versions
* update patch
* update version
* update version
* update patch
* update version
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Kai Pastor <dg0yt@darc.de>
2022-03-28 11:33:04 -07:00
Stefano Sinigardi
401578455f
[OpenCV] upgrade to v4.5.5 ( #22801 )
...
* [OpenCV4] update to v4.5.5
* [OpenCV] bump version
* [gstreamer] fix build for opencv
* fix references
* [vcpkg-tool-meson] fix nuget packaging
* fix references
* [gstreamer] fix references
* [ogre] update vcpkg tools
* fix references
* [OpenCV4] fixes from CI runs
* fix references
* [OpenCV4] force python module also in debug builds
* fix references
* [harfbuzz] fix cmake config
* harfbuzz fixes
* fix references
* [OpenCV4] remove unnecessary lines from patches
* fix references
* fix references
* [harfbuzz] bump version
* [harfbuzz] fix for single config builds
* fix references
* freetype fixes
* fix references
* fix ogre references
* fix references, again
* python when building static windows opencv libraries is unsupported
* fix references
* fix
* refs
* use required when necessary
* fix references
* do not use config for hdf5, use internal module
* fix references
* use proper spelling for freetype config cmake
* fix references
* [OpenCV] restore versions after merge
* fix references
* [leptonica] fix building
* fix references
* do not require package in optional features
* £fix references
* fix python feat
* update version
* update version
* [ffmpeg] remove opengl feat on arm64-windows
* format manifest
* fix references
* fix cuda/nvidia features compatibility matrix
* fix manifest
* fix
* fix
* fix references
* fix references, again
* move CONTROL to manifest
* [gstreamer] bump versions
* fix references
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
2022-02-23 11:57:13 -08:00
Cheney Wang
fd8a264bff
[amqpcpp/leptonica/glibmm] Update to latest version ( #20069 )
...
* [amqpcpp/leptonica/glibmm] Update to latest version
* Modify the include dir path
* Modify version schemes
Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
2021-09-16 10:50:15 -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