Jón Bjarni
52432b5618
[mp-units] update to v2.0.0 ( #34190 )
2023-10-02 16:36:17 -07:00
Ómar Högni Guðmarsson
0cabd9b4bd
[mp-units] update v0.8.0 ( #32028 )
...
* Update mp-units V0.8.0
* Update database
* Add range-v3 as dependency
* Update database
* Add fmt and ranges as features that can be turned off
* Update database
* Try setting fmt and range-v3 as default on osx
* Update database
* Remove name
* Use feature names instead of dep names
* Update database
2023-06-21 22:41:20 -07:00
LE GARREC Vincent
d23405ca34
[mp-units] Configure only src folder ( #26085 )
...
* [mp-units] Configure only src folder
* [mp-units] Configure only src folder
+ add license
2022-08-02 23:17:02 -07:00
chausner
4d52db6bb8
[mp-units] Update to 0.7.0 ( #21405 )
...
* Update mp-units to 0.7.0
* Update CI baseline
Co-authored-by: chausner <chausner@users.noreply.github.com>
2021-11-15 14:18:12 -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
Alexander Neumann
aa042ad0fb
[mp-units] add new port ( #13416 )
...
* [mp-units] add new port
* fix config
2020-09-09 12:10:56 -07:00