# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 DESCRIPTION="Breezy is a friendly powerful distributed version control system." HOMEPAGE="https://launchpad.net/brz" LICENSE="GPL-2+ Apache-2.0" KEYWORDS="amd64 x86" SLOT="0" PYTHON_COMPAT=( python3_{6,7,8,9} ) inherit distutils-r1 IUSE="gpg sftp test" REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND=" dev-python/configobj[${PYTHON_USEDEP}] >=dev-python/dulwich-0.19.12[${PYTHON_USEDEP}] dev-python/patiencediff[${PYTHON_USEDEP}] dev-python/python-fastimport[${PYTHON_USEDEP}] >=dev-python/six-1.9.0[${PYTHON_USEDEP}] gpg? ( app-crypt/gpgme[${PYTHON_USEDEP}] ) sftp? ( dev-python/paramiko[${PYTHON_USEDEP}] dev-python/pycrypto[${PYTHON_USEDEP}] ) " DEPEND="${RDEPEND} test? ( dev-python/testtools[${PYTHON_USEDEP}] )" SRC_URI="https://launchpad.net/brz/$(ver_cut 1-2 ${PV})/${PV}/+download/${PN}-${PV}.tar.gz" inherit autotools S="${WORKDIR}/${PN}-${PV}" RESTRICT="mirror" src_install() { distutils-r1_src_install mv "${ED}/usr/man" "${ED}/usr/share" || die }