jim wang
e5456a24d7
[x265] Fix linking static libraries when on x64-windows ( #33436 )
...
* Generate Imath.pc
* update version
* add dependency imath minizip-ng
* updata version
* update version
* remove static lib
* update version
2023-08-31 13:06:37 -07:00
Chuck Walbourn
5d2a0a9814
Update xbox supports expressions for failing ports with copyleft licenses ( #31770 )
...
* Xbox triplets should not support ports with only copyleft licenses
* Reverted ports that build with xbox currently
* Fix conflict and rebase
* Update baseline
* Update baseline
2023-06-15 14:49:00 -07:00
Francisco Facioni
2112a10f4a
x265 works on arm linux ( #28458 )
2022-12-28 13:09:32 -08:00
Jack·Boos·Yu
571a0551eb
[opus/x265] Fix version in pkgconfig ( #26389 )
...
* [opus/x265] Fix version in pkgconfig
* version-string->version
* version
* x265 license
* version
* version
2022-08-18 13:01:55 -07:00
Kai Pastor
ac68609a51
[x265] Fix dependencies, modernize ( #25747 )
...
* [x265] No unguarded NUMA dependency
* [x265] Keep non-standard runtime libs in pc file
* Rewrite assembly options
* Modernize and cleanup
* Update versions
2022-07-13 13:17:56 -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