Lily Wang
|
2b1d52a7a5
|
[many ports] Include functional to fix error C2039 and C2504 (#30946)
|
2023-04-26 21:05:37 -07:00 |
|
autoantwort
|
1fcceb35f2
|
[mathgl] missing internal dep (#31013)
Co-authored-by: jimwang118 https://github.com/jimwang118
|
2023-04-26 12:13:02 -07:00 |
|
Kai Pastor
|
797256da29
|
[mathgl] Update, fix cmake config, dependencies, linkage, usage (#28311)
* Fix mathgl confix fixup
* Control library linkage
* Fix dependencies
* Revise tool installation
* Install usage doc
* Reduce config warnings
* Don't pick up gettext
* Fix osx
* Cross-builds partially unsupported
* uwp unsupported
* Devendor getopt
* No _CRT_STDIO_ISO_WIDE_SPECIFIERS
* Fix mgllab
* Fix glut
* Cleanup
* Update to 8.0.1
* Control building of examples
* Fix examples
* Add vcpkg-ci-mathgl test port
* Update versions
* Trim qt5 dependency
* Trim non-trivial dependencies
* Fix cross builds
* CR changes
|
2023-01-07 00:59:30 -08:00 |
|
autoantwort
|
9a0bbbcb42
|
[mathgl] no absolute paths (#26320)
|
2022-08-12 13:55:29 -07:00 |
|
autoantwort
|
ba4aea932f
|
[mathgl] no absolute paths (#22363)
|
2022-08-10 13:23:49 -07:00 |
|
wtywtykk
|
9502b2044d
|
[mathgl] Update to v2.5 (#22081)
* [mathgl] Update to v2.5 and apply fixes
* Update CI baseline
|
2021-12-28 15:11:14 -08:00 |
|
autoantwort
|
b6208108a7
|
[mathgl] no absolute paths (#21719)
|
2021-11-29 17:01:04 -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 |
|
nicole mazzuca
|
68a74950d0
|
[vcpkg] Rename port_versions to versions (#15784)
|
2021-01-21 09:53:22 -08:00 |
|