Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/lmdb/
Date: Thu, 30 Dec 2021 21:56:11
Message-Id: 1640901337.9ca566ff89b7b4fb7a1c1edb019dbc02c3afdfd1.mgorny@gentoo
1 commit: 9ca566ff89b7b4fb7a1c1edb019dbc02c3afdfd1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 30 21:31:18 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 30 21:55:37 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ca566ff
7
8 dev-python/lmdb: Bump to 1.3.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/lmdb/Manifest | 1 +
13 dev-python/lmdb/lmdb-1.3.0.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/dev-python/lmdb/Manifest b/dev-python/lmdb/Manifest
17 index 4768a63a03ea..305a7f06d227 100644
18 --- a/dev-python/lmdb/Manifest
19 +++ b/dev-python/lmdb/Manifest
20 @@ -1,2 +1,3 @@
21 DIST lmdb-1.2.0.tar.gz 881437 BLAKE2B bcb045868c100bcb82daed99bdbd73699dcb5a0e982679f1d9f49747f468e2ab2cbc412ba020b9deca7263fece501c25d984397ee2969187c8118da920c691aa SHA512 75c7aeb3e98ffddb9e40b4eb7404afd3c6ade93753488eac2cb5facfab3ec9b660d925b8bd1c40ca5f8180cb6ca33483020bb4c5ddc074b841693ba278883529
22 DIST lmdb-1.2.1.tar.gz 881515 BLAKE2B 76d56e046b5a481411c9a180989da0d1c4b7371058e38abe6d8a6b76f7e2bc62678459241d319850cf739b7b067f3e89d309e5f9a538a187c52c1044fe8b768d SHA512 fa763e24c8f278e0b9c379f39329b7b80051e10d5d8edfdd631486490cfbe5c7bc641d885ffb9f298c0c07f7e6901cc826023c472f98b430a4ec9c0bc71139d5
23 +DIST lmdb-1.3.0.tar.gz 881422 BLAKE2B ad864956d44ec55e36a856125dd21b8e51af37a274f8b546edc68cd2025b19b97cb60f49f51558345b32922f7c968f442e15cdda84e9416280069adc7371a033 SHA512 31a821641e398087a9b8e76341d693c3be48089ffa5b5624043b276d5acb4d7fa25cbbd156dff39a82bf678402eb64d8ca922252a594ecc098946a67cc4d4cf1
24
25 diff --git a/dev-python/lmdb/lmdb-1.3.0.ebuild b/dev-python/lmdb/lmdb-1.3.0.ebuild
26 new file mode 100644
27 index 000000000000..a09992f929d6
28 --- /dev/null
29 +++ b/dev-python/lmdb/lmdb-1.3.0.ebuild
30 @@ -0,0 +1,39 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( pypy3 python3_{8..10} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python bindings for the Lightning Database"
41 +HOMEPAGE="https://github.com/jnwatson/py-lmdb/"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="OPENLDAP"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux"
47 +
48 +RDEPEND="
49 + >=dev-db/lmdb-0.9.28:=
50 + $(python_gen_cond_dep '
51 + dev-python/cffi[${PYTHON_USEDEP}]
52 + ' 'python*')"
53 +DEPEND="${RDEPEND}"
54 +
55 +distutils_enable_sphinx docs
56 +distutils_enable_tests pytest
57 +
58 +python_compile() {
59 + LMDB_FORCE_SYSTEM=1 distutils-r1_python_compile
60 +}
61 +
62 +python_test() {
63 + epytest tests
64 +}
65 +
66 +python_install() {
67 + # This is required when the CFFI extension is used (for PyPy3)
68 + LMDB_FORCE_SYSTEM=1 distutils-r1_python_install
69 +}