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 6038915800A for ; Fri, 28 Jul 2023 16:58:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93883E0978; Fri, 28 Jul 2023 16:58:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 76D74E0978 for ; Fri, 28 Jul 2023 16:58: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 9A454341241 for ; Fri, 28 Jul 2023 16:58:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DB88DE77 for ; Fri, 28 Jul 2023 16:58:33 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1690563489.2237866031e07187786e5200de0aa39e7abc102e.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libilbc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libilbc/libilbc-3.0.4.ebuild X-VCS-Directories: media-libs/libilbc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 2237866031e07187786e5200de0aa39e7abc102e X-VCS-Branch: master Date: Fri, 28 Jul 2023 16:58: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: 63ce58d3-ffcf-4459-b3c6-1f4bb4fe6f74 X-Archives-Hash: ea97569ec4db7e070de20311f63a6bc5 commit: 2237866031e07187786e5200de0aa39e7abc102e Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Jul 28 16:55:30 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Jul 28 16:58:09 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22378660 media-libs/libilbc: update EAPI 7 -> 8 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/libilbc/libilbc-3.0.4.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/media-libs/libilbc/libilbc-3.0.4.ebuild b/media-libs/libilbc/libilbc-3.0.4.ebuild index 715276cc4177..8ac4b1a4e6d0 100644 --- a/media-libs/libilbc/libilbc-3.0.4.ebuild +++ b/media-libs/libilbc/libilbc-3.0.4.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit cmake-multilib -if [[ ${PV} == *9999 ]]; then +if [[ ${PV} == *9999* ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/TimothyGu/${PN}" else @@ -20,6 +20,6 @@ LICENSE="BSD" SLOT="0/3" PATCHES=( - "${FILESDIR}/${PN}-3.0.4-respect-CFLAGS.patch" - "${FILESDIR}/${P}-support-ia64.patch" + "${FILESDIR}/${P}-respect-CFLAGS.patch" # bug 770892 + "${FILESDIR}/${P}-support-ia64.patch" # bug 610546 )