* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2021-06-30 22:08 William Hubbs
0 siblings, 0 replies; 40+ messages in thread
From: William Hubbs @ 2021-06-30 22:08 UTC (permalink / raw
To: gentoo-commits
commit: 26f1515395e781c9a00654456599db862581ec1a
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 30 22:07:31 2021 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed Jun 30 22:07:31 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26f15153
app-accessibility/espeak-ng: new package, replaces app-accessibility/espeak
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
app-accessibility/espeak-ng/Manifest | 1 +
app-accessibility/espeak-ng/espeak-ng-1.50.ebuild | 80 +++++++++++++++++++++++
app-accessibility/espeak-ng/metadata.xml | 24 +++++++
3 files changed, 105 insertions(+)
diff --git a/app-accessibility/espeak-ng/Manifest b/app-accessibility/espeak-ng/Manifest
new file mode 100644
index 00000000000..a89c9b5ddaa
--- /dev/null
+++ b/app-accessibility/espeak-ng/Manifest
@@ -0,0 +1 @@
+DIST espeak-ng-1.50.tar.gz 13665536 BLAKE2B c64c2a474374d4b6fe13bf3a99f5dfb661923c13ebd6c0bc323e7f26d9d90945c7075cc5c8f4b51e5db3303632c8c9daca7a65a1883e09d7c3faf63dd725ea3f SHA512 297dd80a6cdae3e2b8acf6823475220ce89d6a5fb68ea303156ad52cb3e7388049b6921759d4ed4e3d2e2ebd19bf931259e454f74a2ac0b7ecf4ce56c1d60c0c
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
new file mode 100644
index 00000000000..4382cc4984e
--- /dev/null
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2021 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"
+
+LICENSE="GPL-3+ Turkowski unicode"
+SLOT="0"
+KEYWORDS="~amd64"
+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 )
+"
+
+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() {
+ 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
+ emake -j1
+}
+
+src_test() {
+ emake check
+}
+
+src_install() {
+ emake DESTDIR="${D}" VIMDIR=/usr/share/vimfiles install
+ rm "${ED}"/usr/lib*/*.la || die
+}
diff --git a/app-accessibility/espeak-ng/metadata.xml b/app-accessibility/espeak-ng/metadata.xml
new file mode 100644
index 00000000000..8683d692251
--- /dev/null
+++ b/app-accessibility/espeak-ng/metadata.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <upstream>
+ <maintainer>
+ <name>Reece H. Dunn</name>
+ <email>msclrhd@gmail.com</email>
+ </maintainer>
+ <remote-id type="github">espeak-ng/espeak-ng</remote-id>
+ <changelog>https://github.com/espeak-ng/espeak-ng/releases.atom</changelog>
+ </upstream>
+ <maintainer type="person">
+ <email>williamh@gentoo.org</email>
+ <name>William Hubbs</name>
+ </maintainer>
+ <use>
+ <flag name="async">Enables asynchronous commands</flag>
+ <flag name="klatt">Enables Klatt formant synthesis and implementation</flag>
+ <flag name="l10n_ru">Builds extended Russian Dictionary file</flag>
+ <flag name="l10n_zh">Builds extended Chinese (Mandarin and Cantonese) Dictionary files</flag>
+ <flag name="man">Builds and installs manpage with app-text/ronn</flag>
+ <flag name="mbrola">Adds support for mbrola voices</flag>
+ </use>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2021-07-07 17:10 William Hubbs
0 siblings, 0 replies; 40+ messages in thread
From: William Hubbs @ 2021-07-07 17:10 UTC (permalink / raw
To: gentoo-commits
commit: d9f06ef14e0da05bf7a6fbd2071aa1d20ea9aadf
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 7 17:06:51 2021 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed Jul 7 17:10:02 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9f06ef1
app-accessibility/espeak-ng: add live ebuild
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-9999.ebuild | 82 +++++++++++++++++++++++
1 file changed, 82 insertions(+)
diff --git a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
new file mode 100644
index 00000000000..941edd1d327
--- /dev/null
+++ b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2021 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"
+
+if [[ ${PV} == 9999 ]]; then
+ EGIT_REPO_URI="https://github.com/espeak-ng/espeak-ng.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3+ Turkowski unicode"
+SLOT="0"
+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 )
+"
+
+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
+
+ eautoreconf
+}
+
+src_configure() {
+ local econf_args
+ econf_args=(
+ $(use_with async)
+ $(use_with klatt)
+ $(use_with l10n_ru extdict-ru)
+ $(use_with l10n_zh extdict-cmn)
+ $(use_with l10n_zh extdict-yue)
+ $(use_with mbrola)
+ $(use_with sound pcaudiolib)
+ --without-libfuzzer
+ --without-sonic
+ --disable-rpath
+ --disable-static
+ )
+ econf "${econf_args[@]}"
+}
+
+src_compile() {
+ # see docs/building.md
+ emake -j1
+}
+
+src_test() {
+ emake check
+}
+
+src_install() {
+ emake DESTDIR="${D}" VIMDIR=/usr/share/vimfiles install
+ rm "${ED}"/usr/lib*/*.la || die
+}
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2021-07-15 22:20 Sergei Trofimovich
0 siblings, 0 replies; 40+ messages in thread
From: Sergei Trofimovich @ 2021-07-15 22:20 UTC (permalink / raw
To: gentoo-commits
commit: 03d01d1cbe5870d89e62dee927b806a079b35a25
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 15 22:19:56 2021 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu Jul 15 22:19:56 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03d01d1c
app-accessibility/espeak-ng: keyworded 1.50 for ppc64
keyworded wrt bug #801103
Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.50.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
index 4382cc4984e..095c9ff8470 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ Turkowski unicode"
SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~ppc64"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2021-07-28 2:39 Sam James
0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2021-07-28 2:39 UTC (permalink / raw
To: gentoo-commits
commit: 592c4955ebf5057eca476de10db576c8668f0579
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 28 02:39:02 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 28 02:39:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=592c4955
app-accessibility/espeak-ng: Keyword 1.50 x86, #801103
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.50.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
index 095c9ff8470..8f51634f0e8 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ Turkowski unicode"
SLOT="0"
-KEYWORDS="~amd64 ~ppc64"
+KEYWORDS="~amd64 ~ppc64 ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2021-09-07 2:32 Sam James
0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2021-09-07 2:32 UTC (permalink / raw
To: gentoo-commits
commit: 8a9cd105ba3bd5ef326ebb70ca9a573f072cef26
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 7 02:31:47 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Sep 7 02:31:47 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a9cd105
app-accessibility/espeak-ng: Keyword 1.50 arm64, #801103
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.50.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
index 8f51634f0e8..abb4f2d4f72 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ Turkowski unicode"
SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2021-09-07 18:59 Sam James
0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2021-09-07 18:59 UTC (permalink / raw
To: gentoo-commits
commit: db5af9bd21f5d14222b3911d11d765ad40d7bb2f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 7 18:58:32 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Sep 7 18:58:32 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db5af9bd
app-accessibility/espeak-ng: Keyword 1.50 arm, #801103
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.50.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
index abb4f2d4f72..9f3f16e4a69 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ Turkowski unicode"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2021-10-10 22:22 Sam James
0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2021-10-10 22:22 UTC (permalink / raw
To: gentoo-commits
commit: 4a72bb506a6b6a6a92bd0b7d58a23db4daf719c9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 10 22:22:34 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 10 22:22:34 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a72bb50
app-accessibility/espeak-ng: Keyword 1.50 ppc, #801103
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.50.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
index 9f3f16e4a69..de70028fc38 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ Turkowski unicode"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-01-28 7:14 Sam James
0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2022-01-28 7:14 UTC (permalink / raw
To: gentoo-commits
commit: 629c12eac77f710cf35f1a7572bcfaa79d4c7053
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 28 07:12:56 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 28 07:14:38 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=629c12ea
app-accessibility/espeak-ng: allow using app-text/ronn-ng for USE=man
app-text/ronn will be last-rited soon.
Bug: https://bugs.gentoo.org/770907
Signed-off-by: Sam James <sam <AT> gentoo.org>
...eak-ng-9999.ebuild => espeak-ng-1.50-r1.ebuild} | 22 ++++++++++------------
app-accessibility/espeak-ng/espeak-ng-9999.ebuild | 4 ++--
2 files changed, 12 insertions(+), 14 deletions(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
similarity index 74%
copy from app-accessibility/espeak-ng/espeak-ng-9999.ebuild
copy to app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
index 941edd1d327b..95392dcb4fcb 100644
--- a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -7,17 +7,11 @@ inherit autotools
DESCRIPTION="Software speech synthesizer for English, and some other languages"
HOMEPAGE="https://github.com/espeak-ng/espeak-ng"
-
-if [[ ${PV} == 9999 ]]; then
- EGIT_REPO_URI="https://github.com/espeak-ng/espeak-ng.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
+SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3+ Turkowski unicode"
SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
@@ -31,7 +25,7 @@ RDEPEND="${COMMON_DEPEND}
"
BDEPEND="
virtual/pkgconfig
- man? ( app-text/ronn )
+ man? ( || ( app-text/ronn-ng app-text/ronn ) )
"
DOCS=( CHANGELOG.md README.md docs )
@@ -46,6 +40,10 @@ src_prepare() {
-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
}
@@ -55,8 +53,8 @@ src_configure() {
$(use_with async)
$(use_with klatt)
$(use_with l10n_ru extdict-ru)
- $(use_with l10n_zh extdict-cmn)
- $(use_with l10n_zh extdict-yue)
+ $(use_with l10n_zh extdict-zh)
+ $(use_with l10n_zh extdict-zhy)
$(use_with mbrola)
$(use_with sound pcaudiolib)
--without-libfuzzer
diff --git a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
index 941edd1d327b..dfba4f0058bf 100644
--- a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -31,7 +31,7 @@ RDEPEND="${COMMON_DEPEND}
"
BDEPEND="
virtual/pkgconfig
- man? ( app-text/ronn )
+ man? ( || ( app-text/ronn-ng app-text/ronn ) )
"
DOCS=( CHANGELOG.md README.md docs )
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-01-29 3:55 Sam James
0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2022-01-29 3:55 UTC (permalink / raw
To: gentoo-commits
commit: 06174640689993a76794351e83d463103fd5d8f5
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 29 03:55:12 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 29 03:55:12 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06174640
app-accessibility/espeak-ng: Keyword 1.50-r1 sparc, #801103
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
index 95392dcb4fcb..ac99a8facef1 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ Turkowski unicode"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-01-29 3:56 Sam James
0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2022-01-29 3:56 UTC (permalink / raw
To: gentoo-commits
commit: 730fc769fc6806fd55a77b95832abc5dfa5fe92b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 29 02:14:30 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 29 03:56:09 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=730fc769
app-accessibility/espeak-ng: run tests serially
A bunch of fixes have landed upstream to fix parallel build & tests
but they don't apply at all to the last release, so let's force
-j1 for now to let us proceed with keywording & stabling.
Closes: https://bugs.gentoo.org/812062
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild | 6 ++++--
app-accessibility/espeak-ng/espeak-ng-1.50.ebuild | 8 +++++---
app-accessibility/espeak-ng/espeak-ng-9999.ebuild | 5 -----
3 files changed, 9 insertions(+), 10 deletions(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
index ac99a8facef1..814a89258ff2 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
@@ -67,14 +67,16 @@ src_configure() {
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
+ emake check -j1
}
src_install() {
- emake DESTDIR="${D}" VIMDIR=/usr/share/vimfiles install
+ emake DESTDIR="${D}" VIMDIR=/usr/share/vimfiles install -j1
rm "${ED}"/usr/lib*/*.la || die
}
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
index de70028fc38a..c9289793f7fa 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -67,14 +67,16 @@ src_configure() {
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
+ emake check -j1
}
src_install() {
- emake DESTDIR="${D}" VIMDIR=/usr/share/vimfiles install
+ emake DESTDIR="${D}" VIMDIR=/usr/share/vimfiles install -j1
rm "${ED}"/usr/lib*/*.la || die
}
diff --git a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
index dfba4f0058bf..e8f33d12072d 100644
--- a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
@@ -67,11 +67,6 @@ src_configure() {
econf "${econf_args[@]}"
}
-src_compile() {
- # see docs/building.md
- emake -j1
-}
-
src_test() {
emake check
}
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-01-29 4:32 Sam James
0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2022-01-29 4:32 UTC (permalink / raw
To: gentoo-commits
commit: 34e8855445b2424d4b329cfb386ebf2cec02d946
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 29 04:31:51 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 29 04:31:51 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34e88554
app-accessibility/espeak-ng: Keyword 1.50-r1 ia64, #801103
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
index 814a89258ff2..eb0c299aa47b 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ Turkowski unicode"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-01-29 7:14 Sam James
0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2022-01-29 7:14 UTC (permalink / raw
To: gentoo-commits
commit: e2f8528da44dd511574fd6f22f409c89dd29602f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 29 07:14:02 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 29 07:14:10 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2f8528d
app-accessibility/espeak-ng: Keyword 1.50-r1 hppa, #801103
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
index eb0c299aa47b..237ff7bdc53e 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ Turkowski unicode"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-01-30 13:12 Yixun Lan
0 siblings, 0 replies; 40+ messages in thread
From: Yixun Lan @ 2022-01-30 13:12 UTC (permalink / raw
To: gentoo-commits
commit: cfa9b78dca9d22f072ace110b30a90266ae89e6f
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 30 10:46:03 2022 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Sun Jan 30 13:12:40 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfa9b78d
app-accessibility/espeak-ng: keyword ~riscv, #801103
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild | 2 +-
app-accessibility/espeak-ng/espeak-ng-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
index 237ff7bdc53e..9b3280273ec1 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ Turkowski unicode"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
diff --git a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
index e8f33d12072d..9012010b2cae 100644
--- a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
inherit git-r3
else
SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
+ KEYWORDS="~amd64 ~riscv"
fi
LICENSE="GPL-3+ Turkowski unicode"
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-02-11 9:09 Ulrich Müller
0 siblings, 0 replies; 40+ messages in thread
From: Ulrich Müller @ 2022-02-11 9:09 UTC (permalink / raw
To: gentoo-commits
commit: cdf457479fbe36c9045bf87c7028d0c187d3c910
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 11 09:08:31 2022 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Fri Feb 11 09:09:15 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdf45747
app-accessibility/espeak-ng: Update LICENSE of live ebuild
Bug: https://bugs.gentoo.org/832778
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
index 9012010b2cae..c59573e05321 100644
--- a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
@@ -16,7 +16,7 @@ else
KEYWORDS="~amd64 ~riscv"
fi
-LICENSE="GPL-3+ Turkowski unicode"
+LICENSE="GPL-3+ unicode"
SLOT="0"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-02-11 22:24 Ulrich Müller
0 siblings, 0 replies; 40+ messages in thread
From: Ulrich Müller @ 2022-02-11 22:24 UTC (permalink / raw
To: gentoo-commits
commit: b90a50fab78c1e2bacaeabd1d2ba4cd9be104dc7
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 11 22:19:01 2022 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Fri Feb 11 22:24:08 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b90a50fa
app-accessibility/espeak-ng: Replace non-free ieee80.c code
Patch has been accepted upstream.
Acked-by: William Hubbs <williamh <AT> gentoo.org>
Closes: https://bugs.gentoo.org/832778
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-accessibility/espeak-ng/Manifest | 1 +
.../espeak-ng/espeak-ng-1.50-r2.ebuild | 85 ++++++++++++++++++++++
2 files changed, 86 insertions(+)
diff --git a/app-accessibility/espeak-ng/Manifest b/app-accessibility/espeak-ng/Manifest
index a89c9b5ddaa2..ca6c1169c145 100644
--- a/app-accessibility/espeak-ng/Manifest
+++ b/app-accessibility/espeak-ng/Manifest
@@ -1 +1,2 @@
+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
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r2.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r2.ebuild
new file mode 100644
index 000000000000..5e780ba05fea
--- /dev/null
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50-r2.ebuild
@@ -0,0 +1,85 @@
+# 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="~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() {
+ 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/vimfiles install -j1
+ rm "${ED}"/usr/lib*/*.la || die
+}
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-02-11 22:39 William Hubbs
0 siblings, 0 replies; 40+ messages in thread
From: William Hubbs @ 2022-02-11 22:39 UTC (permalink / raw
To: gentoo-commits
commit: b9922bafc91e9b3872ca61b105a6d30f48319eaa
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 11 22:38:11 2022 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Fri Feb 11 22:38:45 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9922baf
app-accessibility/espeak-ng: sync live ebuild keywords
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
index c59573e05321..828368f3d064 100644
--- a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
inherit git-r3
else
SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~riscv"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
fi
LICENSE="GPL-3+ unicode"
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-02-13 8:48 William Hubbs
0 siblings, 0 replies; 40+ messages in thread
From: William Hubbs @ 2022-02-13 8:48 UTC (permalink / raw
To: gentoo-commits
commit: 5ce13b8297859a360466e7f8794d0bda12b0702c
Author: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sun Feb 13 08:38:04 2022 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sun Feb 13 08:48:29 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ce13b82
app-accessibility/espeak-ng: 1.50-r3 bump
- fix installation path of vimfiles
- fix removal of *.la files
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Anna Vyalkova <cyber+gentoo <AT> sysrq.in>
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
.../espeak-ng/espeak-ng-1.50-r3.ebuild | 85 ++++++++++++++++++++++
1 file changed, 85 insertions(+)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
new file mode 100644
index 000000000000..cef1fe386ed7
--- /dev/null
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
@@ -0,0 +1,85 @@
+# 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="~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() {
+ 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
+}
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-02-13 8:48 William Hubbs
0 siblings, 0 replies; 40+ messages in thread
From: William Hubbs @ 2022-02-13 8:48 UTC (permalink / raw
To: gentoo-commits
commit: ee7888fbc6198d358cf8bc6948b2fa7b62f51dc0
Author: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sun Feb 13 08:47:12 2022 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sun Feb 13 08:48:30 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee7888fb
app-accessibility/espeak-ng: sync live
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Anna Vyalkova <cyber+gentoo <AT> sysrq.in>
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
index 828368f3d064..d55d1a306616 100644
--- a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
@@ -72,6 +72,6 @@ src_test() {
}
src_install() {
- emake DESTDIR="${D}" VIMDIR=/usr/share/vimfiles install
- rm "${ED}"/usr/lib*/*.la || die
+ emake DESTDIR="${D}" VIMDIR=/usr/share/vim/vimfiles install
+ find "${ED}" -name '*.la' -delete || die
}
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-02-15 18:31 Matt Turner
0 siblings, 0 replies; 40+ messages in thread
From: Matt Turner @ 2022-02-15 18:31 UTC (permalink / raw
To: gentoo-commits
commit: 063d53793d51bf7d9619bca3c0b9d96c2db53172
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 15 18:31:20 2022 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Feb 15 18:31:20 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=063d5379
app-accessibility/espeak-ng: Keyword 1.50-r3 alpha, #801103
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
index cef1fe386ed7..67764ae3fb14 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ unicode"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-03-01 11:28 Agostino Sarubbo
0 siblings, 0 replies; 40+ messages in thread
From: Agostino Sarubbo @ 2022-03-01 11:28 UTC (permalink / raw
To: gentoo-commits
commit: e0d229044584671ee2b5a25472f78b413a097caa
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 1 11:28:45 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Mar 1 11:28:45 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0d22904
app-accessibility/espeak-ng: ppc stable wrt bug #834428
Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
index 67764ae3fb14..850d07aa83a2 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ unicode"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~sparc ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-03-01 11:29 Agostino Sarubbo
0 siblings, 0 replies; 40+ messages in thread
From: Agostino Sarubbo @ 2022-03-01 11:29 UTC (permalink / raw
To: gentoo-commits
commit: ace23820141c1a4450586993ff415e49a80df9f1
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 1 11:29:40 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Mar 1 11:29:40 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ace23820
app-accessibility/espeak-ng: ppc64 stable wrt bug #834428
Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
index 850d07aa83a2..49126bda26b9 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ unicode"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-03-01 11:30 Agostino Sarubbo
0 siblings, 0 replies; 40+ messages in thread
From: Agostino Sarubbo @ 2022-03-01 11:30 UTC (permalink / raw
To: gentoo-commits
commit: 51f02f120496d75642b450c956d2b753cb82c0be
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 1 11:30:39 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Mar 1 11:30:39 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51f02f12
app-accessibility/espeak-ng: sparc stable wrt bug #834428
Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
index 49126bda26b9..fadbcfeafff8 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ unicode"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-03-01 11:42 Jakov Smolić
0 siblings, 0 replies; 40+ messages in thread
From: Jakov Smolić @ 2022-03-01 11:42 UTC (permalink / raw
To: gentoo-commits
commit: 63420c05cf705da9b734b58c98c024f8dab5af8b
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 1 11:41:38 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Mar 1 11:41:38 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63420c05
app-accessibility/espeak-ng: Stabilize 1.50-r3 amd64, #834428
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
index fadbcfeafff8..8174e710a339 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ unicode"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-03-02 9:08 Agostino Sarubbo
0 siblings, 0 replies; 40+ messages in thread
From: Agostino Sarubbo @ 2022-03-02 9:08 UTC (permalink / raw
To: gentoo-commits
commit: 97ef98350711ea6882c2e352316a348d72515773
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 2 09:07:51 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Mar 2 09:07:51 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97ef9835
app-accessibility/espeak-ng: x86 stable wrt bug #834428
Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
index 8174e710a339..d3e2c24a391c 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ unicode"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-03-07 3:47 Sam James
0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2022-03-07 3:47 UTC (permalink / raw
To: gentoo-commits
commit: 0334d9910302d86d7c242bf6df7d836413a2cf86
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 7 03:46:36 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 7 03:46:36 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0334d991
app-accessibility/espeak-ng: Stabilize 1.50-r3 arm64, #834428
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
index d3e2c24a391c..fc4f2f70bcb9 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ unicode"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-03-07 3:51 Sam James
0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2022-03-07 3:51 UTC (permalink / raw
To: gentoo-commits
commit: 66d7314e56a9ceaf03e1c749b64f0ddf7b758ce3
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 7 03:51:40 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 7 03:51:40 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66d7314e
app-accessibility/espeak-ng: Stabilize 1.50-r3 arm, #834428
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
index fc4f2f70bcb9..016fdf386418 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ unicode"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-04-03 18:14 William Hubbs
0 siblings, 0 replies; 40+ messages in thread
From: William Hubbs @ 2022-04-03 18:14 UTC (permalink / raw
To: gentoo-commits
commit: 60944549fb37913447bc1bb09717a28d9f53444f
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 3 17:31:38 2022 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sun Apr 3 18:13:16 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60944549
app-accessibility/espeak-ng: add 1.51
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
app-accessibility/espeak-ng/Manifest | 1 +
app-accessibility/espeak-ng/espeak-ng-1.51.ebuild | 76 +++++++++++++++++++++++
2 files changed, 77 insertions(+)
diff --git a/app-accessibility/espeak-ng/Manifest b/app-accessibility/espeak-ng/Manifest
index ca6c1169c145..c145ee48ff57 100644
--- a/app-accessibility/espeak-ng/Manifest
+++ b/app-accessibility/espeak-ng/Manifest
@@ -1,2 +1,3 @@
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.51.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
new file mode 100644
index 000000000000..345d810491c0
--- /dev/null
+++ b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
@@ -0,0 +1,76 @@
+# 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"
+
+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 ) )
+"
+
+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
+
+ eautoreconf
+}
+
+src_configure() {
+ local econf_args
+ econf_args=(
+ $(use_with async)
+ $(use_with klatt)
+ $(use_with l10n_ru extdict-ru)
+ $(use_with l10n_zh extdict-cmn)
+ $(use_with l10n_zh extdict-yue)
+ $(use_with mbrola)
+ $(use_with sound pcaudiolib)
+ --without-libfuzzer
+ --without-speechplayer
+ --without-sonic
+ --disable-rpath
+ --disable-static
+ )
+ econf "${econf_args[@]}"
+}
+
+src_compile() {
+ emake
+}
+
+src_test() {
+ emake check
+}
+
+src_install() {
+ emake DESTDIR="${D}" VIMDIR=/usr/share/vim/vimfiles install -j1
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-04-04 1:48 William Hubbs
0 siblings, 0 replies; 40+ messages in thread
From: William Hubbs @ 2022-04-04 1:48 UTC (permalink / raw
To: gentoo-commits
commit: f82fbd1bf01f4eb321912524b5484cd7146f4883
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 4 01:03:31 2022 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Mon Apr 4 01:46:39 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f82fbd1b
app-accessibility/espeak-ng: drop 1.50, 1.50-r1, 1.50-r2
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
.../espeak-ng/espeak-ng-1.50-r1.ebuild | 82 ---------------------
.../espeak-ng/espeak-ng-1.50-r2.ebuild | 85 ----------------------
app-accessibility/espeak-ng/espeak-ng-1.50.ebuild | 82 ---------------------
3 files changed, 249 deletions(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
deleted file mode 100644
index 9b3280273ec1..000000000000
--- a/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild
+++ /dev/null
@@ -1,82 +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"
-
-LICENSE="GPL-3+ Turkowski unicode"
-SLOT="0"
-KEYWORDS="~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 ) )
-"
-
-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() {
- 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/vimfiles install -j1
- rm "${ED}"/usr/lib*/*.la || die
-}
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r2.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r2.ebuild
deleted file mode 100644
index 5e780ba05fea..000000000000
--- a/app-accessibility/espeak-ng/espeak-ng-1.50-r2.ebuild
+++ /dev/null
@@ -1,85 +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="~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() {
- 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/vimfiles install -j1
- rm "${ED}"/usr/lib*/*.la || die
-}
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
deleted file mode 100644
index c9289793f7fa..000000000000
--- a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
+++ /dev/null
@@ -1,82 +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"
-
-LICENSE="GPL-3+ Turkowski unicode"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~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 )
-"
-
-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() {
- 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/vimfiles install -j1
- rm "${ED}"/usr/lib*/*.la || die
-}
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-04-04 2:19 William Hubbs
0 siblings, 0 replies; 40+ messages in thread
From: William Hubbs @ 2022-04-04 2:19 UTC (permalink / raw
To: gentoo-commits
commit: cccecafab917464137d22cec82e7458d6f5c277e
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 4 02:17:05 2022 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Mon Apr 4 02:18:44 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cccecafa
app-accessibility/espeak-ng: add fix for pulseaudio access violation
Closes: https://bugs.gentoo.org/836646
Closes: https://github.com/gentoo/gentoo/pull/24878
Signed-off-by: Peter Alfredsen <crabbedhaloablution <AT> icloud.com>
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild | 3 +++
app-accessibility/espeak-ng/espeak-ng-1.51.ebuild | 4 ++++
app-accessibility/espeak-ng/espeak-ng-9999.ebuild | 4 ++++
3 files changed, 11 insertions(+)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
index 016fdf386418..c3240b2d2dd3 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild
@@ -51,6 +51,9 @@ src_prepare() {
}
src_configure() {
+ # https://bugs.gentoo.org/836646
+ export PULSE_SERVER=""
+
local econf_args
econf_args=(
$(use_with async)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
index 345d810491c0..a9ea01fea59e 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
@@ -45,6 +45,10 @@ src_prepare() {
src_configure() {
local econf_args
+
+ # https://bugs.gentoo.org/836646
+ export PULSE_SERVER=""
+
econf_args=(
$(use_with async)
$(use_with klatt)
diff --git a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
index d55d1a306616..4dc30d2b5348 100644
--- a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
@@ -51,6 +51,10 @@ src_prepare() {
src_configure() {
local econf_args
+
+ # https://bugs.gentoo.org/836646
+ export PULSE_SERVER=""
+
econf_args=(
$(use_with async)
$(use_with klatt)
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-05-26 5:20 WANG Xuerui
0 siblings, 0 replies; 40+ messages in thread
From: WANG Xuerui @ 2022-05-26 5:20 UTC (permalink / raw
To: gentoo-commits
commit: 59b31fb7aaba6ad4b23fffafbc7b015813fba0ef
Author: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Thu May 26 05:20:24 2022 +0000
Commit: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Thu May 26 05:20:24 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59b31fb7
app-accessibility/espeak-ng: keyword 1.51 for ~loong
Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.51.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
index a9ea01fea59e..3b853ba6c6de 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ unicode"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-06-11 7:36 Agostino Sarubbo
0 siblings, 0 replies; 40+ messages in thread
From: Agostino Sarubbo @ 2022-06-11 7:36 UTC (permalink / raw
To: gentoo-commits
commit: 8155910cc3697f49d39231764a397354e2be9cba
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 11 07:36:51 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Jun 11 07:36:51 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8155910c
app-accessibility/espeak-ng: amd64 stable wrt bug #850919
Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.51.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
index 3b853ba6c6de..36d884f95ce2 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ unicode"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-06-11 7:37 Agostino Sarubbo
0 siblings, 0 replies; 40+ messages in thread
From: Agostino Sarubbo @ 2022-06-11 7:37 UTC (permalink / raw
To: gentoo-commits
commit: b02ba9d24966ad0c67b283437f4d318685ba9dde
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 11 07:37:25 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Jun 11 07:37:25 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b02ba9d2
app-accessibility/espeak-ng: arm stable wrt bug #850919
Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="arm"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.51.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
index 36d884f95ce2..b3a19336ec1c 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ unicode"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-06-11 7:37 Agostino Sarubbo
0 siblings, 0 replies; 40+ messages in thread
From: Agostino Sarubbo @ 2022-06-11 7:37 UTC (permalink / raw
To: gentoo-commits
commit: e91ecea24f5498879211eafc8b7076103385a768
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 11 07:37:43 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Jun 11 07:37:43 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e91ecea2
app-accessibility/espeak-ng: arm64 stable wrt bug #850919
Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="arm64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.51.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
index b3a19336ec1c..c7b43241cd90 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ unicode"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-06-11 7:39 Agostino Sarubbo
0 siblings, 0 replies; 40+ messages in thread
From: Agostino Sarubbo @ 2022-06-11 7:39 UTC (permalink / raw
To: gentoo-commits
commit: 0571ae45f1dc22aecc255774817ee913a771ab25
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 11 07:38:18 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Jun 11 07:39:17 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0571ae45
app-accessibility/espeak-ng: ppc stable wrt bug #850919
Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.51.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
index c7b43241cd90..afa684000344 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ unicode"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ~ppc64 ~riscv ~sparc ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-06-11 7:40 Agostino Sarubbo
0 siblings, 0 replies; 40+ messages in thread
From: Agostino Sarubbo @ 2022-06-11 7:40 UTC (permalink / raw
To: gentoo-commits
commit: 033fab99780e7d01add539172203a16047e9f924
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 11 07:40:10 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Jun 11 07:40:13 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=033fab99
app-accessibility/espeak-ng: ppc64 stable wrt bug #850919
Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.51.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
index afa684000344..302cb367729b 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ unicode"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-06-11 7:40 Agostino Sarubbo
0 siblings, 0 replies; 40+ messages in thread
From: Agostino Sarubbo @ 2022-06-11 7:40 UTC (permalink / raw
To: gentoo-commits
commit: d16f359e0624cc2e158d489144550fc3970fdd90
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 11 07:40:46 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Jun 11 07:40:46 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d16f359e
app-accessibility/espeak-ng: sparc stable wrt bug #850919
Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.51.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
index 302cb367729b..bf0911272422 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ unicode"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc ~x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2022-06-12 8:32 Agostino Sarubbo
0 siblings, 0 replies; 40+ messages in thread
From: Agostino Sarubbo @ 2022-06-12 8:32 UTC (permalink / raw
To: gentoo-commits
commit: 1934067ebd8c6efee2199eb923c760b2a3fe202f
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 12 08:31:36 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Jun 12 08:32:19 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1934067e
app-accessibility/espeak-ng: x86 stable wrt bug #850919
Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.51.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
index bf0911272422..b1bb63eb8365 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar
LICENSE="GPL-3+ unicode"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2023-04-08 23:20 Sam James
0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2023-04-08 23:20 UTC (permalink / raw
To: gentoo-commits
commit: 1d57842ea031bd9035f08c1ecdd2ff0bed05d288
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 8 22:52:16 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 8 23:19:29 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d57842e
app-accessibility/espeak-ng: update man description for ronn-ng
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-accessibility/espeak-ng/metadata.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-accessibility/espeak-ng/metadata.xml b/app-accessibility/espeak-ng/metadata.xml
index 45532b56bef7..4901fb4be0a0 100644
--- a/app-accessibility/espeak-ng/metadata.xml
+++ b/app-accessibility/espeak-ng/metadata.xml
@@ -18,7 +18,7 @@
<flag name="klatt">Enables Klatt formant synthesis and implementation</flag>
<flag name="l10n_ru">Builds extended Russian Dictionary file</flag>
<flag name="l10n_zh">Builds extended Chinese (Mandarin and Cantonese) Dictionary files</flag>
- <flag name="man">Builds and installs manpage with <pkg>app-text/ronn</pkg></flag>
+ <flag name="man">Builds and installs manpage with <pkg>app-text/ronn-ng</pkg></flag>
<flag name="mbrola">Adds support for mbrola voices</flag>
</use>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2023-06-10 20:13 William Hubbs
0 siblings, 0 replies; 40+ messages in thread
From: William Hubbs @ 2023-06-10 20:13 UTC (permalink / raw
To: gentoo-commits
commit: c6137ef2289b4a4ae529e7057c2231170eb836af
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon May 29 13:35:19 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=c6137ef2
app-accessibility/espeak-ng: update 9999 EAPI 7 -> 8, cleanup
- drop superfluous COMMON_DEPEND
- move blocker to RDEPEND
- drop nonexistent app-text/ronn BDEPEND
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
app-accessibility/espeak-ng/espeak-ng-1.51.ebuild | 11 +++++------
app-accessibility/espeak-ng/espeak-ng-9999.ebuild | 18 ++++++++----------
2 files changed, 13 insertions(+), 16 deletions(-)
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
index b1bb63eb8365..19d3e39695fa 100644
--- a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -14,18 +14,17 @@ SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc x86"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
-COMMON_DEPEND="
- !app-accessibility/espeak
+DEPEND="
mbrola? ( app-accessibility/mbrola )
sound? ( media-libs/pcaudiolib )
"
-DEPEND="${COMMON_DEPEND}"
-RDEPEND="${COMMON_DEPEND}
+RDEPEND="${DEPEND}
+ !app-accessibility/espeak
sound? ( media-sound/sox )
"
BDEPEND="
virtual/pkgconfig
- man? ( || ( app-text/ronn-ng app-text/ronn ) )
+ man? ( app-text/ronn-ng )
"
DOCS=( CHANGELOG.md README.md docs )
diff --git a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
index 4dc30d2b5348..791939bee5a1 100644
--- a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
+++ b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild
@@ -1,37 +1,36 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit autotools
DESCRIPTION="Software speech synthesizer for English, and some other languages"
HOMEPAGE="https://github.com/espeak-ng/espeak-ng"
-if [[ ${PV} == 9999 ]]; then
+if [[ ${PV} == *9999* ]]; then
EGIT_REPO_URI="https://github.com/espeak-ng/espeak-ng.git"
inherit git-r3
else
SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+ KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
fi
LICENSE="GPL-3+ unicode"
SLOT="0"
IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound"
-COMMON_DEPEND="
- !app-accessibility/espeak
+DEPEND="
mbrola? ( app-accessibility/mbrola )
sound? ( media-libs/pcaudiolib )
"
-DEPEND="${COMMON_DEPEND}"
-RDEPEND="${COMMON_DEPEND}
+RDEPEND="${DEPEND}
+ !app-accessibility/espeak
sound? ( media-sound/sox )
"
BDEPEND="
virtual/pkgconfig
- man? ( || ( app-text/ronn-ng app-text/ronn ) )
+ man? ( app-text/ronn-ng )
"
DOCS=( CHANGELOG.md README.md docs )
@@ -66,7 +65,6 @@ src_configure() {
--without-libfuzzer
--without-sonic
--disable-rpath
- --disable-static
)
econf "${econf_args[@]}"
}
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/
@ 2023-06-10 20:13 William Hubbs
0 siblings, 0 replies; 40+ messages in thread
From: William Hubbs @ 2023-06-10 20:13 UTC (permalink / raw
To: gentoo-commits
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
-}
^ permalink raw reply related [flat|nested] 40+ messages in thread
end of thread, other threads:[~2023-06-10 20:13 UTC | newest]
Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-11 22:24 [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/ Ulrich Müller
-- strict thread matches above, loose matches on Subject: below --
2023-06-10 20:13 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 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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox