talregev
a463dc85e4
update inginition-common3 to 3.16.0 ( #33873 )
2023-09-20 10:23:47 -07:00
Matthew Oliver
10c0262c26
[ignition-common3] Update to 3.14.1. ( #28495 )
...
* [ignition-cmake2] Update to 2.16.
* [ignition-math6] Update to 6.9.2.
* [ignition-common] Update to 3.14.1.
* Update versions.
2022-12-27 01:01:00 -08:00
Jack·Boos·Yu
91393faf12
[ignition-cmake2/ignition-modularscripts/ignition-common3] Add options, support pkgconfig and fix usage for common3-graph ( #25021 )
...
* [ignition-common3] Fix usage for graph
* version
* Apply suggestion
* version
* Add option OPTIONS, add pkgconfig support, refactor function option declarations
* Remove cmake find module installation, add pkgconfig support and fix PRIVATE_FOR limit
* Apply suggestions, fix dependency libxml2
* version
2022-06-16 17:23:05 -07:00
LilyWangLL
1e24ff5074
[ignition-*] Update hashes ( #24618 )
...
* [ignition-cmake0, ignition-cmake2] Update hash
* x-add-version
* Fix other ignition SHAs and use vcpkg-port-config.cmake modern machinery.
* add license
* x-add-version
* format vcpkg.json
* x-add-version
* Add FILE_DISAMBIGUATOR
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2022-05-12 16:22:01 -07:00
autoantwort
b13e043b70
[libuuid] disallow on osx ( #22306 )
...
The `uuid/uuid.h` header conflicts with system libraries on osx; some system headers include `<uuid/uuid.h>`, intending to get the macOS system headers.
2022-01-12 11:33:38 -08: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