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 8ECDB138359 for ; Tue, 28 Jul 2020 13:49:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AC81CE0928; Tue, 28 Jul 2020 13:49:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 91091E0928 for ; Tue, 28 Jul 2020 13:49:23 +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 84A1234EEF9 for ; Tue, 28 Jul 2020 13:49:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ABA32274 for ; Tue, 28 Jul 2020 13:49:20 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1595944158.259a7049f199741c6f64187e30b3b579dcbcd3f1.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/emelfm2/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/emelfm2/emelfm2-0.9.1-r1.ebuild app-misc/emelfm2/emelfm2-0.9.1-r2.ebuild app-misc/emelfm2/emelfm2-0.9.1-r3.ebuild X-VCS-Directories: app-misc/emelfm2/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 259a7049f199741c6f64187e30b3b579dcbcd3f1 X-VCS-Branch: master Date: Tue, 28 Jul 2020 13:49:20 +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: 614dab23-6e53-4b25-89fe-db606ad0e8e8 X-Archives-Hash: 2029335f5aa119aa6dd9dfe1acf18371 commit: 259a7049f199741c6f64187e30b3b579dcbcd3f1 Author: Jeroen Roovers gentoo org> AuthorDate: Tue Jul 28 13:46:42 2020 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Tue Jul 28 13:49:18 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=259a7049 app-misc/emelfm2: Set REQUIRED_USE for +gtk3/spell emelfm2's spell checking feature has not been ported to app-text/gtkspell:3 so when USE=spell is requested, USE=gtk3 cannot be enabled. In the worst case, with both app-text/gtkspell:2 and app-text/gtkspell:3 installed, it fails to start with complaints of using both GTK+2/3 symbols. Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Jeroen Roovers gentoo.org> app-misc/emelfm2/emelfm2-0.9.1-r1.ebuild | 6 ++++-- app-misc/emelfm2/emelfm2-0.9.1-r2.ebuild | 6 ++++-- app-misc/emelfm2/emelfm2-0.9.1-r3.ebuild | 4 +++- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/app-misc/emelfm2/emelfm2-0.9.1-r1.ebuild b/app-misc/emelfm2/emelfm2-0.9.1-r1.ebuild index fdc2b9bb342..bfc29fa412a 100644 --- a/app-misc/emelfm2/emelfm2-0.9.1-r1.ebuild +++ b/app-misc/emelfm2/emelfm2-0.9.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -33,7 +33,9 @@ DEPEND=" virtual/pkgconfig nls? ( sys-devel/gettext ) " - +REQUIRED_USE=" + spell? ( !gtk3 ) +" RESTRICT="test" src_prepare() { diff --git a/app-misc/emelfm2/emelfm2-0.9.1-r2.ebuild b/app-misc/emelfm2/emelfm2-0.9.1-r2.ebuild index b4d937e4bc6..1679c68b7eb 100644 --- a/app-misc/emelfm2/emelfm2-0.9.1-r2.ebuild +++ b/app-misc/emelfm2/emelfm2-0.9.1-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -33,7 +33,9 @@ DEPEND=" virtual/pkgconfig nls? ( sys-devel/gettext ) " - +REQUIRED_USE=" + spell? ( !gtk3 ) +" RESTRICT="test" src_prepare() { diff --git a/app-misc/emelfm2/emelfm2-0.9.1-r3.ebuild b/app-misc/emelfm2/emelfm2-0.9.1-r3.ebuild index 9e1c2ef44b6..280416063e8 100644 --- a/app-misc/emelfm2/emelfm2-0.9.1-r3.ebuild +++ b/app-misc/emelfm2/emelfm2-0.9.1-r3.ebuild @@ -32,7 +32,9 @@ DEPEND=" virtual/pkgconfig nls? ( sys-devel/gettext ) " - +REQUIRED_USE=" + spell? ( !gtk3 ) +" RESTRICT="test" src_prepare() {