vcpkg/ports/hareflow/vcpkg.json
Kevin Lalumiere b0d03b1a34
[hareflow] Minor update + add vcpkg_cmake_config_fixup (#38245)
# Changes

- Add `vcpkg_cmake_config_fixup()`. Without it, we had problems like
    ```shell
CMake Warning at $VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake:639
(_add_library):
Cannot generate a safe dependent library path for target CoveoTarget
because
      there is a cycle in the constraint graph:

dir 0 is [/builds/build/vcpkg_installed/arm64-linux-dynamic/debug/lib]
          dir 1 must precede it due to runtime library [libhareflow.so]
        dir 1 is [/builds/build/vcpkg_installed/arm64-linux-dynamic/lib]
dir 0 must precede it due to runtime library [libaws-cpp-sdk-sqs.so]

      Some of these libraries may not be found correctly.
    Call Stack (most recent call first):
      CoveoTarget/CMakeLists.txt:1 (add_library)
    ```
    because `IMPORTED_LOCATION_DEBUG` was missing.
- Minor update to the port from version 0.1.0 to 0.1.1. This integrates
a pull request by @BillyONeal (thanks!) where some missing headers were
added. Following this pull request, we don't need the patch anymore.

c.c. @yrivardmulrooney, @dalloriam: this might interest you.

# Housekeeping

- [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.

---------

Co-authored-by: Lily Wang <94091114+LilyWangLL@users.noreply.github.com>
2024-04-19 07:41:50 -04:00

43 lines
797 B
JSON

{
"name": "hareflow",
"version-semver": "0.1.1",
"description": "Hareflow: A RabbitMQ C++ stream client.",
"homepage": "https://github.com/coveooss/hareflow",
"license": "Apache-2.0",
"dependencies": [
{
"name": "boost-asio",
"features": [
"ssl"
],
"version>=": "1.78.0"
},
{
"name": "boost-endian",
"version>=": "1.78.0"
},
{
"name": "fmt",
"version>=": "8.0.1"
},
{
"name": "openssl",
"version>=": "3.0.2#3"
},
{
"name": "qpid-proton",
"version>=": "0.37.0#2"
},
{
"name": "vcpkg-cmake",
"host": true,
"version>=": "2021-02-28"
},
{
"name": "vcpkg-cmake-config",
"host": true,
"version>=": "2021-02-26"
}
]
}