vcpkg/versions/b-/brpc.json

95 lines
2.3 KiB
JSON
Raw Normal View History

{
"versions": [
[brpc] support arm architecture (#37061) <!-- If your PR fixes issues, please note that here by adding "Fixes #NNNNNN." for each fixed issue on separate lines. --> <!-- If you are still working on the PR, open it as a Draft: https://github.blog/2019-02-14-introducing-draft-pull-requests/. --> - [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. - [x] The "supports" clause reflects platforms that may be fixed by this new version. - [x] Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file. - [x] 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. <!-- If this PR adds a new port, please uncomment and fill out this checklist: - [ ] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [ ] The name of the port matches an existing name for this component on https://repology.org/ if possible, and/or is strongly associated with that component on search engines. - [ ] Optional dependencies are resolved in exactly one way. For example, if the component is built with CMake, all `find_package` calls are REQUIRED, are satisfied by `vcpkg.json`'s declared dependencies, or disabled with [CMAKE_DISABLE_FIND_PACKAGE_Xxx](https://cmake.org/cmake/help/latest/variable/CMAKE_DISABLE_FIND_PACKAGE_PackageName.html). - [ ] The versioning scheme in `vcpkg.json` matches what upstream says. - [ ] The license declaration in `vcpkg.json` matches what upstream says. - [ ] The installed as the "copyright" file matches what upstream says. - [ ] The source code of the component installed comes from an authoritative source. - [ ] The generated "usage text" is accurate. See [adding-usage](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/examples/adding-usage.md) for context. - [ ] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [ ] Only one version is in the new port's versions file. - [ ] Only one version is added to each modified port's versions file. END OF NEW PORT CHECKLIST (delete this line) -->
2024-03-09 04:26:14 +08:00
{
"git-tree": "3fd0bfb30a96852a7a92e0526c411ef9f95bed83",
"version": "1.6.1",
"port-version": 2
},
{
"git-tree": "5460a635b3cfa64a9857a378a798ded7f60abc74",
"version": "1.6.1",
"port-version": 1
},
{
"git-tree": "e8671f4e4a1523a2f58b71e7413ad0b8dab7c1c4",
"version": "1.6.1",
"port-version": 0
},
{
"git-tree": "a2cedfb3411d57def85e6337b08570e518c2f992",
"version": "1.6.0",
"port-version": 0
},
2023-07-25 01:59:05 +08:00
{
"git-tree": "8c3039a58b23207cc87a0a938dbd943ef521b235",
"version": "1.5.0",
"port-version": 0
},
2023-02-13 23:41:36 +08:00
{
"git-tree": "a75ac2b64eae33d6ba6fc7494f6ea02d7156a23c",
"version": "1.4.0",
"port-version": 0
},
2023-02-09 05:43:34 +08:00
{
"git-tree": "14c66f674d539da678233b47be27be7e7f419901",
"version": "1.3.0",
"port-version": 0
},
{
"git-tree": "2ed01cdb3f05cfc779d3162de470045bda69f985",
"version": "1.2.0",
"port-version": 1
},
{
"git-tree": "d75b4f1f3f1bf6072c3095fe34f29e86c19ec4d5",
"version": "1.2.0",
"port-version": 0
},
{
"git-tree": "c88bb19658430803981fbfa4ec45432bed88310b",
"version": "1.1.0",
"port-version": 0
},
{
"git-tree": "bcff3231352f577720f51a99dbf9ecf0132ebcba",
"version": "0.9.7",
"port-version": 7
},
{
"git-tree": "f658cec9384935d01319d2725a039da7cb5e6c77",
"version-string": "0.9.7",
"port-version": 6
},
{
"git-tree": "eb37098c32016db48b15a29bd31b08087c7b5d0e",
"version-string": "0.9.7",
"port-version": 5
},
{
"git-tree": "7c6f7c8a882730bd20874fb5832081105a169c7a",
"version-string": "0.9.7",
"port-version": 4
},
{
"git-tree": "42b5a413e49655d73b772efa7642eefff429b4c1",
"version-string": "0.9.7",
"port-version": 3
},
{
"git-tree": "0b89b1bee5f50f8bdb551ae2373feb51b144fbc2",
"version-string": "0.9.7",
"port-version": 2
},
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 16:24:04 +08:00
{
"git-tree": "8d3ba620eff30244f2ca27af0814f78ce9049308",
"version-string": "0.9.7",
"port-version": 1
},
{
"git-tree": "d3461edb01babdda0886b7173a7fba194e30d149",
"version-string": "0.9.7",
"port-version": 0
}
]
}