mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-08 22:25:42 +02:00
Signed-off-by: Alfred Wingate <parona@protonmail.com> Part-of: https://github.com/gentoo/gentoo/pull/42365 Closes: https://github.com/gentoo/gentoo/pull/42365 Signed-off-by: Sam James <sam@gentoo.org>
49 lines
1.2 KiB
Bash
49 lines
1.2 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{11..14} )
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
EPYTEST_XDIST=1
|
|
|
|
inherit distutils-r1 shell-completion
|
|
|
|
DESCRIPTION="Probably the sharpest git repo organizer & rebase/merge workflow automation tool"
|
|
HOMEPAGE="https://github.com/VirtusLab/git-machete https://pypi.org/project/git-machete/"
|
|
# No tests in PyPI tarballs
|
|
SRC_URI="https://github.com/VirtusLab/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~riscv"
|
|
|
|
RDEPEND="dev-vcs/git"
|
|
BDEPEND="
|
|
test? (
|
|
>=dev-python/pytest-mock-3.10.0[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-3.35.1_no-strays-in-site-packages.patch
|
|
)
|
|
|
|
DOCS=( CONTRIBUTING.md README.md )
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
# Several of the fish- and zsh-completion tests appear to be broken
|
|
EPYTEST_DESELECT=(
|
|
tests/completion_e2e/test_completion_e2e.py::TestCompletionEndToEnd::test_completion
|
|
)
|
|
|
|
src_install() {
|
|
distutils-r1_src_install
|
|
|
|
doman docs/man/${PN}.1
|
|
|
|
newbashcomp completion/${PN}.completion.bash ${PN}
|
|
dofishcomp completion/${PN}.fish
|
|
newzshcomp completion/${PN}.completion.zsh _${PN}
|
|
}
|