Matthew Oliver
5836b8d378
[ignition] Delete unused patches. ( #28610 )
...
* [ignition] Delete unused patches.
* Update port versions
* Update versions.
* fixup versions.
2022-12-29 23:57:35 -08: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
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
Jack·Boos·Yu
e1aaeb2356
[vcpkg baseline][many ports] Fix build failures ( #22180 )
...
* [vcpkg baseline][omplapp] Fix dependencies, add features
* version
* [sdformat9] Add the required dependency urdfdom-headers
* [ignition-math6] Fix build error
* version
* [botan] Fix the pkgconfig again
* version
2021-12-28 13:24:18 -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
Antoine Hoarau
7fbbc599ec
[ignition] Updates on various pkgs 🤖 ( #14324 )
2020-11-05 22:52:44 -08:00
Silvio Traversaro
57e65ee144
[ignition-math6] Add new port 🤖 ( #11232 )
...
* [ignition-math6] Add new port
* [ignition-cmake2] Bump version to 2.2.0
2020-05-08 14:37:26 -07:00