aboutsummaryrefslogtreecommitdiff
path: root/ports/ms-gsl
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-10-06[ms-gsl] Update to 3.1.0 (#13844)denvercoder21
2020-04-23[ms-gsl] Update to 3.0.1 (#10993)Nicholas Londey
* Updated version of MS GSL to 3.0.1 * Fixed config path for vcpkg_fixup_cmake_targets
2020-04-17[ms-gsl] Update to v3.0.0 (#10831)Farwaykorse
* [ms-gsl] Update to 2019-04-13 * [ms-gsl] Update to v3.0.0 * [ms-gsl] apply suggested changes
2020-04-17[ms-gsl] Update version to v3.0.0 (#10872)Jordan Maples [MSFT]
* update control for ms-gsl to v3.0.0 * adding ref and hash
2020-01-27[ms-gsl] Update to v2.1.0, the "end of 2019 snapshot" (#9624)Farwaykorse
* [ms-gsl] update to 2019-11-19, v2.1.0 end of 2019 snapshot * [coroutine] Update for compatibility with ms-gsl
2019-08-24[many ports] Updates 2019.07.09 (#7217)Robert Schumacher
* [many ports] Upgrades 2019.07.11 * Re-generate patches and fix build errors. * [manyport]Fix build errors. * Fix avro-c and console-bridge failures, revert curl and tesseract * fix botan failure * Fix build errors and undo some ports upgrades. * [aws-c-common,chipmunk,cxxopts,grpc]Fix build errors * Fix build errors. * [angle]Undo upgrade changes. * [directxtk]Fix UWP build error (#7233) * Revert leptonica since it cause tesseract failed * Revert jsonnet * [google-cloud-cpp] Disable parallel configure due to source directory writes * [many ports] Undo undesired changes * [bitsery] Fix indentation * [avro-c][aws-c-common][graphite2] Convert line endings to minimize PR diff * fix console-bridge and remove usockets unused patch * update ogre patch * [many ports] Revert unneeded changes w.r.t. master. Add missing write to console-bridge. * [console-bridge] Fix export macro * [avro-c] Revert upgrade; split to #7875 * [avro-c] Complete previous revert
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-04-30[many ports] Updates 2019.04.19 (#6155)Robert Schumacher
* [many ports] Updates 2019.04.19
2019-02-12Updates 2019.01.30Robert Schumacher
2019-01-17ms-gsl update to support clang-cl (#5162)Farwaykorse
2019-01-09Updates 2018.12.14Robert Schumacher
2018-11-20Upgrades for 2018.11.08Robert Schumacher
2018-09-19Upgrades 2018.09.18Robert Schumacher
2018-09-18Upgrades 2018.08.03Robert Schumacher
2018-08-03Upgrades 2018.06.31Robert Schumacher
2018-06-15Updates 2018.06.15Robert Schumacher
2018-06-12Upgrades for 2018.06.12Robert Schumacher
2018-05-172018.05.17 updatesAlexander Karatarakis
2018-05-14[abseil][aws-sdk-cpp][folly][jsonnet][ms-gsl][mujs][openimageio][re2][rs-cor ↵Robert Schumacher
e-lib][thrift][unicorn-lib][zeromq] Upgrades [robin-map] Initial commit
2018-05-01[abseil][aws-sdk-cpp][directxmesh][directxtex][directxtk][discord-rpc][exiv2 ↵Robert Schumacher
][folly][jsonnet][libuv][ms-gsl][nuklear][rocksdb][rs-core-lib][thrift][unicorn][zeromq] Upgrades
2018-03-17[abseil][exiv2][jsonnet][ms-gsl][nuklear][re2][rs-core-lib][thrift][zeromq][ ↵Robert Schumacher
zziplib] Upgrades
2018-03-08[abseil][clara][fdk-aac][jsonnet][ms-gsl][nuklear][re2][rs-core-lib][thrift] ↵Robert Schumacher
[tiny-dnn][yaml-cpp] Updates
2018-03-03[ms-gsl] UpdateRobert Schumacher
2018-02-26[many ports] UpgradesRobert Schumacher
2017-12-06[ms-gsl] update to 2017-12-04Roelf-Jilling
2017-12-06[ms-gsl] simplify portfileRoelf-Jilling
2017-11-09[ms-gsl] update to currentRoelf-Jilling
2017-05-03[ms-gsl][gnusl][gsl] Rename gnusl->gsl, gsl->ms-gsl.Robert Schumacher