Commit Graph

10 Commits

Author SHA1 Message Date
jim wang
1517fd7ab8
[basisu] Update to 1.16.4 and update the github organization (#34408) 2023-10-12 20:30:04 -07:00
Adorjan White
46690e2ea5
[Basisu] Fix MinGW build failure (#27760)
* Patch Basisu to include <libgen.h> for MinGW

* Bump Basisu port version

* Fix unescaped backslash in path to gperf

* Use || instead of or, honestly I don't know why this worked

* Revert "Fix unescaped backslash in path to gperf"
Will make the change to fontconfig in another branch
This reverts commit 6894e4583a.

* Put portfile patches on separate lines

* Update basisu.json

* Update basisu.json

Co-authored-by: Lily Wang <94091114+LilyWangLL@users.noreply.github.com>
2022-11-15 13:51:23 -08:00
Osyotr
60e22b44bf
[basisu] Fix x64-linux-dynamic build, switch to vcpkg_cmake_configure (#25662)
Co-authored-by: Osyotr <8740768+Osyotr@users.noreply.github.com>
2022-07-11 15:38:12 -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
Lily
4694b885a2
[basisu, gppanel, msgpack11, nana, rapidcheck, folly] Fix std function build error (#11494) 2020-05-26 22:13:00 -07:00
Bradley Austin Davis
1f88f2098b [basisu] update from upstream repository, add support for pvrtc2 (#9425)
* [basisu] update from upstream repository, add support for pvrtc2

* [basisu] tweaks to portfile
2020-01-06 11:53:55 -08:00
Bradley Austin Davis
47531264b3 [basisu] Updating with latest upstream changes (#8289) 2019-09-22 22:59:04 -07:00
Bradley Austin Davis
fcd8a64596 [basisu] fix vcpkg version, merge upstream fixes (#7836) 2019-08-22 14:59:38 -07:00
Phoebe
bcff929875 Add PREFER_NINJA to many ports (#7468)
* Add PREFER_NINJA to many ports
2019-07-31 13:01:02 -07:00
Bradley Austin Davis
2af0f3f853 [basisu] initial port (#6995) 2019-07-18 14:01:08 -07:00