diff options
author | 2019-04-23 00:16:09 +0300 | |
---|---|---|
committer | 2019-04-24 08:16:11 +0200 | |
commit | 16736964cb64af459d380b48b9f1eeeae1c069f5 (patch) | |
tree | ba147c6c92e66c261436549a35ac47f5de785fe4 /dev-vcs/git-remote-hg | |
parent | media-radio/qrq: Fix wrong handling of USE-flags during src_install() (diff) | |
download | gentoo-16736964cb64af459d380b48b9f1eeeae1c069f5.tar.gz gentoo-16736964cb64af459d380b48b9f1eeeae1c069f5.tar.bz2 gentoo-16736964cb64af459d380b48b9f1eeeae1c069f5.zip |
dev-vcs/git-remote-hg: simplify deps, remove redundant src_test()
Closes: https://bugs.gentoo.org/678108
Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Nikos Chantziaras <realnc@gmail.com>
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-vcs/git-remote-hg')
-rw-r--r-- | dev-vcs/git-remote-hg/git-remote-hg-1.0.0-r1.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/dev-vcs/git-remote-hg/git-remote-hg-1.0.0-r1.ebuild b/dev-vcs/git-remote-hg/git-remote-hg-1.0.0-r1.ebuild new file mode 100644 index 000000000000..18d62626ba6e --- /dev/null +++ b/dev-vcs/git-remote-hg/git-remote-hg-1.0.0-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="Semi-official Mercurial bridge from Git project" +HOMEPAGE="https://github.com/mnauw/git-remote-hg" +SRC_URI="https://github.com/mnauw/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND=" + app-text/asciidoc +" +DEPEND="${PYTHON_DEPEND}" +RDEPEND=" + ${DEPEND} + dev-vcs/git + dev-vcs/mercurial +" + +PATCHES=( + "${FILESDIR}/${PN}-1.0.0-get_version_from_release.patch" +) + +# Some tests fail. +RESTRICT="test" + +src_compile() { + distutils-r1_src_compile + emake doc +} + +src_install() { + distutils-r1_src_install + emake DESTDIR="${D}" prefix="${EPREFIX}/usr" install-doc +} |