# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="2" PYTHON_DEPEND="2:2.4" SUPPORT_PYTHON_ABIS="1" inherit python mercurial DESCRIPTION="History editing plugin for Mercurial, heavily inspired by git rebase --interactive." HOMEPAGE="http://www.bitbucket.org/durin42/histedit/" EHG_REPO_URI="http://bitbucket.org/durin42/${PN}/" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="" DEPEND="" RDEPEND=">=dev-vcs/mercurial-1.4" RESTRICT_PYTHON_ABIS="3.*" S="${WORKDIR}/${PN}" src_compile() { true } src_install() { installation() { insinto "$(python_get_sitedir)/${PN}" doins ${S}/__init__.py } python_execute_function -q installation dodoc README } src_test() { make tests || die "Tests failed" } pkg_postinst() { python_mod_optimize ${PN} } pkg_postrm() { python_mod_cleanup ${PN} }