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 A75F6158013 for ; Mon, 27 Sep 2021 09:29:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C0AF3E0922; Mon, 27 Sep 2021 09:29:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 95055E0921 for ; Mon, 27 Sep 2021 09:29:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9EF82342EF8 for ; Mon, 27 Sep 2021 09:29:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DEBAB10D for ; Mon, 27 Sep 2021 09:29:42 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1632734942.c4488912f7cc1fe4f5fc39023fd5fd707a089c7f.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flufl-i18n/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/flufl-i18n/flufl-i18n-3.2.ebuild X-VCS-Directories: dev-python/flufl-i18n/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: c4488912f7cc1fe4f5fc39023fd5fd707a089c7f X-VCS-Branch: master Date: Mon, 27 Sep 2021 09:29:42 +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: dfa7b662-fe93-46df-b949-ca61c224b1d8 X-Archives-Hash: 0166749d48ec301c55d4a602ad6bce3e commit: c4488912f7cc1fe4f5fc39023fd5fd707a089c7f Author: Arthur Zamarin gentoo org> AuthorDate: Mon Sep 27 07:12:06 2021 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Mon Sep 27 09:29:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4488912 dev-python/flufl-i18n: enable py3.10, cleanup Signed-off-by: Arthur Zamarin gentoo.org> dev-python/flufl-i18n/flufl-i18n-3.2.ebuild | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/dev-python/flufl-i18n/flufl-i18n-3.2.ebuild b/dev-python/flufl-i18n/flufl-i18n-3.2.ebuild index bc9300e4f4e..59ecea88255 100644 --- a/dev-python/flufl-i18n/flufl-i18n-3.2.ebuild +++ b/dev-python/flufl-i18n/flufl-i18n-3.2.ebuild @@ -3,31 +3,27 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 MY_P=${P/-/.} + DESCRIPTION="A high level API for Python internationalization" HOMEPAGE="https://gitlab.com/warsaw/flufl.i18n" SRC_URI="mirror://pypi/${PN::1}/${PN/-/.}/${MY_P}.tar.gz" -S=${WORKDIR}/${MY_P} +S="${WORKDIR}/${MY_P}" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~x86" -RDEPEND=" - dev-python/atpublic[${PYTHON_USEDEP}] - $(python_gen_cond_dep ' - dev-python/typing-extensions[${PYTHON_USEDEP}] - ' python3_7)" -BDEPEND=" - test? ( dev-python/sybil[${PYTHON_USEDEP}] )" +RDEPEND="dev-python/atpublic[${PYTHON_USEDEP}]" +BDEPEND="test? ( dev-python/sybil[${PYTHON_USEDEP}] )" distutils_enable_tests pytest src_prepare() { - sed -i -e 's:--cov=flufl::' setup.cfg || die + sed -e '/addopts/d' -i setup.cfg || die distutils-r1_src_prepare }