mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-02-13 14:57:30 -08:00
Required for dev-vcs/git-2.15.1 or greater, and compatible with all versions currently in ::gentoo Reference: https://git.openstack.org/cgit/openstack-infra/git-review/commit/?id=ef47e1f55340e53bab58e8af92af0df7986e971a Closes: https://github.com/gentoo/gentoo/pull/6909 Package-Manager: Portage-2.3.19, Repoman-2.3.6 Signed-off-by: Marty E. Plummer <hanetzer@startmail.com> Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
30 lines
667 B
Bash
30 lines
667 B
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Tool to submit code to Gerrit"
|
|
HOMEPAGE="https://git.openstack.org/cgit/openstack-infra/git-review"
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
>=dev-python/pbr-0.8.0[${PYTHON_USEDEP}]
|
|
"
|
|
RDEPEND="
|
|
>=dev-python/requests-1.1[${PYTHON_USEDEP}]
|
|
"
|
|
|
|
python_prepare_all() {
|
|
sed -i '/^argparse/d' requirements.txt || die
|
|
distutils-r1_python_prepare_all
|
|
}
|