We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In cmake files, we have
set(PACKAGE_VERSION "4.5.0")
Where 0.11.0 is expected (4.5.0 being the soname version)
Result, in RPM packaging we have (auto-detected from file content)
$ rpm -q --provides librabbitmq-devel cmake(rabbitmq-c) = 4.5.0 pkgconfig(librabbitmq) = 0.11.0 ...
Which is also inconsistent with pkg-config provided version.
All other libraries use the proper version
Example:
$ rpm -q --provides libbson-devel cmake(bson-1.0) = 1.17.4 ... $ rpm -q --provides qt5-qtbase-devel cmake(Qt5) = 5.15.2 cmake(Qt5AccessibilitySupport) = 5.15.2 cmake(Qt5Concurrent) = 5.15.2 ... $ rpm -q --provides libzip-devel cmake(libzip) = 1.7.3 ...
The text was updated successfully, but these errors were encountered:
Fix alanxz#666 bad PACKAGE_VERSION
2a9ae30
20bebf4
No branches or pull requests
In cmake files, we have
set(PACKAGE_VERSION "4.5.0")
Where 0.11.0 is expected (4.5.0 being the soname version)
Result, in RPM packaging we have (auto-detected from file content)
Which is also inconsistent with pkg-config provided version.
All other libraries use the proper version
Example:
The text was updated successfully, but these errors were encountered: