patrick 15/01/13 04:09:59 Modified: ChangeLog Added: python-ldap-2.4.19.ebuild Log: Bump (Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path 1.147 dev-python/python-ldap/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/ChangeLog?rev=1.147&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/ChangeLog?rev=1.147&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/ChangeLog?r1=1.146&r2=1.147 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/python-ldap/ChangeLog,v retrieving revision 1.146 retrieving revision 1.147 diff -u -r1.146 -r1.147 --- ChangeLog 11 Nov 2014 10:53:16 -0000 1.146 +++ ChangeLog 13 Jan 2015 04:09:59 -0000 1.147 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/python-ldap -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/ChangeLog,v 1.146 2014/11/11 10:53:16 ago Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/ChangeLog,v 1.147 2015/01/13 04:09:59 patrick Exp $ + +*python-ldap-2.4.19 (13 Jan 2015) + + 13 Jan 2015; Patrick Lauer <[email protected]> +python-ldap-2.4.19.ebuild: + Bump 11 Nov 2014; Agostino Sarubbo <[email protected]> python-ldap-2.4.15.ebuild: Stable for ia64, wrt bug #525636 1.1 dev-python/python-ldap/python-ldap-2.4.19.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.19.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.19.ebuild?rev=1.1&content-type=text/plain Index: python-ldap-2.4.19.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.19.ebuild,v 1.1 2015/01/13 04:09:59 patrick Exp $ 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 http://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" IUSE="doc 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. # setup.py incorrectly sets setuptools and misses pyasn1 and pyasn1-modules in install_requires RDEPEND=">net-nds/openldap-2.4.11 dev-python/pyasn1[${PYTHON_USEDEP}] dev-python/pyasn1-modules[${PYTHON_USEDEP}] sasl? ( >=dev-libs/cyrus-sasl-2.1 )" DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}] doc? ( dev-python/sphinx[${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_compile_all() { use doc && emake -C Doc html } 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/. ) use doc && local HTML_DOCS=( Doc/.build/html/. ) distutils-r1_python_install_all }
