Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/diamond/
Date: Sat, 25 Apr 2020 17:52:48
Message-Id: 1587837154.5342cc9445fcb7f8de0c5fda1bb636fab315ea1f.grobian@gentoo
1 commit: 5342cc9445fcb7f8de0c5fda1bb636fab315ea1f
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 25 17:52:24 2020 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 25 17:52:34 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5342cc94
7
8 app-admin/diamond: switch to mysqlclient and support py3.{7,8}
9
10 - switch from dev-python/mysql-python to dev-python/mysqlclient (#710026)
11 - support python 3.7 and 3.8 (#718176)
12 - drop ~arm because of unkeyworded dev-python/mysqlclient
13
14 Closes: https://bugs.gentoo.org/718176
15 Closes: https://bugs.gentoo.org/710026
16 Package-Manager: Portage-2.3.89, Repoman-2.3.20
17 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
18
19 app-admin/diamond/diamond-4.0.515.20170311.ebuild | 6 +++---
20 1 file changed, 3 insertions(+), 3 deletions(-)
21
22 diff --git a/app-admin/diamond/diamond-4.0.515.20170311.ebuild b/app-admin/diamond/diamond-4.0.515.20170311.ebuild
23 index 6cb19661490..80dbc4734ec 100644
24 --- a/app-admin/diamond/diamond-4.0.515.20170311.ebuild
25 +++ b/app-admin/diamond/diamond-4.0.515.20170311.ebuild
26 @@ -10,11 +10,11 @@ if [[ ${PV} = 9999* ]]; then
27 else
28 GHASH=73207d04e0739a4ce92bc201b36681c42d9fa7e7 # python3 branch
29 SRC_URI="https://github.com/python-diamond/Diamond/archive/${GHASH}.tar.gz -> python-diamond-${PV}.tar.gz"
30 - KEYWORDS="amd64 ~arm x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
31 + KEYWORDS="amd64 x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
32 S=${WORKDIR}/Diamond-${GHASH}
33 fi
34
35 -PYTHON_COMPAT=( python3_6 )
36 +PYTHON_COMPAT=( python3_{6,7,8} )
37
38 inherit distutils-r1 prefix
39
40 @@ -29,7 +29,7 @@ RESTRICT="!test? ( test )"
41 RDEPEND="dev-python/configobj
42 dev-python/setproctitle
43 mongo? ( dev-python/pymongo )
44 - mysql? ( dev-python/mysql-python )
45 + mysql? ( dev-python/mysqlclient )
46 snmp? ( dev-python/pysnmp )
47 redis? ( dev-python/redis-py )
48 !kernel_linux? ( >=dev-python/psutil-3 )"