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/ldap3/
Date: Fri, 05 Jan 2018 09:36:52
Message-Id: 1515144988.7ad2df32a4e8ccec96aef8e96fd6554fd718a536.mgorny@gentoo
1 commit: 7ad2df32a4e8ccec96aef8e96fd6554fd718a536
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 4 23:28:27 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 5 09:36:28 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ad2df32
7
8 dev-python/ldap3: Clean old up
9
10 dev-python/ldap3/Manifest | 1 -
11 dev-python/ldap3/ldap3-1.4.0.ebuild | 28 ----------------------------
12 2 files changed, 29 deletions(-)
13
14 diff --git a/dev-python/ldap3/Manifest b/dev-python/ldap3/Manifest
15 index 0b6fa01e74c..032a9a1b5e3 100644
16 --- a/dev-python/ldap3/Manifest
17 +++ b/dev-python/ldap3/Manifest
18 @@ -1,2 +1 @@
19 -DIST ldap3-1.4.0.tar.gz 300079 BLAKE2B 7e979cd106e0c7caf71fb8763dd962b2131501d54b6cfc1cae6e3a6825e0fc7f826af0f87deafd530b1a642a937b77b3fdc413666d1247b4a60b0deae8872e3b SHA512 0aaa05355dd065f66a6fb24ce298f8b632f013ffa47e805b0a1674ba96e89554106a437d8a6fceece36ccb84484e447595f459697baba9a432c458c9969f0da6
20 DIST ldap3-2.2.3.tar.gz 331483 BLAKE2B a6479e6a02d0a0682b809cea2b63ff9ff3935f2d083b9dff3a02468d3a27cbc75dc69dff64f523c0b077f288b3e1e565433af13a607568617c309c3e894d7a62 SHA512 a954f6c582e88addf0bd6dc6fb24108d76d134b80c14a3dca0f9f667dbbfee484cb7b0444822f7e82a41af7dacf61ba111b6dcbf215b7f6df26a3784cfd2fc83
21
22 diff --git a/dev-python/ldap3/ldap3-1.4.0.ebuild b/dev-python/ldap3/ldap3-1.4.0.ebuild
23 deleted file mode 100644
24 index 8601757c614..00000000000
25 --- a/dev-python/ldap3/ldap3-1.4.0.ebuild
26 +++ /dev/null
27 @@ -1,28 +0,0 @@
28 -# Copyright 1999-2016 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=6
32 -
33 -PYTHON_COMPAT=( python2_7 python3_{4,5} pypy pypy3 )
34 -
35 -inherit distutils-r1
36 -
37 -DESCRIPTION="A strictly RFC 4511 conforming LDAP V3 pure Python client"
38 -HOMEPAGE="https://github.com/cannatag/ldap3 https://pypi.python.org/pypi/ldap3"
39 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="LGPL-3"
42 -SLOT="0"
43 -KEYWORDS="~amd64"
44 -IUSE="test"
45 -
46 -RDEPEND=">=dev-python/pyasn1-0.1.8[${PYTHON_USEDEP}]"
47 -DEPEND="${RDEPEND}
48 - dev-python/setuptools[${PYTHON_USEDEP}]
49 - test? ( dev-python/nose[${PYTHON_USEDEP}] )
50 - "
51 -
52 -python_test() {
53 - cd "${BUILD_DIR}" || die
54 - nosetests -v -s test || die
55 -}