Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Yann E. MORIN" <yann.morin.1998@free.fr>
To: Francois Perrad <francois.perrad@gadz.org>
Cc: buildroot@busybox.net, i Mauro Condarelli <mc5686@mclink.it>,
	Emile Cormier <emile.cormier.jr@gmail.com>
Subject: Re: [Buildroot] [PATCH 1/3] package/lmdb: new package
Date: Wed, 3 Apr 2024 22:57:27 +0200	[thread overview]
Message-ID: <Zg3Ct67Am5lo_rh-@landeda> (raw)
In-Reply-To: <20240403085424.1650628-1-francois.perrad@gadz.org>

François, All,

+Mauro for pyhon-lmdb
+Emile for python-zlmdb

On 2024-04-03 10:54 +0200, Francois Perrad spake thusly:
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
[--SNIP--]
> diff --git a/package/lmdb/Config.in b/package/lmdb/Config.in
> new file mode 100644
> index 0000000000..f4ae9f3103
> --- /dev/null
> +++ b/package/lmdb/Config.in
> @@ -0,0 +1,13 @@
> +config BR2_PACKAGE_LMDB
> +	bool "lmdb"
> +	depends on BR2_TOOLCHAIN_HAS_THREADS
> +	help
> +	  OpenLDAP Lightning Memory-Mapped Database
> +
> +	  LMDB is compact, fast, powerful, and robust and implements
> +	  a simplified variant of the BerkeleyDB (BDB) API.
> +
> +	  https://symas.com/lmdb/
> +
> +comment "lmdb needs a toolchain w/ threads"
> +	depends on !BR2_TOOLCHAIN_HAS_THREADS

Mauro, Emile: python-lmdb bundles a copy of lmdb, but it is possible to
configure it to use the system-provided library instead [0]. Do you know
if there would be adverse effects to do so in Buildroot? Indeed, we
prefer to configure packages to use system libraries rather than use
there bundled copy whenever possible...

[0] https://lmdb.readthedocs.io/en/release/#installation-unix

I haven't looked at python-zlmdb, though...

[--SNIP--]
> diff --git a/package/lmdb/lmdb.mk b/package/lmdb/lmdb.mk
> new file mode 100644
> index 0000000000..5e2ad2d05a
> --- /dev/null
> +++ b/package/lmdb/lmdb.mk
> @@ -0,0 +1,35 @@
> +################################################################################
> +#
> +# lmdb
> +#
> +################################################################################
> +
> +LMDB_VERSION = 0.9.31
> +LMDB_SITE = $(call github,LMDB,lmdb,LMDB_$(LMDB_VERSION))
> +LMDB_LICENSE = OpenLDAP Public License

I think we want to use the SPDX short tag here: OLDAP-2.8. Incidentally,
this is also what is already used for python-lmdb.

> +LMDB_LICENSE_FILES = libraries/liblmdb/LICENSE
> +LMDB_INSTALL_STAGING = YES
> +
> +define LMDB_BUILD_CMDS
> +	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/libraries/liblmdb \
> +		CC="$(TARGET_CC)" \
> +		XCFLAGS="$(TARGET_CFLAGS)" \
> +		AR="$(TARGET_CROSS)ar" \

Why not use $(TARGET_CONFIGURE_OPTS) and just add the special XCFLAGS?

> +		all

'all' is usually the default target, for being the first in the
Makefile, which is also the cae here, so there is no reason to specify
it.

> +endef
> +
> +define LMDB_INSTALL_STAGING_CMDS
> +	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/libraries/liblmdb \
> +		DESTDIR="$(STAGING_DIR)" \
> +		prefix=/usr \
> +		install
> +endef
> +
> +define LMDB_INSTALL_TARGET_CMDS
> +	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/libraries/liblmdb \
> +		DESTDIR="$(TARGET_DIR)" \
> +		prefix=/usr \
> +		install
> +endef
> +
> +$(eval $(generic-package))
> -- 
> 2.39.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

  parent reply	other threads:[~2024-04-03 20:57 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-03  8:54 [Buildroot] [PATCH 1/3] package/lmdb: new package Francois Perrad
2024-04-03  8:54 ` [Buildroot] [PATCH 2/3] package/lua-lightningmdb: " Francois Perrad
2024-04-03  8:54 ` [Buildroot] [PATCH 3/3] package/lua-lgdbm: " Francois Perrad
2024-04-03 21:12   ` Yann E. MORIN
2024-04-03 20:57 ` Yann E. MORIN [this message]
2024-04-03 21:17   ` [Buildroot] [PATCH 1/3] package/lmdb: " Emile Cormier
2024-04-03 21:25     ` Yann E. MORIN
  -- strict thread matches above, loose matches on Subject: below --
2023-12-06  9:39 Francois Perrad

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=Zg3Ct67Am5lo_rh-@landeda \
    --to=yann.morin.1998@free.fr \
    --cc=buildroot@busybox.net \
    --cc=emile.cormier.jr@gmail.com \
    --cc=francois.perrad@gadz.org \
    --cc=mc5686@mclink.it \
    /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