Commit Graph

14 Commits

Author SHA1 Message Date
Kai Pastor
0810c85cf6
[zziplib] Update to 0.13.73 (#37043) 2024-03-19 13:06:23 -07:00
autoantwort
45c8b198b7
[ogre-next] vulkan no osx (#35968) 2024-01-03 18:27:03 -08:00
Kai Pastor
04f7d34c26
[ogre-next] Fixup 2.3.3 (#35344) 2023-12-23 03:52:06 -05:00
talregev
08c4e71048
upgrade ogre-next 2.3.3 and fix osx (#34945) 2023-12-05 12:23:44 -08:00
talregev
472c17c838
[ogre next] update to 2.3.2 (#34902)
* update ogre-next to 2.3.2

* fix gz-cmake3 for windows

* Fix pc static

* fix RenderSystems include

* remove conflict with ogre
2023-11-06 10:36:32 -08:00
talregev
e8539b06a1
[ogre-next] fix dependencies (#34617)
* fix ogre-next dependencies

* fix ogre-next
2023-10-27 19:24:15 -07:00
talregev
5c82f7e637
fix ogre-next dependencies (#34463) 2023-10-17 14:57:01 -07:00
talregev
407d2ec015
fix ogre-next (#34039) 2023-09-28 23:13:40 -07:00
Cheney Wang
830b8a9e34
[ogre-next] Fix config error and build error (#33439) 2023-08-30 13:44:54 -07:00
Cheney Wang
b2a22ff59a
[ogre-next] Update to 2.3.1 (#25889) 2022-07-20 15:44:03 -07:00
Frank
303eebf8af
[ogre-next] update to v2.3.0 (#22058)
* [ogre-next] update to v2.2.5

* update version

* update patch

* update version

* delete FLAGES

* update version

* update patch

* update version

* update EOL Conversion in portfile.cmake

* update version

* update patch and set OGRE_COPY_DEPENDENCIES=OFF

* update version

* update

* update version

* udpate features

* update version

* fix path

* update version

* fix path

* update version

* update

* update version

* Add new feature to fix build on triplet static

* update version

* update

* overwrite version

* update to 2.3.0

* update version

* update message

* overwrite version

* delete unused feature

* update version

* add license

* overwrite version
2022-03-31 10:58:32 -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
fea5813728
[ogre/ogre-next] Add conflict error message (#11325)
* [ogre/ogre-next] Add conflict error message

* [ogre] Fix build error

* [ogre/ogre-next] Fix deprecated function
2020-05-15 16:39:54 -07:00
zi-m
9bf809b610 [ogre-next] Add new port (#8677)
* ogre-next

* add rename_config_cmake.patch

* add fix_find_package_sdl2.patch

* Update ports/ogre-next/portfile.cmake

Co-Authored-By: Victor Romero <romerosanchezv@gmail.com>

* Use vcpkg_check_features to simplify the portfile a little bit (thanks to @vicroms)

* add features in CONTROL file

* add "Building steps for ogre-next[d3d9]"
2019-11-01 13:54:48 -07:00