summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/gdbm/gdbm_1.19.bb
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2021-11-02 09:42:47 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-11-05 11:41:00 +0000
commitbc2e9475a99ae3cd84f1d68fdc164b7cefe9191b (patch)
tree4308e06447aee7cbf47f1febe69c50325ae08504 /meta/recipes-support/gdbm/gdbm_1.19.bb
parent3e9c4801216111496acffdfdccf1deae3b3d6b96 (diff)
downloadpoky-bc2e9475a99ae3cd84f1d68fdc164b7cefe9191b.tar.gz
gdbm: upgrade 1.19 -> 1.22
(From OE-Core rev: f379e20f8e35ce1ddaf0669051b9c82c39a882ec) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/gdbm/gdbm_1.19.bb')
-rw-r--r--meta/recipes-support/gdbm/gdbm_1.19.bb46
1 files changed, 0 insertions, 46 deletions
diff --git a/meta/recipes-support/gdbm/gdbm_1.19.bb b/meta/recipes-support/gdbm/gdbm_1.19.bb
deleted file mode 100644
index 1d1a0c8dd1..0000000000
--- a/meta/recipes-support/gdbm/gdbm_1.19.bb
+++ /dev/null
@@ -1,46 +0,0 @@
1SUMMARY = "Key/value database library with extensible hashing"
2DESCRIPTION = "Library of database functions that use extensible hashing \
3and work similar to the standard UNIX dbm. These routines are provided \
4to a programmer needing to create and manipulate a hashed database."
5HOMEPAGE = "http://www.gnu.org/software/gdbm/"
6SECTION = "libs"
7LICENSE = "GPLv3"
8LIC_FILES_CHKSUM = "file://COPYING;md5=241da1b9fe42e642cbb2c24d5e0c4d24"
9
10
11SRC_URI = "${GNU_MIRROR}/gdbm/gdbm-${PV}.tar.gz \
12 file://run-ptest \
13 file://ptest.patch \
14 "
15
16SRC_URI[md5sum] = "aeb29c6a90350a4c959cd1df38cd0a7e"
17SRC_URI[sha256sum] = "37ed12214122b972e18a0d94995039e57748191939ef74115b1d41d8811364bc"
18
19inherit autotools gettext texinfo lib_package ptest
20
21# Needed for dbm python module
22EXTRA_OECONF = "--enable-libgdbm-compat --without-readline"
23
24# Stop presence of dbm/nbdm on the host contaminating builds
25CACHED_CONFIGUREVARS += "ac_cv_lib_ndbm_main=no ac_cv_lib_dbm_main=no"
26
27BBCLASSEXTEND = "native nativesdk"
28
29do_install:append () {
30 # Create a symlink to ndbm.h and gdbm.h in include/gdbm to let other packages to find
31 # these headers
32 install -d ${D}${includedir}/gdbm
33 ln -sf ../ndbm.h ${D}/${includedir}/gdbm/ndbm.h
34 ln -sf ../gdbm.h ${D}/${includedir}/gdbm/gdbm.h
35}
36
37RDEPENDS:${PN}-ptest += "diffutils ${PN}-bin"
38
39do_compile_ptest() {
40 oe_runmake -C tests buildtests
41}
42
43PACKAGES =+ "${PN}-compat \
44 "
45FILES:${PN}-compat = "${libdir}/libgdbm_compat${SOLIBS} \
46 "