aboutsummaryrefslogtreecommitdiff
path: root/ports/librdkafka
AgeCommit message (Collapse)Author
2021-09-09Bulk convert control files. (#19986)Billy O'Neal
``` 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-05-18[librdkafka] Upgrade up to 1.7 (#17937)Alexander Smyslov
* Add files via upload * [new port] avro-cpp * add boost-format * remove comments * remove comments * Upgrade librdkafka17 * Upgrade librdkafka17 * Fix remarks * Fix remarks Co-authored-by: Alexander Smyslov <aleksandr.smyslov@libertexgroup.com> Co-authored-by: Smyslov Alexander Nikolayevich <aleksandr.smyslov@fxclub.com>
2020-08-05[librdkafka] Update to 1.5.0 (#12731)JonLiu1993
* [librdkafka] Update to 1.5.0 * Update portfile.cmake Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
2020-07-30[librdkafka] Upgrade to 1.4.4 (#12095)alexander-smyslov
* Add files via upload * [new port] avro-cpp * add boost-format * remove comments * remove comments * upgrade librdkafka to 1.4.4 * Delete CONTROL * Delete install.patch * Delete portfile.cmake * upgrade librdkafka to 1.4.4 Co-authored-by: Alexander Smyslov <aleksandr.smyslov@libertexgroup.com> Co-authored-by: Smyslov Alexander Nikolayevich <aleksandr.smyslov@fxclub.com>
2019-09-27[librdkafka] Add vcpkg-cmake-wrapper.cmake (#8355)Phoebe
* [librdkafka] Add vcpkg-cmake-wrapper.cmake * Update changes
2019-09-23[librdkafka] Update library to 1.2.0 (#8307)Ehsan
2019-08-13[vcpkg_check_features] Set output variable explicitly and allow ↵Victor Romero
reverse-logic check (#7558) * [vcpkg_check_features] Set OUT_EXPAND_OPTIONS explicitly * [vcpkg_check_features] Allow reverse logic for features * [vcpkg_check_features] Document new parameters * [vcpkg_check_features] Remove unnecessary logging * Do not create variables for each feature only set OUT_FEATURE_OPTIONS * Improve documentation * Update ports that use vcpkg_check_features() * Missing documentation updates * [pcl] Fix tools feature * [opencv,opencv4] Fix usage of vcpkg_check_features() * [opencv4] Fix typo
2019-08-08Librdkafka snappy (#7469)Rodrigo Trida
* Adding snappy support. * Building without win 32 config. * Restoring original state. * Changing version and replacing tab with spaces. * Remove snappy as a build-depends The snappy feature does not require any external sources.
2019-07-02[librdkafka] Update to 1.1.0myd7349
[librdkafka] Use vcpkg_check_features [librdkafka] Remove default feature
2019-06-14[librdkafka] Update to 2019-06-13myd7349
2019-05-28[librdkafka] Update to 2019-05-27myd7349
2019-05-27[librdkafka] Turn on tests temporarilymyd7349
2019-05-24[librdkafka] Fix patch file namemyd7349
2019-05-11[librdkafka] Fix ARM build errormyd7349
2019-05-07[librdkafka] Updatemyd7349
2019-05-07[librdkafka] Update to 2019-05-07myd7349
2019-05-07[librdkafka] Update to 2019-04-30myd7349
2019-05-07[librdkafka] Update to 2019-04-16myd7349
2019-05-07[librdkafka] Rename package to librdkafka (#5927)myd7349