JonLiu1993
e658a5d7ee
[WinReg] update to v6.1.0 ( #25765 )
...
* [WinReg] update to v6.1.0
* update version
2022-07-14 12:07:04 -07:00
Frank
d9ac3c2e50
[WinReg] update to v6.0.0 ( #25715 )
...
* [WinReg] update to v6.0.0
* update version
2022-07-12 11:07:46 -07:00
JonLiu1993
0640cc4847
[WinReg] update to v5.1.1 ( #25548 )
...
* [WinReg] update to v5.1.1
* update version
2022-07-05 12:49:21 -07:00
JonLiu1993
6fa767aca9
[WinReg] update to v5.1.0 ( #23865 )
...
* [WinReg] update to v5.1.0
* update version
2022-04-01 14:39:46 -07:00
JonLiu1993
b219334d40
[WinReg] update to v5.0.1 ( #23706 )
...
* [WinReg] update to v5.0.1
* update version
2022-03-22 15:09:23 -07:00
Frank
da8e236bf2
[WinReg] update to v5.0.0 ( #23409 )
...
* [WinReg] update to v5.0.0
* [WinReg] update to v5.0.0
* add license
* update version
* delete extra space
* update version
2022-03-07 11:03:48 -08:00
Billy O'Neal
c9e786d81a
[many ports] remove remaining vcpkg_fail_port_install calls. ( #22770 )
...
* Bulk remove vcpkg_fail_port_install calls.
Interesting ones have been split out into separate reviews, where "interesting" means "anything more than just deleting the call to vcpkg_fail_port_install",
In support of https://github.com/microsoft/vcpkg/pull/21502
* Update version database.
* Revert google benchmark changes already submitted as https://github.com/microsoft/vcpkg/pull/22728
* Repair version database.
2022-01-25 10:31:15 -08:00
JonLiu1993
e7ebf9be95
[WinReg] update to v4.1.2 ( #21015 )
...
* [WinReg] update to v4.1.1
* update version
* [WinReg] update to v4.1.2
* update verrsion
* change version
* update version
2021-11-03 21:45:24 -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
JonLiu1993
f351aed6b8
[WinReg] Update to v4.1.0 ( #16871 )
...
* [WinReg] Update to v4.1.0
* update version
2021-03-26 11:41:21 -07:00
JonLiu1993
9e681d579b
[WinReg] update to v4.0.0 ( #16765 )
...
* [WinReg] update to v4.0.0
* update version
* update winreg.json
* update version
2021-03-19 09:55:28 -07:00
nicole mazzuca
68a74950d0
[vcpkg] Rename port_versions
to versions
( #15784 )
2021-01-21 09:53:22 -08:00