diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2021-11-01 22:25:28 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-11-03 10:12:42 +0000 |
commit | 574856a3d6fe9d9b25d99ee2e633e6a5373ab9a0 (patch) | |
tree | c8f734410f63b91162fc0bc0bac91bd802128730 /meta | |
parent | 18e7c413514679d16cea0112e56c09f581f86e81 (diff) | |
download | poky-574856a3d6fe9d9b25d99ee2e633e6a5373ab9a0.tar.gz |
opkg: use oe.qa.add_message istead of package_qa_add_message
Since the following commit, package_qa_add_message is no longer
available, use oe.qa.add_message instead.
"""
commit f0ad152ef4cc15c042bc9eeefb6af096d054b220
Author: Mike Crowe <mac@mcrowe.com>
Date: Fri Oct 15 15:39:53 2021 +0100
lib/oe/qa,insane: Move extra error handling functions to library
Extract package_qa_write_error, package_qa_handle_error and
package_qa_add_message functions from insane.bbclass to lib/oe/qa.py and
drop the package_qa_ prefixes.
...
"""
(From OE-Core rev: d181f8c3798165808b1f529650ca47aae7730d9d)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/opkg/opkg_0.4.5.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/opkg/opkg_0.4.5.bb b/meta/recipes-devtools/opkg/opkg_0.4.5.bb index ef18ccf63a..f5c7d11191 100644 --- a/meta/recipes-devtools/opkg/opkg_0.4.5.bb +++ b/meta/recipes-devtools/opkg/opkg_0.4.5.bb | |||
@@ -67,7 +67,7 @@ def package_qa_check_openssl_deprecation (package, d, messages): | |||
67 | 67 | ||
68 | pkgconfig = (d.getVar("PACKAGECONFIG") or "").split() | 68 | pkgconfig = (d.getVar("PACKAGECONFIG") or "").split() |
69 | if pkgconfig and 'openssl' in pkgconfig: | 69 | if pkgconfig and 'openssl' in pkgconfig: |
70 | package_qa_add_message(messages, 'openssl-deprecation', '"openssl" in opkg.bb PACKAGECONFIG. Feed signature checking with OpenSSL will be deprecated in the next opkg release. Consider using GPG checking instead.') | 70 | oe.qa.add_message(messages, 'openssl-deprecation', '"openssl" in opkg.bb PACKAGECONFIG. Feed signature checking with OpenSSL will be deprecated in the next opkg release. Consider using GPG checking instead.') |
71 | sane = False | 71 | sane = False |
72 | 72 | ||
73 | return sane | 73 | return sane |