Commit Graph

5 Commits

Author SHA1 Message Date
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