Cédric Tabin
|
a0786f6a81
|
Update to libzippp v7.1-1.10.1 (#36692)
|
2024-02-12 14:33:44 -08:00 |
|
Cédric Tabin
|
b5c59f51ce
|
Update to libzippp v7.0-1.10.1 (#33807)
|
2023-09-19 09:49:01 -07:00 |
|
Cédric Tabin
|
da6a91bb0b
|
Update to libzippp v6.1-1.9.2 (#31194)
|
2023-05-01 15:18:43 -07:00 |
|
Cédric Tabin
|
cbe6dc7a4c
|
[libzippp] Update to v6.0-1.9.2 (#28276)
|
2022-12-12 14:25:36 -08:00 |
|
Cédric Tabin
|
24881cdfea
|
[libzippp] Update to 5.1-1.8.0 (#24885)
|
2022-05-25 12:22:08 -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 |
|
Cédric Tabin
|
cf03dac5c2
|
[libzippp] update to 5.0-1.8.0 (#19433)
Co-authored-by: Cédric Tabin <cedric.tabin@gmail.com>
|
2021-08-09 09:09:22 -07:00 |
|
Cédric Tabin
|
a0fa6aeb82
|
[libzippp] Update to 4.1-1.8.0 (#18553)
Co-authored-by: Cédric Tabin <cedric.tabin@gmail.com>
|
2021-07-06 14:05:52 -07:00 |
|
nicole mazzuca
|
68a74950d0
|
[vcpkg] Rename port_versions to versions (#15784)
|
2021-01-21 09:53:22 -08:00 |
|