JonLiu1993
cf4ebef229
[sdl2-mixer| sdl2-image| sdl2-ttf] fix pc file in debug pkgconfig ( #37411 )
2024-03-15 18:40:20 -07:00
JonLiu1993
0275526895
[SDL2-ttf] update to <2.22.0> ( #36872 )
...
Fixes #36863
Update port SDL2-ttf to the latest version 2.22.0
- [x] Changes comply with the [maintainer
guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md ).
- [x] SHA512s are updated for each updated download.
- [ ] ~~The "supports" clause reflects platforms that may be fixed by
this new version.~~
- [ ] Any fixed [CI
baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt )
entries are removed from that file.
- [x] Any patches that are no longer applied are deleted from the port's
directory.
- [x] The version database is fixed by rerunning `./vcpkg x-add-version
--all` and committing the result.
- [x] Only one version is added to each modified port's versions file.
Features harfbuzz is tested successfully in the following triplet:
- x86-windows
- x64-windows
- x64-windows-static
---------
Co-authored-by: Jon <v-zhli17@microsoft.com>
2024-02-21 09:26:00 -08:00
jim wang
2a6371b014
[sdl2,sdl2-*] allow disabling transitive dependencies ( #35394 )
2023-12-08 01:30:37 -08:00
Pierre Wendling
8963164ada
[sdl2-ttf] Bump to 2.20.2 ( #29488 )
...
* [sdl2-ttf] Bump to version 2.20.2
* [sdl2-ttf] Update baseline
* [sdl2-ttf] Apply suggestions from review.
2023-02-08 13:45:58 -08:00
Kai Pastor
df806d3a4b
[sdl2-ttf,tgui,sfml] Update sdl2-ttf to 2.20.0, revise dependencies import and export ( #26026 )
...
* [sdl2-ttf] update to 2.20.0
* update version
* add license
* update version
* del unused function
* overwrite version
* Fix sdl2-tff
* Increase version
* version
* Fix config export/import
* version
* Fix sdl2pp
* Fix SDL2_ttf import
* Fix sdl2pp
* Try again
* ...
* shared
* Fix patch
* not win32
* revert
* Fix import name
* Fix tgui
* version
* CR
* version
* CR
* version
* license
* version
* update port version
* version
* Fix patch
* version
* Fix patch
* version
* Update patch
* version
* Fix tgui
* add feature harfbuzz
* version
* Fix feature
* version
* Fix mingw
* Trim patching
* Explicit usage
* [sfml] Fix OpenGL dependency
* [sfml] Transform freetype patch and config fixup
* [sfml] Transform stb patch
* [tgui] Revise port
* [tgui] Extend config patching, merge into dependencies patch
* [tgui] Devendor stb
* [tgui] Revise feature dependencies
* [tgui] Omit pc files (too many inconsistencies)
* [milerius-sfml-imgui] Fixup
* Update versions
Co-authored-by: FrankXie <v-frankxie@microsoft.com>
Co-authored-by: Thomas1664 <46387399+Thomas1664@users.noreply.github.com>
2022-08-04 19:18:37 -07:00
autoantwort
7c92c79a1a
[sdl2pp] no absolute paths ( #21722 )
...
* [sdl2pp] no absolute paths
* [sdl2-image][sdl2-mixer][sdl2-ttf][sdl2pp] Install and fix .pc files
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
2021-11-30 15:29:54 -08: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