diff options
| author | Justin Lecher <jlec@gentoo.org> | 2015-09-21 14:00:42 +0200 |
|---|---|---|
| committer | Justin Lecher <jlec@gentoo.org> | 2015-09-21 14:10:45 +0200 |
| commit | 1a297a6e4d71301e9a4325c744cbde655cd887b6 (patch) | |
| tree | f3efe0801b22e73f00e27d1b873d99507e9c6ac0 /dev-python/python-ldap/python-ldap-2.4.15.ebuild | |
| parent | 285066e1118c5ff6556deaca2065242c904829be (diff) | |
| download | gentoo-1a297a6e4d71301e9a4325c744cbde655cd887b6.tar.gz gentoo-1a297a6e4d71301e9a4325c744cbde655cd887b6.tar.bz2 gentoo-1a297a6e4d71301e9a4325c744cbde655cd887b6.zip | |
dev-python/python-ldap: Drop old
Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'dev-python/python-ldap/python-ldap-2.4.15.ebuild')
| -rw-r--r-- | dev-python/python-ldap/python-ldap-2.4.15.ebuild | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/dev-python/python-ldap/python-ldap-2.4.15.ebuild b/dev-python/python-ldap/python-ldap-2.4.15.ebuild deleted file mode 100644 index 1d092396800f..000000000000 --- a/dev-python/python-ldap/python-ldap-2.4.15.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -# setup.py is written only for py2, which suits pypy -PYTHON_COMPAT=( python2_7 pypy ) - -inherit distutils-r1 multilib - -DESCRIPTION="Various LDAP-related Python modules" -HOMEPAGE="http://www.python-ldap.org https://pypi.python.org/pypi/python-ldap" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="PSF-2" -SLOT="0" -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-solaris" -# doc flag dropped due to absence of the docs -IUSE="examples sasl ssl" - -# If you need support for openldap-2.3.x, please use python-ldap-2.3.9. -# python team: Please do not remove python-ldap-2.3.9 from the tree. -# OpenSSL is an optional runtime dep. -RDEPEND=">net-nds/openldap-2.4.11 - dev-python/pyasn1[${PYTHON_USEDEP}] - sasl? ( >=dev-libs/cyrus-sasl-2.1 )" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" - -python_prepare_all() { - sed -e "s:^library_dirs =.*:library_dirs = /usr/$(get_libdir) /usr/$(get_libdir)/sasl2:" \ - -e "s:^include_dirs =.*:include_dirs = ${EPREFIX}/usr/include ${EPREFIX}/usr/include/sasl:" \ - -i setup.cfg || die "error fixing setup.cfg" - - local mylibs="ldap" - if use sasl; then - use ssl && mylibs="ldap_r" - mylibs="${mylibs} sasl2" - else - sed -e 's/HAVE_SASL//g' -i setup.cfg || die - fi - use ssl && mylibs="${mylibs} ssl crypto" - use elibc_glibc && mylibs="${mylibs} resolv" - - sed -e "s:^libs = .*:libs = lber ${mylibs}:" \ - -i setup.cfg || die "error setting up libs in setup.cfg" - - # set test expected to fail to expectedFailure - sed -e "s:^ def test_bad_urls: @unittest.expectedFailure\n def test_bad_urls:" \ - -i Tests/t_ldapurl.py || die - - distutils-r1_python_prepare_all -} - -python_test() { - # XXX: the tests supposedly can start local slapd - # but it requires some manual config, it seems. - - "${PYTHON}" Tests/t_ldapurl.py || die "Tests fail with ${EPYTHON}" -} - -python_install_all() { - use examples && local EXAMPLES=( Demo/. ) - distutils-r1_python_install_all -} |
