Ómar Högni Guðmarsson
c79b293665
[mp-units] Version 2.2.0 ( #39483 )
2024-06-26 20:20:16 -07:00
Jón Bjarni
9b9c16fa53
[mp-units] update to v2.1.1 ( #38791 )
...
Current version v2.1.0 cannot be compiled with gcc14, this minor version
fixes that
https://github.com/mpusz/mp-units/issues/575
- [x] Changes comply with the [maintainer
guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md ).
- [x] SHA512s are updated for each updated download.
- [ ] The "supports" clause reflects platforms that may be fixed by this
new version.
- [ ] Any fixed [CI
baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt )
entries are removed from that file.
- [ ] Any patches that are no longer applied are deleted from the port's
directory.
- [x] The version database is fixed by rerunning `./vcpkg x-add-version
--all` and committing the result.
- [x] Only one version is added to each modified port's versions file.
2024-05-17 14:09:10 -07:00
Ómar Högni Guðmarsson
4eb186792a
[mp-units] Update to version 2.1.0 ( #35689 )
...
* Update mp-units to 2.1.0
* vcpkg database update
* Patch updated
* Update database
2023-12-14 22:52:38 -08:00
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