Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ldap3/
Date: Fri, 28 Jan 2022 11:16:40
Message-Id: 1643368581.77c92e3122fd80aa9b6f817f62e4c3824c7b0402.arthurzam@gentoo
1 commit: 77c92e3122fd80aa9b6f817f62e4c3824c7b0402
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 27 21:01:01 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 28 11:16:21 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77c92e31
7
8 dev-python/ldap3: add 2.9.1, enable py3.10
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/ldap3/Manifest | 1 +
13 dev-python/ldap3/ldap3-2.9.1.ebuild | 23 +++++++++++++++++++++++
14 2 files changed, 24 insertions(+)
15
16 diff --git a/dev-python/ldap3/Manifest b/dev-python/ldap3/Manifest
17 index fa7b29804bbf..b169435b6844 100644
18 --- a/dev-python/ldap3/Manifest
19 +++ b/dev-python/ldap3/Manifest
20 @@ -1 +1,2 @@
21 DIST ldap3-2.8.1.tar.gz 961648 BLAKE2B d6cbc52512efbe4f6fe5e7d19ee2ce1af3e03a8d6d08d2235eeff0f00c61fd12583c4b9fb452206ba161961c3438d109fa106a50a0edc858c24f5cd6261b2561 SHA512 f37e76e1008c990290285a757def6fe70e227393fbbdf84eb1130d5fdfd17db724c544848cc424ca7831f8cc9e8d25407fc139981ebd10818064f588adbafebf
22 +DIST ldap3-2.9.1.tar.gz 974013 BLAKE2B a75219403e68705b10c06e692f4f188575a4ae38c86f15ceb6d2c674e74ac44ce0f53e3ec6bf66e8413007589293e2db95497de7b0317066b36105940beb11bf SHA512 bf07ebca9a53a8c225bc3106d3bd45eb26557c6e5a3d6d45a7f8c149d938ad43825eed0d406a57b93e2e675ed7aa262828f022ab82eb683f0e3029e3ad823106
23
24 diff --git a/dev-python/ldap3/ldap3-2.9.1.ebuild b/dev-python/ldap3/ldap3-2.9.1.ebuild
25 new file mode 100644
26 index 000000000000..9258ccc46214
27 --- /dev/null
28 +++ b/dev-python/ldap3/ldap3-2.9.1.ebuild
29 @@ -0,0 +1,23 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="A strictly RFC 4511 conforming LDAP V3 pure Python client"
40 +HOMEPAGE="
41 + https://github.com/cannatag/ldap3/
42 + https://pypi.org/project/ldap3/"
43 +SRC_URI="https://github.com/cannatag/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="LGPL-3"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm64 ~x86"
48 +
49 +# tests require a ldap server and extra configuration
50 +RESTRICT="test"
51 +
52 +RDEPEND=">=dev-python/pyasn1-0.4.8[${PYTHON_USEDEP}]"