summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/gpgme/gpgme_1.20.0.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/gpgme/gpgme_1.20.0.bb')
-rw-r--r--meta/recipes-support/gpgme/gpgme_1.20.0.bb83
1 files changed, 83 insertions, 0 deletions
diff --git a/meta/recipes-support/gpgme/gpgme_1.20.0.bb b/meta/recipes-support/gpgme/gpgme_1.20.0.bb
new file mode 100644
index 0000000000..dc5b58d7c3
--- /dev/null
+++ b/meta/recipes-support/gpgme/gpgme_1.20.0.bb
@@ -0,0 +1,83 @@
1SUMMARY = "High-level GnuPG encryption/signing API"
2DESCRIPTION = "GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG easier for applications. It provides a High-Level Crypto API for encryption, decryption, signing, signature verification and key management"
3HOMEPAGE = "http://www.gnupg.org/gpgme.html"
4BUGTRACKER = "https://bugs.g10code.com/gnupg/index"
5
6LICENSE = "GPL-2.0-or-later & LGPL-2.1-or-later"
7LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
8 file://COPYING.LESSER;md5=bbb461211a33b134d42ed5ee802b37ff \
9 file://src/gpgme.h.in;endline=23;md5=2f0bf06d1c7dcb28532a9d0f94a7ca1d \
10 file://src/engine.h;endline=22;md5=4b6d8ba313d9b564cc4d4cfb1640af9d"
11
12UPSTREAM_CHECK_URI = "https://gnupg.org/download/index.html"
13SRC_URI = "${GNUPG_MIRROR}/gpgme/${BP}.tar.bz2 \
14 file://0001-Revert-build-Make-gpgme.m4-use-gpgrt-config-with-.pc.patch \
15 file://0001-pkgconfig.patch \
16 file://0002-gpgme-lang-python-gpg-error-config-should-not-be-use.patch \
17 file://0003-Correctly-install-python-modules.patch \
18 file://0004-python-import.patch \
19 file://0005-gpgme-config-skip-all-lib-or-usr-lib-directories-in-.patch \
20 file://0006-fix-build-path-issue.patch \
21 file://0007-python-Add-variables-to-tests.patch \
22 file://0008-do-not-auto-check-var-PYTHON.patch \
23 file://0001-use-closefrom-on-linux-and-glibc-2.34.patch \
24 file://0001-posix-io.c-Use-off_t-instead-of-off64_t.patch \
25 file://0001-autogen.sh-remove-unknown-in-version.patch \
26 "
27
28SRC_URI[sha256sum] = "25a5785a5da356689001440926b94e967d02e13c49eb7743e35ef0cf22e42750"
29
30PYTHON_DEPS = "${@bb.utils.contains('LANGUAGES', 'python', 'swig-native', '', d)}"
31
32DEPENDS = "libgpg-error libassuan ${PYTHON_DEPS}"
33RDEPENDS:${PN}-cpp += "libstdc++"
34
35RDEPENDS:python3-gpg += "python3-unixadmin"
36
37BINCONFIG = "${bindir}/gpgme-config"
38
39# Default in configure.ac: "cl cpp python qt"
40# Supported: "cl cpp python python2 python3 qt"
41# python says 'search and find python2 or python3'
42
43# Building the C++ bindings for native requires a C++ compiler with C++11
44# support. Since these bindings are currently not needed, we can disable them.
45DEFAULT_LANGUAGES = ""
46DEFAULT_LANGUAGES:class-target = "cpp"
47LANGUAGES ?= "${DEFAULT_LANGUAGES} python"
48
49PYTHON_INHERIT = "${@bb.utils.contains('LANGUAGES', 'python', 'setuptools3-base', '', d)}"
50
51EXTRA_OECONF += '--enable-languages="${LANGUAGES}" \
52 --disable-gpgconf-test \
53 --disable-gpg-test \
54 --disable-gpgsm-test \
55 --disable-g13-test \
56 --disable-lang-python-test \
57'
58
59inherit autotools texinfo binconfig-disabled pkgconfig ${PYTHON_INHERIT} python3native multilib_header
60
61export PKG_CONFIG='pkg-config'
62
63BBCLASSEXTEND = "native nativesdk"
64
65PACKAGES =+ "${PN}-cpp python3-gpg"
66
67FILES:${PN}-cpp = "${libdir}/libgpgmepp.so.*"
68FILES:python3-gpg = "${PYTHON_SITEPACKAGES_DIR}/*"
69FILES:${PN}-dev += "${datadir}/common-lisp/source/gpgme/*"
70
71CFLAGS:append:libc-musl = " -D__error_t_defined "
72CACHED_CONFIGUREVARS:libc-musl = "ac_cv_sys_file_offset_bits=no"
73
74do_configure:prepend () {
75 # Else these could be used in preference to those in aclocal-copy
76 rm -f ${S}/m4/gpg-error.m4
77 rm -f ${S}/m4/libassuan.m4
78 rm -f ${S}/m4/python.m4
79}
80
81do_install:append() {
82 oe_multilib_header gpgme.h
83}