From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1381270-garchives=archives.gentoo.org@lists.gentoo.org> 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 DBD7015808B for <garchives@archives.gentoo.org>; Thu, 31 Mar 2022 16:56:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB0DCE0830; Thu, 31 Mar 2022 16:56:58 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 B7531E0830 for <gentoo-commits@lists.gentoo.org>; Thu, 31 Mar 2022 16:56:55 +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 A435A341820 for <gentoo-commits@lists.gentoo.org>; Thu, 31 Mar 2022 16:56:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1CDB1AF for <gentoo-commits@lists.gentoo.org>; Thu, 31 Mar 2022 16:56:51 +0000 (UTC) From: "Matthew Smith" <matthew@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" <matthew@gentoo.org> Message-ID: <1648745796.e1c3d13d2c03d97f542570d07ef5f08077f7844b.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/ttfautohint/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/ttfautohint/ttfautohint-1.8.4-r1.ebuild media-gfx/ttfautohint/ttfautohint-1.8.4-r2.ebuild X-VCS-Directories: media-gfx/ttfautohint/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: e1c3d13d2c03d97f542570d07ef5f08077f7844b X-VCS-Branch: master Date: Thu, 31 Mar 2022 16:56:51 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 864a68e8-4229-49cc-bbef-8567f6083aef X-Archives-Hash: e678eebd03eaa8154429cd1304974cf5 commit: e1c3d13d2c03d97f542570d07ef5f08077f7844b Author: Matthew Smith <matthew <AT> gentoo <DOT> org> AuthorDate: Thu Mar 31 16:52:49 2022 +0000 Commit: Matthew Smith <matthew <AT> gentoo <DOT> org> CommitDate: Thu Mar 31 16:56:36 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1c3d13d media-gfx/ttfautohint: fix musl build Closes: https://bugs.gentoo.org/836426 Signed-off-by: Matthew Smith <matthew <AT> gentoo.org> .../{ttfautohint-1.8.4-r1.ebuild => ttfautohint-1.8.4-r2.ebuild} | 3 +++ 1 file changed, 3 insertions(+) diff --git a/media-gfx/ttfautohint/ttfautohint-1.8.4-r1.ebuild b/media-gfx/ttfautohint/ttfautohint-1.8.4-r2.ebuild similarity index 91% rename from media-gfx/ttfautohint/ttfautohint-1.8.4-r1.ebuild rename to media-gfx/ttfautohint/ttfautohint-1.8.4-r2.ebuild index f24247ff6504..15534d9edc17 100644 --- a/media-gfx/ttfautohint/ttfautohint-1.8.4-r1.ebuild +++ b/media-gfx/ttfautohint/ttfautohint-1.8.4-r2.ebuild @@ -35,6 +35,9 @@ src_prepare() { # Don't invoke git to get the version number. sed "s|m4_esyscmd.*VERSION)|${PV//_/-}|" -i configure.ac || die + # musl does not define _Bool for c++, bug #836426 + sed 's/_Bool/bool/' -i lib/llrb.h || die + eautoreconf }