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 4D2571382C5 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 394BEE0B51; 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 12890E0B54 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 08884341006 for ; Sat, 30 Jan 2021 20:27:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 14A4B4B4 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: <1612038396.59688e5a531f3a4c96b8b5a30584613f8a11a91e.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-mptt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/django-mptt/django-mptt-0.11.0.ebuild X-VCS-Directories: dev-python/django-mptt/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 59688e5a531f3a4c96b8b5a30584613f8a11a91e 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: 03ad6e47-c6af-4c87-8bb6-8b65cff03c59 X-Archives-Hash: f46870255e86414c47333a5f0429cc50 commit: 59688e5a531f3a4c96b8b5a30584613f8a11a91e Author: Conrad Kostecki gentoo org> AuthorDate: Sat Jan 30 20:03:16 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Jan 30 20:26:36 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59688e5a dev-python/django-mptt: add python3_9 support Closes: https://bugs.gentoo.org/767004 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Conrad Kostecki gentoo.org> dev-python/django-mptt/django-mptt-0.11.0.ebuild | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/dev-python/django-mptt/django-mptt-0.11.0.ebuild b/dev-python/django-mptt/django-mptt-0.11.0.ebuild index 5267efd2f58..c289a261883 100644 --- a/dev-python/django-mptt/django-mptt-0.11.0.ebuild +++ b/dev-python/django-mptt/django-mptt-0.11.0.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 python3_7 ) +PYTHON_COMPAT=( python3_{3..9} ) inherit distutils-r1 DESCRIPTION="utilities for modified preorder tree traversal and trees of model instances" @@ -14,7 +14,9 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" -RDEPEND=">=dev-python/django-1.11[${PYTHON_USEDEP}] - dev-python/django-js-asset[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} -dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND=" + >=dev-python/django-1.11[${PYTHON_USEDEP}] + dev-python/django-js-asset[${PYTHON_USEDEP}] +" + +DEPEND="${RDEPEND}"