summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Krier <cedk@gentoo.org>2021-03-06 10:07:49 +0100
committerCédric Krier <cedk@gentoo.org>2021-03-06 10:09:04 +0100
commit33a25c698d4a30956c83cbff03912662ac297b51 (patch)
tree9808e1f02659460cb0eb043360aceb3b2bea1e52 /dev-vcs
parentdev-vcs/mercurial: add support for python 3.9 (diff)
downloadgentoo-33a25c698d4a30956c83cbff03912662ac297b51.tar.gz
gentoo-33a25c698d4a30956c83cbff03912662ac297b51.tar.bz2
gentoo-33a25c698d4a30956c83cbff03912662ac297b51.zip
dev-vcs/hg-evolve: clean old
Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Cédric Krier <cedk@gentoo.org>
Diffstat (limited to 'dev-vcs')
-rw-r--r--dev-vcs/hg-evolve/Manifest1
-rw-r--r--dev-vcs/hg-evolve/hg-evolve-10.1.0.ebuild40
2 files changed, 0 insertions, 41 deletions
diff --git a/dev-vcs/hg-evolve/Manifest b/dev-vcs/hg-evolve/Manifest
index eb4fb323c1da..518b3a5916e2 100644
--- a/dev-vcs/hg-evolve/Manifest
+++ b/dev-vcs/hg-evolve/Manifest
@@ -1,2 +1 @@
-DIST hg-evolve-10.1.0.tar.gz 836446 BLAKE2B 566c8fdaf9e21bcbda97a6db43624c7c3265163546800aaebf5b3d3024e8c27e8442b7eb0668e002d020c154119a5d79ffbf9c77507e97218cd7433e0903895c SHA512 26333db8f71a6116ce9d8cbb21940befa573c1bbba3361af4776b4b2d3a3eca33b2c01ab5b5c9dc95810fb89f1e84b2ad85bf0a48989f5c583ebfca922d7d4da
DIST hg-evolve-10.2.0.post1.tar.gz 822791 BLAKE2B a6d33b7afe4aa366d3d9f4bf69aa3512a7e1d4f70a6a0fc600b97dbb6bb99be437a2c7ec75b78fffe4be9f42f1d2e2c3acbda79d82852ae83885bb206863b0ae SHA512 474f3cc8812b0dda368118c1f3b86be55191ddd876e7b457fa8c8b62c06496a903e551c2692daebef8374d7edfb8c298657a62d52a43e684e22a45b1ccc3307b
diff --git a/dev-vcs/hg-evolve/hg-evolve-10.1.0.ebuild b/dev-vcs/hg-evolve/hg-evolve-10.1.0.ebuild
deleted file mode 100644
index f0e8801dbe23..000000000000
--- a/dev-vcs/hg-evolve/hg-evolve-10.1.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7..8} )
-DISTUTILS_USE_SETUPTOOLS=no
-
-inherit distutils-r1
-
-DESCRIPTION="enables the changeset evolution feature of Mercurial"
-HOMEPAGE="https://www.mercurial-scm.org/doc/evolution/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-RDEPEND="
- >=dev-vcs/mercurial-4.6[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- doc? ( dev-python/sphinx )"
-
-python_prepare_all() {
- rm hgext3rd/__init__.py || die
-
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && emake -C docs all
-}
-
-python_install_all() {
- distutils-r1_python_install_all
-
- if use doc; then
- dodoc -r html/
- fi
-}