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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7AC1C139335 for ; Mon, 28 Jun 2021 17:11:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3BA4E07B3; Mon, 28 Jun 2021 17:11:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 86B4CE07B3 for ; Mon, 28 Jun 2021 17:11:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 83FA3335DCE for ; Mon, 28 Jun 2021 17:11:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D87BB797 for ; Mon, 28 Jun 2021 17:11:46 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1624900287.4189f529dec8932bcccc9a2ec64c99b1750bf6a4.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/gixy/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/gixy/gixy-0.1.20.ebuild X-VCS-Directories: app-admin/gixy/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 4189f529dec8932bcccc9a2ec64c99b1750bf6a4 X-VCS-Branch: master Date: Mon, 28 Jun 2021 17:11:46 +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: 3ef71c7c-a2b3-4c22-8b98-720efad16a6d X-Archives-Hash: 23c00efe089d5bf888bd5d219511863e commit: 4189f529dec8932bcccc9a2ec64c99b1750bf6a4 Author: David Seifert gentoo org> AuthorDate: Mon Jun 28 17:11:27 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Jun 28 17:11:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4189f529 app-admin/gixy: [QA] fix python_prepare_all Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: David Seifert gentoo.org> app-admin/gixy/gixy-0.1.20.ebuild | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/app-admin/gixy/gixy-0.1.20.ebuild b/app-admin/gixy/gixy-0.1.20.ebuild index c31b3f93008..6f531a1ac95 100644 --- a/app-admin/gixy/gixy-0.1.20.ebuild +++ b/app-admin/gixy/gixy-0.1.20.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 @@ -16,27 +16,17 @@ SRC_URI="https://github.com/yandex/gixy/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MPL-2.0" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" -RDEPEND=">=dev-python/pyparsing-1.5.5[${PYTHON_USEDEP}] +RDEPEND=" + >=dev-python/pyparsing-1.5.5[${PYTHON_USEDEP}] >=dev-python/cached-property-1.2.0[${PYTHON_USEDEP}] >=dev-python/configargparse-0.11.0[${PYTHON_USEDEP}] >=dev-python/jinja-2.8[${PYTHON_USEDEP}] >=dev-python/six-1.1.0[${PYTHON_USEDEP}]" -BDEPEND=" - test? ( - dev-python/nose[${PYTHON_USEDEP}] - ${RDEPEND} - ) -" +distutils_enable_tests nose -python_prepare() { +python_prepare_all() { sed -i -e "/argparse/d" setup.py || die distutils-r1_python_prepare_all } - -python_test() { - nosetests -v || die -}