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 56F0E138359 for ; Fri, 18 Sep 2020 23:59:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F042E0843; Fri, 18 Sep 2020 23:58:59 +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 83FBBE0843 for ; Fri, 18 Sep 2020 23:58:59 +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 77E8A341010 for ; Fri, 18 Sep 2020 23:58:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2EF4C2E1 for ; Fri, 18 Sep 2020 23:58:57 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1600473533.30b69e600706f7f99fdfef08a314b55b4399ad90.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyrfc3339/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyrfc3339/pyrfc3339-1.1.ebuild X-VCS-Directories: dev-python/pyrfc3339/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 30b69e600706f7f99fdfef08a314b55b4399ad90 X-VCS-Branch: master Date: Fri, 18 Sep 2020 23:58:57 +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: f961a54b-2b2d-4887-852f-ac776b370514 X-Archives-Hash: d4c622ddc85decc4d636e2a843f31c3d commit: 30b69e600706f7f99fdfef08a314b55b4399ad90 Author: Louis Sautier gentoo org> AuthorDate: Fri Sep 18 11:51:16 2020 +0000 Commit: Louis Sautier gentoo org> CommitDate: Fri Sep 18 23:58:53 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30b69e60 dev-python/pyrfc3339: add Python 3.9 support Use distutils_enable_tests, remove explicit setuptools dependency. Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: Louis Sautier gentoo.org> dev-python/pyrfc3339/pyrfc3339-1.1.ebuild | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/dev-python/pyrfc3339/pyrfc3339-1.1.ebuild b/dev-python/pyrfc3339/pyrfc3339-1.1.ebuild index 1fe1a474587..ab4cd2d8062 100644 --- a/dev-python/pyrfc3339/pyrfc3339-1.1.ebuild +++ b/dev-python/pyrfc3339/pyrfc3339-1.1.ebuild @@ -2,7 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=(python{3_6,3_7,3_8}) + +PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 MY_PN=pyRFC3339 @@ -11,20 +12,12 @@ MY_P=${MY_PN}-${PV} DESCRIPTION="Generates and parses RFC 3339 timestamps" HOMEPAGE="https://github.com/kurtraschke/pyRFC3339" SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" +S=${WORKDIR}/${MY_P} LICENSE="MIT" SLOT="0" KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86" -IUSE="test" -RESTRICT="!test? ( test )" RDEPEND="dev-python/pytz[${PYTHON_USEDEP}]" -DEPEND="test? ( ${RDEPEND} - dev-python/nose[${PYTHON_USEDEP}] ) - dev-python/setuptools[${PYTHON_USEDEP}]" - -S=${WORKDIR}/${MY_P} -python_test() { - nosetests || die -} +distutils_enable_tests nose