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 3298913835A for ; Fri, 5 Jun 2020 16:04:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F9C0E0894; Fri, 5 Jun 2020 16:04:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 46E86E0894 for ; Fri, 5 Jun 2020 16:04:04 +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 4665E34F1D3 for ; Fri, 5 Jun 2020 16:04:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6476A286 for ; Fri, 5 Jun 2020 16:03:58 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1591373032.9ab5cd9dd7eb30b5188e37e27f9b4489ecbd43ba.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/kiwisolver/kiwisolver-1.2.0.ebuild X-VCS-Directories: dev-python/kiwisolver/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9ab5cd9dd7eb30b5188e37e27f9b4489ecbd43ba X-VCS-Branch: master Date: Fri, 5 Jun 2020 16:03:58 +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: dd85a5d1-4211-4065-a7ca-bbeafca9300e X-Archives-Hash: e15c5e4890d610996d3dc0d0324ba106 commit: 9ab5cd9dd7eb30b5188e37e27f9b4489ecbd43ba Author: Michał Górny gentoo org> AuthorDate: Fri Jun 5 15:43:09 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jun 5 16:03:52 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ab5cd9d dev-python/kiwisolver: Port to py39 Signed-off-by: Michał Górny gentoo.org> dev-python/kiwisolver/kiwisolver-1.2.0.ebuild | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild b/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild index 3a1f79a6685..2d2ec37813a 100644 --- a/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild +++ b/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild @@ -2,13 +2,14 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 DESCRIPTION="An efficient C++ implementation of the Cassowary constraint solving algorithm" HOMEPAGE="https://github.com/nucleic/kiwi" SRC_URI="https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}"/kiwi-${PV} LICENSE="Clear-BSD" SLOT="0" @@ -17,8 +18,5 @@ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" RDEPEND=" >=dev-python/cppy-1.1.0[${PYTHON_USEDEP}] " -BDEPEND="${RDEPEND}" - -S="${WORKDIR}"/kiwi-${PV} distutils_enable_tests pytest