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: Fri, 16 Apr 2021 08:30:07
Message-Id: 1618561652.092ecb8efe71f2372a4cb91e7a4926938d67d587.mgorny@gentoo
1 commit: 092ecb8efe71f2372a4cb91e7a4926938d67d587
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 16 06:30:24 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 16 08:27:32 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=092ecb8e
7
8 dev-python/lmdb: Bump to 1.2.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.2.0.ebuild | 35 +++++++++++++++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/dev-python/lmdb/Manifest b/dev-python/lmdb/Manifest
17 index 340e635e577..3de40e454fb 100644
18 --- a/dev-python/lmdb/Manifest
19 +++ b/dev-python/lmdb/Manifest
20 @@ -1 +1,2 @@
21 DIST lmdb-1.1.1.tar.gz 880359 BLAKE2B b202154eae151d3748e9e90fcb71a3c8a722923c2583e469ef1a0017a4c3dfdfd62d99db24fb79e7da1fc7c6a4fb695d9db5ed6a67750967788a12fe0ba24761 SHA512 4621c87dd646f8ca37f4cdc40ffa2fe809ca4da21b335856e50e6d0ae07f3828d424cde9cc383e4cdc761cd9311eb504d67678a33de51c1931a006ec86a2fcd0
22 +DIST lmdb-1.2.0.tar.gz 881437 BLAKE2B bcb045868c100bcb82daed99bdbd73699dcb5a0e982679f1d9f49747f468e2ab2cbc412ba020b9deca7263fece501c25d984397ee2969187c8118da920c691aa SHA512 75c7aeb3e98ffddb9e40b4eb7404afd3c6ade93753488eac2cb5facfab3ec9b660d925b8bd1c40ca5f8180cb6ca33483020bb4c5ddc074b841693ba278883529
23
24 diff --git a/dev-python/lmdb/lmdb-1.2.0.ebuild b/dev-python/lmdb/lmdb-1.2.0.ebuild
25 new file mode 100644
26 index 00000000000..c3f6e685ef8
27 --- /dev/null
28 +++ b/dev-python/lmdb/lmdb-1.2.0.ebuild
29 @@ -0,0 +1,35 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( pypy3 python3_{7..9} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Python bindings for the Lightning Database"
40 +HOMEPAGE="https://github.com/jnwatson/py-lmdb/"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="OPENLDAP"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
46 +
47 +RDEPEND=">=dev-db/lmdb-0.9.28:="
48 +DEPEND="${RDEPEND}"
49 +
50 +distutils_enable_sphinx docs
51 +distutils_enable_tests pytest
52 +
53 +python_compile() {
54 + LMDB_FORCE_SYSTEM=1 distutils-r1_python_compile
55 +}
56 +
57 +python_test() {
58 + epytest tests
59 +}
60 +
61 +python_install() {
62 + # This is required when the CFFI extension is used (for PyPy3)
63 + LMDB_FORCE_SYSTEM=1 distutils-r1_python_install
64 +}