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 8DB08158020 for ; Fri, 21 Oct 2022 12:48:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 66BE4E0831; Fri, 21 Oct 2022 12:48:30 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4CEE6E0824 for ; Fri, 21 Oct 2022 12:48:30 +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 BB7FC34112E for ; Fri, 21 Oct 2022 12:48:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D72C262F for ; Fri, 21 Oct 2022 12:48:25 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1666356423.0afad01798cb68522e50068b98ee5b5cde6c0119.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/scsiping/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-block/scsiping/scsiping-0.0.1-r2.ebuild X-VCS-Directories: sys-block/scsiping/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 0afad01798cb68522e50068b98ee5b5cde6c0119 X-VCS-Branch: master Date: Fri, 21 Oct 2022 12:48:25 +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: 26124fa2-13d2-4a13-a6f0-edac90954d31 X-Archives-Hash: e14965613fba101639d790866803cbf0 commit: 0afad01798cb68522e50068b98ee5b5cde6c0119 Author: Ionen Wolkens gentoo org> AuthorDate: Fri Oct 21 12:42:42 2022 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Fri Oct 21 12:47:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0afad017 sys-block/scsiping: drop c2x workaround Changed the way test for this, and upon closer look this one wasn't needed. Signed-off-by: Ionen Wolkens gentoo.org> sys-block/scsiping/scsiping-0.0.1-r2.ebuild | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sys-block/scsiping/scsiping-0.0.1-r2.ebuild b/sys-block/scsiping/scsiping-0.0.1-r2.ebuild index 99a85623be4e..60cb71ea6eb4 100644 --- a/sys-block/scsiping/scsiping-0.0.1-r2.ebuild +++ b/sys-block/scsiping/scsiping-0.0.1-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit flag-o-matic toolchain-funcs +inherit toolchain-funcs DESCRIPTION="SCSIPing pings a host on the SCSI-chain" HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" @@ -24,8 +24,6 @@ src_prepare() { } src_compile() { - append-cflags -std=gnu89 # old codebase, incompatible with c2x - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" }