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 AD73B158649 for ; Fri, 12 May 2023 03:22:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F0785E0B4B; Fri, 12 May 2023 03:22:44 +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 pigeon.gentoo.org (Postfix) with ESMTPS id DB674E0B4B for ; Fri, 12 May 2023 03:22:44 +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 2796A3409E6 for ; Fri, 12 May 2023 03:22:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 47F93A6E for ; Fri, 12 May 2023 03:22:41 +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: <1683860140.4fe9d3e62ee3a271ca381e8d729ea419c3619140.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/fluxbox/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/fluxbox/fluxbox-1.3.7-r4.ebuild X-VCS-Directories: x11-wm/fluxbox/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4fe9d3e62ee3a271ca381e8d729ea419c3619140 X-VCS-Branch: master Date: Fri, 12 May 2023 03:22:41 +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: 28ec1e9b-a32a-4633-87c7-abb61da7d7aa X-Archives-Hash: 6e6486ba4f6c7c11a339025fd63d8d19 commit: 4fe9d3e62ee3a271ca381e8d729ea419c3619140 Author: Sam James gentoo org> AuthorDate: Fri May 12 02:51:42 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri May 12 02:55:40 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fe9d3e6 x11-wm/fluxbox: wire up (restricted) tests Interactive and throw. Signed-off-by: Sam James gentoo.org> x11-wm/fluxbox/fluxbox-1.3.7-r4.ebuild | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/x11-wm/fluxbox/fluxbox-1.3.7-r4.ebuild b/x11-wm/fluxbox/fluxbox-1.3.7-r4.ebuild index 0b4473aa39bc..a7785b67f68f 100644 --- a/x11-wm/fluxbox/fluxbox-1.3.7-r4.ebuild +++ b/x11-wm/fluxbox/fluxbox-1.3.7-r4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,9 +12,10 @@ SRC_URI="mirror://sourceforge/fluxbox/${P}.tar.xz" LICENSE="MIT" SLOT="0" KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux" -IUSE="nls xinerama bidi +truetype +imlib +slit +systray +toolbar vim-syntax" - +IUSE="nls xinerama bidi +truetype +imlib +slit +systray test +toolbar vim-syntax" REQUIRED_USE="systray? ( toolbar )" +# Tests are all manual and throw an exception on launch. +RESTRICT="!test? ( test ) test" RDEPEND="bidi? ( >=dev-libs/fribidi-0.19.2 ) imlib? ( >=media-libs/imlib2-1.2.0[X] ) @@ -72,9 +73,10 @@ src_configure() { $(use_enable bidi fribidi ) \ $(use_enable imlib imlib2) \ $(use_enable nls) \ - $(use_enable slit ) \ - $(use_enable systray ) \ - $(use_enable toolbar ) \ + $(use_enable slit) \ + $(use_enable systray) \ + $(use_enable test) \ + $(use_enable toolbar) \ $(use_enable truetype xft) \ $(use_enable xinerama) \ --sysconfdir="${EPREFIX}"/etc/X11/${PN} \