diff mbox series

[04/10] gpgme: disable python support (until upstream fixes 3.12 compatibility)

Message ID 20231215075210.3049785-4-alex@linutronix.de
State Accepted, archived
Commit 6d82ce8c16e724d5bba088b3a3d05c1690e47862
Headers show
Series [01/10] gobject-introspection: depend on setuptools to obtain distutils module | expand

Commit Message

Alexander Kanavin Dec. 15, 2023, 7:52 a.m. UTC
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.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 meta/recipes-support/gpgme/gpgme_1.23.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta/recipes-support/gpgme/gpgme_1.23.1.bb b/meta/recipes-support/gpgme/gpgme_1.23.1.bb
index e029b73a8f1..023cf894df2 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"
 # support. Since these bindings are currently not needed, we can disable them.
 DEFAULT_LANGUAGES = ""
 DEFAULT_LANGUAGES:class-target = "cpp"
-LANGUAGES ?= "${DEFAULT_LANGUAGES} python"
+LANGUAGES ?= "${DEFAULT_LANGUAGES}"
 
 PYTHON_INHERIT = "${@bb.utils.contains('LANGUAGES', 'python', 'setuptools3-base', '', d)}"