JulZimmermann
a3388de4ff
[utf8h] set license ( #28260 )
...
* set license in utf8h
* run x-add-version
Co-authored-by: Julian Zimmermann <julian.zimmermann@gti.de>
2022-12-13 19:38:34 -08:00
大明酱
2b543e52da
[utf8h] update package to new version ( #22876 )
...
* update utf8h package to new version
* add utf8h baseline
2022-01-31 21:20:16 -08:00
Guekka
a4c65c2f71
[utf8h] Update utf8h to the latest commmit ( #20863 )
...
* [utf8h] Update to 23 august 2021
* [utf8h] Update versions database
* update utf8h to latest version
* update version
* CI
Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-10-21 23:55:50 -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
Rémy Tassoux
b65decc9f7
[utf8h] Update to latest commit ( #12218 )
...
This library doesn't provide official releases, therefore I'm using the latest commit.
2020-07-06 12:53:06 -07:00
RT222
96dbb6c3df
Initial port
2018-04-19 15:28:51 -07:00