diff options
author | 2009-09-04 18:17:07 +0000 | |
---|---|---|
committer | 2009-09-04 18:17:07 +0000 | |
commit | 48ec875205d11c0a79c61e38fe493fe6138b1161 (patch) | |
tree | 2f4afc8b9ee4198d758f98b362dc8a651b671855 /dev-python/python-ldap | |
parent | Remove old (diff) | |
download | gentoo-2-48ec875205d11c0a79c61e38fe493fe6138b1161.tar.gz gentoo-2-48ec875205d11c0a79c61e38fe493fe6138b1161.tar.bz2 gentoo-2-48ec875205d11c0a79c61e38fe493fe6138b1161.zip |
Remove old
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/python-ldap')
-rw-r--r-- | dev-python/python-ldap/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/python-ldap/python-ldap-2.3.1.ebuild | 58 | ||||
-rw-r--r-- | dev-python/python-ldap/python-ldap-2.3.5.ebuild | 59 |
3 files changed, 5 insertions, 118 deletions
diff --git a/dev-python/python-ldap/ChangeLog b/dev-python/python-ldap/ChangeLog index a7d33b5e6378..cea4fe83d080 100644 --- a/dev-python/python-ldap/ChangeLog +++ b/dev-python/python-ldap/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/python-ldap # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/ChangeLog,v 1.59 2009/08/05 00:27:18 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/ChangeLog,v 1.60 2009/09/04 18:17:07 patrick Exp $ + + 04 Sep 2009; Patrick Lauer <patrick@gentoo.org> -python-ldap-2.3.1.ebuild, + -python-ldap-2.3.5.ebuild: + Remove old *python-ldap-2.3.9 (05 Aug 2009) diff --git a/dev-python/python-ldap/python-ldap-2.3.1.ebuild b/dev-python/python-ldap/python-ldap-2.3.1.ebuild deleted file mode 100644 index 6521e976f5f7..000000000000 --- a/dev-python/python-ldap/python-ldap-2.3.1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2007 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.3.1.ebuild,v 1.1 2007/08/15 11:12:27 dev-zero Exp $ - -NEED_PYTHON=2.4 - -inherit distutils multilib - -P_DOC="html-${PN}-docs-2.0.3" - -DESCRIPTION="Various LDAP-related Python modules" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz - doc? ( mirror://sourceforge/${PN}/${P_DOC}.tar.gz )" -HOMEPAGE="http://python-ldap.sourceforge.net/" -SLOT="0" -LICENSE="PYTHON" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="doc examples sasl ssl" - -DEPEND=">=net-nds/openldap-2.3 - sasl? ( dev-libs/cyrus-sasl ) - dev-python/setuptools" -RDEPEND="${DEPEND}" - -# Installs some script-files directly in site-packages -PYTHON_MODNAME="/" - -src_unpack() { - unpack ${A} - cd "${S}" - - # Note: we can't add /usr/lib and /usr/lib/sasl2 to library_dirs due to a bug in py2.4 - sed -e "s:^library_dirs =.*:library_dirs =:" \ - -e "s:^include_dirs =.*:include_dirs = /usr/include /usr/include/sasl:" \ - -e "s:\(extra_compile_args =\).*:\1\nextra_link_args = -Wl,-rpath=/usr/$(get_libdir) -Wl,-rpath=/usr/$(get_libdir)/sasl2:" \ - -i setup.cfg || die "error fixing setup.cfg" - - local mylibs="ldap" - if use sasl ; then - use ssl && mylibs="ldap_r" - mylibs="${mylibs} sasl2" - fi - use ssl && mylibs="${mylibs} ssl crypto" - - sed -e "s:^libs = .*:libs = lber resolv ${mylibs}:" \ - -e "s:^compile.*:compile = 0:" \ - -e "s:^optimize.*:optimize = 0:" \ - -i setup.cfg || die "error setting up libs in setup.cfg" -} - -src_install() { - distutils_src_install - use doc && dohtml -r "${WORKDIR}/${P_DOC/html-/}"/* - if use examples ; then - insinto /usr/share/doc/${PF} - doins -r Demo - fi -} diff --git a/dev-python/python-ldap/python-ldap-2.3.5.ebuild b/dev-python/python-ldap/python-ldap-2.3.5.ebuild deleted file mode 100644 index d2a92e73c89c..000000000000 --- a/dev-python/python-ldap/python-ldap-2.3.5.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2009 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.3.5.ebuild,v 1.2 2009/05/10 16:15:15 ssuominen Exp $ - -NEED_PYTHON=2.4 - -inherit distutils eutils multilib - -P_DOC="html-${PN}-docs-2.0.3" - -DESCRIPTION="Various LDAP-related Python modules" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz - doc? ( mirror://sourceforge/${PN}/${P_DOC}.tar.gz )" -HOMEPAGE="http://python-ldap.sourceforge.net/" -SLOT="0" -LICENSE="PYTHON" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="doc examples sasl ssl" - -RDEPEND=">=net-nds/openldap-2.3 - sasl? ( dev-libs/cyrus-sasl )" -DEPEND="${DEPEND} - dev-python/setuptools" - -# Installs some script-files directly in site-packages -PYTHON_MODNAME="/" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-gcc44.patch - - # Note: we can't add /usr/lib and /usr/lib/sasl2 to library_dirs due to a bug in py2.4 - sed -e "s:^library_dirs =.*:library_dirs =:" \ - -e "s:^include_dirs =.*:include_dirs = /usr/include /usr/include/sasl:" \ - -e "s:\(extra_compile_args =\).*:\1\nextra_link_args = -Wl,-rpath=/usr/$(get_libdir) -Wl,-rpath=/usr/$(get_libdir)/sasl2:" \ - -i setup.cfg || die "error fixing setup.cfg" - - local mylibs="ldap" - if use sasl ; then - use ssl && mylibs="ldap_r" - mylibs="${mylibs} sasl2" - fi - use ssl && mylibs="${mylibs} ssl crypto" - - sed -e "s:^libs = .*:libs = lber resolv ${mylibs}:" \ - -e "s:^compile.*:compile = 0:" \ - -e "s:^optimize.*:optimize = 0:" \ - -i setup.cfg || die "error setting up libs in setup.cfg" -} - -src_install() { - distutils_src_install - use doc && dohtml -r "${WORKDIR}/${P_DOC/html-/}"/* - if use examples ; then - insinto /usr/share/doc/${PF} - doins -r Demo - fi -} |