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 EDEE713835B for ; Sat, 22 Aug 2020 08:04:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 241BCE0821; Sat, 22 Aug 2020 08:04:37 +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 0B42BE0821 for ; Sat, 22 Aug 2020 08:04:37 +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 29DCA340E31 for ; Sat, 22 Aug 2020 08:04:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 942F12CC for ; Sat, 22 Aug 2020 08:04:32 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1598083453.3bc08ce7d421fe58a2b03e7c06255e1fc8b0fb16.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/bluefish/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/bluefish/bluefish-2.2.10.ebuild X-VCS-Directories: app-editors/bluefish/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3bc08ce7d421fe58a2b03e7c06255e1fc8b0fb16 X-VCS-Branch: master Date: Sat, 22 Aug 2020 08:04:32 +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: 337645a6-a6b4-4cd2-8453-ef6b7a9e4e14 X-Archives-Hash: 60b3b2cdeece4108e9e8a3bcc3f86bd0 commit: 3bc08ce7d421fe58a2b03e7c06255e1fc8b0fb16 Author: Michał Górny gentoo org> AuthorDate: Sat Aug 22 07:32:26 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Aug 22 08:04:13 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bc08ce7 app-editors/bluefish: Eradicate python2 support Closes: https://bugs.gentoo.org/735208 Signed-off-by: Michał Górny gentoo.org> app-editors/bluefish/bluefish-2.2.10.ebuild | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/app-editors/bluefish/bluefish-2.2.10.ebuild b/app-editors/bluefish/bluefish-2.2.10.ebuild index dba37b3e1c6..324637670ba 100644 --- a/app-editors/bluefish/bluefish-2.2.10.ebuild +++ b/app-editors/bluefish/bluefish-2.2.10.ebuild @@ -3,9 +3,7 @@ EAPI=6 -PYTHON_COMPAT=( python2_7 ) - -inherit autotools gnome2-utils python-single-r1 xdg-utils +inherit autotools gnome2-utils xdg-utils MY_P=${P/_/-} @@ -16,8 +14,7 @@ HOMEPAGE="http://bluefish.openoffice.nl/" LICENSE="GPL-2" KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86" SLOT="0" -IUSE="+gtk3 gucharmap nls python spell" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" +IUSE="+gtk3 gucharmap nls spell" RDEPEND=" sys-libs/zlib @@ -26,7 +23,6 @@ RDEPEND=" x11-libs/gtk+:3 gucharmap? ( gnome-extra/gucharmap:2.90 ) ) - python? ( ${PYTHON_DEPS} ) spell? ( >=app-text/enchant-1.4:0 )" DEPEND="${RDEPEND} dev-libs/libxml2:2 @@ -48,8 +44,6 @@ pkg_setup() { ewarn "gucharmap USE flag requires the gtk3 USE flag being enabled." ewarn "Disabling charmap plugin." fi - - use python && python-single-r1_pkg_setup } PATCHES=( @@ -71,7 +65,7 @@ src_configure() { $(usex gtk3 "$(use_with gucharmap charmap)" '--without-charmap') \ $(use_enable nls) \ $(use_enable spell spell-check) \ - $(use_enable python) + --disable-python } src_install() {