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 0567713835B for ; Mon, 12 Oct 2020 12:40:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 652D4E0935; Mon, 12 Oct 2020 12:40:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 4E158E0935 for ; Mon, 12 Oct 2020 12:40:00 +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 567F5340B66 for ; Mon, 12 Oct 2020 12:39:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EA80D3A9 for ; Mon, 12 Oct 2020 12:39:56 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1602506388.b4676347453462f38a39d7334cd7ddfb736098bc.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/tortoisehg/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/tortoisehg/tortoisehg-9999.ebuild X-VCS-Directories: dev-vcs/tortoisehg/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: b4676347453462f38a39d7334cd7ddfb736098bc X-VCS-Branch: master Date: Mon, 12 Oct 2020 12:39:56 +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: 1955ddb8-74b2-42d9-8046-c4ae3b92f4ed X-Archives-Hash: e8c08a311c1dd934c3ff51bbda802b86 commit: b4676347453462f38a39d7334cd7ddfb736098bc Author: Sergey Torokhov yandex ru> AuthorDate: Wed Oct 7 04:30:27 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Mon Oct 12 12:39:48 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4676347 dev-vcs/tortoisehg: live-ebuild update Update with fix of warning * DISTUTILS_USE_SETUPTOOLS value is probably incorrect * have: DISTUTILS_USE_SETUPTOOLS=bdepend (or unset) * expected: DISTUTILS_USE_SETUPTOOLS=no by setup 'DISTUTILS_USE_SETUPTOOLS=no' Signed-off-by: Sergey Torokhov yandex.ru> Closes: https://github.com/gentoo/gentoo/pull/17831 Signed-off-by: Joonas Niilola gentoo.org> dev-vcs/tortoisehg/tortoisehg-9999.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-vcs/tortoisehg/tortoisehg-9999.ebuild b/dev-vcs/tortoisehg/tortoisehg-9999.ebuild index 1a78d11682d..479ec0fd1be 100644 --- a/dev-vcs/tortoisehg/tortoisehg-9999.ebuild +++ b/dev-vcs/tortoisehg/tortoisehg-9999.ebuild @@ -4,6 +4,8 @@ EAPI=7 PYTHON_COMPAT=( python3_{6,7,8} ) +DISTUTILS_USE_SETUPTOOLS=no + inherit desktop distutils-r1 xdg-utils if [[ ${PV} != *9999* ]]; then @@ -29,7 +31,8 @@ RDEPEND=" dev-python/iniparse[${PYTHON_USEDEP}] dev-python/pygments[${PYTHON_USEDEP}] dev-python/PyQt5[network,svg,${PYTHON_USEDEP}] - >=dev-python/qscintilla-python-2.9.4[qt5(+),${PYTHON_USEDEP}]" + >=dev-python/qscintilla-python-2.9.4[qt5(+),${PYTHON_USEDEP}] +" DEPEND="${RDEPEND}" distutils_enable_sphinx doc/source