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 00626158094 for ; Tue, 11 Oct 2022 10:01:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D6E07E0826; Tue, 11 Oct 2022 10:01:24 +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 BF000E0826 for ; Tue, 11 Oct 2022 10:01:24 +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 B26B43410AF for ; Tue, 11 Oct 2022 10:01:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DE3EA55B for ; Tue, 11 Oct 2022 10:01:21 +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: <1665482455.be34aee14ebdd50adab50ec6d5fd512ce56ca150.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-fonts/oto/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-fonts/oto/oto-0.5.ebuild X-VCS-Directories: media-fonts/oto/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: be34aee14ebdd50adab50ec6d5fd512ce56ca150 X-VCS-Branch: master Date: Tue, 11 Oct 2022 10:01:21 +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: 3e54f748-4e3d-4587-b29a-68ee106e8767 X-Archives-Hash: 15a36835fa5ebc292300651d62230af2 commit: be34aee14ebdd50adab50ec6d5fd512ce56ca150 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Oct 11 09:32:39 2022 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Tue Oct 11 10:00:55 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be34aee1 media-fonts/oto: EAPI7->8, run eautoreconf for upcoming clang16 Closes: https://bugs.gentoo.org/871381 Signed-off-by: Ionen Wolkens gentoo.org> media-fonts/oto/oto-0.5.ebuild | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/media-fonts/oto/oto-0.5.ebuild b/media-fonts/oto/oto-0.5.ebuild index c00102aac5d2..8446af1576bc 100644 --- a/media-fonts/oto/oto-0.5.ebuild +++ b/media-fonts/oto/oto-0.5.ebuild @@ -1,7 +1,9 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 + +inherit autotools DESCRIPTION="Open Type Organizer" HOMEPAGE="https://sourceforge.net/projects/oto/" @@ -10,3 +12,9 @@ SRC_URI="mirror://sourceforge/oto/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm ~ia64 ~loong ~ppc ~s390 sparc x86" + +src_prepare() { + default + + eautoreconf #871381 +}