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 D77E71582EF for ; Fri, 14 Feb 2025 05:18:35 +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 9EB0E3431DC for ; Fri, 14 Feb 2025 05:18:35 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 9B54411042D; Fri, 14 Feb 2025 05:18:34 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 9068511042D for ; Fri, 14 Feb 2025 05:18:34 +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 4581F3431C8 for ; Fri, 14 Feb 2025 05:18:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A438A2694 for ; Fri, 14 Feb 2025 05:18:32 +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: <1739509978.5374db688956561d72046d57d2d19ea2ec68c00a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-accessibility/emacspeak-ss/files/, app-accessibility/emacspeak-ss/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-accessibility/emacspeak-ss/emacspeak-ss-1.9.1-r2.ebuild app-accessibility/emacspeak-ss/files/emacspeak-ss-1.9.1-missing-includes.patch X-VCS-Directories: app-accessibility/emacspeak-ss/files/ app-accessibility/emacspeak-ss/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5374db688956561d72046d57d2d19ea2ec68c00a X-VCS-Branch: master Date: Fri, 14 Feb 2025 05:18:32 +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: c298eea2-9b2c-4131-924d-5b3940378db3 X-Archives-Hash: 31dbf78afcdd55e7f23195dea7404c9a commit: 5374db688956561d72046d57d2d19ea2ec68c00a Author: NHOrus yahoo com> AuthorDate: Thu Feb 13 20:23:15 2025 +0000 Commit: Sam James gentoo org> CommitDate: Fri Feb 14 05:12:58 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5374db68 app-accessibility/emacspeak-ss: add missing includes Fixes implicit function declarations Closes: https://bugs.gentoo.org/875479 Signed-off-by: NHOrus yahoo.com> Closes: https://github.com/gentoo/gentoo/pull/40561 Signed-off-by: Sam James gentoo.org> .../emacspeak-ss/emacspeak-ss-1.9.1-r2.ebuild | 34 ++++++++++++++++++++++ .../emacspeak-ss-1.9.1-missing-includes.patch | 13 +++++++++ 2 files changed, 47 insertions(+) diff --git a/app-accessibility/emacspeak-ss/emacspeak-ss-1.9.1-r2.ebuild b/app-accessibility/emacspeak-ss/emacspeak-ss-1.9.1-r2.ebuild new file mode 100644 index 000000000000..3d805bc0e280 --- /dev/null +++ b/app-accessibility/emacspeak-ss/emacspeak-ss-1.9.1-r2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Adds support for several speech synthesizers to emacspeak" +HOMEPAGE="http://leb.net/blinux/" +SRC_URI="http://leb.net/pub/blinux/emacspeak/blinux/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND=">=app-accessibility/emacspeak-18" + +PATCHES=( + "${FILESDIR}"/gentoo-apollo-fix.patch + "${FILESDIR}"/"${P}"-missing-includes.patch +) + +src_prepare() { + default + tc-export CC +} + +src_install() { + emake \ + prefix="${ED}"/usr \ + man1dir="${ED}"/usr/share/man/man1 \ + install + dodoc CREDITS ChangeLog OtherSynthesizers TODO TROUBLESHOOTING README* +} diff --git a/app-accessibility/emacspeak-ss/files/emacspeak-ss-1.9.1-missing-includes.patch b/app-accessibility/emacspeak-ss/files/emacspeak-ss-1.9.1-missing-includes.patch new file mode 100644 index 000000000000..8968b13af999 --- /dev/null +++ b/app-accessibility/emacspeak-ss/files/emacspeak-ss-1.9.1-missing-includes.patch @@ -0,0 +1,13 @@ +Add missing includes for implicitly declared functions +https://bugs.gentoo.org/875479 +--- a/ping-apollo.c 2025-02-14 00:18:28.905559670 +0400 ++++ b/ping-apollo.c 2025-02-14 00:19:59.617012294 +0400 +@@ -9,6 +9,8 @@ + #include + #include + #include ++#include ++#include + + #define DEFAULT_DEVICE "/dev/ttyS0" + #define MAXCHARS 128