From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1F608158086 for ; Wed, 29 Dec 2021 03:26:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F2D782BC003; Wed, 29 Dec 2021 03:26:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 48C342BC003 for ; Wed, 29 Dec 2021 03:26:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BB25A342BA2 for ; Wed, 29 Dec 2021 03:26:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 113D21CE for ; Wed, 29 Dec 2021 03:26:44 +0000 (UTC) From: "Matthew Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Thode" Message-ID: <1640748394.b364000bbbd6eaa5cf546dd4020a3a3b7e62b0ff.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/git-review/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/git-review/git-review-9999.ebuild X-VCS-Directories: dev-python/git-review/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matthew Thode X-VCS-Revision: b364000bbbd6eaa5cf546dd4020a3a3b7e62b0ff X-VCS-Branch: master Date: Wed, 29 Dec 2021 03:26:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ff33c513-5849-4b0f-a4b9-5ebed800a44d X-Archives-Hash: 4cae917bef337e94fc0cbab7bf0fe976 commit: b364000bbbd6eaa5cf546dd4020a3a3b7e62b0ff Author: Matthew Thode gentoo org> AuthorDate: Wed Dec 29 03:25:26 2021 +0000 Commit: Matthew Thode gentoo org> CommitDate: Wed Dec 29 03:26:34 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b364000b dev-python/git-review: 9999 bump for git 2.18 fix Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Matthew Thode gentoo.org> dev-python/git-review/git-review-9999.ebuild | 30 ++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/dev-python/git-review/git-review-9999.ebuild b/dev-python/git-review/git-review-9999.ebuild new file mode 100644 index 000000000000..bd9c8e269e6b --- /dev/null +++ b/dev-python/git-review/git-review-9999.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_7 python3_8 python3_9 ) +DISTUTILS_USE_SETUPTOOLS= + +inherit distutils-r1 + +DESCRIPTION="Tool to submit code to Gerrit" +HOMEPAGE="https://git.openstack.org/cgit/openstack-infra/git-review" +if [[ ${PV} == 9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://opendev.org/opendev/${PN}.git" +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux" +fi + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="" + +DEPEND=">=dev-python/pbr-4.1.0[${PYTHON_USEDEP}]" +RDEPEND=">=dev-python/requests-1.1[${PYTHON_USEDEP}]" + +python_prepare_all() { + sed -i -e '/manpages/,+1d' setup.cfg || die + distutils-r1_python_prepare_all +}