41 lines
962 B
Bash
41 lines
962 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{10..12} )
|
|
|
|
inherit bash-completion-r1 distutils-r1
|
|
|
|
DESCRIPTION="Incremental merge for git"
|
|
HOMEPAGE="https://github.com/mhagger/git-imerge"
|
|
SRC_URI="https://github.com/mhagger/git-imerge/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
RDEPEND="${PYTHON_DEPS}
|
|
dev-vcs/git"
|
|
DEPEND="dev-python/docutils"
|
|
|
|
src_compile() {
|
|
distutils-r1_src_compile
|
|
rst2s5.py \
|
|
--theme=small-white \
|
|
--current-slide \
|
|
doc/presentations/GitMerge-2013/talk.rst \
|
|
"${T}/talk.html" \
|
|
|| die 'failed to convert talk.rst to ${T}/talk.html'
|
|
}
|
|
|
|
src_install() {
|
|
distutils-r1_src_install
|
|
newbashcomp completions/git-imerge git-imerge
|
|
dodoc "${T}"/*html
|
|
# Don't forget the CSS for the presentation.
|
|
dodoc -r "${T}/ui"
|
|
}
|