Rémy Tassoux
2c26c9aff1
[imgui] Update to 1.89.1 ( #27838 )
...
* [imgui] Update to 1.89
* [imgui] Update version files
* [imgui] Update to 1.89.1
* [imgui] Update version files
* [ogre] Fix build failure on imgui 1.89
* [ogre] Update version files
* [imgui-sfml] Fix build failure on imgui 1.89
* [imgui-sfml] Update version files
* [milerius-sfml-imgui] Fix build failure on imgui 1.89
* [milerius-sfml-imgui] Update version files
* [imgui] Modernize port
* [imgui] Update version files
* bump port version
* version
* version... again
Co-authored-by: Javier Matos Denizac <javier.matosd@gmail.com>
2022-11-28 15:46:08 -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
15f50770ea
[milerius-sfml-imgui] fix mac build ( #22596 )
2022-01-18 13:05:22 -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
Billy O'Neal
09a647a526
Delete use of vcpkg_test_cmake and vcpkg_common_functions. ( #13065 )
2020-10-28 14:18:07 -07:00
Stefano Sinigardi
726c111481
[vcpkg] fatal_error when patch fails to apply ( #8087 )
...
vcpkg will now fail on failure to apply patches except when using `--head`.
2019-10-07 10:35:13 -07:00
Cheney Wang
3046996abb
[milerius-sfml-imgui] Fix find_package issue ( #5930 )
2019-04-03 20:27:28 -07:00
LarryIII
5985b82b05
Fix typo of the source name in port.camke ( #5098 )
2019-01-10 10:19:09 -08:00
Sztergbaum Roman
04ba5aa07b
[imgui-sfml] introduce new port for imgui with sfml development ( #4106 )
...
* [imgui-sfml] introduce new port for imgui with sfml development
* [imgui-sfml] rename the port
* [milerius-sfml-imgui] Rename from sfml-imgui. Small cleanup
2018-08-24 22:29:51 -07:00