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 5180F138350 for ; Wed, 5 Feb 2020 15:00:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57917E0BF4; Wed, 5 Feb 2020 15:00:29 +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 0D25AE0BF3 for ; Wed, 5 Feb 2020 15:00:29 +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 76EEA34E784 for ; Wed, 5 Feb 2020 15:00:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E07DD37 for ; Wed, 5 Feb 2020 15:00:25 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1580914816.01f377c89fbd9cdb444efbc1eabcb7015caeefbb.leio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/gnome-builder/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/gnome-builder/gnome-builder-3.32.4.ebuild X-VCS-Directories: dev-util/gnome-builder/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: 01f377c89fbd9cdb444efbc1eabcb7015caeefbb X-VCS-Branch: master Date: Wed, 5 Feb 2020 15:00:25 +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: 0de5dce5-a449-4361-86c3-6024b0a1832d X-Archives-Hash: 057258dc70fb505b51f9109d83af5cfe commit: 01f377c89fbd9cdb444efbc1eabcb7015caeefbb Author: Mart Raudsepp gentoo org> AuthorDate: Wed Feb 5 14:14:10 2020 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Wed Feb 5 15:00:16 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01f377c8 dev-util/gnome-builder: re-enable spellcheck plugin option Now that we have enchant:2, the spellcheck plugin can be restored; this time via a USE flag (used to be hard required before). Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Mart Raudsepp gentoo.org> dev-util/gnome-builder/gnome-builder-3.32.4.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/dev-util/gnome-builder/gnome-builder-3.32.4.ebuild b/dev-util/gnome-builder/gnome-builder-3.32.4.ebuild index ea692c5155d..803ea084530 100644 --- a/dev-util/gnome-builder/gnome-builder-3.32.4.ebuild +++ b/dev-util/gnome-builder/gnome-builder-3.32.4.ebuild @@ -17,7 +17,7 @@ SRC_URI+=" https://dev.gentoo.org/~leio/distfiles/${P}-patchset.tar.xz" LICENSE="GPL-3+ GPL-2+ LGPL-3+ LGPL-2+ MIT CC-BY-SA-3.0 CC0-1.0" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="clang +devhelp doc +glade gtk-doc sysprof test vala" +IUSE="clang +devhelp doc +glade gtk-doc spell sysprof test vala" REQUIRED_USE="${PYTHON_REQUIRED_USE}" # When bumping, pay attention to all the included plugins/*/meson.build (and other) build files and the requirements within. @@ -55,6 +55,8 @@ RDEPEND=" clang? ( sys-devel/clang:= ) devhelp? ( >=dev-util/devhelp-3.25.1:= ) glade? ( >=dev-util/glade-3.22.0:3.10 ) + spell? ( >=app-text/gspell-1.8:0= + app-text/enchant:2 ) sysprof? ( >=dev-util/sysprof-3.31.90[gtk] ) vala? ( dev-lang/vala:= @@ -64,9 +66,6 @@ RDEPEND=" # usage in vala-pack plugin and need it rebuilt before removing an older vala it was built against DEPEND="${RDEPEND}" # TODO: runtime ctags path finding.. -# FIXME: spellcheck plugin temporarily disabled due to requiring enchant-2 -# >=app-text/gspell-1.2.0 -# >=app-text/enchant:2 # desktop-file-utils required for tests, but we have it in deptree for xdg update-desktop-database anyway, so be explicit and unconditional # appstream-glib needed for validation with appstream-util with FEATURES=test @@ -146,7 +145,7 @@ src_configure() { -Dplugin_podman=false $(meson_use glade plugin_glade) -Dplugin_git=true - -Dplugin_spellcheck=false # TODO: requires enchant-2 + $(meson_use spell plugin_spellcheck) $(meson_use sysprof plugin_sysprof) $(meson_use vala plugin_vala) )