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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9D43215ACFC for ; Sun, 30 Apr 2023 23:50:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D227FE084E; Sun, 30 Apr 2023 23:50:09 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AED1AE0848 for ; Sun, 30 Apr 2023 23:50:09 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A0C5A340F52 for ; Sun, 30 Apr 2023 23:50:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1723CA40 for ; Sun, 30 Apr 2023 23:50:07 +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: <1682898551.2e8dfff6d69c730ca0a51b6aa8242f2ec48a7071.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/json-glib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/json-glib/json-glib-1.6.6-r1.ebuild X-VCS-Directories: dev-libs/json-glib/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2e8dfff6d69c730ca0a51b6aa8242f2ec48a7071 X-VCS-Branch: master Date: Sun, 30 Apr 2023 23:50:07 +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: 9448b935-07ea-474a-86bc-d9edddb46a5c X-Archives-Hash: f5f8e7eb2028fb2a1c6d4adc53ba1ced commit: 2e8dfff6d69c730ca0a51b6aa8242f2ec48a7071 Author: Sam James gentoo org> AuthorDate: Sun Apr 30 08:04:23 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Apr 30 23:49:11 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e8dfff6 dev-libs/json-glib: conditionally build tests Signed-off-by: Sam James gentoo.org> dev-libs/json-glib/json-glib-1.6.6-r1.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dev-libs/json-glib/json-glib-1.6.6-r1.ebuild b/dev-libs/json-glib/json-glib-1.6.6-r1.ebuild index 5046eb6e4e5f..d27eba521ff9 100644 --- a/dev-libs/json-glib/json-glib-1.6.6-r1.ebuild +++ b/dev-libs/json-glib/json-glib-1.6.6-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -10,7 +10,8 @@ HOMEPAGE="https://wiki.gnome.org/Projects/JsonGlib" LICENSE="LGPL-2.1+" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86" -IUSE="gtk-doc +introspection" +IUSE="gtk-doc +introspection test" +RESTRICT="!test? ( test )" RDEPEND=" >=dev-libs/glib-2.54.0:2[${MULTILIB_USEDEP}] @@ -44,6 +45,10 @@ multilib_src_configure() { $(meson_native_use_feature introspection) $(meson_native_use_feature gtk-doc gtk_doc) $(meson_native_true man) + + # TODO: implement in next release + #$(meson_feature nls) + $(meson_use test tests) ) meson_src_configure }