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 40F2D158021 for ; Sat, 19 Nov 2022 16:59:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8BFF3E07B3; Sat, 19 Nov 2022 16:59:05 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 771E4E07B3 for ; Sat, 19 Nov 2022 16:59:05 +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 ADDF4341201 for ; Sat, 19 Nov 2022 16:59:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2EC11617 for ; Sat, 19 Nov 2022 16:59:03 +0000 (UTC) From: "Thomas Beierlein" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Beierlein" Message-ID: <1668877110.b124c4ea8c9c6d2db1e61dae51962012e5d59da8.tomjbe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/puff/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/puff/puff-20181104.ebuild X-VCS-Directories: sci-electronics/puff/ X-VCS-Committer: tomjbe X-VCS-Committer-Name: Thomas Beierlein X-VCS-Revision: b124c4ea8c9c6d2db1e61dae51962012e5d59da8 X-VCS-Branch: master Date: Sat, 19 Nov 2022 16:59:03 +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: 6f845084-fd1c-4951-b008-698feb4cc114 X-Archives-Hash: 9e296bf9594f44d2a31e4c7f28de42e1 commit: b124c4ea8c9c6d2db1e61dae51962012e5d59da8 Author: Thomas Beierlein gentoo org> AuthorDate: Sat Nov 19 16:56:53 2022 +0000 Commit: Thomas Beierlein gentoo org> CommitDate: Sat Nov 19 16:58:30 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b124c4ea sci-electronics/puff: Drop illegal parameter Closes: https://bugs.gentoo.org/880225 Signed-off-by: Thomas Beierlein gentoo.org> sci-electronics/puff/puff-20181104.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sci-electronics/puff/puff-20181104.ebuild b/sci-electronics/puff/puff-20181104.ebuild index c3e3c633e08d..80838dd3c7ef 100644 --- a/sci-electronics/puff/puff-20181104.ebuild +++ b/sci-electronics/puff/puff-20181104.ebuild @@ -25,6 +25,8 @@ src_prepare() { eapply -p0 "${FILESDIR}"/$P-Makefile.patch # add missing LDPATH for libX11.so sed -i -e "s:-lX11:-L/usr/$(get_libdir) -lX11:g" Makefile || die + # drop no longer needed and now unsupported paramter '-T' (bug #8802225) + sed -i -e "s: -T : :g" Makefile || die eapply_user }