| Age | Commit message (Collapse) | Author |
|
* Update yas to 7.1.0
* Update CI baseline
Co-authored-by: chausner <chausner@users.noreply.github.com>
|
|
* 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>
|
|
```
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
```
|
|
|
|
* [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
|
|
* [YARA] update to 4.1.1
* Add baseline frrom .\vcpkg.exe x-add-version yara
|
|
* [yyjson] Update to 0.3.0
* [yyjson] vcpkg x-add-version yyjson
|
|
* Replace YAML_CPP_DLL with 1 iff the library is build as shared library & target is windows
* Update port version
* Run x-add-version
|
|
|
|
* [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
|
|
* [YARA] update to 4.1.0
* version update
|
|
* [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>
|
|
|