aboutsummaryrefslogtreecommitdiff
path: root/ports/celero/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 ```
2021-04-02[celero] Updated to Celero v2.8.0 (#16802)John Farrier
* [celero] Updated to Celero v2.8.0 * [celero] Improving static linking support in VCPKG. Celero issue #154 is tracking a fix. https://github.com/DigitalInBlue/Celero/issues/154 * [celero] Updated to v2.8.1 * [celero] Updated version for VCPKG. * [celero] Updates to better support VCPKG. * [celero] Updated versions. * Update celero.json Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
2021-03-01[celero] Updated to v2.7.2 (#16446)John Farrier
* [celero] Updated to v2.7.2 * [celero] Updated Versions file.
2020-02-28[celero] Fix some macros (#10159)Jack·Boos·Yu
WIN32 -> _WIN32, and CELERO_STATIC -> 1
2019-10-18[celero] Updated to v2.6.0 (#8646)John Farrier
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-06-10Celero: Update to v2.5.0 release (#6845)Mateusz Łoskot
2019-01-22[celero] Revert changes in c6db2c880a064b29e0b38eda29f19510235fb4c9Robert Schumacher
2019-01-18Updates 2019.01.09Robert Schumacher
2018-12-17Update release version or commit to latest for below ports (#4957)Cheney Wang
* [botan][caf][celero][docopt][glbinding][nanodbc][sfgui]Update release version or commit to latest * [sfml] Add find_dependency(Freetype)
2018-10-28[celero] Update Celero to v2.4.0 (#4585)John Farrier
* Upgrade Celero to v2.2.0 * [celero] Fix installed cmake targets * Updated to Celero v2.4.0
2018-08-03Upgrades 2018.06.31Robert Schumacher
2018-07-08Upgrades 2018.07.08Robert Schumacher
2018-04-17Upgrade Celero to v2.2.0 (#3259)John Farrier
* Upgrade Celero to v2.2.0 * [celero] Fix installed cmake targets
2017-10-12[celero] Update to use vcpkg_from_github and NinjaRobert Schumacher
2017-10-06#1930 Celero Initial PortJohn Farrier