Matthias Kuhn
f5d2503a01
[qca] fix "botan" feature ( #25587 )
2022-07-06 13:49:49 -07:00
Matthias Kuhn
aac7c6588b
[qca] new feature botan ( #22227 )
2022-01-04 15:02:13 -08:00
autoantwort
f2149f09f1
[qca] no absolute paths ( #21571 )
2021-12-20 11:26:20 -05:00
Matthias Kuhn
1fc9f75814
[qca] Bump version to 2.3.4 ( #21839 )
2021-12-06 20:51:41 -08:00
Jack·Boos·Yu
7801974c2f
[vcpkg baseline][botan/qca] Fix botan pkgconfig and add botan as a required dependency to qca ( #21250 )
...
* [vcpkg baseline][botan/qca] Fix botan pkgconfig and add botan as a required dependency to qca
* format manifest
* version
2021-11-08 12:26:22 -08:00
Jack·Boos·Yu
0f3bc6733c
[qca] Fix usage ( #20977 )
...
* [qca] Fix usage
* version
* Add double quotes to paths
* version
* Remove some double quotes
* version
* Remove depreciate code
* version
* Try to remove the out-dated code
* version
* Apply suggestions
* version
2021-10-28 12:35:04 -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