aboutsummaryrefslogtreecommitdiff
path: root/ports/parallel-hashmap
AgeCommit message (Collapse)Author
2021-09-09Bulk convert control files. (#19986)Billy O'Neal
``` 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-01[parallel-hashmap] Update to 1.33 (#19863)AndrewDeanMS
* Update parallel-hashmap to version 1.33 * Result or running ./vcpkg x-add-version --all Co-authored-by: Andrew Dean <Andrew.Dean@microsoft.com>
2020-05-19[parallel-hashmap] Update parallel-hashmap version (#11420)Gregory Popovitch
* 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-01-06[parallel-hashmap] Update to 1.30 (#9519)Gregory Popovitch
* update parallel_hashmap version * Update portfile.cmake * Update CONTROL * Update portfile.cmake for parallel_hashmap * bump parallel-hashmap to latest github release
2019-12-02[parallel-hashmap] Update to 1.27 (#9152)Gregory Popovitch
* update parallel_hashmap version * Update portfile.cmake * Update CONTROL * Update portfile.cmake for parallel_hashmap
2019-09-23[parallel-hashmap] Update library to 1.24 (#8301)Ehsan
2019-06-17[parallel-hashmap] Update to current 1.23 version and include natvis file. ↵Gregory Popovitch
(#6917)
2019-05-21[many ports] Updates 2019.05.19 (#6524)Robert Schumacher
2019-04-01[parallel hashmap] increment release version (#5898)Gregory Popovitch
* update version of package
2019-04-01add parallel-hashmap package (#5893)Gregory Popovitch