diff options
author | Nikos Chantziaras <realnc@gmail.com> | 2019-04-24 00:07:14 +0300 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-04-24 08:16:27 +0200 |
commit | f8abcf582c996a00dd79faf0323214164b18ea9d (patch) | |
tree | faf713e06144e1d9f60a1ec3125aaf5bdbbe76c2 /dev-vcs | |
parent | dev-vcs/git-remote-hg: Add maintainer, update metadata upstream (diff) | |
download | gentoo-f8abcf582c996a00dd79faf0323214164b18ea9d.tar.gz gentoo-f8abcf582c996a00dd79faf0323214164b18ea9d.tar.bz2 gentoo-f8abcf582c996a00dd79faf0323214164b18ea9d.zip |
dev-vcs/git-remote-hg: Delete 1.0.0
Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Nikos Chantziaras <realnc@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11061
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/git-remote-hg/git-remote-hg-1.0.0.ebuild | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/dev-vcs/git-remote-hg/git-remote-hg-1.0.0.ebuild b/dev-vcs/git-remote-hg/git-remote-hg-1.0.0.ebuild deleted file mode 100644 index be29b35c4e6f..000000000000 --- a/dev-vcs/git-remote-hg/git-remote-hg-1.0.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# 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" - -CDEPEND=" - ${PYTHON_DEPEND} -" -RDEPEND=" - ${CDEPEND} - dev-vcs/git - dev-vcs/mercurial -" -DEPEND="${CDEPEND}" -BDEPEND=" - app-text/asciidoc -" - -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 -} - -src_test() { - pushd test &>/dev/null || die - default -} |