Aleksei Shpakovskii
42301df395
[ms-gsl] add license ( #35086 )
2023-12-07 12:22:39 -08:00
dmitrykobets-msft
aad1aa28bf
[ms-gsl] Upgrade GSL to 4.0.0 ( #22791 )
...
* Bump GSL to 4.0.0
* Update version database
* Fix typo
* Add missing file
* Update version database
* GSL portfile properly expose Microsoft.GSL package
* Update version database
* Respond to review
* Update version database
* Update version database v2
* Update release ref
* Update version database
* Respond to review
* Update version database
* Add patch to SEAL to link to correct GSL version
* Update version database
* Update version database v2
2022-02-01 14:53:10 -08:00
Billy O'Neal
b295670e4b
Bulk convert control files. ( #19986 )
...
```
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-09 01:24:04 -07:00
denvercoder21
9ccf1f4e34
[ms-gsl] Update to 3.1.0 ( #13844 )
2020-10-06 13:32:53 -07:00
Nicholas Londey
6219c61b51
[ms-gsl] Update to 3.0.1 ( #10993 )
...
* Updated version of MS GSL to 3.0.1
* Fixed config path for vcpkg_fixup_cmake_targets
2020-04-23 21:14:12 -07:00
Farwaykorse
acff7d4aa6
[ms-gsl] Update to v3.0.0 ( #10831 )
...
* [ms-gsl] Update to 2019-04-13
* [ms-gsl] Update to v3.0.0
* [ms-gsl] apply suggested changes
2020-04-17 14:00:35 -07:00
Jordan Maples [MSFT]
f143ecf520
[ms-gsl] Update version to v3.0.0 ( #10872 )
...
* update control for ms-gsl to v3.0.0
* adding ref and hash
2020-04-17 13:59:41 -07:00
Farwaykorse
fbdce55199
[ms-gsl] Update to v2.1.0, the "end of 2019 snapshot" ( #9624 )
...
* [ms-gsl] update to 2019-11-19, v2.1.0 end of 2019 snapshot
* [coroutine] Update for compatibility with ms-gsl
2020-01-27 14:02:37 -08:00
Robert Schumacher
1550b9e71b
[many ports] Updates 2019.07.09 ( #7217 )
...
* [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-08-24 13:43:57 -07:00
pravic
18b029a5e3
[WIP] Add a Homepage URL entry for vcpkg ports ( #2933 )
...
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-06-15 16:54:47 -07:00
Robert Schumacher
516d10bb68
[many ports] Updates 2019.04.19 ( #6155 )
...
* [many ports] Updates 2019.04.19
2019-04-30 09:20:18 -07:00
Robert Schumacher
1207951b7b
Updates 2019.01.30
2019-02-12 17:38:31 -08:00
Farwaykorse
3b258a7171
ms-gsl update to support clang-cl ( #5162 )
2019-01-17 11:42:11 -08:00
Robert Schumacher
bb1bb1c94a
Updates 2018.12.14
2019-01-09 12:27:19 -08:00
Robert Schumacher
ab567d90b7
Upgrades for 2018.11.08
2018-11-20 15:14:12 -08:00
Robert Schumacher
64a7483a4a
Upgrades 2018.09.18
2018-09-19 14:13:12 -07:00
Robert Schumacher
7e5bb652fb
Upgrades 2018.08.03
2018-09-18 02:11:05 -07:00
Robert Schumacher
c3d34e7d8e
Upgrades 2018.06.31
2018-08-03 00:09:21 -07:00
Robert Schumacher
a650bad523
Updates 2018.06.15
2018-06-15 22:16:58 -07:00
Robert Schumacher
2a0bf9c488
Upgrades for 2018.06.12
2018-06-12 21:14:14 -07:00
Alexander Karatarakis
6ad96b7e7a
2018.05.17 updates
2018-05-17 22:56:05 -07:00
Robert Schumacher
fcb303331e
[abseil][aws-sdk-cpp][folly][jsonnet][ms-gsl][mujs][openimageio][re2][rs-core-lib][thrift][unicorn-lib][zeromq] Upgrades
...
[robin-map] Initial commit
2018-05-14 17:56:34 -07:00
Robert Schumacher
8eac561107
[abseil][aws-sdk-cpp][directxmesh][directxtex][directxtk][discord-rpc][exiv2][folly][jsonnet][libuv][ms-gsl][nuklear][rocksdb][rs-core-lib][thrift][unicorn][zeromq] Upgrades
2018-05-01 15:49:11 -07:00
Robert Schumacher
adb8edddbb
[abseil][exiv2][jsonnet][ms-gsl][nuklear][re2][rs-core-lib][thrift][zeromq][zziplib] Upgrades
2018-03-17 20:10:17 -07:00
Robert Schumacher
9574b71cab
[abseil][clara][fdk-aac][jsonnet][ms-gsl][nuklear][re2][rs-core-lib][thrift][tiny-dnn][yaml-cpp] Updates
2018-03-08 11:12:04 -08:00
Robert Schumacher
d739a2aa7f
[ms-gsl] Update
2018-03-03 19:39:13 -08:00
Robert Schumacher
c7616b902b
[many ports] Upgrades
2018-02-26 15:10:56 -08:00
Roelf-Jilling
89683742be
[ms-gsl] update to 2017-12-04
2017-12-06 12:55:03 +01:00
Roelf-Jilling
438dc50389
[ms-gsl] simplify portfile
2017-12-06 12:55:03 +01:00
Roelf-Jilling
ef2ebab09b
[ms-gsl] update to current
2017-11-09 21:12:59 +01:00
Robert Schumacher
d6599a56e9
[ms-gsl][gnusl][gsl] Rename gnusl->gsl, gsl->ms-gsl.
2017-05-03 11:25:35 -07:00