From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 4B06E1582EF for ; Sat, 01 Mar 2025 21:36:49 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 2AF233430FE for ; Sat, 01 Mar 2025 21:36:49 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 6D2A91102D2; Sat, 01 Mar 2025 21:36:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 bobolink.gentoo.org (Postfix) with ESMTPS id 649841102D2 for ; Sat, 01 Mar 2025 21:36:45 +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 185D5342FF1 for ; Sat, 01 Mar 2025 21:36:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41C1C270E for ; Sat, 01 Mar 2025 21:36:43 +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: <1740864937.a8e7c262bf358ebc5a8b5e1559a8d46f9de8017a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libvncserver/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libvncserver/libvncserver-0.9.15.ebuild X-VCS-Directories: net-libs/libvncserver/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a8e7c262bf358ebc5a8b5e1559a8d46f9de8017a X-VCS-Branch: master Date: Sat, 01 Mar 2025 21:36:43 +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: 525251b0-5bb0-4d38-9d5f-1d9f33e0d2d6 X-Archives-Hash: 8a1679391aebdefe530fb97a2bee6056 commit: a8e7c262bf358ebc5a8b5e1559a8d46f9de8017a Author: Alexander Tsoy tsoy me> AuthorDate: Sat Mar 1 14:55:12 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sat Mar 1 21:35:37 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8e7c262 net-libs/libvncserver: build tests conditionally Ported from 0.9.14-r2 Signed-off-by: Alexander Tsoy tsoy.me> Closes: https://github.com/gentoo/gentoo/pull/40829 Signed-off-by: Sam James gentoo.org> net-libs/libvncserver/libvncserver-0.9.15.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net-libs/libvncserver/libvncserver-0.9.15.ebuild b/net-libs/libvncserver/libvncserver-0.9.15.ebuild index 10dc35846b2b..dfd47493098c 100644 --- a/net-libs/libvncserver/libvncserver-0.9.15.ebuild +++ b/net-libs/libvncserver/libvncserver-0.9.15.ebuild @@ -17,7 +17,8 @@ LICENSE="GPL-2 GPL-2+ LGPL-2.1+ BSD MIT" # no sub slot wanted (yet), see #578958 SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="+24bpp +filetransfer gnutls ipv6 +jpeg lzo +png sasl ssl systemd +threads +zlib" +IUSE="+24bpp +filetransfer gnutls ipv6 +jpeg lzo +png sasl ssl systemd test +threads +zlib" +RESTRICT="!test? ( test )" # https://bugs.gentoo.org/690202 # https://bugs.gentoo.org/435326 # https://bugs.gentoo.org/550916 @@ -64,6 +65,7 @@ src_configure() { -DWITH_PNG=$(usex png ON OFF) -DWITH_SASL=$(usex sasl ON OFF) -DWITH_SYSTEMD=$(usex systemd ON OFF) + -DWITH_TESTS=$(usex test ON OFF) -DWITH_THREADS=$(usex threads ON OFF) -DWITH_ZLIB=$(usex zlib ON OFF) )