From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/lmdb/
Date: Sun, 21 Jul 2024 01:12:13 +0000 (UTC) [thread overview]
Message-ID: <1721524254.0eb4e39e25ff997a71d5447f2f3a70ce774202a7.sam@gentoo> (raw)
commit: 0eb4e39e25ff997a71d5447f2f3a70ce774202a7
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 21 01:10:54 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 21 01:10:54 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eb4e39e
dev-db/lmdb: add 0.9.33
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-db/lmdb/Manifest | 1 +
dev-db/lmdb/lmdb-0.9.33.ebuild | 66 ++++++++++++++++++++++++++++++++++++++++++
2 files changed, 67 insertions(+)
diff --git a/dev-db/lmdb/Manifest b/dev-db/lmdb/Manifest
index 3de8f185e0a8..f1d02b78dde9 100644
--- a/dev-db/lmdb/Manifest
+++ b/dev-db/lmdb/Manifest
@@ -1,2 +1,3 @@
DIST openldap-LMDB_0.9.31.tar.gz 145086 BLAKE2B 8df437c27cb9d40b71a8e9f516c503676dade2342c9d618dcfff6081bf0034f67d1216a6a25a364e7dacd588acb2e254b98486efade12307fa3ad7977be5ed54 SHA512 318aa89b7e39f98f636dba01620f866ddc255d81a2d4def8a9d9fdd80878608db1ac7b60bde58e954aba802d94df42786a9cd00d0c7e11646f09fd5d64821ac4
DIST openldap-LMDB_0.9.32.tar.gz 149188 BLAKE2B 8c15585a10644b791e54d3344c91ad1d86da0af06b02361685ec365309c8188dfd253d7a10f8708cd7f22363f99cc71aaaa170cc3349183f06d0765216cc19ef SHA512 3b8d45085f7a679e27f4b1d8b0a62531d4897d27c2a17f424462da07bd88f6c8fe8d64f866203c9e301b353dff1036fc48d9801917e97cfe7d3fd28f2d918d7a
+DIST openldap-LMDB_0.9.33.tar.gz 149281 BLAKE2B 0750f392fdcb2fd6459943d3d8e8268a6210b25559c882c7705349ad6f68b9dfd71636d01c06b2101fe6aea8deeb21534c3aa06aeeac1a0e925fd4d0d9ef41ca SHA512 57404b35adb5136fcdf60552c2dd2626b9753868f2707d3279725e08145cee3be0d311189b2c6ef6879f25cf09962e6b423c70c8a2e09ef1b368948e873d92b5
diff --git a/dev-db/lmdb/lmdb-0.9.33.ebuild b/dev-db/lmdb/lmdb-0.9.33.ebuild
new file mode 100644
index 000000000000..192658950b08
--- /dev/null
+++ b/dev-db/lmdb/lmdb-0.9.33.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit flag-o-matic multilib multilib-minimal toolchain-funcs
+
+MY_P="${PN^^}_${PV}"
+
+DESCRIPTION="An ultra-fast, ultra-compact key-value embedded data store"
+HOMEPAGE="https://symas.com/lmdb/technical/"
+SRC_URI="https://git.openldap.org/openldap/openldap/-/archive/${MY_P}/openldap-${MY_P}.tar.gz"
+S="${WORKDIR}/openldap-${MY_P}/libraries/liblmdb"
+
+LICENSE="OPENLDAP"
+SLOT="0/${PV}"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
+IUSE="static-libs"
+
+src_prepare() {
+ default
+ if [[ ${CHOST} == *-darwin* && ${CHOST#*-darwin} -lt 10 ]] ; then
+ # posix_memalign isn't available before 10.6, but on OSX
+ # malloc is always aligned for any addressable type
+ sed -i -e '/(__APPLE__)/a#define HAVE_MEMALIGN 1\n#define memalign(X,Y) malloc(X)' mdb.c || die
+ fi
+ multilib_copy_sources
+}
+
+multilib_src_configure() {
+ local soname="-Wl,-soname,liblmdb$(get_libname 0)"
+ if [[ ${CHOST} == *-darwin* ]] ; then
+ soname="-dynamiclib -install_name ${EPREFIX}/usr/$(get_libdir)/liblmdb$(get_libname 0)"
+ replace-flags -O[123456789] -O1
+ fi
+ sed -i -e "s!^CC.*!CC = $(tc-getCC)!" \
+ -e "s!^CFLAGS.*!CFLAGS = ${CFLAGS}!" \
+ -e "s!^AR.*!AR = $(tc-getAR)!" \
+ -e "s!^SOEXT.*!SOEXT = $(get_libname)!" \
+ -e "/^prefix/s!/usr/local!${EPREFIX}/usr!" \
+ -e "/^libdir/s!lib\$!$(get_libdir)!" \
+ -e "s!shared!shared ${soname}!" \
+ "Makefile" || die
+}
+
+multilib_src_compile() {
+ emake LDLIBS+=" -pthread"
+}
+
+multilib_src_install() {
+ emake DESTDIR="${D}" install
+
+ mv "${ED}"/usr/$(get_libdir)/liblmdb$(get_libname) \
+ "${ED}"/usr/$(get_libdir)/liblmdb$(get_libname 0) || die
+ dosym liblmdb$(get_libname 0) /usr/$(get_libdir)/liblmdb$(get_libname)
+
+ insinto /usr/$(get_libdir)/pkgconfig
+ doins "${FILESDIR}/lmdb.pc"
+ sed -i -e "s!@PACKAGE_VERSION@!${PV}!" \
+ -e "s!@prefix@!${EPREFIX}/usr!g" \
+ -e "s!@libdir@!$(get_libdir)!" \
+ "${ED}"/usr/$(get_libdir)/pkgconfig/lmdb.pc || die
+
+ if ! use static-libs; then
+ rm "${ED}"/usr/$(get_libdir)/liblmdb.a || die
+ fi
+}
next reply other threads:[~2024-07-21 1:12 UTC|newest]
Thread overview: 107+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-21 1:12 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-28 1:41 [gentoo-commits] repo/gentoo:master commit in: dev-db/lmdb/ Sam James
2024-11-28 1:41 Sam James
2024-11-28 1:41 Sam James
2024-11-28 1:41 Sam James
2024-11-25 22:38 Sam James
2024-11-23 16:27 Sam James
2024-11-23 16:20 Michał Górny
2024-05-08 7:03 Eray Aslan
2024-02-15 8:27 Eray Aslan
2024-02-14 16:29 Ionen Wolkens
2024-01-29 8:04 Eray Aslan
2024-01-29 8:04 Eray Aslan
2024-01-28 20:00 Arthur Zamarin
2024-01-28 20:00 Arthur Zamarin
2024-01-28 20:00 Arthur Zamarin
2024-01-28 18:57 Sam James
2024-01-28 18:57 Sam James
2024-01-28 18:08 Eray Aslan
2023-07-17 21:47 Sam James
2023-05-28 6:20 Eray Aslan
2023-05-06 16:08 Arthur Zamarin
2023-05-05 15:45 Arthur Zamarin
2023-05-05 15:45 Arthur Zamarin
2023-05-05 15:45 Arthur Zamarin
2023-05-05 15:45 Arthur Zamarin
2023-05-05 15:45 Arthur Zamarin
2023-05-01 4:15 Sam James
2023-05-01 1:53 Sam James
2023-02-10 1:05 Sam James
2022-05-13 12:19 WANG Xuerui
2022-01-10 15:14 James Le Cuirot
2022-01-05 9:57 Eray Aslan
2021-10-07 6:37 Sam James
2021-09-07 0:00 Sam James
2021-09-04 21:39 Sam James
2021-08-29 17:57 Sam James
2021-08-29 17:57 Sam James
2021-08-29 17:52 Sam James
2021-08-29 10:02 Agostino Sarubbo
2021-08-29 10:00 Agostino Sarubbo
2021-08-28 18:16 Sam James
2021-03-22 7:19 Eray Aslan
2021-03-20 13:41 Sergei Trofimovich
2021-03-15 21:55 Sam James
2021-03-15 13:43 Sam James
2021-03-15 7:10 Sam James
2021-03-15 6:32 Sam James
2021-03-15 6:32 Sam James
2021-02-18 20:14 Sam James
2021-02-18 19:57 Sergei Trofimovich
2021-02-16 15:31 Fabian Groffen
2021-02-16 14:32 Fabian Groffen
2021-02-12 22:16 Sam James
2021-02-12 22:16 Sam James
2021-02-10 16:51 Eray Aslan
2021-02-06 23:49 Sam James
2021-02-06 0:03 Sam James
2021-02-05 15:26 Sam James
2021-02-05 15:25 Sam James
2021-01-06 18:43 Fabian Groffen
2020-12-31 13:18 Fabian Groffen
2020-12-28 14:46 Eray Aslan
2020-12-27 14:05 Fabian Groffen
2019-12-02 11:05 Mikle Kolyada
2019-07-24 14:14 Lars Wendler
2019-05-21 6:16 Eray Aslan
2019-05-05 18:41 Mikle Kolyada
2019-04-24 12:36 Tobias Klausmann
2019-04-10 23:06 Aaron Bauman
2019-03-16 22:55 Sergei Trofimovich
2019-03-16 14:41 Mikle Kolyada
2019-03-15 10:14 Mikle Kolyada
2019-03-11 22:42 Sergei Trofimovich
2019-03-10 22:17 Sergei Trofimovich
2019-03-07 21:50 Thomas Deutschmann
2019-03-07 17:36 Mikle Kolyada
2019-03-05 21:18 Sergei Trofimovich
2019-02-03 19:40 Andreas Sturmlechner
2019-01-08 13:45 Fabian Groffen
2018-10-26 0:52 Thomas Deutschmann
2018-10-25 17:15 Mikle Kolyada
2018-07-15 11:45 Mart Raudsepp
2018-06-12 13:25 Maxim Koltsov
2018-06-03 10:01 Mikle Kolyada
2018-03-29 8:05 Eray Aslan
2018-03-28 1:18 Matt Turner
2017-12-16 20:58 Fabian Groffen
2017-01-25 17:56 Fabian Groffen
2017-01-25 13:53 Fabian Groffen
2016-09-30 5:06 Eray Aslan
2016-09-29 4:11 Jeroen Roovers
2016-07-09 19:49 Zac Medico
2016-05-27 10:50 Tobias Klausmann
2016-03-30 18:33 Markus Meier
2016-03-20 11:53 Agostino Sarubbo
2016-03-14 22:13 Agostino Sarubbo
2016-02-12 8:26 Eray Aslan
2016-02-12 8:26 Eray Aslan
2016-02-12 8:26 Eray Aslan
2016-02-12 8:26 Eray Aslan
2016-02-12 8:26 Eray Aslan
2016-01-11 20:46 Robin H. Johnson
2015-12-25 21:01 Patrice Clement
2015-12-25 21:01 Patrice Clement
2015-09-18 5:24 Eray Aslan
2015-08-11 12:46 Eray Aslan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1721524254.0eb4e39e25ff997a71d5447f2f3a70ce774202a7.sam@gentoo \
--to=sam@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox