Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/gdbm/
Date: Thu, 02 Sep 2021 16:26:47
Message-Id: 1630599994.bf73bd3a1c27d4539c9e5a096ab0a77ebb34a63e.polynomial-c@gentoo
1 commit: bf73bd3a1c27d4539c9e5a096ab0a77ebb34a63e
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 2 16:26:04 2021 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 2 16:26:34 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf73bd3a
7
8 sys-libs/gdbm: Bump to version 1.21
9
10 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
11
12 sys-libs/gdbm/Manifest | 1 +
13 sys-libs/gdbm/gdbm-1.21.ebuild | 52 ++++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 53 insertions(+)
15
16 diff --git a/sys-libs/gdbm/Manifest b/sys-libs/gdbm/Manifest
17 index e221d379cbd..b3895e3ea41 100644
18 --- a/sys-libs/gdbm/Manifest
19 +++ b/sys-libs/gdbm/Manifest
20 @@ -1,2 +1,3 @@
21 DIST gdbm-1.19.tar.gz 967861 BLAKE2B 92a1a9c461c763b01d7abced58800aa8db200ae746240c8ef8079a615d920efe95f0d805a8cfa63d8aa6bcbda637bcb07d98d630f58de5678b7633c3fcf6bf9b SHA512 118c5b8cdf74898bfb7c2100302fedf80096be017bf08e80a44486563cad5d93b93567622f2e7c7aceb72f30460504bd0b4ddfccf34df994ed65166e12ecd495
22 DIST gdbm-1.20.tar.gz 987628 BLAKE2B b0e01e63714b0485f9ac28f4a2260bf9309d2b3a87f6ccf6c9901619d383b6527d068b8614220eb6a6dec909fbf3fab5162a6c67bb928cfedaef36f1df26d0df SHA512 5f2fbd4318259e5b879ea2bff09e22defbb4e566ebbe11c44ac5b5369fd00745d7ed9f72ec1206153027eba245c4ee4a515a8ec6d67f84ec477483e72753590b
23 +DIST gdbm-1.21.tar.gz 1005982 BLAKE2B 1f9b04507601b9660a9a81edc29e9b7c0d9adececf21e372670bcf1acf3d0551d858af3e7cf9202b460691cc851ca6dfcc5014ae28161b06f31c9442d3a9fe96 SHA512 b2a31802d1af9f97b24d3dd01cb048bab4a8e748297f1b70851c0342400dde4281242b7f80bd92a36035e22398d240d131b550ab444ee838a077522a6921fa43
24
25 diff --git a/sys-libs/gdbm/gdbm-1.21.ebuild b/sys-libs/gdbm/gdbm-1.21.ebuild
26 new file mode 100644
27 index 00000000000..36ea91f14e6
28 --- /dev/null
29 +++ b/sys-libs/gdbm/gdbm-1.21.ebuild
30 @@ -0,0 +1,52 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit autotools multilib-minimal
37 +
38 +DESCRIPTION="Standard GNU database libraries"
39 +HOMEPAGE="https://www.gnu.org/software/gdbm/"
40 +SRC_URI="mirror://gnu/gdbm/${P}.tar.gz"
41 +
42 +LICENSE="GPL-3"
43 +SLOT="0/6" # libgdbm.so version
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
45 +IUSE="+berkdb nls +readline static-libs"
46 +
47 +DEPEND="
48 + readline? ( sys-libs/readline:0=[${MULTILIB_USEDEP}] )
49 +"
50 +RDEPEND="${DEPEND}"
51 +
52 +PATCHES=(
53 + "${FILESDIR}"/${PN}-1.18.1-gettext.patch #696838
54 +)
55 +
56 +src_prepare() {
57 + default
58 + eautoreconf
59 +}
60 +
61 +multilib_src_configure() {
62 + # gdbm doesn't appear to use either of these libraries
63 + export ac_cv_lib_dbm_main=no ac_cv_lib_ndbm_main=no
64 +
65 + local myeconfargs=(
66 + --includedir="${EPREFIX}"/usr/include/gdbm
67 + $(use_enable berkdb libgdbm-compat)
68 + $(use_enable nls)
69 + $(use_enable static-libs static)
70 + $(use_with readline)
71 + )
72 + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
73 +}
74 +
75 +multilib_src_install_all() {
76 + einstalldocs
77 +
78 + if ! use static-libs ; then
79 + find "${ED}" -name '*.la' -delete || die
80 + fi
81 + mv "${ED}"/usr/include/gdbm/gdbm.h "${ED}"/usr/include/ || die
82 +}