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
AndrewDeanMS
c283f5748f
[parallel-hashmap] Update to 1.33 ( #19863 )
...
* Update parallel-hashmap to version 1.33
* Result or running ./vcpkg x-add-version --all
Co-authored-by: Andrew Dean <Andrew.Dean@microsoft.com>
2021-09-01 11:04:19 -07:00
Gregory Popovitch
98f80d86f2
[parallel-hashmap] Update parallel-hashmap version ( #11420 )
...
* update parallel_hashmap version
* Update portfile.cmake
* Update CONTROL
* Update portfile.cmake for parallel_hashmap
* bump parallel-hashmap to latest github release
* Update parallel_hashmap version to 1.32 (current)
* Update CONTROL
* update portfile as requested
2020-05-19 15:12:29 -07:00
Gregory Popovitch
f122800c08
[parallel-hashmap] Update to 1.30 ( #9519 )
...
* update parallel_hashmap version
* Update portfile.cmake
* Update CONTROL
* Update portfile.cmake for parallel_hashmap
* bump parallel-hashmap to latest github release
2020-01-06 11:06:29 -08:00
Gregory Popovitch
25ef31d00c
[parallel-hashmap] Update to 1.27 ( #9152 )
...
* update parallel_hashmap version
* Update portfile.cmake
* Update CONTROL
* Update portfile.cmake for parallel_hashmap
2019-12-02 10:40:43 -08:00
Ehsan
8d272fc443
[parallel-hashmap] Update library to 1.24 ( #8301 )
2019-09-23 10:40:16 -07:00
Gregory Popovitch
b03dd0714c
[parallel-hashmap] Update to current 1.23 version and include natvis file. ( #6917 )
2019-06-17 10:35:44 -07:00
Robert Schumacher
33af90d42a
[many ports] Updates 2019.05.19 ( #6524 )
2019-05-21 21:00:24 -07:00
Gregory Popovitch
81448a3035
[parallel hashmap] increment release version ( #5898 )
...
* update version of package
2019-04-01 11:01:59 -07:00
Gregory Popovitch
b33e51ab07
add parallel-hashmap package ( #5893 )
2019-04-01 09:55:14 -07:00