Weihang Ding
|
2ab975eee9
|
[nanobench] Bump to 4.3.11 (#32925)
* [nanobench] Bump to 4.3.11
* update version database
|
2023-08-04 06:54:38 -07:00 |
|
xiaozhuai, Weihang Ding
|
e752415c5f
|
[nanobench] Revert to library version instead of header-only (#29566)
* [nanobench] Revert to library version instead of header-only
* update version database
|
2023-02-10 11:27:55 -08:00 |
|
xiaozhuai, Weihang Ding
|
ea0c13ec12
|
[nanobench] Bump to 4.3.10 (#29468)
* [nanobench] Bump to 4.3.10
* update version database
* apply suggested change
* update version database
|
2023-02-07 15:24:50 -08:00 |
|
Rémy Tassoux
|
0dfc2252b3
|
[nanobench] Update to 4.3.9 (#28186)
* [nanobench] Update to 4.3.9
* [nanobench] Update version files
* [nanobench] Add newline to the end of the file
* [nanobench] Update version files
|
2022-12-06 12:00:41 -08:00 |
|
Rémy Tassoux
|
8dd05eb74a
|
[nanobench] Update to 4.3.7 (#24225)
* [nanobench] Update to 4.3.7
* [nanobench] Update version files
* [nanobench] Fix build on window x86
* [nanobench] Update version files
* [nanobench] Add missing patch file
* [nanobench] Update version files
|
2022-04-19 08:32:34 -07:00 |
|
Rémy Tassoux
|
cfdeb0bc0d
|
[nanobench] Update to 4.3.6 (#23262)
* [nanobench] Update to 4.3.6
* [nanobench] Update version files
|
2022-02-28 14:10:58 -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 |
|
JonLiu1993
|
24626ee977
|
[nanobench] update to 4.3.0 (#14975)
|
2020-12-07 08:27:48 -08:00 |
|
Leonid Pospelov
|
da3be5d43b
|
[nanobench] Add new port (#11955)
* [nanobench] Add new port
* Update ports/nanobench/portfile.cmake
* Update ports/nanobench/portfile.cmake
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
|
2020-06-18 15:33:42 -07:00 |
|