mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-30 06:59:00 +08:00
b295670e4b
``` 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 ``` |
||
---|---|---|
.. | ||
kangaru.json | ||
kcp.json | ||
kd-soap.json | ||
kealib.json | ||
kenlm.json | ||
keystone.json | ||
kf5archive.json | ||
kf5attica.json | ||
kf5auth.json | ||
kf5codecs.json | ||
kf5completion.json | ||
kf5config.json | ||
kf5configwidgets.json | ||
kf5coreaddons.json | ||
kf5crash.json | ||
kf5dbusaddons.json | ||
kf5globalaccel.json | ||
kf5guiaddons.json | ||
kf5holidays.json | ||
kf5i18n.json | ||
kf5itemmodels.json | ||
kf5itemviews.json | ||
kf5jobwidgets.json | ||
kf5plotting.json | ||
kf5solid.json | ||
kf5sonnet.json | ||
kf5syntaxhighlighting.json | ||
kf5wallet.json | ||
kf5widgetsaddons.json | ||
kf5windowsystem.json | ||
kfr.json | ||
kinectsdk1.json | ||
kinectsdk2.json | ||
kissfft.json | ||
klein.json | ||
knet.json | ||
krabsetw.json | ||
ktx.json | ||
kubazip.json | ||
kuku.json | ||
kvasir-mpl.json | ||
kwsys.json |