diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-06-20 19:45:36 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-06-20 20:31:49 +0200 |
commit | 95ef7b89c923dc8afff676bc0d2d983e258b62b2 (patch) | |
tree | 753d130f624613d230074e62a1eb8cdb0679e6b3 /dev-vcs/git-mantle | |
parent | dev-libs/libp11: version bump (diff) | |
download | gentoo-95ef7b89c923dc8afff676bc0d2d983e258b62b2.tar.gz gentoo-95ef7b89c923dc8afff676bc0d2d983e258b62b2.tar.bz2 gentoo-95ef7b89c923dc8afff676bc0d2d983e258b62b2.zip |
dev-vcs/git-mantle: cram needed for tests (#631042 by toralf)
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'dev-vcs/git-mantle')
-rw-r--r-- | dev-vcs/git-mantle/git-mantle-0.6.ebuild | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/dev-vcs/git-mantle/git-mantle-0.6.ebuild b/dev-vcs/git-mantle/git-mantle-0.6.ebuild index ac478023a9cc..08268e572163 100644 --- a/dev-vcs/git-mantle/git-mantle-0.6.ebuild +++ b/dev-vcs/git-mantle/git-mantle-0.6.ebuild @@ -1,9 +1,7 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 - -inherit eutils +EAPI=7 DESCRIPTION="Generate an overview of changes on a branch" HOMEPAGE="https://github.com/roman-neuhauser/git-mantle" @@ -12,15 +10,18 @@ SRC_URI="http://codex.sigpipe.cz/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" +IUSE="test" -KEYWORDS="~x86 ~amd64" +KEYWORDS="~amd64 ~x86" -DEPEND="" +DEPEND="test? ( dev-util/cram )" RDEPEND=" dev-vcs/git app-shells/zsh " -src_install(){ +src_install() { + # Don't install in /usr/local emake PREFIX="${ED}/usr" install + einstalldocs } |