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 AC88A13835A for ; Sat, 30 Jan 2021 20:27:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 397C2E0B54; Sat, 30 Jan 2021 20:27:19 +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 11F31E0B51 for ; Sat, 30 Jan 2021 20:27:19 +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 DEDDF340FE4 for ; Sat, 30 Jan 2021 20:27:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 011B04B3 for ; Sat, 30 Jan 2021 20:27:14 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1612038395.245de16916deb56532a409d420fa6013b9c6ecee.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-js-asset/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/django-js-asset/django-js-asset-1.2.2.ebuild X-VCS-Directories: dev-python/django-js-asset/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 245de16916deb56532a409d420fa6013b9c6ecee X-VCS-Branch: master Date: Sat, 30 Jan 2021 20:27:14 +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: dfe19247-042d-4a3e-9bc4-0e337c603421 X-Archives-Hash: c609b7335181ba50c0729168f171e2d0 commit: 245de16916deb56532a409d420fa6013b9c6ecee Author: Conrad Kostecki gentoo org> AuthorDate: Sat Jan 30 19:58:57 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Jan 30 20:26:35 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=245de169 dev-python/django-js-asset: add python3_9 support Closes: https://bugs.gentoo.org/767001 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Conrad Kostecki gentoo.org> dev-python/django-js-asset/django-js-asset-1.2.2.ebuild | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/dev-python/django-js-asset/django-js-asset-1.2.2.ebuild b/dev-python/django-js-asset/django-js-asset-1.2.2.ebuild index c252e0ece1b..16175edec80 100644 --- a/dev-python/django-js-asset/django-js-asset-1.2.2.ebuild +++ b/dev-python/django-js-asset/django-js-asset-1.2.2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_COMPAT=( python3_{7..9} ) inherit distutils-r1 DESCRIPTION="script tag with additional attributes for django.forms.Media" @@ -13,7 +13,10 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64" +RESTRICT="test" RDEPEND=">=dev-python/django-1.17[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} -dev-python/setuptools[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}" +BDEPEND="test? ( dev-python/coverage[${PYTHON_USEDEP}] )" + +distutils_enable_tests setup.py