aboutsummaryrefslogtreecommitdiff
path: root/ports/doctest
AgeCommit message (Collapse)Author
2021-10-05[doctest] Update to 2.4.6 (#20493)chausner
* Update doctest to 2.4.6 * Update CI baseline Co-authored-by: chausner <chausner@users.noreply.github.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
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-02-08[doctest] Update to v2.4.5 (#16121)Jackson
* Updated 'doctest' to v2.4.5 * Updated version for doctest to v2.4.5 Co-authored-by: Jackson Harmer <jackson.harmer@gm.com>
2020-07-06[doctest] update to 2.4.0 (#12239)JonLiu1993
2020-03-04[doctest] Update to version 2.3.7 (#10275)nicole mazzuca
2019-12-21[doctest] Update library to 2.3.6 (#9403)AMS21
2019-09-23[doctest] Update library to 2.3.5 (#8295)Ehsan
2019-08-16[doctest] Update library to 2.3.4unknown
2019-06-24[doctest] Update to 2.3.3 (#6998)myd7349
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-05-07[doctest] Update to 2.3.2 (#6331)zhihaoy
An critical fix to https://github.com/onqtam/doctest/issues/228
2019-03-24[doctest] Update to 2.3.1 (#5792)Daniel Marshall
2019-02-16[doctest] update to 2.2.3, export cmake config (#5386)kiwixz
* [doctest] update to 2.2.3, export cmake config * [doctest] do not build tests
2019-02-12Updates 2019.01.30Robert Schumacher
2019-01-09Updates 2018.12.14Robert Schumacher
2018-10-26Upgrades 2018.10.25Robert Schumacher
2018-09-19Upgrades 2018.09.18Robert Schumacher
2018-05-172018.05.17 updatesAlexander Karatarakis
2018-03-11[cimg][doctest][harfbuzz][libwebsockets] UpgradesRobert Schumacher
2018-02-23[azure-storage-cpp][cpp-redis][dirent][doctest][gdcm2][grpc][llvm][matio][sp ↵Robert Schumacher
dlog][yaml-cpp] Upgrades
2017-11-30[many ports] Updates to latestRobert Schumacher
2017-05-18[doctest] Switch to using vcpkg_from_github to support --headRobert Schumacher
2017-05-18[doctest] update description in CONTROL fileViktor Kirilov
2017-05-18[doctest] update port to version 1.2.0Viktor Kirilov
2016-10-26[doctest] Mark as header-only libraryAlexander Karatarakis
2016-09-28Introduce SOURCE_PATH to almost all portfilesAlexander Karatarakis
2016-09-25URL and MIRRORS are now URLSNinetainedo
Updated all portfiles accordingly.
2016-09-22Updated newly added portfiles to use SHA512Ninetainedo
Updated doctest Updated mpir
2016-09-21Add doctest 1.1.0Albert Fong