mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
dev-vcs/hg-evolve: add 12.0.0
Signed-off-by: Cédric Krier <cedk@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST hg_evolve-11.1.10.tar.gz 902803 BLAKE2B f74743d0cbfc710178c9b9c8aa0de41bc0ef8e23e7dc2dc6bdb787e9112f47e905eb52decb46de791be8894afb0232d1862b5080c633cca9e15dea8066147cd9 SHA512 d81ac188fb3cd971395dd3f27743a09cbf5363f0c69bd7a7186b11f6f5c72ee8dc732b294231ca18fe425ed9ac336e26ecfa01a321daf38fc7603593c492eacc
|
||||
DIST hg_evolve-11.1.9.tar.gz 899260 BLAKE2B 23fb8d76e510f0668a5c39d93fca4a994bf489e4dd6c8775b4e8d7d74a2d8811fabbdf47ed2a608e906a2e113fc0df87dee76a134c3aa88e023d955427099226 SHA512 288d3c7e66ed523604a6ff034d27f3a245fcae674b1958831011add37ae0ac22137a7fc2f268d813795171ce1c2a09b8656381fd214c9312f96ccf968ddef1df
|
||||
DIST hg_evolve-12.0.0.tar.gz 889546 BLAKE2B 2fa0f07f5e19743906e292d10eee36645a02e9470aecea298d21d556409a4c5c677da44a0854a09cb5ff1a6423fe54e554ac774e9017e6277db9f4b80353b5a4 SHA512 8891421b927bd255b4032adc2d97824d7ed875294323f777f4b8dabfe7fe0df7ee9e59090e1c6cf345a199d7f8ddd8c5e969180d22273c50fde68de3fb8a35e4
|
||||
|
||||
44
dev-vcs/hg-evolve/hg-evolve-12.0.0.ebuild
Normal file
44
dev-vcs/hg-evolve/hg-evolve-12.0.0.ebuild
Normal file
@@ -0,0 +1,44 @@
|
||||
# Copyright 1999-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
PYTHON_COMPAT=( python3_{10..14} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="enables the changeset evolution feature of Mercurial"
|
||||
HOMEPAGE="https://www.mercurial-scm.org/doc/evolution/"
|
||||
|
||||
LICENSE="GPL-2+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="doc"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-vcs/mercurial-6.7[${PYTHON_USEDEP}]
|
||||
<dev-vcs/mercurial-7.3[${PYTHON_USEDEP}]
|
||||
$(python_gen_impl_dep sqlite)"
|
||||
DEPEND="${RDEPEND}
|
||||
doc? (
|
||||
dev-python/sphinx
|
||||
media-gfx/imagemagick[svg]
|
||||
)"
|
||||
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user