Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-ldap/
Date: Mon, 21 Sep 2015 12:10:54
Message-Id: 1442837445.1a297a6e4d71301e9a4325c744cbde655cd887b6.jlec@gentoo
1 commit: 1a297a6e4d71301e9a4325c744cbde655cd887b6
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 21 12:00:42 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 21 12:10:45 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a297a6e
7
8 dev-python/python-ldap: Drop old
9
10 Package-Manager: portage-2.2.20.1
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/python-ldap/Manifest | 1 -
14 dev-python/python-ldap/python-ldap-2.4.15.ebuild | 66 ------------------------
15 2 files changed, 67 deletions(-)
16
17 diff --git a/dev-python/python-ldap/Manifest b/dev-python/python-ldap/Manifest
18 index 7c6f3bf..d50a32a 100644
19 --- a/dev-python/python-ldap/Manifest
20 +++ b/dev-python/python-ldap/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST python-ldap-2.4.15.tar.gz 111597 SHA256 30bcac33ded943557fbafb1b6d9c345deab34d89d63dbcee9e6b59207db11670 SHA512 2e2d5ecc4f96a63465dbc0da3b8a524729cf199f95eb559beeea5466da4fa9667f61aff7e482f73d6581d24477cb4780fccd599619fbb92b2810bdc81f2de310 WHIRLPOOL c3c3135a2b073cc74d2692df0b9d0baaf8353ce253619747fb0626fa34b3f6df8dde184894856b934b63666c413aed81e80f3321893539d1825660a1f75b1be6
23 DIST python-ldap-2.4.19.tar.gz 138503 SHA256 02fddb3accbfb54e40ff47a59457e422b253f9fb6cd64bb3851b349295fab048 SHA512 bfa8b87449f03d70d78bf890d1190ef5a153e1b84db97ca4b40465bfba9faedace2a69f4ae1279ef6323c01255f52993cf0e4374bc32d9660a5286dfc7c17b85 WHIRLPOOL 708c6744b41fc4c9dc4473a9ab088016aa722f5b196c080973fedbb07a08dd57f859ddb5d193665349f44d2d08ff9e2f797cfa6af23e34624f1d0a9e21d62d4d
24 DIST python-ldap-2.4.20.tar.gz 142355 SHA256 4b8891539a3171d993cf7896b632ff088a4c707ae85ac3c77db1454f7949f3e2 SHA512 d8afe217c18d49b70089bc47bac7c48f57774b78b1dd44ae3a60e669a3df59058d8579b9de64a2349af612db8e3c1ea5bfa5a47148c651cbfa4038dbc58b9ff2 WHIRLPOOL 562993e84f5c41b3aefd808a047d6cf8ea6c4284171f7f0d858d3a7417a67e31b06f283ed557fbad3fde25a4a9d2c049cbce52c0759b94850ea19848e4192f64
25
26 diff --git a/dev-python/python-ldap/python-ldap-2.4.15.ebuild b/dev-python/python-ldap/python-ldap-2.4.15.ebuild
27 deleted file mode 100644
28 index 1d09239..0000000
29 --- a/dev-python/python-ldap/python-ldap-2.4.15.ebuild
30 +++ /dev/null
31 @@ -1,66 +0,0 @@
32 -# Copyright 1999-2014 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -# $Id$
35 -
36 -EAPI=5
37 -
38 -# setup.py is written only for py2, which suits pypy
39 -PYTHON_COMPAT=( python2_7 pypy )
40 -
41 -inherit distutils-r1 multilib
42 -
43 -DESCRIPTION="Various LDAP-related Python modules"
44 -HOMEPAGE="http://www.python-ldap.org https://pypi.python.org/pypi/python-ldap"
45 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 -
47 -LICENSE="PSF-2"
48 -SLOT="0"
49 -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-solaris"
50 -# doc flag dropped due to absence of the docs
51 -IUSE="examples sasl ssl"
52 -
53 -# If you need support for openldap-2.3.x, please use python-ldap-2.3.9.
54 -# python team: Please do not remove python-ldap-2.3.9 from the tree.
55 -# OpenSSL is an optional runtime dep.
56 -RDEPEND=">net-nds/openldap-2.4.11
57 - dev-python/pyasn1[${PYTHON_USEDEP}]
58 - sasl? ( >=dev-libs/cyrus-sasl-2.1 )"
59 -DEPEND="${RDEPEND}
60 - dev-python/setuptools[${PYTHON_USEDEP}]"
61 -
62 -python_prepare_all() {
63 - sed -e "s:^library_dirs =.*:library_dirs = /usr/$(get_libdir) /usr/$(get_libdir)/sasl2:" \
64 - -e "s:^include_dirs =.*:include_dirs = ${EPREFIX}/usr/include ${EPREFIX}/usr/include/sasl:" \
65 - -i setup.cfg || die "error fixing setup.cfg"
66 -
67 - local mylibs="ldap"
68 - if use sasl; then
69 - use ssl && mylibs="ldap_r"
70 - mylibs="${mylibs} sasl2"
71 - else
72 - sed -e 's/HAVE_SASL//g' -i setup.cfg || die
73 - fi
74 - use ssl && mylibs="${mylibs} ssl crypto"
75 - use elibc_glibc && mylibs="${mylibs} resolv"
76 -
77 - sed -e "s:^libs = .*:libs = lber ${mylibs}:" \
78 - -i setup.cfg || die "error setting up libs in setup.cfg"
79 -
80 - # set test expected to fail to expectedFailure
81 - sed -e "s:^ def test_bad_urls: @unittest.expectedFailure\n def test_bad_urls:" \
82 - -i Tests/t_ldapurl.py || die
83 -
84 - distutils-r1_python_prepare_all
85 -}
86 -
87 -python_test() {
88 - # XXX: the tests supposedly can start local slapd
89 - # but it requires some manual config, it seems.
90 -
91 - "${PYTHON}" Tests/t_ldapurl.py || die "Tests fail with ${EPYTHON}"
92 -}
93 -
94 -python_install_all() {
95 - use examples && local EXAMPLES=( Demo/. )
96 - distutils-r1_python_install_all
97 -}