diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-11-29 07:01:24 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-11-29 07:01:24 +0000 |
commit | e3d687a6c3acdc1f370607f366850daf1827d30e (patch) | |
tree | 5171cab8927af97086c9258d3da21a33df0deafe /sci-libs/scipy | |
parent | Added mercurial USE flag for live ebuild (diff) | |
download | gentoo-2-e3d687a6c3acdc1f370607f366850daf1827d30e.tar.gz gentoo-2-e3d687a6c3acdc1f370607f366850daf1827d30e.tar.bz2 gentoo-2-e3d687a6c3acdc1f370607f366850daf1827d30e.zip |
sci-libs/scipy: Fix doc installation, #492808
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'sci-libs/scipy')
-rw-r--r-- | sci-libs/scipy/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/scipy/scipy-0.13.1.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/sci-libs/scipy/ChangeLog b/sci-libs/scipy/ChangeLog index c8f8592255c5..7723f157d660 100644 --- a/sci-libs/scipy/ChangeLog +++ b/sci-libs/scipy/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/scipy # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/ChangeLog,v 1.105 2013/11/28 14:18:05 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/ChangeLog,v 1.106 2013/11/29 07:01:24 jlec Exp $ + + 29 Nov 2013; Justin Lecher <jlec@gentoo.org> scipy-0.13.1.ebuild: + Fix doc installation, #492808 *scipy-0.13.1 (28 Nov 2013) diff --git a/sci-libs/scipy/scipy-0.13.1.ebuild b/sci-libs/scipy/scipy-0.13.1.ebuild index 4615280e676d..142f440ea6b0 100644 --- a/sci-libs/scipy/scipy-0.13.1.ebuild +++ b/sci-libs/scipy/scipy-0.13.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/scipy-0.13.1.ebuild,v 1.1 2013/11/28 14:18:05 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/scipy-0.13.1.ebuild,v 1.2 2013/11/29 07:01:24 jlec Exp $ EAPI=5 @@ -44,7 +44,7 @@ DISTUTILS_IN_SOURCE_BUILD=1 src_unpack() { unpack ${P}.tar.gz if use doc; then - unzip -qo "${DISTDIR}"/${P}-html.zip -d html || die + unzip -qo "${DISTDIR}"/${PN}-0.13.0-html.zip -d html || die fi } @@ -116,7 +116,7 @@ sys.exit(0 if r.wasSuccessful() else 1)" || die "Tests fail with ${EPYTHON}" python_install_all() { if use doc; then dohtml -r "${WORKDIR}"/html/. - dodoc "${DISTDIR}"/${P}*pdf + dodoc "${DISTDIR}"/${PN}*pdf fi distutils-r1_python_install_all } |