From 6fd9efcf968334d778a8eb5a96f0c5a059229c6b Mon Sep 17 00:00:00 2001 From: Saul Wold Date: Sat, 28 Dec 2013 10:10:26 +0200 Subject: gdbm: upgrade to 1.11 (From OE-Core rev: 6c755add9e94d80d0f471eeecabe3de587136066) Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/recipes-support/gdbm/gdbm_1.10.bb | 35 ---------------------------------- meta/recipes-support/gdbm/gdbm_1.11.bb | 34 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 35 deletions(-) delete mode 100644 meta/recipes-support/gdbm/gdbm_1.10.bb create mode 100644 meta/recipes-support/gdbm/gdbm_1.11.bb (limited to 'meta/recipes-support') diff --git a/meta/recipes-support/gdbm/gdbm_1.10.bb b/meta/recipes-support/gdbm/gdbm_1.10.bb deleted file mode 100644 index c031f4a6b5..0000000000 --- a/meta/recipes-support/gdbm/gdbm_1.10.bb +++ /dev/null @@ -1,35 +0,0 @@ -SUMMARY = "Key/value database library with extensible hashing" -HOMEPAGE = "http://www.gnu.org/software/gdbm/" -SECTION = "libs" -LICENSE = "GPLv3" -LIC_FILES_CHKSUM = "file://COPYING;md5=241da1b9fe42e642cbb2c24d5e0c4d24" - -PR = "r3" - -SRC_URI = "${GNU_MIRROR}/gdbm/gdbm-${PV}.tar.gz" - -SRC_URI[md5sum] = "88770493c2559dc80b561293e39d3570" -SRC_URI[sha256sum] = "23f8134c5b94bbfb06d756a6b78f074fba6e6028cf2fe01341d40b26db773441" - -inherit autotools gettext lib_package - -# Needed for dbm python module -EXTRA_OECONF = "-enable-libgdbm-compat" - -# Stop presence of dbm/nbdm on the host contaminating builds -CACHED_CONFIGUREVARS += "ac_cv_lib_ndbm_main=no ac_cv_lib_dbm_main=no" - -BBCLASSEXTEND = "native nativesdk" - -do_install_append () { - # Create a symlink to ndbm.h and gdbm.h in include/gdbm to let other packages to find - # these headers - install -d ${D}${includedir}/gdbm - ln -sf ../ndbm.h ${D}/${includedir}/gdbm/ndbm.h - ln -sf ../gdbm.h ${D}/${includedir}/gdbm/gdbm.h -} - -PACKAGES =+ "${PN}-compat \ - " -FILES_${PN}-compat = "${libdir}/libgdbm_compat${SOLIBS} \ - " diff --git a/meta/recipes-support/gdbm/gdbm_1.11.bb b/meta/recipes-support/gdbm/gdbm_1.11.bb new file mode 100644 index 0000000000..de32e873cb --- /dev/null +++ b/meta/recipes-support/gdbm/gdbm_1.11.bb @@ -0,0 +1,34 @@ +SUMMARY = "Key/value database library with extensible hashing" +HOMEPAGE = "http://www.gnu.org/software/gdbm/" +SECTION = "libs" +LICENSE = "GPLv3" +LIC_FILES_CHKSUM = "file://COPYING;md5=241da1b9fe42e642cbb2c24d5e0c4d24" + + +SRC_URI = "${GNU_MIRROR}/gdbm/gdbm-${PV}.tar.gz" + +SRC_URI[md5sum] = "72c832680cf0999caedbe5b265c8c1bd" +SRC_URI[sha256sum] = "8d912f44f05d0b15a4a5d96a76f852e905d051bb88022fcdfd98b43be093e3c3" + +inherit autotools gettext lib_package + +# Needed for dbm python module +EXTRA_OECONF = "-enable-libgdbm-compat" + +# Stop presence of dbm/nbdm on the host contaminating builds +CACHED_CONFIGUREVARS += "ac_cv_lib_ndbm_main=no ac_cv_lib_dbm_main=no" + +BBCLASSEXTEND = "native nativesdk" + +do_install_append () { + # Create a symlink to ndbm.h and gdbm.h in include/gdbm to let other packages to find + # these headers + install -d ${D}${includedir}/gdbm + ln -sf ../ndbm.h ${D}/${includedir}/gdbm/ndbm.h + ln -sf ../gdbm.h ${D}/${includedir}/gdbm/gdbm.h +} + +PACKAGES =+ "${PN}-compat \ + " +FILES_${PN}-compat = "${libdir}/libgdbm_compat${SOLIBS} \ + " -- cgit v1.2.3-54-g00ecf