Commit Graph

13 Commits

Author SHA1 Message Date
chausner
0240958532
[yas] Update to 7.1.0 (#20497)
* Update yas to 7.1.0

* Update CI baseline

Co-authored-by: chausner <chausner@users.noreply.github.com>
2021-10-04 17:13:23 -07:00
chausner
7d7653bcd2
[yoga] Update to 1.19.0 (#20330)
* Update yoga to 1.19.0

* Update CI baseline

* Change version-string to version-semver

Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>

* Update git-tree hash

* Update yoga.json

* Use version instead of version-semver as yoga doesn't document that they follow semver.

Co-authored-by: chausner <chausner@users.noreply.github.com>
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-28 11:48:38 -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
autoantwort
8307923c6a
[yaml-cpp] fix cmake and pkgconfig files (#19703) 2021-09-07 14:17:18 -07:00
autoantwort
be456649fd
[yaml-cpp] update to 0.7.0 (#19272)
* [yaml-cpp] update to 0.7.0

* [opencolorio] update to 2.0.1

* [openimageio] Update to 2.2.17.0

* [pystring] move header to pystring subfolder

* add version files
2021-08-10 01:11:41 -07:00
henriblMSFT
7fac0dc144
[YARA] update to 4.1.1 (#18977)
* [YARA] update to 4.1.1

* Add baseline frrom .\vcpkg.exe x-add-version yara
2021-07-22 14:23:35 -07:00
myd7349
d955e62d7e
[yyjson] Update to v0.3.0 (#18359)
* [yyjson] Update to 0.3.0

* [yyjson] vcpkg x-add-version yyjson
2021-06-15 11:53:18 -07:00
Jafar Abdi
805a02fe99
[yaml-cpp] Fix visibility attribute for ubuntu (#17728)
* Replace YAML_CPP_DLL with 1 iff the library is build as shared library & target is windows

* Update port version

* Run x-add-version
2021-06-10 11:26:29 -07:00
Fabien Péan
5c847acb56
[yomm2] new port (#17886) 2021-05-26 10:33:43 -07:00
nicole mazzuca
49b67d9cb8
[yasm-tool] Migrate to Host Dependencies (#16478)
* [yasm-tool] Fix usage of port to be host dependencies

This allows mpg123, nettle, and gmp to support non-x86 windows manifest mode

* fix gmp

* oops

* versions update
2021-05-21 11:56:32 -07:00
JonLiu1993
81610d74c8
[YARA] update to 4.1.0 (#17551)
* [YARA] update to 4.1.0

* version update
2021-05-21 01:16:52 -07:00
myd7349
2f03bdc3f0
[yyjson] Add new port (#17201)
* [yyjson] Add new port

* [yyjson] Add version file

* [yyjson] Patch CMakeLists.txt

* [yyjson] Overwrite version

* [yyjson] Copy pdb files

* [yyjson] Overwrite version

* [yyjson] Fix UWP build

* [yyjson] Overwrite version

* [yyjson] Fix patch encoding

* [yyjson] Overwrite version

* [yyjson] Update to 2021-04-12

* [yyjson] Bump version

* [yyjson] Update versions/y-/yyjson.json

Co-authored-by: Adam Johnson <AdamJohnso@gmail.com>

* [yyjson] Modernize

* [yyjson] Overwrite version

* [yyjson] Modernize

* [yyjson] Overwrite version

Co-authored-by: Adam Johnson <AdamJohnso@gmail.com>
2021-04-29 14:02:08 -07:00
nicole mazzuca
68a74950d0
[vcpkg] Rename port_versions to versions (#15784) 2021-01-21 09:53:22 -08:00