From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1447931-garchives=archives.gentoo.org@lists.gentoo.org> 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 8F33D158021 for <garchives@archives.gentoo.org>; Mon, 17 Oct 2022 22:03:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F3F1E092C; Mon, 17 Oct 2022 22:03:03 +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 6930BE092B for <gentoo-commits@lists.gentoo.org>; Mon, 17 Oct 2022 22:03:03 +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 4B89334109F for <gentoo-commits@lists.gentoo.org>; Mon, 17 Oct 2022 22:03:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A4201621 for <gentoo-commits@lists.gentoo.org>; Mon, 17 Oct 2022 22:03:00 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1666043764.27b398e5d35efb196b4145b35e57ae62f26efc0b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/boxes/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/boxes/boxes-2.2.0.ebuild X-VCS-Directories: app-misc/boxes/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 27b398e5d35efb196b4145b35e57ae62f26efc0b X-VCS-Branch: master Date: Mon, 17 Oct 2022 22:03:00 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f8c906af-b54e-4c89-88c1-ef4a75b5c931 X-Archives-Hash: 73b8ea4b7444cfe940211f442fa8389a commit: 27b398e5d35efb196b4145b35e57ae62f26efc0b Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Mon Oct 17 21:55:47 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Oct 17 21:56:04 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27b398e5 app-misc/boxes: add libunistring dep; add xxd test dep Bug: https://github.com/gentoo/gentoo/pull/27804 Signed-off-by: Sam James <sam <AT> gentoo.org> app-misc/boxes/boxes-2.2.0.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/app-misc/boxes/boxes-2.2.0.ebuild b/app-misc/boxes/boxes-2.2.0.ebuild index bb96df727114..42da13cbe43f 100644 --- a/app-misc/boxes/boxes-2.2.0.ebuild +++ b/app-misc/boxes/boxes-2.2.0.ebuild @@ -12,18 +12,25 @@ SRC_URI="https://github.com/ascii-boxes/boxes/archive/v${PV}.tar.gz -> ${P}.tar. LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="test" +RESTRICT="!test? ( test )" -RDEPEND="dev-libs/libpcre2[pcre32]" +RDEPEND=" + dev-libs/libpcre2[pcre32] + dev-libs/libunistring:= +" DEPEND="${RDEPEND}" BDEPEND=" sys-devel/bison sys-devel/flex + test? ( app-editors/vim-core ) " PATCHES=( "${FILESDIR}/${P}-fix-clang16-build.patch" ) src_prepare() { default + sed \ -e 's:STRIP=true:STRIP=false:g' \ -i src/Makefile || die