diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2023-12-15 08:52:04 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-12-21 10:38:29 +0000 |
commit | 143686fe486993f9df6c20a0b5774836e798130f (patch) | |
tree | 821ae3dbd476058eda412e58d61bb3f0929bd9c3 | |
parent | 398b979449fba2a9471b4ada8cb9efee32c1c3f0 (diff) | |
download | poky-143686fe486993f9df6c20a0b5774836e798130f.tar.gz |
gpgme: disable python support (until upstream fixes 3.12 compatibility)
The only consumer in oe-core was dnf, and latest dnf releases no longer
use it. There are no consumers in meta-oe.
gpgme's python support is generally a pain to support, and lags
behind upstream python versions. It was enabled in
commit fc6c81da79897c95a9c81960a1dee49517f2562a
Author: Mark Hatle <mark.hatle@windriver.com>
Date: Tue Mar 7 12:54:33 2017 -0600
gpgme: Fix issue building for the target
which wasn't prompted by any consumer requiring python,
but rather to correct build errors in absence of specific
configuration passed in.
(From OE-Core rev: 6d82ce8c16e724d5bba088b3a3d05c1690e47862)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/gpgme/gpgme_1.23.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/gpgme/gpgme_1.23.1.bb b/meta/recipes-support/gpgme/gpgme_1.23.1.bb index e029b73a8f..023cf894df 100644 --- a/meta/recipes-support/gpgme/gpgme_1.23.1.bb +++ b/meta/recipes-support/gpgme/gpgme_1.23.1.bb | |||
@@ -43,7 +43,7 @@ BINCONFIG = "${bindir}/gpgme-config" | |||
43 | # support. Since these bindings are currently not needed, we can disable them. | 43 | # support. Since these bindings are currently not needed, we can disable them. |
44 | DEFAULT_LANGUAGES = "" | 44 | DEFAULT_LANGUAGES = "" |
45 | DEFAULT_LANGUAGES:class-target = "cpp" | 45 | DEFAULT_LANGUAGES:class-target = "cpp" |
46 | LANGUAGES ?= "${DEFAULT_LANGUAGES} python" | 46 | LANGUAGES ?= "${DEFAULT_LANGUAGES}" |
47 | 47 | ||
48 | PYTHON_INHERIT = "${@bb.utils.contains('LANGUAGES', 'python', 'setuptools3-base', '', d)}" | 48 | PYTHON_INHERIT = "${@bb.utils.contains('LANGUAGES', 'python', 'setuptools3-base', '', d)}" |
49 | 49 | ||