aboutsummaryrefslogtreecommitdiff
path: root/versions/y-
AgeCommit message (Collapse)Author
2021-10-04[yas] Update to 7.1.0 (#20497)chausner
* Update yas to 7.1.0 * Update CI baseline Co-authored-by: chausner <chausner@users.noreply.github.com>
2021-09-28[yoga] Update to 1.19.0 (#20330)chausner
* 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-09Bulk convert control files. (#19986)Billy O'Neal
``` 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-07[yaml-cpp] fix cmake and pkgconfig files (#19703)autoantwort
2021-08-10[yaml-cpp] update to 0.7.0 (#19272)autoantwort
* [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-07-22[YARA] update to 4.1.1 (#18977)henriblMSFT
* [YARA] update to 4.1.1 * Add baseline frrom .\vcpkg.exe x-add-version yara
2021-06-15[yyjson] Update to v0.3.0 (#18359)myd7349
* [yyjson] Update to 0.3.0 * [yyjson] vcpkg x-add-version yyjson
2021-06-10[yaml-cpp] Fix visibility attribute for ubuntu (#17728)Jafar Abdi
* 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-05-26[yomm2] new port (#17886)Fabien Péan
2021-05-21[yasm-tool] Migrate to Host Dependencies (#16478)nicole mazzuca
* [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[YARA] update to 4.1.0 (#17551)JonLiu1993
* [YARA] update to 4.1.0 * version update
2021-04-29[yyjson] Add new port (#17201)myd7349
* [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-01-21[vcpkg] Rename `port_versions` to `versions` (#15784)nicole mazzuca