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 E023C138350 for ; Tue, 21 Apr 2020 12:31:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19735E08ED; Tue, 21 Apr 2020 12:31:37 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 0131FE08ED for ; Tue, 21 Apr 2020 12:31:36 +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 AD20534F10C for ; Tue, 21 Apr 2020 12:31:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 53B3C104 for ; Tue, 21 Apr 2020 12:31:33 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1587472252.bb8531b9e9fd9e0520439405d67c923b25c90534.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/gramps/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/gramps/gramps-5.1.2-r1.ebuild X-VCS-Directories: app-misc/gramps/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: bb8531b9e9fd9e0520439405d67c923b25c90534 X-VCS-Branch: master Date: Tue, 21 Apr 2020 12:31:33 +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: bedb19ef-99b5-42db-bbeb-8a4e81922454 X-Archives-Hash: 672486219916d0efd95ea4b21bd3c4c3 commit: bb8531b9e9fd9e0520439405d67c923b25c90534 Author: Marek Szuba gentoo org> AuthorDate: Tue Apr 21 12:25:51 2020 +0000 Commit: Marek Szuba gentoo org> CommitDate: Tue Apr 21 12:30:52 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb8531b9 app-misc/gramps: support python3_8 Builds and tests fine, runs fine too if installed with a version of distutils-r1.eclass not using --skip-build in the install phase. Signed-off-by: Marek Szuba gentoo.org> app-misc/gramps/gramps-5.1.2-r1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app-misc/gramps/gramps-5.1.2-r1.ebuild b/app-misc/gramps/gramps-5.1.2-r1.ebuild index b05f6a7ce78..c13785854d7 100644 --- a/app-misc/gramps/gramps-5.1.2-r1.ebuild +++ b/app-misc/gramps/gramps-5.1.2-r1.ebuild @@ -2,10 +2,11 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_COMPAT=( python3_{6,7,8} ) PYTHON_REQ_USE="sqlite" DISTUTILS_SINGLE_IMPL=1 +DISTUTILS_USE_SETUPTOOLS=no inherit distutils-r1 xdg-utils DESCRIPTION="Genealogical Research and Analysis Management Programming System"