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 B3E9C13835A for ; Fri, 26 Feb 2021 14:26:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1FF9EE08D3; Fri, 26 Feb 2021 14:26:38 +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 0663BE08D3 for ; Fri, 26 Feb 2021 14:26:38 +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 8EBD034109E for ; Fri, 26 Feb 2021 14:26:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CB142586 for ; Fri, 26 Feb 2021 14:26:33 +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: <1614349565.4473f3a6338ff271d2f42f956de3e5d26509b51c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/pyhoca-cli/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/pyhoca-cli/pyhoca-cli-0.6.1.2.ebuild X-VCS-Directories: net-misc/pyhoca-cli/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4473f3a6338ff271d2f42f956de3e5d26509b51c X-VCS-Branch: master Date: Fri, 26 Feb 2021 14:26: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: 7a5ee123-5ae3-4349-853a-740fb6ac07b0 X-Archives-Hash: 7dfde065329f2dbf234148b5f6287687 commit: 4473f3a6338ff271d2f42f956de3e5d26509b51c Author: Jakov Smolic sartura hr> AuthorDate: Thu Feb 25 17:57:23 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Feb 26 14:26:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4473f3a6 net-misc/pyhoca-cli: Port to python 3.{8,9} Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: Sam James gentoo.org> net-misc/pyhoca-cli/pyhoca-cli-0.6.1.2.ebuild | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/net-misc/pyhoca-cli/pyhoca-cli-0.6.1.2.ebuild b/net-misc/pyhoca-cli/pyhoca-cli-0.6.1.2.ebuild index 3f2ee619345..107198b5c85 100644 --- a/net-misc/pyhoca-cli/pyhoca-cli-0.6.1.2.ebuild +++ b/net-misc/pyhoca-cli/pyhoca-cli-0.6.1.2.ebuild @@ -3,21 +3,26 @@ EAPI=7 -PYTHON_COMPAT=( python3_7 ) +PYTHON_COMPAT=( python3_{7..9} ) inherit distutils-r1 DESCRIPTION="X2Go command line client" 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="" -DEPEND="dev-python/setproctitle[${PYTHON_USEDEP}] +RDEPEND=" + dev-python/setproctitle[${PYTHON_USEDEP}] >=net-misc/python-x2go-0.6.1.1[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND}" + +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