Gregor Jasny
|
b819a29dab
|
[prometheus-cpp] Update to version 0.13.0 (#20077)
|
2021-09-13 20:21:41 -07: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 |
|
Gregor Jasny
|
6fbb26ecdb
|
[prometheus-cpp] Update to version 0.12.3 (#17765)
Update prometheus-cpp to `0.12.2`. Locally tested all the features on macOS.
|
2021-05-13 13:18:02 -07:00 |
|
Gregor Jasny
|
fced4bef16
|
[prometheus-cpp] Update to version 0.12.2 (#16643)
* [prometheus-cpp] Update to version 0.12.2
* update version
Co-authored-by: Jonliu1993 <13720414433@163.com>
|
2021-03-15 11:29:47 -07:00 |
|
Gregor Jasny
|
33f1f0a34d
|
[prometheus-cpp] Update to version 0.12.1 (#16057)
* [prometheus-cpp] Update to version 0.12.1
* update version
Co-authored-by: Jonliu1993 <13720414433@163.com>
|
2021-02-11 00:30:31 -08:00 |
|
Gregor Jasny
|
9202f7fa54
|
[prometheus-cpp] Update to version 0.11.0 (#14792)
|
2020-11-30 10:43:22 -08:00 |
|
Billy O'Neal
|
09a647a526
|
Delete use of vcpkg_test_cmake and vcpkg_common_functions. (#13065)
|
2020-10-28 14:18:07 -07:00 |
|
Gregor Jasny
|
25990eecce
|
[prometheus-cpp] Update to version 0.10.0 (#13847)
|
2020-10-06 14:57:37 -07:00 |
|
Gregor Jasny
|
1d58bf5310
|
[prometheus-cpp] Update to version 0.9.0 (#10175)
|
2020-02-25 14:24:30 -08:00 |
|
Gregor Jasny
|
ff3105d09c
|
[prometheus-cpp] Update to version 0.8.0
|
2019-11-19 20:39:16 +01:00 |
|
Gregor Jasny
|
72657582cf
|
[prometheus-cpp] Update to version 0.7.0 (#6822)
* [prometheus-cpp] Update to version 0.7.0
* [prometheus-cpp] add a testing feature
|
2019-06-12 16:52:52 -07:00 |
|
Gregor Jasny
|
7436042045
|
Add prometheus-cpp (and civetweb) (#4694)
* [prometheus-cpp] Initial port
Closes: jupp0r/prometheus-cpp#130
* [civetweb] Initial port
* [prometheus-cpp][civetweb] Cleanup. Update to 0.6.0.
|
2018-11-14 11:16:07 -08:00 |
|