-
Notifications
You must be signed in to change notification settings - Fork 2k
libsecret: fix requires in package_info() + modernize #8602
New issue
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
libsecret: fix requires in package_info() + modernize #8602
Conversation
All green in build 1 (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -105,6 +106,6 @@ def package_info(self): | |||
self.cpp_info.names["pkg_config"] = "libsecret-1" | |||
self.cpp_info.requires = ["glib::glib-2.0", "glib::gobject-2.0"] | |||
if self._use_gcrypt: | |||
self.cpp_info.requires.append("libgcrypt::gcrypt") | |||
self.cpp_info.requires.append("libgcrypt::libgcrypt") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
self.cpp_info.requires.append("libgcrypt::libgcrypt") |
This line was useless in the first place. the if
above has to be removed too
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, it's required due to self.cpp_info.requires = ["glib::glib-2.0", "glib::gobject-2.0"]
* fix libgcrypt requires in package_info() * modernize * bump dependencies
Specify library name and version: lib/1.0
closes #8601
conan-center hook activated.