From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id A5D071582EF for ; Sun, 16 Feb 2025 13:17:54 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 8CCD4343146 for ; Sun, 16 Feb 2025 13:17:54 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 42A5E110473; Sun, 16 Feb 2025 13:17:48 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 39C28110473 for ; Sun, 16 Feb 2025 13:17:48 +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 E6091343104 for ; Sun, 16 Feb 2025 13:17:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E8972721 for ; Sun, 16 Feb 2025 13:17:46 +0000 (UTC) From: "Sam James" 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" Message-ID: <1739711832.6b956db0a5978125d5ec5eb7d1342564e92e2a8e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/tnef/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/tnef/tnef-1.4.18.ebuild X-VCS-Directories: net-mail/tnef/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6b956db0a5978125d5ec5eb7d1342564e92e2a8e X-VCS-Branch: master Date: Sun, 16 Feb 2025 13:17:46 +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: cdb217f3-5bab-432b-97ab-cc37c0b29615 X-Archives-Hash: 89d8856b2eab3c33e26f06d8a435a819 commit: 6b956db0a5978125d5ec5eb7d1342564e92e2a8e Author: Sam James gentoo org> AuthorDate: Sun Feb 16 13:16:27 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sun Feb 16 13:17:12 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b956db0 net-mail/tnef: build w/ -std=gnu17 No activity upstream. Closes: https://bugs.gentoo.org/943831 Signed-off-by: Sam James gentoo.org> net-mail/tnef/tnef-1.4.18.ebuild | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/net-mail/tnef/tnef-1.4.18.ebuild b/net-mail/tnef/tnef-1.4.18.ebuild index 1fce8aafbaef..02f14be04ef9 100644 --- a/net-mail/tnef/tnef-1.4.18.ebuild +++ b/net-mail/tnef/tnef-1.4.18.ebuild @@ -1,15 +1,16 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit autotools + +inherit autotools flag-o-matic DESCRIPTION="Decodes MS-TNEF MIME attachments" HOMEPAGE="https://github.com/verdammelt/tnef/" SRC_URI="https://github.com/verdammelt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="amd64 ~arm64 ~hppa ppc ppc64 sparc x86" src_prepare() { @@ -18,6 +19,13 @@ src_prepare() { eautoreconf } +src_configure() { + # bug #943831 + append-flags -std=gnu17 + + default +} + src_test() { emake -j1 check }