Billy O'Neal
|
d02bde4898
|
[live555] Update to 2023-01-19 (#29072)
|
2023-01-19 18:23:25 -08:00 |
|
Jack·Boos·Yu
|
6ee116c59e
|
[live555] Export unofficial targets (#28252)
* [live555] Export unofficial targets
* version
* typo
* version
Co-authored-by: jyu49 <yu_jack@apple.com>
|
2022-12-12 14:35:22 -08:00 |
|
Cheney Wang
|
1844cd5f4f
|
[live555] Update to 2022-12-01 (#28183)
* [live555] Update to 2022-12-01
* Modify deprecated functions
|
2022-12-06 12:01:41 -08:00 |
|
Jack·Boos·Yu
|
592158c502
|
[live555] Update to 2022-07-14 (#26144)
* [live555] Update to 2022-07-14
* version
* Update ports/live555/vcpkg.json
Co-authored-by: Javier Matos Denizac <javier.matosd@gmail.com>
* Update versions/l-/live555.json
Co-authored-by: Javier Matos Denizac <javier.matosd@gmail.com>
|
2022-08-04 10:38:23 -07:00 |
|
Cheney Wang
|
8b63797138
|
[live555/guilite/polymorphic-value] Update version (#24555)
* [live555/guilite] Update version
* [polymorphic-value] Update version
Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
|
2022-05-06 16:54:57 -07:00 |
|
JonLiu1993
|
d0920bbf7a
|
[live555] Fix install head failed (#22190)
* [live555] Fix install head failed
* update version
* update live555 to the latest version
* update version
|
2021-12-28 15:04: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 |
|
nicole mazzuca
|
68a74950d0
|
[vcpkg] Rename port_versions to versions (#15784)
|
2021-01-21 09:53:22 -08:00 |
|