diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2009-03-27 11:55:59 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2009-03-27 11:55:59 +0000 |
commit | fc12cdd86906354e93f6faefd83553e88cd322e3 (patch) | |
tree | a5ed5889e44583015a634baa36d2da48659780cf /dev-python/dap | |
parent | Version bump (diff) | |
download | gentoo-2-fc12cdd86906354e93f6faefd83553e88cd322e3.tar.gz gentoo-2-fc12cdd86906354e93f6faefd83553e88cd322e3.tar.bz2 gentoo-2-fc12cdd86906354e93f6faefd83553e88cd322e3.zip |
Version bump
(Portage version: 2.2_rc26/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/dap')
-rw-r--r-- | dev-python/dap/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/dap/dap-2.2.6.7.ebuild (renamed from dev-python/dap/dap-2.2.6.4.ebuild) | 15 |
2 files changed, 14 insertions, 9 deletions
diff --git a/dev-python/dap/ChangeLog b/dev-python/dap/ChangeLog index 6248907aa435..14155f2abf17 100644 --- a/dev-python/dap/ChangeLog +++ b/dev-python/dap/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/dap # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/dap/ChangeLog,v 1.6 2009/02/11 00:06:40 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/dap/ChangeLog,v 1.7 2009/03/27 11:55:59 bicatali Exp $ + +*dap-2.2.6.7 (27 Mar 2009) + + 27 Mar 2009; Sébastien Fabbro <bicatali@gentoo.org> -dap-2.2.6.4.ebuild, + +dap-2.2.6.7.ebuild: + Version bump 11 Feb 2009; Diego E. Pettenò <flameeyes@gentoo.org> dap-2.2.6.6.ebuild: Fix the dosed/sed line to expand the shell otherwise it'll fail install. diff --git a/dev-python/dap/dap-2.2.6.4.ebuild b/dev-python/dap/dap-2.2.6.7.ebuild index 2a0b1959f673..644c8a7ffa23 100644 --- a/dev-python/dap/dap-2.2.6.4.ebuild +++ b/dev-python/dap/dap-2.2.6.7.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/dap/dap-2.2.6.4.ebuild,v 1.1 2008/07/02 16:55:11 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/dap/dap-2.2.6.7.ebuild,v 1.1 2009/03/27 11:55:59 bicatali Exp $ -inherit distutils +inherit eutils distutils DESCRIPTION="Data Access Protocol client and server" HOMEPAGE="http://pydap.org" @@ -24,9 +24,8 @@ DEPEND="${RDEPEND} DOCS="docs/bugs docs/Changelog docs/history" -src_unpack() { - distutils_src_unpack - cd "${S}" - # removing namespaces in order to avoid annoying warning - sed -i -e '/namespace_packages/d' setup.py +src_install() { + distutils_src_install + sed -i -e '1idap' \ + "${D}"/usr/$(get_libdir)/python*/site-packages/dap-*.egg-info/namespace_packages.txt || die } |