Commit Graph

7 Commits

Author SHA1 Message Date
Jia Yue Hua
4be80ed896
[clickhouse-cpp] update to 2.5.1 (#36295)
* [clickhouse-cpp] update to 2.5.1

* [clickhouse-cpp] update to 2.5.1
2024-01-22 10:58:01 -08:00
Jia Yue Hua
9997c0aa76
[clickhouse-cpp] update to 2.4.0 (#34082) 2023-10-03 20:33:13 -07:00
Thomas1664
ca79ebe4a4
[clickhouse-cpp] Update to 2.2.1 (#27250)
* [clickhouse-cpp] Update to 2.2.1

* add feature openssl

* Fix patch

* use absl::int128

* Fix patch

* version

* fix UWP

* version
2022-10-18 18:38:59 -07:00
JonLiu1993
d6150f960c
[clickhouse-cpp] update to 1.5.0 (#18330)
* [clickhouse-cpp] update to 1.2.2

* update version

* [clickhouse-cpp] update to 1.5.0

* update version

* fix error c4996

* update version

* merge baseline.json

* update baseline.json

* add Add patch description

* update version

* Add patch comment

* update version
2021-09-17 07:53:30 -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
Billy O'Neal
09a647a526
Delete use of vcpkg_test_cmake and vcpkg_common_functions. (#13065) 2020-10-28 14:18:07 -07:00
zi-m
22389a4690 [clickhouse-cpp] Add new port (#7880)
* cityhash

* clickhouse-cpp

* add LZ4_DISABLE_DEPRECATE_WARNINGS

* add CXX_STANDARD 11

* remove 'usage' file

* tabs -> spaces

* use version of 2019-05-22 instead of patching code

* fix: remove ports/cityhash/usage
2019-09-26 12:56:46 -07:00