Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-mptt/
Date: Sat, 30 Jan 2021 20:27:20
Message-Id: 1612038396.59688e5a531f3a4c96b8b5a30584613f8a11a91e.conikost@gentoo
1 commit: 59688e5a531f3a4c96b8b5a30584613f8a11a91e
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 30 20:03:16 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 30 20:26:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59688e5a
7
8 dev-python/django-mptt: add python3_9 support
9
10 Closes: https://bugs.gentoo.org/767004
11 Package-Manager: Portage-3.0.14, Repoman-3.0.2
12 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
13
14 dev-python/django-mptt/django-mptt-0.11.0.ebuild | 14 ++++++++------
15 1 file changed, 8 insertions(+), 6 deletions(-)
16
17 diff --git a/dev-python/django-mptt/django-mptt-0.11.0.ebuild b/dev-python/django-mptt/django-mptt-0.11.0.ebuild
18 index 5267efd2f58..c289a261883 100644
19 --- a/dev-python/django-mptt/django-mptt-0.11.0.ebuild
20 +++ b/dev-python/django-mptt/django-mptt-0.11.0.ebuild
21 @@ -1,9 +1,9 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 +# Copyright 1999-2021 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27
28 -PYTHON_COMPAT=( python3_6 python3_7 )
29 +PYTHON_COMPAT=( python3_{3..9} )
30 inherit distutils-r1
31
32 DESCRIPTION="utilities for modified preorder tree traversal and trees of model instances"
33 @@ -14,7 +14,9 @@ LICENSE="MIT"
34 SLOT="0"
35 KEYWORDS="~amd64"
36
37 -RDEPEND=">=dev-python/django-1.11[${PYTHON_USEDEP}]
38 - dev-python/django-js-asset[${PYTHON_USEDEP}]"
39 -DEPEND="${RDEPEND}
40 -dev-python/setuptools[${PYTHON_USEDEP}]"
41 +RDEPEND="
42 + >=dev-python/django-1.11[${PYTHON_USEDEP}]
43 + dev-python/django-js-asset[${PYTHON_USEDEP}]
44 +"
45 +
46 +DEPEND="${RDEPEND}"