aboutsummaryrefslogtreecommitdiff
path: root/ports/gsl
AgeCommit message (Collapse)Author
2021-09-22[gsl] Update to 2.7 (#20268)misirlou-tg
* Update gsl to version 2.7 * Updating portfile to remove deprecated functions These were the github-actions bot recommendations * Quoting string parameters, fixing version * Run x-add-version
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-05-28[vcpkg.cmake] Cleanup every special case in the find_package override (#18047)Alexander Neumann
* move boost out of the toolchain * move icu out of the toolchain * remove CURL from the toolchain (was already unreachable?) * remove gsl from toolchain * remove grpc from toolchain * version stuff * fix indent and missing endif() * version stuff * Revert changes to vcpkg.cmake * push port version * version stuff
2020-04-09handle multiline arguments in makefile correctlyAlexander Neumann
2020-04-09[gsl] update to 2.6Alexander Neumann
2020-01-06[many ports] Add mirror (#9123)NancyLi1013
2019-10-07[vcpkg] fatal_error when patch fails to apply (#8087)Stefano Sinigardi
vcpkg will now fail on failure to apply patches except when using `--head`.
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2018-03-07[gsl] Fix finding release libs in debug configurations. Fixes #2982.Robert Schumacher
2017-09-09vcpkg_configure_cmake (and _meson) now embed debug symbols within static ↵Alexander Karatarakis
libs (/Z7)
2017-07-25[gsl] update to 2.4Mikhail Paulyshka
2017-07-21[gsl] Bump version numberSilvio Traversaro
2017-07-21[gsl] Add a "d" debug postfixSilvio Traversaro
See https://github.com/Microsoft/vcpkg/issues/1196#issuecomment-305751793 for details
2017-05-31Bump GSL version and don't define DLL_EXPORT for gslcblasMartin Müller
2017-05-31Fix GSL port so that CMake can find itMartin Müller
- Remove lib prefix from library - Generate separate library for the cblas part
2017-05-03[ms-gsl][gnusl][gsl] Rename gnusl->gsl, gsl->ms-gsl.Robert Schumacher
2017-05-03[gsl] Update to 8b320e4f5Robert Schumacher
2016-10-26[gsl] 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-22Replaced everything concerning MD5 with SHA512Ninetainedo
2016-09-20[gsl] Initial additionNeil MacIntosh