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 66109158015 for ; Thu, 28 Dec 2023 15:24:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 927962BC0CC; Thu, 28 Dec 2023 15:24:42 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 793E62BC0CC for ; Thu, 28 Dec 2023 15:24:42 +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 AAF0B340441 for ; Thu, 28 Dec 2023 15:24:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1553214B4 for ; Thu, 28 Dec 2023 15:24:40 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1703777026.d65af065b6f29c9dd21933bd867a313eb9f57c3d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/xfburn/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-cdr/xfburn/xfburn-0.6.2.ebuild app-cdr/xfburn/xfburn-0.7.0.ebuild X-VCS-Directories: app-cdr/xfburn/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d65af065b6f29c9dd21933bd867a313eb9f57c3d X-VCS-Branch: master Date: Thu, 28 Dec 2023 15:24:40 +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: 02d38cef-3ccc-4b50-8dd6-5e2fc74944ca X-Archives-Hash: e6848aa5b1f943781337c826e12387cb commit: d65af065b6f29c9dd21933bd867a313eb9f57c3d Author: Michał Górny gentoo org> AuthorDate: Thu Dec 28 15:22:48 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Dec 28 15:23:46 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d65af065 app-cdr/xfburn: Fix bashism in configure Closes: https://bugs.gentoo.org/917576 Signed-off-by: Michał Górny gentoo.org> app-cdr/xfburn/xfburn-0.6.2.ebuild | 9 ++++++++- app-cdr/xfburn/xfburn-0.7.0.ebuild | 7 +++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/app-cdr/xfburn/xfburn-0.6.2.ebuild b/app-cdr/xfburn/xfburn-0.6.2.ebuild index 35265059a8d2..9c4343ec1b57 100644 --- a/app-cdr/xfburn/xfburn-0.6.2.ebuild +++ b/app-cdr/xfburn/xfburn-0.6.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -29,6 +29,13 @@ DEPEND="${RDEPEND} sys-devel/gettext virtual/pkgconfig" +src_prepare() { + # fix bashism + # https://gitlab.xfce.org/apps/xfburn/-/merge_requests/36 + sed -i -e 's:== x:= x:' configure || die + default +} + src_configure() { local myconf=( $(use_enable udev gudev) diff --git a/app-cdr/xfburn/xfburn-0.7.0.ebuild b/app-cdr/xfburn/xfburn-0.7.0.ebuild index b9f5ce9ee725..6084c83e8b8c 100644 --- a/app-cdr/xfburn/xfburn-0.7.0.ebuild +++ b/app-cdr/xfburn/xfburn-0.7.0.ebuild @@ -39,6 +39,13 @@ BDEPEND=" virtual/pkgconfig " +src_prepare() { + # fix bashism + # https://gitlab.xfce.org/apps/xfburn/-/merge_requests/36 + sed -i -e 's:== x:= x:' configure || die + default +} + src_configure() { local myconf=( $(use_enable udev gudev)