diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-11-20 14:31:20 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-11-22 12:26:46 +0000 |
| commit | af0d4a2c432ebba4d1c110b6dff30ca477ded088 (patch) | |
| tree | 4df06510412d29e657a33e93e505c14e725a4f30 /meta/recipes-support/libgpg-error/libgpg-error_1.46.bb | |
| parent | e7d78bc6d80e8aecbde178f999c0ed47550e8d12 (diff) | |
| download | poky-af0d4a2c432ebba4d1c110b6dff30ca477ded088.tar.gz | |
libgpg-error: update 1.45 -> 1.46
(From OE-Core rev: edb25dbd3cafe553f716b079f6a5af077b73d18a)
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>
Diffstat (limited to 'meta/recipes-support/libgpg-error/libgpg-error_1.46.bb')
| -rw-r--r-- | meta/recipes-support/libgpg-error/libgpg-error_1.46.bb | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/meta/recipes-support/libgpg-error/libgpg-error_1.46.bb b/meta/recipes-support/libgpg-error/libgpg-error_1.46.bb new file mode 100644 index 0000000000..580fe208d4 --- /dev/null +++ b/meta/recipes-support/libgpg-error/libgpg-error_1.46.bb | |||
| @@ -0,0 +1,53 @@ | |||
| 1 | SUMMARY = "Small library that defines common error values for all GnuPG components" | ||
| 2 | DESCRIPTION = "Contains common error codes and error handling functions used by GnuPG, Libgcrypt, GPGME and more packages. " | ||
| 3 | HOMEPAGE = "http://www.gnupg.org/related_software/libgpg-error/" | ||
| 4 | BUGTRACKER = "https://bugs.g10code.com/gnupg/index" | ||
| 5 | |||
| 6 | LICENSE = "GPL-2.0-or-later & LGPL-2.1-or-later" | ||
| 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \ | ||
| 8 | file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \ | ||
| 9 | file://src/gpg-error.h.in;beginline=2;endline=18;md5=d82591bc81561f617da71e00ff4a9d79 \ | ||
| 10 | file://src/init.c;beginline=2;endline=17;md5=f01cdfcf747af5380590cfd9bbfeaaf7 \ | ||
| 11 | " | ||
| 12 | |||
| 13 | |||
| 14 | SECTION = "libs" | ||
| 15 | |||
| 16 | UPSTREAM_CHECK_URI = "https://gnupg.org/download/index.html" | ||
| 17 | SRC_URI = "${GNUPG_MIRROR}/libgpg-error/libgpg-error-${PV}.tar.bz2 \ | ||
| 18 | file://pkgconfig.patch \ | ||
| 19 | file://0001-Do-not-fail-when-testing-config-scripts.patch \ | ||
| 20 | file://run-ptest \ | ||
| 21 | " | ||
| 22 | |||
| 23 | SRC_URI[sha256sum] = "b7e11a64246bbe5ef37748de43b245abd72cfcd53c9ae5e7fc5ca59f1c81268d" | ||
| 24 | |||
| 25 | BINCONFIG = "${bindir}/gpg-error-config" | ||
| 26 | |||
| 27 | inherit autotools binconfig-disabled pkgconfig gettext multilib_header multilib_script ptest | ||
| 28 | |||
| 29 | RDEPENDS:${PN}-ptest:append = " make" | ||
| 30 | |||
| 31 | MULTILIB_SCRIPTS = "${PN}-dev:${bindir}/gpgrt-config" | ||
| 32 | |||
| 33 | CPPFLAGS += "-P" | ||
| 34 | |||
| 35 | do_install:append() { | ||
| 36 | # we don't have common lisp in OE | ||
| 37 | rm -rf "${D}${datadir}/common-lisp/" | ||
| 38 | oe_multilib_header gpg-error.h gpgrt.h | ||
| 39 | } | ||
| 40 | |||
| 41 | do_compile_ptest() { | ||
| 42 | oe_runmake -C tests buildtest-TESTS | ||
| 43 | } | ||
| 44 | |||
| 45 | do_install_ptest() { | ||
| 46 | install ${B}/tests/t-*[!\.o] ${D}${PTEST_PATH} | ||
| 47 | install ${B}/tests/Makefile ${D}${PTEST_PATH} | ||
| 48 | } | ||
| 49 | |||
| 50 | FILES:${PN}-dev += "${bindir}/gpg-error" | ||
| 51 | FILES:${PN}-doc += "${datadir}/libgpg-error/errorref.txt" | ||
| 52 | |||
| 53 | BBCLASSEXTEND = "native nativesdk" | ||
