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 C235C1382C5 for ; Fri, 26 Feb 2021 14:26:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52CF0E0901; Fri, 26 Feb 2021 14:26:40 +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 3C540E0901 for ; Fri, 26 Feb 2021 14:26:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 0DBAF3410B7 for ; Fri, 26 Feb 2021 14:26:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 11A9858F for ; Fri, 26 Feb 2021 14:26:34 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1614349567.2a3e0847845f86d33af6b1597dbd5688a09485fd.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/pyhoca-gui/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/pyhoca-gui/pyhoca-gui-0.6.1.1.ebuild X-VCS-Directories: net-misc/pyhoca-gui/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2a3e0847845f86d33af6b1597dbd5688a09485fd X-VCS-Branch: master Date: Fri, 26 Feb 2021 14:26:34 +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: 5219b82a-0617-42a6-af5f-010145b0b151 X-Archives-Hash: dc502198769d3d41d50c593544be6075 commit: 2a3e0847845f86d33af6b1597dbd5688a09485fd Author: Jakov Smolic sartura hr> AuthorDate: Thu Feb 25 17:57:25 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Feb 26 14:26:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a3e0847 net-misc/pyhoca-gui: Port to python 3.{8,9} Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: Sam James gentoo.org> net-misc/pyhoca-gui/pyhoca-gui-0.6.1.1.ebuild | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/net-misc/pyhoca-gui/pyhoca-gui-0.6.1.1.ebuild b/net-misc/pyhoca-gui/pyhoca-gui-0.6.1.1.ebuild index 3d05ef2fc36..671e506e1ff 100644 --- a/net-misc/pyhoca-gui/pyhoca-gui-0.6.1.1.ebuild +++ b/net-misc/pyhoca-gui/pyhoca-gui-0.6.1.1.ebuild @@ -1,27 +1,32 @@ -# 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_7 ) +PYTHON_COMPAT=( python3_{7..9} ) inherit distutils-r1 DESCRIPTION="X2Go graphical client applet" HOMEPAGE="http://www.x2go.org" SRC_URI="http://code.x2go.org/releases/source/${PN}/${P}.tar.gz" -LICENSE="AGPL-3" +LICENSE="AGPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" -RDEPEND="dev-python/pycups[${PYTHON_USEDEP}] +RDEPEND=" + dev-python/pycups[${PYTHON_USEDEP}] dev-python/setproctitle[${PYTHON_USEDEP}] dev-python/wxpython[${PYTHON_USEDEP}] >=net-misc/python-x2go-0.6.1.1[${PYTHON_USEDEP}] x11-libs/libnotify" -DEPEND="${DEPEND} - dev-python/python-distutils-extra[${PYTHON_USEDEP}]" +BDEPEND="dev-python/python-distutils-extra[${PYTHON_USEDEP}]" + +python_prepare_all() { + # we don't need setuptools at runtime + sed -i -e '/install_requires/d' setup.py || die + distutils-r1_python_prepare_all +} python_install() { distutils-r1_python_install