Simon Perkins
0ccb3d1140
[gsl] fix gsl x64-linux-dynamic build by guarding win32 string replaces ( #31504 )
...
* Guard win32 string replaces
* update version
* Use target_compile_definitions for GSL_DLL
* Update version
* Revert "Use target_compile_definitions for GSL_DLL"
This reverts commit 9b228c100a
.
* Address review comments
* Update version
* Revert "Address review comments"
This reverts commit d6e911a87b
.
* Address review comments
* Remove target_compile_definitions
* #ifndef WIN32 -> #ifndef _WIN32
* Update version
* Update port-version from 2 to 3
* ./vcpkg x-add-version --all
* Restore version 2 port-version in version/g-/gsl.json
2023-05-22 14:56:05 -07:00
autoantwort
5b11232d00
[many-ports] Don't use deprecated functions (autogenerated) ( #26981 )
...
* [libuvc,qt5-virtualkeyboard] remove duplicated dependency entry
* [many-ports] don't use deprecated functions (autogenerated)
* atkmm: Fix license.
gperftools: Reformat vcpkg_check_features call.
gsl: Fix license.
libpff: Fix license.
pangomm: Fix license.
qtbase: Revert, only comment changes.
type-lite: Reformat vcpkg_check_features and actually use the feature options.
---------
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2023-04-13 09:13:15 -07:00
Mengna Li
ed6dc3a43f
[gsl] install pkgconfig file ( #24285 )
2022-04-21 14:51:10 -07:00
مهدي شينون (Mehdi Chinoune)
b69d6a2d0c
[gsl] update to 2.7.1 ( #21809 )
2021-12-02 19:53:42 -08:00
misirlou-tg
79e8d1d56d
[gsl] Update to 2.7 ( #20268 )
...
* 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-22 13:21:58 -07: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
Alexander Neumann
0de461216d
[vcpkg.cmake] Cleanup every special case in the find_package override ( #18047 )
...
* 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
2021-05-28 10:00:20 -07:00
nicole mazzuca
68a74950d0
[vcpkg] Rename port_versions
to versions
( #15784 )
2021-01-21 09:53:22 -08:00