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 92956158094 for ; Wed, 14 Sep 2022 22:23:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D13ABE09EA; Wed, 14 Sep 2022 22:23:36 +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 B7462E09EA for ; Wed, 14 Sep 2022 22:23:36 +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 B1EFB340C74 for ; Wed, 14 Sep 2022 22:23:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED60F5CD for ; Wed, 14 Sep 2022 22:23:33 +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: <1663194196.e083dfe996e01a289205e104a32925a861b44be0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/audiofile/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/audiofile/audiofile-0.3.6-r4.ebuild media-libs/audiofile/audiofile-0.3.6-r5.ebuild X-VCS-Directories: media-libs/audiofile/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e083dfe996e01a289205e104a32925a861b44be0 X-VCS-Branch: master Date: Wed, 14 Sep 2022 22:23:33 +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: 9c2e5365-608d-415a-bc2a-fa49181811c4 X-Archives-Hash: 3707325ea9a633d73302eaef31340769 commit: e083dfe996e01a289205e104a32925a861b44be0 Author: Sam James gentoo org> AuthorDate: Wed Sep 14 22:21:58 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Sep 14 22:23:16 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e083dfe9 media-libs/audiofile: fix tests They need to be linked statically. Not poking further at this, upstream inactive since 2016. Was broken by EAPI 7->8. Closes: https://bugs.gentoo.org/869677 Fixes: f20436cb65a32bdd1be7d589485507873427f78a Signed-off-by: Sam James gentoo.org> .../{audiofile-0.3.6-r5.ebuild => audiofile-0.3.6-r4.ebuild} | 4 ++-- media-libs/audiofile/audiofile-0.3.6-r5.ebuild | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/media-libs/audiofile/audiofile-0.3.6-r5.ebuild b/media-libs/audiofile/audiofile-0.3.6-r4.ebuild similarity index 94% copy from media-libs/audiofile/audiofile-0.3.6-r5.ebuild copy to media-libs/audiofile/audiofile-0.3.6-r4.ebuild index 2e9e462ef23b..6c7e04198274 100644 --- a/media-libs/audiofile/audiofile-0.3.6-r5.ebuild +++ b/media-libs/audiofile/audiofile-0.3.6-r4.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=8 +EAPI=7 inherit autotools gnome.org multilib-minimal @@ -13,7 +13,7 @@ SLOT="0/1" # subslot = soname major version KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" IUSE="flac" -RDEPEND="flac? ( >=media-libs/flac-1.2.1:=[${MULTILIB_USEDEP}] )" +RDEPEND="flac? ( >=media-libs/flac-1.2.1[${MULTILIB_USEDEP}] )" DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" diff --git a/media-libs/audiofile/audiofile-0.3.6-r5.ebuild b/media-libs/audiofile/audiofile-0.3.6-r5.ebuild index 2e9e462ef23b..02f89e0f9b41 100644 --- a/media-libs/audiofile/audiofile-0.3.6-r5.ebuild +++ b/media-libs/audiofile/audiofile-0.3.6-r5.ebuild @@ -35,6 +35,8 @@ multilib_src_configure() { # delete them later rather than not compile them at all local myconf=( --enable-largefile + # static needed for tests, bug #869677 + --enable-static --disable-werror --disable-examples $(use_enable flac)