Jia Yue Hua
ff29131bc9
[libunibreak] update to 6.1 ( #37247 )
...
- [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.~
- [ ] ~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.
2024-03-07 23:03:41 -08:00
Jia Yue Hua
3c2e4c93ed
[libunibreak] update to 5.1 ( #34854 )
...
* [libunibreak] update to 5.1
* [libunibreak] update to 5.1
2023-11-02 10:38:18 -07:00
Benjamin Oldenburg
cfcb3c761a
[libunibreak] Fixed missing definition of variable in config.cmake ( #24476 )
...
* Updated libunibreak and added config.cmake file
* Updated version
* Updated the manifest file
* updated git-tree
* Remove vcpkg-cmake-config dependency
* updated version
* Fix issue with libunibreak-config.cmake.in
* updated git-tree
* increased port-version
* updated git-tree
Co-authored-by: Benjamin Oldenburg <benamin.oldenburg@ordis.co.th>
2022-05-05 15:14:26 -07:00
Benjamin Oldenburg
64d550b430
[libunibreak] Update to 5.0 ( #24469 )
...
* Updated libunibreak and added config.cmake file
* Updated version
* Updated the manifest file
* updated git-tree
* Remove vcpkg-cmake-config dependency
* updated version
Co-authored-by: Benjamin Oldenburg <benamin.oldenburg@ordis.co.th>
2022-04-29 12:33:44 -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