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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 114F81581D3 for ; Sun, 5 May 2024 11:49:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54253E2BA5; Sun, 5 May 2024 11:49:05 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 37E9FE2BA5 for ; Sun, 5 May 2024 11:49:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4C553343166 for ; Sun, 5 May 2024 11:49:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 997331A2A for ; Sun, 5 May 2024 11:49:01 +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: <1714909633.cbc31bfe00302607bf2d8c0f0920f1e3e798aa60.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/weechat/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/weechat/metadata.xml net-irc/weechat/weechat-9999.ebuild X-VCS-Directories: net-irc/weechat/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: cbc31bfe00302607bf2d8c0f0920f1e3e798aa60 X-VCS-Branch: master Date: Sun, 5 May 2024 11:49:01 +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: 826451cb-3284-4109-a5fd-712de65b918f X-Archives-Hash: f2484e8184fd2d3a39ec0db9ffab9443 commit: cbc31bfe00302607bf2d8c0f0920f1e3e798aa60 Author: Eli Schwartz gmail com> AuthorDate: Sun May 5 05:06:31 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun May 5 11:47:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbc31bfe net-irc/weechat: implement new option in live ebuild If we don't set this option the build fails. Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> net-irc/weechat/metadata.xml | 1 + net-irc/weechat/weechat-9999.ebuild | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/net-irc/weechat/metadata.xml b/net-irc/weechat/metadata.xml index 24a75e8121cd..905904120abb 100644 --- a/net-irc/weechat/metadata.xml +++ b/net-irc/weechat/metadata.xml @@ -24,6 +24,7 @@ Enable IRC protocol support Enable support for logging Enable relay plugin (experimental) + Enable json API support for the relay plugin (experimental) Build infrastructure for scripting Enable trigger plugin Enable typing plugin diff --git a/net-irc/weechat/weechat-9999.ebuild b/net-irc/weechat/weechat-9999.ebuild index 0a07f1ce102d..84e5faff5549 100644 --- a/net-irc/weechat/weechat-9999.ebuild +++ b/net-irc/weechat/weechat-9999.ebuild @@ -32,13 +32,14 @@ PLUGINS="+alias +buflist +charset +exec +fifo +fset +logger +relay +scripts +spe # dev-lang/php eclass support is lacking, php plugins don't work. bug #705702 SCRIPT_LANGS="guile lua +perl +python ruby tcl" LANGS=" cs de es fr it ja pl ru" -IUSE="doc enchant man nls selinux test +zstd ${SCRIPT_LANGS} ${PLUGINS} ${INTERFACES} ${NETWORKS}" +IUSE="doc enchant man nls relay-api selinux test +zstd ${SCRIPT_LANGS} ${PLUGINS} ${INTERFACES} ${NETWORKS}" REQUIRED_USE=" enchant? ( spell ) lua? ( ${LUA_REQUIRED_USE} ) python? ( ${PYTHON_REQUIRED_USE} ) test? ( nls ) + relay-api? ( relay ) " RDEPEND=" @@ -164,6 +165,7 @@ src_configure() { -DENABLE_PERL=$(usex perl) -DENABLE_PYTHON=$(usex python) -DENABLE_RELAY=$(usex relay) + -DENABLE_CJSON=$(usex relay-api) -DENABLE_RUBY=$(usex ruby) -DENABLE_SCRIPT=$(usex scripts) -DENABLE_SCRIPTS=$(usex scripts)