aboutsummaryrefslogtreecommitdiff
path: root/ports/range-v3/CONTROL
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 ```
2020-09-27[range-v3] Update to 0.11.0 (#13630)JonLiu1993
* [range-v3] Update to 3.11.0 * [range-v3] Update to 0.11.0
2020-07-09updates range-v3 (#12346)Christopher Di Bella
Tip-of-trunk range-v3 more closely resembles C++20.
2020-04-27[range-v3] Update to HEAD to fix /std:c++17 regressions. (#11031)Casey Carter
2020-02-10[many ports] Upgrades to 2020.02.08 (#9986)Robert Schumacher
* [many ports] Upgrades to 2020.02.08 * Undo asio asmjit libimobiledevice mlpack mongo-c-driver oniguruma openmvg openvdb pcl * Update ci baseline file Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
2019-10-14Update CONTROL fileDaniel Marshall
2019-08-23Update range-v3 reference (#7845)Casey Carter
To fix breakage in VS2019 16.3p2 with the range-v3 0.5.0 (latest) release.
2019-06-26Fix homepage for range-v3(-vs2015) (#7049)Daniel Marshall
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-05-02[range-v3] Update to 0.5.0 (#6283)Casey Carter
2019-02-14[range-v3] Update to latest (#5365)Casey Carter
2018-11-29[range-v3] Update to cf8add9 (#4865)Casey Carter
...which works around LWG 3170.
2018-11-22Update range-v3 reference (#4801)Casey Carter
2018-11-15Update range-v3 upstream commit (#4741)Casey Carter
2018-10-31range-v3: update the commit; don't build testsCasey Carter
2018-10-30[range-v3] Update. Use ericniebler/range-v3 even for WindowsAlexander Karatarakis
2018-05-01[range-v3] Split ports to enable newer range-v3 versions on linuxRobert Schumacher
2017-12-18Update Range-V3-VS2015.Casey Carter
2017-05-30[range-v3] update versionCasey Carter
...and don't bother with the "get upstream and then patch" dance.
2017-03-27Update to latest revision of Range-V3-VS2015Casey Carter
2016-10-18Change version to "20150729-vcpkg2"Casey Carter
...to reflect this is based on the upstream sources as of 20150729, and the second release of the patch based on that same upstream.
2016-10-17range-v3 builds from 2 distinct pieces:Casey Carter
* Upstream sources from the fork point (https://github.com/ericniebler/range-v3/commit/6eb5c831ffe12cd5cb96390dbe917ca1b248772d) * Separate patch that applies MSVC workarounds from https://github.com/Microsoft/Range-V3-VS2015
2016-09-18Initial commitAlexander Karatarakis