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 57407158041 for ; Fri, 22 Mar 2024 06:22:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6CBE0E2A06; Fri, 22 Mar 2024 06:22:58 +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 93E7EE2A06 for ; Fri, 22 Mar 2024 06:22:57 +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 9368534027D for ; Fri, 22 Mar 2024 06:22:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EE1B213C3 for ; Fri, 22 Mar 2024 06:22:54 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1711088264.b0d73c0bbef45ccb55e1c1e0ca5daa7c5ed0d6c8.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/rgbds/rgbds-0.6.1.ebuild dev-util/rgbds/rgbds-0.7.0.ebuild dev-util/rgbds/rgbds-9999.ebuild X-VCS-Directories: dev-util/rgbds/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: b0d73c0bbef45ccb55e1c1e0ca5daa7c5ed0d6c8 X-VCS-Branch: master Date: Fri, 22 Mar 2024 06:22:54 +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: 34ae7354-8ad7-4133-ae81-24ae0c70c469 X-Archives-Hash: 1a69696ffd55ee18edcd83d523e44d61 commit: b0d73c0bbef45ccb55e1c1e0ca5daa7c5ed0d6c8 Author: orbea riseup net> AuthorDate: Thu Mar 21 14:33:21 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Mar 22 06:17:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0d73c0b dev-util/rgbds: fix bison dependency The build uses bison directly and does not use yacc. Signed-off-by: orbea riseup.net> Closes: https://github.com/gentoo/gentoo/pull/35856 Signed-off-by: Arthur Zamarin gentoo.org> dev-util/rgbds/rgbds-0.6.1.ebuild | 5 ++++- dev-util/rgbds/rgbds-0.7.0.ebuild | 6 ++++-- dev-util/rgbds/rgbds-9999.ebuild | 6 ++++-- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/dev-util/rgbds/rgbds-0.6.1.ebuild b/dev-util/rgbds/rgbds-0.6.1.ebuild index 87cf24b0e1a2..91276f0bb814 100644 --- a/dev-util/rgbds/rgbds-0.6.1.ebuild +++ b/dev-util/rgbds/rgbds-0.6.1.ebuild @@ -20,7 +20,10 @@ SLOT="0" DEPEND="media-libs/libpng" RDEPEND="${DEPEND}" -BDEPEND="virtual/pkgconfig" +BDEPEND=" + sys-devel/bison + virtual/pkgconfig +" src_compile() { append-flags -DNDEBUG diff --git a/dev-util/rgbds/rgbds-0.7.0.ebuild b/dev-util/rgbds/rgbds-0.7.0.ebuild index dad5871d9c6d..96b85fe6003d 100644 --- a/dev-util/rgbds/rgbds-0.7.0.ebuild +++ b/dev-util/rgbds/rgbds-0.7.0.ebuild @@ -20,8 +20,10 @@ SLOT="0" DEPEND="media-libs/libpng" RDEPEND="${DEPEND}" -BDEPEND="app-alternatives/yacc[bison] - virtual/pkgconfig" +BDEPEND=" + sys-devel/bison + virtual/pkgconfig +" src_compile() { append-flags -DNDEBUG diff --git a/dev-util/rgbds/rgbds-9999.ebuild b/dev-util/rgbds/rgbds-9999.ebuild index 1c56a141d6b9..0a79e0043a34 100644 --- a/dev-util/rgbds/rgbds-9999.ebuild +++ b/dev-util/rgbds/rgbds-9999.ebuild @@ -20,8 +20,10 @@ SLOT="0" DEPEND="media-libs/libpng" RDEPEND="${DEPEND}" -BDEPEND="app-alternatives/yacc[bison] - virtual/pkgconfig" +BDEPEND=" + sys-devel/bison + virtual/pkgconfig +" src_compile() { append-flags -DNDEBUG