From: "William Hubbs" <williamh@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
Date: Sat, 10 Jun 2023 20:13:54 +0000 (UTC) [thread overview]
Message-ID: <1686427955.d71ef35f5a39c6e09aaa728e9ef40ffd6e63f65b.williamh@gentoo> (raw)
commit: d71ef35f5a39c6e09aaa728e9ef40ffd6e63f65b
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon May 29 13:31:12 2023 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sat Jun 10 20:12:35 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d71ef35f
app-accessibility/espeak-ng: drop 1.50-r3
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
app-accessibility/espeak-ng/Manifest | 2 -
.../espeak-ng/espeak-ng-1.50-r3.ebuild | 88 ----------------------
2 files changed, 90 deletions(-)
diff --git a/app-accessibility/espeak-ng/Manifest b/app-accessibility/espeak-ng/Manifest
index c145ee48ff57..174291e7849e 100644
--- a/app-accessibility/espeak-ng/Manifest
+++ b/app-accessibility/espeak-ng/Manifest
@@ -1,3 +1 @@
-DIST espeak-ng-1.50-ieee80.patch.xz 8128 BLAKE2B f9ae3b64d52f18b0dd4bb1ff1832d89fc22c319bccf3f7ada61628569857fded15a426703d035737b829fc8580707876ad09527380890f73df919740b40aa046 SHA512 4183fd13c902bdda27ac7e86fb4e4573ce85ca015aaea757aed27a869e4067a58c99b8f4d3e289710d1359d4fa289c2a4e6d5803845cd454c3dc59f79f4e2e80
-DIST espeak-ng-1.50.tar.gz 13665536 BLAKE2B c64c2a474374d4b6fe13bf3a99f5dfb661923c13ebd6c0bc323e7f26d9d90945c7075cc5c8f4b51e5db3303632c8c9daca7a65a1883e09d7c3faf63dd725ea3f SHA512 297dd80a6cdae3e2b8acf6823475220ce89d6a5fb68ea303156ad52cb3e7388049b6921759d4ed4e3d2e2ebd19bf931259e454f74a2ac0b7ecf4ce56c1d60c0c
DIST espeak-ng-1.51.tar.gz 14260788 BLAKE2B 230e8860247bdd44a26ba7281fadb7486e7fff90de229c71fb883693badfc141d5ad883769d6cead150f43560a5c47152cada4fcb5a28c0b0384dacaad2c9d09 SHA512 6c29275706d21de2d5fa393702d2f173fc05d2ce4e2f46f3bf9a2742b0a8f294177663df0d079188e31cc2541f2c21a64e09e8afffe95befab667a4d00429fd2
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
deleted file mode 100644
index c3240b2d2dd3..000000000000
--- a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="Software speech synthesizer for English, and some other languages"
-HOMEPAGE="https://github.com/espeak-ng/espeak-ng"
-SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar.gz
- https://dev.gentoo.org/~ulm/distfiles/${P}-ieee80.patch.xz"
-
-LICENSE="GPL-3+ unicode"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
-IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
-
-COMMON_DEPEND="
- !app-accessibility/espeak
- mbrola? ( app-accessibility/mbrola )
- sound? ( media-libs/pcaudiolib )
-"
-DEPEND="${COMMON_DEPEND}"
-RDEPEND="${COMMON_DEPEND}
- sound? ( media-sound/sox )
-"
-BDEPEND="
- virtual/pkgconfig
- man? ( || ( app-text/ronn-ng app-text/ronn ) )
-"
-
-PATCHES=( "${WORKDIR}"/${P}-ieee80.patch )
-
-DOCS=( CHANGELOG.md README.md docs )
-
-src_prepare() {
- default
-
- # disable failing tests
- rm tests/{language-pronunciation,translate}.test || die
- sed -i \
- -e "/language-pronunciation.check/d" \
- -e "/translate.check/d" \
- Makefile.am || die
-
- # https://github.com/espeak-ng/espeak-ng/issues/699
- # fixed in master
- sed -i -e "s/int samplerate;/static int samplerate;/" src/espeak-ng.c || die
-
- eautoreconf
-}
-
-src_configure() {
- # https://bugs.gentoo.org/836646
- export PULSE_SERVER=""
-
- local econf_args
- econf_args=(
- $(use_with async)
- $(use_with klatt)
- $(use_with l10n_ru extdict-ru)
- $(use_with l10n_zh extdict-zh)
- $(use_with l10n_zh extdict-zhy)
- $(use_with mbrola)
- $(use_with sound pcaudiolib)
- --without-libfuzzer
- --without-sonic
- --disable-rpath
- --disable-static
- )
- econf "${econf_args[@]}"
-}
-
-src_compile() {
- # see docs/building.md
- # The -j1s from compile/test/install may be droppable in next release
- # (after 1.50). Several bugs have been fixed upstream in git.
- emake -j1
-}
-
-src_test() {
- emake check -j1
-}
-
-src_install() {
- emake DESTDIR="${D}" VIMDIR=/usr/share/vim/vimfiles install -j1
- find "${ED}" -name '*.la' -delete || die
-}
next reply other threads:[~2023-06-10 20:13 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-10 20:13 William Hubbs [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-09-18 21:51 [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/ Sam James
2025-07-13 9:45 Sam James
2025-05-23 9:07 Arthur Zamarin
2025-04-07 8:51 Sam James
2025-03-09 9:11 WANG Xuerui
2025-03-08 18:00 Sam James
2025-03-08 16:56 Sam James
2025-03-08 15:33 Sam James
2025-03-08 11:57 Arthur Zamarin
2025-01-18 15:50 Sam James
2024-12-27 12:19 Sam James
2024-12-26 22:50 William Hubbs
2023-06-10 20:13 William Hubbs
2023-04-08 23:20 Sam James
2022-06-12 8:32 Agostino Sarubbo
2022-06-11 7:40 Agostino Sarubbo
2022-06-11 7:40 Agostino Sarubbo
2022-06-11 7:39 Agostino Sarubbo
2022-06-11 7:37 Agostino Sarubbo
2022-06-11 7:37 Agostino Sarubbo
2022-06-11 7:36 Agostino Sarubbo
2022-05-26 5:20 WANG Xuerui
2022-04-04 2:19 William Hubbs
2022-04-04 1:48 William Hubbs
2022-04-03 18:14 William Hubbs
2022-03-07 3:51 Sam James
2022-03-07 3:47 Sam James
2022-03-02 9:08 Agostino Sarubbo
2022-03-01 11:42 Jakov Smolić
2022-03-01 11:30 Agostino Sarubbo
2022-03-01 11:29 Agostino Sarubbo
2022-03-01 11:28 Agostino Sarubbo
2022-02-15 18:31 Matt Turner
2022-02-13 8:48 William Hubbs
2022-02-13 8:48 William Hubbs
2022-02-11 22:39 William Hubbs
2022-02-11 22:24 Ulrich Müller
2022-02-11 9:09 Ulrich Müller
2022-01-30 13:12 Yixun Lan
2022-01-29 7:14 Sam James
2022-01-29 4:32 Sam James
2022-01-29 3:56 Sam James
2022-01-29 3:55 Sam James
2022-01-28 7:14 Sam James
2021-10-10 22:22 Sam James
2021-09-07 18:59 Sam James
2021-09-07 2:32 Sam James
2021-07-28 2:39 Sam James
2021-07-15 22:20 Sergei Trofimovich
2021-07-07 17:10 William Hubbs
2021-06-30 22:08 William Hubbs
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1686427955.d71ef35f5a39c6e09aaa728e9ef40ffd6e63f65b.williamh@gentoo \
--to=williamh@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox