[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-09-27 Thread Ionen Wolkens
commit: 643b276b9091358fc11bee12fceeb553e701c5a9
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Fri Sep 27 07:09:12 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Fri Sep 27 07:25:51 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=643b276b

dev-qt/qtspeech: add 6.7.3

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest  |  1 +
 dev-qt/qtspeech/qtspeech-6.7.3.ebuild | 44 +++
 2 files changed, 45 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index a9d39f1fc930..e14d55405dc2 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,4 +1,5 @@
 DIST qtspeech-5.15.14-gentoo-kde-1.tar.xz 1044 BLAKE2B 
9f5feb7168f17fa76e89efa2c6b08a339dcf024c2a248c3a23d210570a99e9232a06b0559593adf6eb62cffea4fa62e942c6e0f4efecfd3f073276e49e5a9210
 SHA512 
9a468eb627902932cd39d6b59216f3aff3183f047dec61361857ccc47502406731429abc39940e21b0f62c2ad2bc3bbe3f1d0a78e57f13fb891821ef2307bf90
 DIST qtspeech-everywhere-opensource-src-5.15.14.tar.xz 95916 BLAKE2B 
15673759f71d4096e29854caa398a5b72257d77891a568e8e4561403b6d88f584a709ab1281c69ff99b250030c40b85848436254b5b6b2277b95728994b81f14
 SHA512 
87d021efb5d07704dd5469bb3050e9381e8da47d2ef41bd37a95ac1903410b781283af42694dd1300c84bd0f0ea219e61da0a3aaf6204937578d26044a297f79
 DIST qtspeech-everywhere-src-6.7.2.tar.xz 262360 BLAKE2B 
0faceb7e8425ccb03574fa6db5a9f8dab967197341fce497fc2600a6200d417dba8b83a6a7616fed7cbce3d2c34b48b77e37814518996f917aeadc7ca628ebff
 SHA512 
f6e598834ab455c9feb5836b0add05802261210be088f7860b746a214a5be7d332a43d7c09bd03eef48d362165f2739b858e966249c061c9ef537346453bd588
+DIST qtspeech-everywhere-src-6.7.3.tar.xz 262376 BLAKE2B 
065b50141c712dae2103c0e81dc7dfcd255df502b598e924e0bb3d2498c670dbf71cd2f65da341a6833c7b60a78580ba0bdf68fa9430373fb8587281ceb87a22
 SHA512 
b2b5a3b67160b75a679701eeac97587add53a1f8c2a2d120a61c54ead1d519d1fb726945fd2d4871b800f028e70f44e1079480322f71e2010c72b675b1cf935f
 DIST qtspeech-everywhere-src-6.8.0-rc.tar.xz 262280 BLAKE2B 
751408bd4bb0a0d6afe836af81d61bc7bcb55b67dda65de7c519c44112d420dc671ed088c794bb0ddf6587d8afb12caab43b622d810f991da9a0a3a2b125acf1
 SHA512 
401b109f5809e27f1fb39c2972e191f9fa09f2689299a2856fb28ae09d2183f71f2e2f3092b43cb6a243024b87eccde5247c8a00730242fef78cc310d7d2a47b

diff --git a/dev-qt/qtspeech/qtspeech-6.7.3.ebuild 
b/dev-qt/qtspeech/qtspeech-6.7.3.ebuild
new file mode 100644
index ..1b13d4434223
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-6.7.3.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# tests are kind of flaky, sometimes hang, and also fail with clang
+# (not that it's unusable with clang) -- may be worth revisiting
+# eventually given qtspeech is still somewhat new (added in 6.4.0)
+QT6_RESTRICT_TESTS=1
+
+inherit qt6-build
+
+DESCRIPTION="Text-to-speech library for the Qt6 framework"
+
+if [[ ${QT6_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
+fi
+
+IUSE="flite qml +speechd"
+# can build with neither, but then it is just mock tts and may be confusing
+REQUIRED_USE="|| ( flite speechd )"
+
+RDEPEND="
+   ~dev-qt/qtbase-${PV}:6
+   ~dev-qt/qtmultimedia-${PV}:6
+   flite? ( app-accessibility/flite )
+   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
+   speechd? ( app-accessibility/speech-dispatcher )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake_use_find_package qml Qt6Qml)
+   $(qt_feature flite)
+   $(qt_feature speechd)
+
+   # flite_alsa was likely to work around old issues in flite, it 
does
+   # nothing but add -lasound (no code change, and is unneeded)
+   -DQT_FEATURE_flite_alsa=OFF
+   )
+
+   qt6-build_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-09-24 Thread Ionen Wolkens
commit: 7a23d1105c3587e3c43e50914e9f1fb1a769dca4
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Sep 24 09:23:23 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Sep 24 09:56:41 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a23d110

dev-qt/qtspeech: add 6.8.0_rc

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest |  1 +
 dev-qt/qtspeech/qtspeech-6.8.0_rc.ebuild | 44 
 2 files changed, 45 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index ae3370437025..a9d39f1fc930 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,3 +1,4 @@
 DIST qtspeech-5.15.14-gentoo-kde-1.tar.xz 1044 BLAKE2B 
9f5feb7168f17fa76e89efa2c6b08a339dcf024c2a248c3a23d210570a99e9232a06b0559593adf6eb62cffea4fa62e942c6e0f4efecfd3f073276e49e5a9210
 SHA512 
9a468eb627902932cd39d6b59216f3aff3183f047dec61361857ccc47502406731429abc39940e21b0f62c2ad2bc3bbe3f1d0a78e57f13fb891821ef2307bf90
 DIST qtspeech-everywhere-opensource-src-5.15.14.tar.xz 95916 BLAKE2B 
15673759f71d4096e29854caa398a5b72257d77891a568e8e4561403b6d88f584a709ab1281c69ff99b250030c40b85848436254b5b6b2277b95728994b81f14
 SHA512 
87d021efb5d07704dd5469bb3050e9381e8da47d2ef41bd37a95ac1903410b781283af42694dd1300c84bd0f0ea219e61da0a3aaf6204937578d26044a297f79
 DIST qtspeech-everywhere-src-6.7.2.tar.xz 262360 BLAKE2B 
0faceb7e8425ccb03574fa6db5a9f8dab967197341fce497fc2600a6200d417dba8b83a6a7616fed7cbce3d2c34b48b77e37814518996f917aeadc7ca628ebff
 SHA512 
f6e598834ab455c9feb5836b0add05802261210be088f7860b746a214a5be7d332a43d7c09bd03eef48d362165f2739b858e966249c061c9ef537346453bd588
+DIST qtspeech-everywhere-src-6.8.0-rc.tar.xz 262280 BLAKE2B 
751408bd4bb0a0d6afe836af81d61bc7bcb55b67dda65de7c519c44112d420dc671ed088c794bb0ddf6587d8afb12caab43b622d810f991da9a0a3a2b125acf1
 SHA512 
401b109f5809e27f1fb39c2972e191f9fa09f2689299a2856fb28ae09d2183f71f2e2f3092b43cb6a243024b87eccde5247c8a00730242fef78cc310d7d2a47b

diff --git a/dev-qt/qtspeech/qtspeech-6.8.0_rc.ebuild 
b/dev-qt/qtspeech/qtspeech-6.8.0_rc.ebuild
new file mode 100644
index ..1b13d4434223
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-6.8.0_rc.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# tests are kind of flaky, sometimes hang, and also fail with clang
+# (not that it's unusable with clang) -- may be worth revisiting
+# eventually given qtspeech is still somewhat new (added in 6.4.0)
+QT6_RESTRICT_TESTS=1
+
+inherit qt6-build
+
+DESCRIPTION="Text-to-speech library for the Qt6 framework"
+
+if [[ ${QT6_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
+fi
+
+IUSE="flite qml +speechd"
+# can build with neither, but then it is just mock tts and may be confusing
+REQUIRED_USE="|| ( flite speechd )"
+
+RDEPEND="
+   ~dev-qt/qtbase-${PV}:6
+   ~dev-qt/qtmultimedia-${PV}:6
+   flite? ( app-accessibility/flite )
+   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
+   speechd? ( app-accessibility/speech-dispatcher )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake_use_find_package qml Qt6Qml)
+   $(qt_feature flite)
+   $(qt_feature speechd)
+
+   # flite_alsa was likely to work around old issues in flite, it 
does
+   # nothing but add -lasound (no code change, and is unneeded)
+   -DQT_FEATURE_flite_alsa=OFF
+   )
+
+   qt6-build_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-09-03 Thread Ionen Wolkens
commit: c6c6f8345183444a509fa60aa7f32b2e3aa0c554
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Sep  3 07:24:49 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Sep  3 07:43:26 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6c6f834

dev-qt/qtspeech: sync live keywords

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.7..ebuild | 2 +-
 dev-qt/qtspeech/qtspeech-6.8..ebuild | 2 +-
 dev-qt/qtspeech/qtspeech-6..ebuild   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.7..ebuild 
b/dev-qt/qtspeech/qtspeech-6.7..ebuild
index b668e25bbabd..1b13d4434223 100644
--- a/dev-qt/qtspeech/qtspeech-6.7..ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.7..ebuild
@@ -13,7 +13,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
 fi
 
 IUSE="flite qml +speechd"

diff --git a/dev-qt/qtspeech/qtspeech-6.8..ebuild 
b/dev-qt/qtspeech/qtspeech-6.8..ebuild
index b668e25bbabd..1b13d4434223 100644
--- a/dev-qt/qtspeech/qtspeech-6.8..ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.8..ebuild
@@ -13,7 +13,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
 fi
 
 IUSE="flite qml +speechd"

diff --git a/dev-qt/qtspeech/qtspeech-6..ebuild 
b/dev-qt/qtspeech/qtspeech-6..ebuild
index b668e25bbabd..1b13d4434223 100644
--- a/dev-qt/qtspeech/qtspeech-6..ebuild
+++ b/dev-qt/qtspeech/qtspeech-6..ebuild
@@ -13,7 +13,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
 fi
 
 IUSE="flite qml +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-08-12 Thread Arthur Zamarin
commit: 60aedb5a4bbeaeee971c97c789275f93cc471f80
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Aug 12 18:20:54 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Aug 12 18:20:54 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60aedb5a

dev-qt/qtspeech: Keyword 6.7.2 ppc, #935070

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.7.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.7.2.ebuild 
b/dev-qt/qtspeech/qtspeech-6.7.2.ebuild
index cbeae1e0894f..246f1b0383b9 100644
--- a/dev-qt/qtspeech/qtspeech-6.7.2.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.7.2.ebuild
@@ -13,7 +13,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ~loong ~ppc ppc64 ~riscv x86"
 fi
 
 IUSE="flite qml +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-07-15 Thread Ionen Wolkens
commit: 7dc643dc529829b13a625177e836eef8326b30d7
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Jul 16 00:55:59 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Jul 16 01:01:09 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dc643dc

dev-qt/qtspeech: drop 6.7.1

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest  |  1 -
 dev-qt/qtspeech/qtspeech-6.7.1.ebuild | 44 ---
 2 files changed, 45 deletions(-)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 1b30dc8d0237..ae3370437025 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,4 +1,3 @@
 DIST qtspeech-5.15.14-gentoo-kde-1.tar.xz 1044 BLAKE2B 
9f5feb7168f17fa76e89efa2c6b08a339dcf024c2a248c3a23d210570a99e9232a06b0559593adf6eb62cffea4fa62e942c6e0f4efecfd3f073276e49e5a9210
 SHA512 
9a468eb627902932cd39d6b59216f3aff3183f047dec61361857ccc47502406731429abc39940e21b0f62c2ad2bc3bbe3f1d0a78e57f13fb891821ef2307bf90
 DIST qtspeech-everywhere-opensource-src-5.15.14.tar.xz 95916 BLAKE2B 
15673759f71d4096e29854caa398a5b72257d77891a568e8e4561403b6d88f584a709ab1281c69ff99b250030c40b85848436254b5b6b2277b95728994b81f14
 SHA512 
87d021efb5d07704dd5469bb3050e9381e8da47d2ef41bd37a95ac1903410b781283af42694dd1300c84bd0f0ea219e61da0a3aaf6204937578d26044a297f79
-DIST qtspeech-everywhere-src-6.7.1.tar.xz 261772 BLAKE2B 
a776930705b7ad7a127997d35046c0101a8c40111b5cec50779944b2db9aaff8ddce3d0d7a25152d4a13360a5c30c2b9993fe17ff931180ecb32845de90be7b3
 SHA512 
b97fc36601c77e9c594077e15be658f6307a2d89cc1c23594143827eb92b72182a671e418e3f83d3e072465068546d626a4cfc09ee03738f8c5a244984587b67
 DIST qtspeech-everywhere-src-6.7.2.tar.xz 262360 BLAKE2B 
0faceb7e8425ccb03574fa6db5a9f8dab967197341fce497fc2600a6200d417dba8b83a6a7616fed7cbce3d2c34b48b77e37814518996f917aeadc7ca628ebff
 SHA512 
f6e598834ab455c9feb5836b0add05802261210be088f7860b746a214a5be7d332a43d7c09bd03eef48d362165f2739b858e966249c061c9ef537346453bd588

diff --git a/dev-qt/qtspeech/qtspeech-6.7.1.ebuild 
b/dev-qt/qtspeech/qtspeech-6.7.1.ebuild
deleted file mode 100644
index 483d7fddd3de..
--- a/dev-qt/qtspeech/qtspeech-6.7.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# tests are kind of flaky, sometimes hang, and also fail with clang
-# (not that it's unusable with clang) -- may be worth revisiting
-# eventually given qtspeech is still somewhat new (added in 6.4.0)
-QT6_RESTRICT_TESTS=1
-
-inherit qt6-build
-
-DESCRIPTION="Text-to-speech library for the Qt6 framework"
-
-if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~loong ~ppc64 ~riscv x86"
-fi
-
-IUSE="flite qml +speechd"
-# can build with neither, but then it is just mock tts and may be confusing
-REQUIRED_USE="|| ( flite speechd )"
-
-RDEPEND="
-   ~dev-qt/qtbase-${PV}:6
-   ~dev-qt/qtmultimedia-${PV}:6
-   flite? ( app-accessibility/flite )
-   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
-   speechd? ( app-accessibility/speech-dispatcher )
-"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package qml Qt6Qml)
-   $(qt_feature flite)
-   $(qt_feature speechd)
-
-   # flite_alsa was likely to work around old issues in flite, it 
does
-   # nothing but add -lasound (no code change, and is unneeded)
-   -DQT_FEATURE_flite_alsa=OFF
-   )
-
-   qt6-build_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-07-08 Thread Arthur Zamarin
commit: ecbd21dd374b64cb39e0689d3f180e2a7ebf684a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Jul  8 11:15:10 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Jul  8 11:15:10 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecbd21dd

dev-qt/qtspeech: Stabilize 6.7.2 arm64, #935728

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.7.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.7.2.ebuild 
b/dev-qt/qtspeech/qtspeech-6.7.2.ebuild
index 15a18cfde109..a5ddcd496abb 100644
--- a/dev-qt/qtspeech/qtspeech-6.7.2.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.7.2.ebuild
@@ -13,7 +13,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 arm ~arm64 ~loong ppc64 ~riscv x86"
+   KEYWORDS="~amd64 arm arm64 ~loong ppc64 ~riscv x86"
 fi
 
 IUSE="flite qml +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-07-08 Thread Sam James
commit: c900248166dc5b48b0f4622db3ca6d948327f391
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul  8 10:08:36 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  8 10:08:36 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9002481

dev-qt/qtspeech: Stabilize 6.7.2 arm, #935728

Signed-off-by: Sam James  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.7.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.7.2.ebuild 
b/dev-qt/qtspeech/qtspeech-6.7.2.ebuild
index eaabcfa92209..5c588fd38d50 100644
--- a/dev-qt/qtspeech/qtspeech-6.7.2.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.7.2.ebuild
@@ -13,7 +13,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 arm ~arm64 ~loong ppc64 ~riscv ~x86"
 fi
 
 IUSE="flite qml +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-06-18 Thread Ionen Wolkens
commit: 0613a0f62129b573a80a9737ad3092391fcab058
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Jun 18 09:25:47 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Jun 18 18:13:50 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0613a0f6

dev-qt/qtspeech: add 6.7.2

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest  |  1 +
 dev-qt/qtspeech/qtspeech-6.7.2.ebuild | 44 +++
 2 files changed, 45 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index d38beca7e810..1b30dc8d0237 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,3 +1,4 @@
 DIST qtspeech-5.15.14-gentoo-kde-1.tar.xz 1044 BLAKE2B 
9f5feb7168f17fa76e89efa2c6b08a339dcf024c2a248c3a23d210570a99e9232a06b0559593adf6eb62cffea4fa62e942c6e0f4efecfd3f073276e49e5a9210
 SHA512 
9a468eb627902932cd39d6b59216f3aff3183f047dec61361857ccc47502406731429abc39940e21b0f62c2ad2bc3bbe3f1d0a78e57f13fb891821ef2307bf90
 DIST qtspeech-everywhere-opensource-src-5.15.14.tar.xz 95916 BLAKE2B 
15673759f71d4096e29854caa398a5b72257d77891a568e8e4561403b6d88f584a709ab1281c69ff99b250030c40b85848436254b5b6b2277b95728994b81f14
 SHA512 
87d021efb5d07704dd5469bb3050e9381e8da47d2ef41bd37a95ac1903410b781283af42694dd1300c84bd0f0ea219e61da0a3aaf6204937578d26044a297f79
 DIST qtspeech-everywhere-src-6.7.1.tar.xz 261772 BLAKE2B 
a776930705b7ad7a127997d35046c0101a8c40111b5cec50779944b2db9aaff8ddce3d0d7a25152d4a13360a5c30c2b9993fe17ff931180ecb32845de90be7b3
 SHA512 
b97fc36601c77e9c594077e15be658f6307a2d89cc1c23594143827eb92b72182a671e418e3f83d3e072465068546d626a4cfc09ee03738f8c5a244984587b67
+DIST qtspeech-everywhere-src-6.7.2.tar.xz 262360 BLAKE2B 
0faceb7e8425ccb03574fa6db5a9f8dab967197341fce497fc2600a6200d417dba8b83a6a7616fed7cbce3d2c34b48b77e37814518996f917aeadc7ca628ebff
 SHA512 
f6e598834ab455c9feb5836b0add05802261210be088f7860b746a214a5be7d332a43d7c09bd03eef48d362165f2739b858e966249c061c9ef537346453bd588

diff --git a/dev-qt/qtspeech/qtspeech-6.7.2.ebuild 
b/dev-qt/qtspeech/qtspeech-6.7.2.ebuild
new file mode 100644
index ..b668e25bbabd
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-6.7.2.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# tests are kind of flaky, sometimes hang, and also fail with clang
+# (not that it's unusable with clang) -- may be worth revisiting
+# eventually given qtspeech is still somewhat new (added in 6.4.0)
+QT6_RESTRICT_TESTS=1
+
+inherit qt6-build
+
+DESCRIPTION="Text-to-speech library for the Qt6 framework"
+
+if [[ ${QT6_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+fi
+
+IUSE="flite qml +speechd"
+# can build with neither, but then it is just mock tts and may be confusing
+REQUIRED_USE="|| ( flite speechd )"
+
+RDEPEND="
+   ~dev-qt/qtbase-${PV}:6
+   ~dev-qt/qtmultimedia-${PV}:6
+   flite? ( app-accessibility/flite )
+   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
+   speechd? ( app-accessibility/speech-dispatcher )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake_use_find_package qml Qt6Qml)
+   $(qt_feature flite)
+   $(qt_feature speechd)
+
+   # flite_alsa was likely to work around old issues in flite, it 
does
+   # nothing but add -lasound (no code change, and is unneeded)
+   -DQT_FEATURE_flite_alsa=OFF
+   )
+
+   qt6-build_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-06-15 Thread Arthur Zamarin
commit: 6c2d0772d176c85d2140b82417ffcb0d62b37aec
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jun 15 15:46:38 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jun 15 15:46:38 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c2d0772

dev-qt/qtspeech: Keyword 6.7.1 ppc64, #927885

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.7.1.ebuild 
b/dev-qt/qtspeech/qtspeech-6.7.1.ebuild
index 4abab299c0ab..483d7fddd3de 100644
--- a/dev-qt/qtspeech/qtspeech-6.7.1.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.7.1.ebuild
@@ -13,7 +13,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~loong ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ~loong ~ppc64 ~riscv x86"
 fi
 
 IUSE="flite qml +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-06-08 Thread Ionen Wolkens
commit: cb7421fb0124bc3a6565abab8d119b868e5059ef
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Sat Jun  8 05:40:52 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Sat Jun  8 13:39:35 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb7421fb

dev-qt/qtspeech: drop 6.7.0

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest  |  1 -
 dev-qt/qtspeech/qtspeech-6.7.0.ebuild | 44 ---
 2 files changed, 45 deletions(-)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index b3356e3d9416..d38beca7e810 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,4 +1,3 @@
 DIST qtspeech-5.15.14-gentoo-kde-1.tar.xz 1044 BLAKE2B 
9f5feb7168f17fa76e89efa2c6b08a339dcf024c2a248c3a23d210570a99e9232a06b0559593adf6eb62cffea4fa62e942c6e0f4efecfd3f073276e49e5a9210
 SHA512 
9a468eb627902932cd39d6b59216f3aff3183f047dec61361857ccc47502406731429abc39940e21b0f62c2ad2bc3bbe3f1d0a78e57f13fb891821ef2307bf90
 DIST qtspeech-everywhere-opensource-src-5.15.14.tar.xz 95916 BLAKE2B 
15673759f71d4096e29854caa398a5b72257d77891a568e8e4561403b6d88f584a709ab1281c69ff99b250030c40b85848436254b5b6b2277b95728994b81f14
 SHA512 
87d021efb5d07704dd5469bb3050e9381e8da47d2ef41bd37a95ac1903410b781283af42694dd1300c84bd0f0ea219e61da0a3aaf6204937578d26044a297f79
-DIST qtspeech-everywhere-src-6.7.0.tar.xz 261732 BLAKE2B 
a7e99c3c9efdaa7aa5d44537b9aaaed87af0607daa6b6ab21d602594081f5bcc5ead4da9eebbee15a7cc735a36e80cfa312452f2cdfa5ce4136bd0c06797eba2
 SHA512 
10d086633da8cc478619023baa4d2495bb394aa30e7ba7141b0e698ade5a4a723f5643a5df64e9920b90251e89722598b7d5b720d7b8d3a04449e94fd5984f82
 DIST qtspeech-everywhere-src-6.7.1.tar.xz 261772 BLAKE2B 
a776930705b7ad7a127997d35046c0101a8c40111b5cec50779944b2db9aaff8ddce3d0d7a25152d4a13360a5c30c2b9993fe17ff931180ecb32845de90be7b3
 SHA512 
b97fc36601c77e9c594077e15be658f6307a2d89cc1c23594143827eb92b72182a671e418e3f83d3e072465068546d626a4cfc09ee03738f8c5a244984587b67

diff --git a/dev-qt/qtspeech/qtspeech-6.7.0.ebuild 
b/dev-qt/qtspeech/qtspeech-6.7.0.ebuild
deleted file mode 100644
index 4a4f7916dee2..
--- a/dev-qt/qtspeech/qtspeech-6.7.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# tests are kind of flaky, sometimes hang, and also fail with clang
-# (not that it's unusable with clang) -- may be worth revisiting
-# eventually given qtspeech is still somewhat new (added in 6.4.0)
-QT6_RESTRICT_TESTS=1
-
-inherit qt6-build
-
-DESCRIPTION="Text-to-speech library for the Qt6 framework"
-
-if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 ~arm arm64 ~loong ~riscv ~x86"
-fi
-
-IUSE="flite qml +speechd"
-# can build with neither, but then it is just mock tts and may be confusing
-REQUIRED_USE="|| ( flite speechd )"
-
-RDEPEND="
-   ~dev-qt/qtbase-${PV}:6
-   ~dev-qt/qtmultimedia-${PV}:6
-   flite? ( app-accessibility/flite )
-   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
-   speechd? ( app-accessibility/speech-dispatcher )
-"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package qml Qt6Qml)
-   $(qt_feature flite)
-   $(qt_feature speechd)
-
-   # flite_alsa was likely to work around old issues in flite, it 
does
-   # nothing but add -lasound (no code change, and is unneeded)
-   -DQT_FEATURE_flite_alsa=OFF
-   )
-
-   qt6-build_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-06-07 Thread Arthur Zamarin
commit: be84eb907f7b092037cbd7b38e70a29587fdc94b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jun  8 05:25:48 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jun  8 05:25:48 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be84eb90

dev-qt/qtspeech: Stabilize 6.7.1 arm64, #932347

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.7.1.ebuild 
b/dev-qt/qtspeech/qtspeech-6.7.1.ebuild
index 39e1c27792c5..4abab299c0ab 100644
--- a/dev-qt/qtspeech/qtspeech-6.7.1.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.7.1.ebuild
@@ -13,7 +13,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm ~arm64 ~loong ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ~loong ~riscv x86"
 fi
 
 IUSE="flite qml +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-06-06 Thread Andreas Sturmlechner
commit: a8517dce81e82719a8423f9581929d7a2dba8dff
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jun  6 16:40:38 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jun  6 16:43:22 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8517dce

dev-qt/qtspeech: drop 5.15.13

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtspeech/Manifest|  2 --
 dev-qt/qtspeech/qtspeech-5.15.13.ebuild | 36 -
 2 files changed, 38 deletions(-)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index cbe5869c4ce1..b3356e3d9416 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,6 +1,4 @@
-DIST qtspeech-5.15.13-gentoo-kde-1.tar.xz 1048 BLAKE2B 
93b16166dd8fd83eb9d7ce84cd3fff2dd330cc4060327e107b12a084aa47b7dc2d237bbf0852d207d2b4fbe9a5688d0236ebc5e7c1e6a42da84fd92fbd912050
 SHA512 
8eb6b865663b9fb837e88f859c1f407c4fab5d0976630e29bb0c3f2e2d01f225f3a614cba6c20495c56429d37427c75e314194d0c74c69296ab3e5df128290c6
 DIST qtspeech-5.15.14-gentoo-kde-1.tar.xz 1044 BLAKE2B 
9f5feb7168f17fa76e89efa2c6b08a339dcf024c2a248c3a23d210570a99e9232a06b0559593adf6eb62cffea4fa62e942c6e0f4efecfd3f073276e49e5a9210
 SHA512 
9a468eb627902932cd39d6b59216f3aff3183f047dec61361857ccc47502406731429abc39940e21b0f62c2ad2bc3bbe3f1d0a78e57f13fb891821ef2307bf90
-DIST qtspeech-everywhere-opensource-src-5.15.13.tar.xz 104612 BLAKE2B 
3c35098f0d4f4b4f804808f3d11abc0c0d189e3883cb1d15ea9b350948e061125299df1207ad44ed7af207c417980b0360ab6b44733efbbe7e5bdac6fe2402b5
 SHA512 
43b97ddc333d1c4a9715b1c306ced0506eb8faf69f1d22500b74e509d33b5a5cb9d0c166b9211a32a78eaba57925195d8ba0c39c8ae6a15551f841426294c75f
 DIST qtspeech-everywhere-opensource-src-5.15.14.tar.xz 95916 BLAKE2B 
15673759f71d4096e29854caa398a5b72257d77891a568e8e4561403b6d88f584a709ab1281c69ff99b250030c40b85848436254b5b6b2277b95728994b81f14
 SHA512 
87d021efb5d07704dd5469bb3050e9381e8da47d2ef41bd37a95ac1903410b781283af42694dd1300c84bd0f0ea219e61da0a3aaf6204937578d26044a297f79
 DIST qtspeech-everywhere-src-6.7.0.tar.xz 261732 BLAKE2B 
a7e99c3c9efdaa7aa5d44537b9aaaed87af0607daa6b6ab21d602594081f5bcc5ead4da9eebbee15a7cc735a36e80cfa312452f2cdfa5ce4136bd0c06797eba2
 SHA512 
10d086633da8cc478619023baa4d2495bb394aa30e7ba7141b0e698ade5a4a723f5643a5df64e9920b90251e89722598b7d5b720d7b8d3a04449e94fd5984f82
 DIST qtspeech-everywhere-src-6.7.1.tar.xz 261772 BLAKE2B 
a776930705b7ad7a127997d35046c0101a8c40111b5cec50779944b2db9aaff8ddce3d0d7a25152d4a13360a5c30c2b9993fe17ff931180ecb32845de90be7b3
 SHA512 
b97fc36601c77e9c594077e15be658f6307a2d89cc1c23594143827eb92b72182a671e418e3f83d3e072465068546d626a4cfc09ee03738f8c5a244984587b67

diff --git a/dev-qt/qtspeech/qtspeech-5.15.13.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.13.ebuild
deleted file mode 100644
index 07a269a79b0d..
--- a/dev-qt/qtspeech/qtspeech-5.15.13.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-if [[ ${PV} != ** ]]; then
-   QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
-fi
-
-inherit qt5-build
-
-DESCRIPTION="Text-to-speech library for the Qt5 framework"
-
-IUSE="alsa flite"
-
-RDEPEND="
-   >=app-accessibility/speech-dispatcher-0.8.7
-   =dev-qt/qtcore-${QT5_PV}*
-   flite? (
-   >=app-accessibility/flite-2[alsa?]
-   =dev-qt/qtmultimedia-${QT5_PV}*[alsa?]
-   alsa? ( media-libs/alsa-lib )
-   )
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   qt_use_disable_config flite flite \
-   src/plugins/tts/tts.pro
-
-   qt_use_disable_config alsa flite_alsa \
-   src/plugins/tts/flite/flite.pro
-
-   qt5-build_src_prepare
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-06-04 Thread Ionen Wolkens
commit: 62bcacf71054734f7fdee8f9d22f4618e75b2300
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Jun  4 08:16:54 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Jun  4 19:30:46 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62bcacf7

dev-qt/qtspeech: add 6.8.

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.8..ebuild | 44 
 1 file changed, 44 insertions(+)

diff --git a/dev-qt/qtspeech/qtspeech-6.8..ebuild 
b/dev-qt/qtspeech/qtspeech-6.8..ebuild
new file mode 100644
index ..c012be997560
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-6.8..ebuild
@@ -0,0 +1,44 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# tests are kind of flaky, sometimes hang, and also fail with clang
+# (not that it's unusable with clang) -- may be worth revisiting
+# eventually given qtspeech is still somewhat new (added in 6.4.0)
+QT6_RESTRICT_TESTS=1
+
+inherit qt6-build
+
+DESCRIPTION="Text-to-speech library for the Qt6 framework"
+
+if [[ ${QT6_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86"
+fi
+
+IUSE="flite qml +speechd"
+# can build with neither, but then it is just mock tts and may be confusing
+REQUIRED_USE="|| ( flite speechd )"
+
+RDEPEND="
+   ~dev-qt/qtbase-${PV}:6
+   ~dev-qt/qtmultimedia-${PV}:6
+   flite? ( app-accessibility/flite )
+   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
+   speechd? ( app-accessibility/speech-dispatcher )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake_use_find_package qml Qt6Qml)
+   $(qt_feature flite)
+   $(qt_feature speechd)
+
+   # flite_alsa was likely to work around old issues in flite, it 
does
+   # nothing but add -lasound (no code change, and is unneeded)
+   -DQT_FEATURE_flite_alsa=OFF
+   )
+
+   qt6-build_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-06-04 Thread Arthur Zamarin
commit: 770ec3a12bc166ddee61063e08b135394bb8f3ac
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun  4 16:15:13 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun  4 16:15:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=770ec3a1

dev-qt/qtspeech: Stabilize 5.15.14 ppc64, #933196

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.14.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.14.ebuild
index 0f2044f3bd97..07a269a79b0d 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.14.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.14.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 arm arm64 ~loong ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-06-01 Thread Sam James
commit: 5bc884a61c3da0a70f846377b9703b027bcd2521
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun  2 04:03:12 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun  2 04:03:12 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bc884a6

dev-qt/qtspeech: Stabilize 6.7.1 amd64, #932347

Signed-off-by: Sam James  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.7.1.ebuild 
b/dev-qt/qtspeech/qtspeech-6.7.1.ebuild
index dde5c24d85ba..39e1c27792c5 100644
--- a/dev-qt/qtspeech/qtspeech-6.7.1.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.7.1.ebuild
@@ -13,7 +13,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 arm ~arm64 ~loong ~riscv x86"
+   KEYWORDS="amd64 arm ~arm64 ~loong ~riscv x86"
 fi
 
 IUSE="flite qml +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-06-01 Thread Arthur Zamarin
commit: 32b9d1136c5278e2c5dc60c2953f92398328428b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jun  1 15:59:34 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jun  1 15:59:34 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32b9d113

dev-qt/qtspeech: Stabilize 5.15.14 x86, #933196

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.14.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.14.ebuild
index de75f523fe9a..ec8efd637742 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.14.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.14.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-06-01 Thread Arthur Zamarin
commit: 93eb8ce8004d7e12dfcfab3c50107d5b9926896b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jun  1 09:36:07 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jun  1 10:25:30 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93eb8ce8

dev-qt/qtspeech: Stabilize 5.15.14 arm64, #933196

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.14.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.14.ebuild
index 80a0fb019274..de75f523fe9a 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.14.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.14.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-05-30 Thread Andreas Sturmlechner
commit: ea29ddbcd6fd7e4f162fad0f8da5000b58076595
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu May 30 10:21:27 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu May 30 12:34:34 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea29ddbc

dev-qt/qtspeech: add 5.15.14

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtspeech/Manifest|  2 ++
 dev-qt/qtspeech/qtspeech-5.15.14.ebuild | 36 +
 2 files changed, 38 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index fababf233a56..cbe5869c4ce1 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,4 +1,6 @@
 DIST qtspeech-5.15.13-gentoo-kde-1.tar.xz 1048 BLAKE2B 
93b16166dd8fd83eb9d7ce84cd3fff2dd330cc4060327e107b12a084aa47b7dc2d237bbf0852d207d2b4fbe9a5688d0236ebc5e7c1e6a42da84fd92fbd912050
 SHA512 
8eb6b865663b9fb837e88f859c1f407c4fab5d0976630e29bb0c3f2e2d01f225f3a614cba6c20495c56429d37427c75e314194d0c74c69296ab3e5df128290c6
+DIST qtspeech-5.15.14-gentoo-kde-1.tar.xz 1044 BLAKE2B 
9f5feb7168f17fa76e89efa2c6b08a339dcf024c2a248c3a23d210570a99e9232a06b0559593adf6eb62cffea4fa62e942c6e0f4efecfd3f073276e49e5a9210
 SHA512 
9a468eb627902932cd39d6b59216f3aff3183f047dec61361857ccc47502406731429abc39940e21b0f62c2ad2bc3bbe3f1d0a78e57f13fb891821ef2307bf90
 DIST qtspeech-everywhere-opensource-src-5.15.13.tar.xz 104612 BLAKE2B 
3c35098f0d4f4b4f804808f3d11abc0c0d189e3883cb1d15ea9b350948e061125299df1207ad44ed7af207c417980b0360ab6b44733efbbe7e5bdac6fe2402b5
 SHA512 
43b97ddc333d1c4a9715b1c306ced0506eb8faf69f1d22500b74e509d33b5a5cb9d0c166b9211a32a78eaba57925195d8ba0c39c8ae6a15551f841426294c75f
+DIST qtspeech-everywhere-opensource-src-5.15.14.tar.xz 95916 BLAKE2B 
15673759f71d4096e29854caa398a5b72257d77891a568e8e4561403b6d88f584a709ab1281c69ff99b250030c40b85848436254b5b6b2277b95728994b81f14
 SHA512 
87d021efb5d07704dd5469bb3050e9381e8da47d2ef41bd37a95ac1903410b781283af42694dd1300c84bd0f0ea219e61da0a3aaf6204937578d26044a297f79
 DIST qtspeech-everywhere-src-6.7.0.tar.xz 261732 BLAKE2B 
a7e99c3c9efdaa7aa5d44537b9aaaed87af0607daa6b6ab21d602594081f5bcc5ead4da9eebbee15a7cc735a36e80cfa312452f2cdfa5ce4136bd0c06797eba2
 SHA512 
10d086633da8cc478619023baa4d2495bb394aa30e7ba7141b0e698ade5a4a723f5643a5df64e9920b90251e89722598b7d5b720d7b8d3a04449e94fd5984f82
 DIST qtspeech-everywhere-src-6.7.1.tar.xz 261772 BLAKE2B 
a776930705b7ad7a127997d35046c0101a8c40111b5cec50779944b2db9aaff8ddce3d0d7a25152d4a13360a5c30c2b9993fe17ff931180ecb32845de90be7b3
 SHA512 
b97fc36601c77e9c594077e15be658f6307a2d89cc1c23594143827eb92b72182a671e418e3f83d3e072465068546d626a4cfc09ee03738f8c5a244984587b67

diff --git a/dev-qt/qtspeech/qtspeech-5.15.14.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.14.ebuild
new file mode 100644
index ..e54210475a40
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-5.15.14.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+if [[ ${PV} != ** ]]; then
+   QT5_KDEPATCHSET_REV=1
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+fi
+
+inherit qt5-build
+
+DESCRIPTION="Text-to-speech library for the Qt5 framework"
+
+IUSE="alsa flite"
+
+RDEPEND="
+   >=app-accessibility/speech-dispatcher-0.8.7
+   =dev-qt/qtcore-${QT5_PV}*
+   flite? (
+   >=app-accessibility/flite-2[alsa?]
+   =dev-qt/qtmultimedia-${QT5_PV}*[alsa?]
+   alsa? ( media-libs/alsa-lib )
+   )
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   qt_use_disable_config flite flite \
+   src/plugins/tts/tts.pro
+
+   qt_use_disable_config alsa flite_alsa \
+   src/plugins/tts/flite/flite.pro
+
+   qt5-build_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-05-28 Thread Arthur Zamarin
commit: fa3c74655cedcda7166c8f393a587a7432acec01
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue May 28 18:55:20 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue May 28 18:55:20 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa3c7465

dev-qt/qtspeech: Stabilize 6.7.1 x86, #932862

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.7.1.ebuild 
b/dev-qt/qtspeech/qtspeech-6.7.1.ebuild
index 61bde168ae9c..dde5c24d85ba 100644
--- a/dev-qt/qtspeech/qtspeech-6.7.1.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.7.1.ebuild
@@ -13,7 +13,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 arm ~arm64 ~loong ~riscv ~x86"
+   KEYWORDS="~amd64 arm ~arm64 ~loong ~riscv x86"
 fi
 
 IUSE="flite qml +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-05-20 Thread Ionen Wolkens
commit: 1c84a9f1ec425bfda66506d93eb64f0535f101aa
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Mon May 20 07:55:23 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Mon May 20 08:45:30 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c84a9f1

dev-qt/qtspeech: add 6.7.1

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest  |  1 +
 dev-qt/qtspeech/qtspeech-6.7.1.ebuild | 44 +++
 2 files changed, 45 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 55bb3673d17f..fababf233a56 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,3 +1,4 @@
 DIST qtspeech-5.15.13-gentoo-kde-1.tar.xz 1048 BLAKE2B 
93b16166dd8fd83eb9d7ce84cd3fff2dd330cc4060327e107b12a084aa47b7dc2d237bbf0852d207d2b4fbe9a5688d0236ebc5e7c1e6a42da84fd92fbd912050
 SHA512 
8eb6b865663b9fb837e88f859c1f407c4fab5d0976630e29bb0c3f2e2d01f225f3a614cba6c20495c56429d37427c75e314194d0c74c69296ab3e5df128290c6
 DIST qtspeech-everywhere-opensource-src-5.15.13.tar.xz 104612 BLAKE2B 
3c35098f0d4f4b4f804808f3d11abc0c0d189e3883cb1d15ea9b350948e061125299df1207ad44ed7af207c417980b0360ab6b44733efbbe7e5bdac6fe2402b5
 SHA512 
43b97ddc333d1c4a9715b1c306ced0506eb8faf69f1d22500b74e509d33b5a5cb9d0c166b9211a32a78eaba57925195d8ba0c39c8ae6a15551f841426294c75f
 DIST qtspeech-everywhere-src-6.7.0.tar.xz 261732 BLAKE2B 
a7e99c3c9efdaa7aa5d44537b9aaaed87af0607daa6b6ab21d602594081f5bcc5ead4da9eebbee15a7cc735a36e80cfa312452f2cdfa5ce4136bd0c06797eba2
 SHA512 
10d086633da8cc478619023baa4d2495bb394aa30e7ba7141b0e698ade5a4a723f5643a5df64e9920b90251e89722598b7d5b720d7b8d3a04449e94fd5984f82
+DIST qtspeech-everywhere-src-6.7.1.tar.xz 261772 BLAKE2B 
a776930705b7ad7a127997d35046c0101a8c40111b5cec50779944b2db9aaff8ddce3d0d7a25152d4a13360a5c30c2b9993fe17ff931180ecb32845de90be7b3
 SHA512 
b97fc36601c77e9c594077e15be658f6307a2d89cc1c23594143827eb92b72182a671e418e3f83d3e072465068546d626a4cfc09ee03738f8c5a244984587b67

diff --git a/dev-qt/qtspeech/qtspeech-6.7.1.ebuild 
b/dev-qt/qtspeech/qtspeech-6.7.1.ebuild
new file mode 100644
index ..c012be997560
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-6.7.1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# tests are kind of flaky, sometimes hang, and also fail with clang
+# (not that it's unusable with clang) -- may be worth revisiting
+# eventually given qtspeech is still somewhat new (added in 6.4.0)
+QT6_RESTRICT_TESTS=1
+
+inherit qt6-build
+
+DESCRIPTION="Text-to-speech library for the Qt6 framework"
+
+if [[ ${QT6_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86"
+fi
+
+IUSE="flite qml +speechd"
+# can build with neither, but then it is just mock tts and may be confusing
+REQUIRED_USE="|| ( flite speechd )"
+
+RDEPEND="
+   ~dev-qt/qtbase-${PV}:6
+   ~dev-qt/qtmultimedia-${PV}:6
+   flite? ( app-accessibility/flite )
+   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
+   speechd? ( app-accessibility/speech-dispatcher )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake_use_find_package qml Qt6Qml)
+   $(qt_feature flite)
+   $(qt_feature speechd)
+
+   # flite_alsa was likely to work around old issues in flite, it 
does
+   # nothing but add -lasound (no code change, and is unneeded)
+   -DQT_FEATURE_flite_alsa=OFF
+   )
+
+   qt6-build_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-04-20 Thread Ionen Wolkens
commit: 7efa35f2e3c99336bb910985071bc26691a7f64b
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Sat Apr 20 13:28:47 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Sat Apr 20 14:19:54 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7efa35f2

dev-qt/qtspeech: use QT6_RESTRICT_TESTS

This one should be more or less temporary, albeit haven't tried
it in a a while and may as well remove IUSE="test" entirely for
now which may have its own problems. I'd rather not worry about
this one yet.

Bug: https://bugs.gentoo.org/930266
Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.7.0.ebuild| 13 +
 dev-qt/qtspeech/qtspeech-6.7..ebuild | 13 +
 dev-qt/qtspeech/qtspeech-6..ebuild   | 13 +
 3 files changed, 15 insertions(+), 24 deletions(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.7.0.ebuild 
b/dev-qt/qtspeech/qtspeech-6.7.0.ebuild
index 5491997f2898..4a4f7916dee2 100644
--- a/dev-qt/qtspeech/qtspeech-6.7.0.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.7.0.ebuild
@@ -3,6 +3,11 @@
 
 EAPI=8
 
+# tests are kind of flaky, sometimes hang, and also fail with clang
+# (not that it's unusable with clang) -- may be worth revisiting
+# eventually given qtspeech is still somewhat new (added in 6.4.0)
+QT6_RESTRICT_TESTS=1
+
 inherit qt6-build
 
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
@@ -15,14 +20,6 @@ IUSE="flite qml +speechd"
 # can build with neither, but then it is just mock tts and may be confusing
 REQUIRED_USE="|| ( flite speechd )"
 
-# TODO: tests are known failing with clang and needs looking into, albeit
-# it is still usable at runtime save for applications segfaulting on exit
-# similarly to QTBUG-90626 (not that this has in-tree revdeps as of writing
-# of this). Restricting because also seen this result in hanging. Note that
-# qtspeech:6 is still somewhat new (started in 6.4.0), and should review
-# status on new major versions.
-RESTRICT="test"
-
 RDEPEND="
~dev-qt/qtbase-${PV}:6
~dev-qt/qtmultimedia-${PV}:6

diff --git a/dev-qt/qtspeech/qtspeech-6.7..ebuild 
b/dev-qt/qtspeech/qtspeech-6.7..ebuild
index 52d658ae0a12..c012be997560 100644
--- a/dev-qt/qtspeech/qtspeech-6.7..ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.7..ebuild
@@ -3,6 +3,11 @@
 
 EAPI=8
 
+# tests are kind of flaky, sometimes hang, and also fail with clang
+# (not that it's unusable with clang) -- may be worth revisiting
+# eventually given qtspeech is still somewhat new (added in 6.4.0)
+QT6_RESTRICT_TESTS=1
+
 inherit qt6-build
 
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
@@ -15,14 +20,6 @@ IUSE="flite qml +speechd"
 # can build with neither, but then it is just mock tts and may be confusing
 REQUIRED_USE="|| ( flite speechd )"
 
-# TODO: tests are known failing with clang and needs looking into, albeit
-# it is still usable at runtime save for applications segfaulting on exit
-# similarly to QTBUG-90626 (not that this has in-tree revdeps as of writing
-# of this). Restricting because also seen this result in hanging. Note that
-# qtspeech:6 is still somewhat new (started in 6.4.0), and should review
-# status on new major versions.
-RESTRICT="test"
-
 RDEPEND="
~dev-qt/qtbase-${PV}:6
~dev-qt/qtmultimedia-${PV}:6

diff --git a/dev-qt/qtspeech/qtspeech-6..ebuild 
b/dev-qt/qtspeech/qtspeech-6..ebuild
index 52d658ae0a12..c012be997560 100644
--- a/dev-qt/qtspeech/qtspeech-6..ebuild
+++ b/dev-qt/qtspeech/qtspeech-6..ebuild
@@ -3,6 +3,11 @@
 
 EAPI=8
 
+# tests are kind of flaky, sometimes hang, and also fail with clang
+# (not that it's unusable with clang) -- may be worth revisiting
+# eventually given qtspeech is still somewhat new (added in 6.4.0)
+QT6_RESTRICT_TESTS=1
+
 inherit qt6-build
 
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
@@ -15,14 +20,6 @@ IUSE="flite qml +speechd"
 # can build with neither, but then it is just mock tts and may be confusing
 REQUIRED_USE="|| ( flite speechd )"
 
-# TODO: tests are known failing with clang and needs looking into, albeit
-# it is still usable at runtime save for applications segfaulting on exit
-# similarly to QTBUG-90626 (not that this has in-tree revdeps as of writing
-# of this). Restricting because also seen this result in hanging. Note that
-# qtspeech:6 is still somewhat new (started in 6.4.0), and should review
-# status on new major versions.
-RESTRICT="test"
-
 RDEPEND="
~dev-qt/qtbase-${PV}:6
~dev-qt/qtmultimedia-${PV}:6



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-04-19 Thread Ionen Wolkens
commit: a216e204f56515a2cccadd49fb8d83d1ce34175f
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Fri Apr 19 07:25:40 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Fri Apr 19 07:47:18 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a216e204

dev-qt/qtspeech: drop 6.6.2, 6.6.3

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest  |  2 --
 dev-qt/qtspeech/qtspeech-6.6.2.ebuild | 47 ---
 dev-qt/qtspeech/qtspeech-6.6.3.ebuild | 47 ---
 3 files changed, 96 deletions(-)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 612cec3d0bf3..55bb3673d17f 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,5 +1,3 @@
 DIST qtspeech-5.15.13-gentoo-kde-1.tar.xz 1048 BLAKE2B 
93b16166dd8fd83eb9d7ce84cd3fff2dd330cc4060327e107b12a084aa47b7dc2d237bbf0852d207d2b4fbe9a5688d0236ebc5e7c1e6a42da84fd92fbd912050
 SHA512 
8eb6b865663b9fb837e88f859c1f407c4fab5d0976630e29bb0c3f2e2d01f225f3a614cba6c20495c56429d37427c75e314194d0c74c69296ab3e5df128290c6
 DIST qtspeech-everywhere-opensource-src-5.15.13.tar.xz 104612 BLAKE2B 
3c35098f0d4f4b4f804808f3d11abc0c0d189e3883cb1d15ea9b350948e061125299df1207ad44ed7af207c417980b0360ab6b44733efbbe7e5bdac6fe2402b5
 SHA512 
43b97ddc333d1c4a9715b1c306ced0506eb8faf69f1d22500b74e509d33b5a5cb9d0c166b9211a32a78eaba57925195d8ba0c39c8ae6a15551f841426294c75f
-DIST qtspeech-everywhere-src-6.6.2.tar.xz 262008 BLAKE2B 
6d9ae5b42f96fa02a15ac82e9e1c6a378c3b0ceccd278af9ef99346ad79a256e41d1d2ae10cfef75f311bdfad457271357b09fd067ddc902bff3e4ee31eda12e
 SHA512 
e43793931b81bb86cc074a2153ec0160991c86bc255ea1b11e5b4a272b8d067fcfc6788261d4b2f6f7630eadbcab7be23249b980d2792cb9a109137af614601e
-DIST qtspeech-everywhere-src-6.6.3.tar.xz 261976 BLAKE2B 
839adf366d268f2872b321d16546fc953d2e3fa6724f76061fb44674d06a0dba949f171d67f528707d071a7b94f0097f4d6e0fa25ca902572477476d3f4872fc
 SHA512 
4a43e1895ae477f6b6890a36ba2da365420e7778dece26535642ead39aab39c0c10d3be1c78a5b823eaddc646bdb60c5bd16bf3ac02f279832bc9724cfedc5d2
 DIST qtspeech-everywhere-src-6.7.0.tar.xz 261732 BLAKE2B 
a7e99c3c9efdaa7aa5d44537b9aaaed87af0607daa6b6ab21d602594081f5bcc5ead4da9eebbee15a7cc735a36e80cfa312452f2cdfa5ce4136bd0c06797eba2
 SHA512 
10d086633da8cc478619023baa4d2495bb394aa30e7ba7141b0e698ade5a4a723f5643a5df64e9920b90251e89722598b7d5b720d7b8d3a04449e94fd5984f82

diff --git a/dev-qt/qtspeech/qtspeech-6.6.2.ebuild 
b/dev-qt/qtspeech/qtspeech-6.6.2.ebuild
deleted file mode 100644
index 0a07541315c2..
--- a/dev-qt/qtspeech/qtspeech-6.6.2.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit qt6-build
-
-DESCRIPTION="Text-to-speech library for the Qt6 framework"
-
-if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm64 ~loong"
-fi
-
-IUSE="flite qml +speechd"
-# can build with neither, but then it is just mock tts and may be confusing
-REQUIRED_USE="|| ( flite speechd )"
-
-# TODO: tests are known failing with clang and needs looking into, albeit
-# it is still usable at runtime save for applications segfaulting on exit
-# similarly to QTBUG-90626 (not that this has in-tree revdeps as of writing
-# of this). Restricting because also seen this result in hanging. Note that
-# qtspeech:6 is still somewhat new (started in 6.4.0), and should review
-# status on new major versions.
-RESTRICT="test"
-
-RDEPEND="
-   ~dev-qt/qtbase-${PV}:6
-   ~dev-qt/qtmultimedia-${PV}:6
-   flite? ( app-accessibility/flite )
-   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
-   speechd? ( app-accessibility/speech-dispatcher )
-"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package qml Qt6Qml)
-   $(qt_feature flite)
-   $(qt_feature speechd)
-
-   # flite_alsa was likely to work around old issues in flite, it 
does
-   # nothing but add -lasound (no code change, and is unneeded)
-   -DQT_FEATURE_flite_alsa=OFF
-   )
-
-   qt6-build_src_configure
-}

diff --git a/dev-qt/qtspeech/qtspeech-6.6.3.ebuild 
b/dev-qt/qtspeech/qtspeech-6.6.3.ebuild
deleted file mode 100644
index 5491997f2898..
--- a/dev-qt/qtspeech/qtspeech-6.6.3.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit qt6-build
-
-DESCRIPTION="Text-to-speech library for the Qt6 framework"
-
-if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 ~arm arm64 ~loong ~riscv ~x86"
-fi
-
-IUSE="flite qml +speechd"
-# can build with neither, but then it is just mock tts and may be confusing
-REQUIRED_USE="|| ( flite speechd )"
-
-# TODO: tests are known failing with clang and needs looking into, albeit
-# it is still usable at runtime save f

[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-04-13 Thread Arthur Zamarin
commit: e7c69855cef53feb710c12cd5db7c137abe2e7fa
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr 13 17:49:06 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr 13 17:50:52 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7c69855

dev-qt/qtspeech: Stabilize 6.7.0 amd64, #929242

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.7.0.ebuild 
b/dev-qt/qtspeech/qtspeech-6.7.0.ebuild
index 988f851ee03e..5491997f2898 100644
--- a/dev-qt/qtspeech/qtspeech-6.7.0.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.7.0.ebuild
@@ -8,7 +8,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm arm64 ~loong ~riscv ~x86"
+   KEYWORDS="amd64 ~arm arm64 ~loong ~riscv ~x86"
 fi
 
 IUSE="flite qml +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-04-05 Thread Andreas Sturmlechner
commit: 88975f60c90856f6dbb7b3235dd8bb4e335c2e00
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Apr  4 18:34:20 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Apr  5 15:00:57 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88975f60

dev-qt/qtspeech: drop 5.15.12

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtspeech/Manifest|  2 --
 dev-qt/qtspeech/qtspeech-5.15.12.ebuild | 36 -
 2 files changed, 38 deletions(-)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 83ad85398e83..612cec3d0bf3 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,6 +1,4 @@
-DIST qtspeech-5.15.12-gentoo-kde-1.tar.xz 1044 BLAKE2B 
680ec75681359279fab886816c078b3178e6b29af257d5163b9f5794e5ee90ad186d13029ff9a806e55f5c28d66b8e8870b15d531af8067fbed4ac86646bb00b
 SHA512 
7773439748b85d2dd0c4d21d9e1a5e574eae848087d25b89c2cb07240021d73ea6fe62627ab061a049f7062a4b97a4316871873decc2abe0ea2cdad29ed88b1d
 DIST qtspeech-5.15.13-gentoo-kde-1.tar.xz 1048 BLAKE2B 
93b16166dd8fd83eb9d7ce84cd3fff2dd330cc4060327e107b12a084aa47b7dc2d237bbf0852d207d2b4fbe9a5688d0236ebc5e7c1e6a42da84fd92fbd912050
 SHA512 
8eb6b865663b9fb837e88f859c1f407c4fab5d0976630e29bb0c3f2e2d01f225f3a614cba6c20495c56429d37427c75e314194d0c74c69296ab3e5df128290c6
-DIST qtspeech-everywhere-opensource-src-5.15.12.tar.xz 104816 BLAKE2B 
8a64688c8ee24788498ad8eb3827cf55d4ba124230ef5f451cbf7720808d6586e48e5f0344b8546fceaf7fe048243b940f8c0bd6b44fcd5d303a1749c380ca7c
 SHA512 
960eb661cfeb8a4fc01337ac998bc8ce101da73782155e75a7b128987d9809fa1e4cc6fee30cfa3cbd39f7fff9bbe7e49e55430681ac6582e7c8110242d7183a
 DIST qtspeech-everywhere-opensource-src-5.15.13.tar.xz 104612 BLAKE2B 
3c35098f0d4f4b4f804808f3d11abc0c0d189e3883cb1d15ea9b350948e061125299df1207ad44ed7af207c417980b0360ab6b44733efbbe7e5bdac6fe2402b5
 SHA512 
43b97ddc333d1c4a9715b1c306ced0506eb8faf69f1d22500b74e509d33b5a5cb9d0c166b9211a32a78eaba57925195d8ba0c39c8ae6a15551f841426294c75f
 DIST qtspeech-everywhere-src-6.6.2.tar.xz 262008 BLAKE2B 
6d9ae5b42f96fa02a15ac82e9e1c6a378c3b0ceccd278af9ef99346ad79a256e41d1d2ae10cfef75f311bdfad457271357b09fd067ddc902bff3e4ee31eda12e
 SHA512 
e43793931b81bb86cc074a2153ec0160991c86bc255ea1b11e5b4a272b8d067fcfc6788261d4b2f6f7630eadbcab7be23249b980d2792cb9a109137af614601e
 DIST qtspeech-everywhere-src-6.6.3.tar.xz 261976 BLAKE2B 
839adf366d268f2872b321d16546fc953d2e3fa6724f76061fb44674d06a0dba949f171d67f528707d071a7b94f0097f4d6e0fa25ca902572477476d3f4872fc
 SHA512 
4a43e1895ae477f6b6890a36ba2da365420e7778dece26535642ead39aab39c0c10d3be1c78a5b823eaddc646bdb60c5bd16bf3ac02f279832bc9724cfedc5d2

diff --git a/dev-qt/qtspeech/qtspeech-5.15.12.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.12.ebuild
deleted file mode 100644
index 07a269a79b0d..
--- a/dev-qt/qtspeech/qtspeech-5.15.12.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-if [[ ${PV} != ** ]]; then
-   QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
-fi
-
-inherit qt5-build
-
-DESCRIPTION="Text-to-speech library for the Qt5 framework"
-
-IUSE="alsa flite"
-
-RDEPEND="
-   >=app-accessibility/speech-dispatcher-0.8.7
-   =dev-qt/qtcore-${QT5_PV}*
-   flite? (
-   >=app-accessibility/flite-2[alsa?]
-   =dev-qt/qtmultimedia-${QT5_PV}*[alsa?]
-   alsa? ( media-libs/alsa-lib )
-   )
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   qt_use_disable_config flite flite \
-   src/plugins/tts/tts.pro
-
-   qt_use_disable_config alsa flite_alsa \
-   src/plugins/tts/flite/flite.pro
-
-   qt5-build_src_prepare
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-04-03 Thread Arthur Zamarin
commit: 7ed1fb40d939158599d2823394e34a88ae0ead0a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr  4 04:21:45 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr  4 04:21:45 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ed1fb40

dev-qt/qtspeech: Stabilize 5.15.13 arm64, #927748

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.13.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.13.ebuild
index 3f2ee0b23182..07a269a79b0d 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.13.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.13.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 arm ~arm64 ~loong ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-04-03 Thread Arthur Zamarin
commit: e3b3d60b376684077c239cb3a1f4ab9f2ca4450e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Apr  3 20:45:09 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Apr  3 20:45:09 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3b3d60b

dev-qt/qtspeech: Stabilize 5.15.13 x86, #927748

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.13.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.13.ebuild
index 13853745e6a3..3f2ee0b23182 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.13.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.13.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 arm ~arm64 ~loong ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 arm ~arm64 ~loong ppc64 ~riscv x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-04-03 Thread Arthur Zamarin
commit: a41accb9ddab1e8bc6982714b957b7d697885fbc
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Apr  3 20:43:37 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Apr  3 20:43:37 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a41accb9

dev-qt/qtspeech: Stabilize 5.15.13 ppc64, #927748

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.13.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.13.ebuild
index 430fabc11c4c..617d94adb5d4 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.13.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.13.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="~amd64 arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 arm ~arm64 ~loong ppc64 ~riscv ~x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-04-03 Thread Arthur Zamarin
commit: 750296ca656035afa6ce1812677c1b4d2145dd39
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Apr  3 18:47:14 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Apr  3 18:47:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=750296ca

dev-qt/qtspeech: Stabilize 5.15.13 arm, #927748

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.13.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.13.ebuild
index e54210475a40..430fabc11c4c 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.13.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.13.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-04-02 Thread Ionen Wolkens
commit: 1aade741f33c06bc029b153b4b5a56a46068e1dc
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Apr  2 12:06:23 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Apr  2 13:05:05 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1aade741

dev-qt/qtspeech: add 6.7.0

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest  |  1 +
 dev-qt/qtspeech/qtspeech-6.7.0.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index d1b73e67d123..83ad85398e83 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -4,3 +4,4 @@ DIST qtspeech-everywhere-opensource-src-5.15.12.tar.xz 104816 
BLAKE2B 8a64688c8e
 DIST qtspeech-everywhere-opensource-src-5.15.13.tar.xz 104612 BLAKE2B 
3c35098f0d4f4b4f804808f3d11abc0c0d189e3883cb1d15ea9b350948e061125299df1207ad44ed7af207c417980b0360ab6b44733efbbe7e5bdac6fe2402b5
 SHA512 
43b97ddc333d1c4a9715b1c306ced0506eb8faf69f1d22500b74e509d33b5a5cb9d0c166b9211a32a78eaba57925195d8ba0c39c8ae6a15551f841426294c75f
 DIST qtspeech-everywhere-src-6.6.2.tar.xz 262008 BLAKE2B 
6d9ae5b42f96fa02a15ac82e9e1c6a378c3b0ceccd278af9ef99346ad79a256e41d1d2ae10cfef75f311bdfad457271357b09fd067ddc902bff3e4ee31eda12e
 SHA512 
e43793931b81bb86cc074a2153ec0160991c86bc255ea1b11e5b4a272b8d067fcfc6788261d4b2f6f7630eadbcab7be23249b980d2792cb9a109137af614601e
 DIST qtspeech-everywhere-src-6.6.3.tar.xz 261976 BLAKE2B 
839adf366d268f2872b321d16546fc953d2e3fa6724f76061fb44674d06a0dba949f171d67f528707d071a7b94f0097f4d6e0fa25ca902572477476d3f4872fc
 SHA512 
4a43e1895ae477f6b6890a36ba2da365420e7778dece26535642ead39aab39c0c10d3be1c78a5b823eaddc646bdb60c5bd16bf3ac02f279832bc9724cfedc5d2
+DIST qtspeech-everywhere-src-6.7.0.tar.xz 261732 BLAKE2B 
a7e99c3c9efdaa7aa5d44537b9aaaed87af0607daa6b6ab21d602594081f5bcc5ead4da9eebbee15a7cc735a36e80cfa312452f2cdfa5ce4136bd0c06797eba2
 SHA512 
10d086633da8cc478619023baa4d2495bb394aa30e7ba7141b0e698ade5a4a723f5643a5df64e9920b90251e89722598b7d5b720d7b8d3a04449e94fd5984f82

diff --git a/dev-qt/qtspeech/qtspeech-6.7.0.ebuild 
b/dev-qt/qtspeech/qtspeech-6.7.0.ebuild
new file mode 100644
index ..52d658ae0a12
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-6.7.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qt6-build
+
+DESCRIPTION="Text-to-speech library for the Qt6 framework"
+
+if [[ ${QT6_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86"
+fi
+
+IUSE="flite qml +speechd"
+# can build with neither, but then it is just mock tts and may be confusing
+REQUIRED_USE="|| ( flite speechd )"
+
+# TODO: tests are known failing with clang and needs looking into, albeit
+# it is still usable at runtime save for applications segfaulting on exit
+# similarly to QTBUG-90626 (not that this has in-tree revdeps as of writing
+# of this). Restricting because also seen this result in hanging. Note that
+# qtspeech:6 is still somewhat new (started in 6.4.0), and should review
+# status on new major versions.
+RESTRICT="test"
+
+RDEPEND="
+   ~dev-qt/qtbase-${PV}:6
+   ~dev-qt/qtmultimedia-${PV}:6
+   flite? ( app-accessibility/flite )
+   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
+   speechd? ( app-accessibility/speech-dispatcher )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake_use_find_package qml Qt6Qml)
+   $(qt_feature flite)
+   $(qt_feature speechd)
+
+   # flite_alsa was likely to work around old issues in flite, it 
does
+   # nothing but add -lasound (no code change, and is unneeded)
+   -DQT_FEATURE_flite_alsa=OFF
+   )
+
+   qt6-build_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-04-01 Thread Arthur Zamarin
commit: 62ba5f0c0516d3ae5faa6158a2338e075f6cd0ae
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Apr  2 05:55:44 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Apr  2 05:55:44 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62ba5f0c

dev-qt/qtspeech: Stabilize 6.6.3 arm64, #928382

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.6.3.ebuild 
b/dev-qt/qtspeech/qtspeech-6.6.3.ebuild
index 2e084450397d..5491997f2898 100644
--- a/dev-qt/qtspeech/qtspeech-6.6.3.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.6.3.ebuild
@@ -8,7 +8,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv ~x86"
+   KEYWORDS="amd64 ~arm arm64 ~loong ~riscv ~x86"
 fi
 
 IUSE="flite qml +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-04-01 Thread Arthur Zamarin
commit: 26574d282bd24fe603395c73cbe5b149658c1716
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  1 18:28:03 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  1 18:28:03 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26574d28

dev-qt/qtspeech: Stabilize 6.6.3 amd64, #928382

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.6.3.ebuild 
b/dev-qt/qtspeech/qtspeech-6.6.3.ebuild
index 52d658ae0a12..2e084450397d 100644
--- a/dev-qt/qtspeech/qtspeech-6.6.3.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.6.3.ebuild
@@ -8,7 +8,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv ~x86"
 fi
 
 IUSE="flite qml +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-03-29 Thread Ionen Wolkens
commit: 0f9771d94c73440bcf3ece9670c3f7f5450609c5
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Fri Mar 29 22:16:47 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Sat Mar 30 00:27:52 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f9771d9

dev-qt/qtspeech: drop 6.6.

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.6..ebuild | 47 
 1 file changed, 47 deletions(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.6..ebuild 
b/dev-qt/qtspeech/qtspeech-6.6..ebuild
deleted file mode 100644
index 867d3ddc19b8..
--- a/dev-qt/qtspeech/qtspeech-6.6..ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit qt6-build
-
-DESCRIPTION="Text-to-speech library for the Qt6 framework"
-
-if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm64 ~loong"
-fi
-
-IUSE="flite qml +speechd"
-# can build with neither, but then it is just mock tts and may be confusing
-REQUIRED_USE="|| ( flite speechd )"
-
-# TODO: tests are known failing with clang and needs looking into, albeit
-# it is still usable at runtime save for applications segfaulting on exit
-# similarly to QTBUG-90626 (not that this has in-tree revdeps as of writing
-# of this). Restricting because also seen this result in hanging. Note that
-# qtspeech:6 is still somewhat new (started in 6.4.0), and should review
-# status on new major versions.
-RESTRICT="test"
-
-RDEPEND="
-   ~dev-qt/qtbase-${PV}:6
-   ~dev-qt/qtmultimedia-${PV}:6
-   flite? ( app-accessibility/flite )
-   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
-   speechd? ( app-accessibility/speech-dispatcher )
-"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package qml Qt6Qml)
-   $(qt_feature flite)
-   $(qt_feature speechd)
-
-   # flite_alsa was likely to work around old issues in flite, it 
does
-   # nothing but add -lasound (no code change, and is unneeded)
-   -DQT_FEATURE_flite_alsa=OFF
-   )
-
-   qt6-build_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-03-27 Thread Yixun Lan
commit: ae27806bae622c175300779e99b3af1147373f7e
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Mar 28 03:51:55 2024 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Mar 28 04:02:45 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae27806b

dev-qt/qtspeech: Keyword 6.6.3 riscv, #927885

Signed-off-by: Yixun Lan  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.6.3.ebuild 
b/dev-qt/qtspeech/qtspeech-6.6.3.ebuild
index 4e76639ad08a..52d658ae0a12 100644
--- a/dev-qt/qtspeech/qtspeech-6.6.3.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.6.3.ebuild
@@ -8,7 +8,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86"
 fi
 
 IUSE="flite qml +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-03-27 Thread Arthur Zamarin
commit: d96b6158c20a1261213a5a5161415ccfef122c66
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Mar 27 12:41:37 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Mar 27 12:44:09 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d96b6158

dev-qt/qtspeech: Keyword 6.6.3 x86, #927885

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.6.3.ebuild 
b/dev-qt/qtspeech/qtspeech-6.6.3.ebuild
index 857dc14c48b7..4e76639ad08a 100644
--- a/dev-qt/qtspeech/qtspeech-6.6.3.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.6.3.ebuild
@@ -8,7 +8,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong"
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~x86"
 fi
 
 IUSE="flite qml +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-03-26 Thread Arthur Zamarin
commit: 8b51df976a272d075a48054c468c4b23adf15cff
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 26 18:46:37 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 26 18:46:37 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b51df97

dev-qt/qtspeech: Keyword 6.6.3 arm, #927885

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.6.3.ebuild 
b/dev-qt/qtspeech/qtspeech-6.6.3.ebuild
index 867d3ddc19b8..857dc14c48b7 100644
--- a/dev-qt/qtspeech/qtspeech-6.6.3.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.6.3.ebuild
@@ -8,7 +8,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm64 ~loong"
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong"
 fi
 
 IUSE="flite qml +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-03-26 Thread Ionen Wolkens
commit: d5069472dc933f381c7c3e8a3a5a9d71d3392caf
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Mar 26 06:39:48 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Mar 26 07:08:30 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5069472

dev-qt/qtspeech: add 6.6.3

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest  |  1 +
 dev-qt/qtspeech/qtspeech-6.6.3.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 3155a76a6321..89b312f9c4b9 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -3,4 +3,5 @@ DIST qtspeech-5.15.13-gentoo-kde-1.tar.xz 1048 BLAKE2B 
93b16166dd8fd83eb9d7ce84c
 DIST qtspeech-everywhere-opensource-src-5.15.12.tar.xz 104816 BLAKE2B 
8a64688c8ee24788498ad8eb3827cf55d4ba124230ef5f451cbf7720808d6586e48e5f0344b8546fceaf7fe048243b940f8c0bd6b44fcd5d303a1749c380ca7c
 SHA512 
960eb661cfeb8a4fc01337ac998bc8ce101da73782155e75a7b128987d9809fa1e4cc6fee30cfa3cbd39f7fff9bbe7e49e55430681ac6582e7c8110242d7183a
 DIST qtspeech-everywhere-opensource-src-5.15.13.tar.xz 104612 BLAKE2B 
3c35098f0d4f4b4f804808f3d11abc0c0d189e3883cb1d15ea9b350948e061125299df1207ad44ed7af207c417980b0360ab6b44733efbbe7e5bdac6fe2402b5
 SHA512 
43b97ddc333d1c4a9715b1c306ced0506eb8faf69f1d22500b74e509d33b5a5cb9d0c166b9211a32a78eaba57925195d8ba0c39c8ae6a15551f841426294c75f
 DIST qtspeech-everywhere-src-6.6.2.tar.xz 262008 BLAKE2B 
6d9ae5b42f96fa02a15ac82e9e1c6a378c3b0ceccd278af9ef99346ad79a256e41d1d2ae10cfef75f311bdfad457271357b09fd067ddc902bff3e4ee31eda12e
 SHA512 
e43793931b81bb86cc074a2153ec0160991c86bc255ea1b11e5b4a272b8d067fcfc6788261d4b2f6f7630eadbcab7be23249b980d2792cb9a109137af614601e
+DIST qtspeech-everywhere-src-6.6.3.tar.xz 261976 BLAKE2B 
839adf366d268f2872b321d16546fc953d2e3fa6724f76061fb44674d06a0dba949f171d67f528707d071a7b94f0097f4d6e0fa25ca902572477476d3f4872fc
 SHA512 
4a43e1895ae477f6b6890a36ba2da365420e7778dece26535642ead39aab39c0c10d3be1c78a5b823eaddc646bdb60c5bd16bf3ac02f279832bc9724cfedc5d2
 DIST qtspeech-everywhere-src-6.7.0-rc2.tar.xz 261700 BLAKE2B 
18c6dd54c48a9589936b6c2fcbcbcd2a3459013f853ab10b9005d4a2446ab1df546cc3b6ef8fa44c61afc569455ab5bb12936dd16f3c470c97a0f39637892093
 SHA512 
6e7ddca444f186cde1585c5edd2aeca7dc4369cdca302264264040bdd4b8397106fb82f9cb22bca86d97e0d662541292c643c4096e0736364b4ede59dbd13186

diff --git a/dev-qt/qtspeech/qtspeech-6.6.3.ebuild 
b/dev-qt/qtspeech/qtspeech-6.6.3.ebuild
new file mode 100644
index ..867d3ddc19b8
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-6.6.3.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qt6-build
+
+DESCRIPTION="Text-to-speech library for the Qt6 framework"
+
+if [[ ${QT6_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~arm64 ~loong"
+fi
+
+IUSE="flite qml +speechd"
+# can build with neither, but then it is just mock tts and may be confusing
+REQUIRED_USE="|| ( flite speechd )"
+
+# TODO: tests are known failing with clang and needs looking into, albeit
+# it is still usable at runtime save for applications segfaulting on exit
+# similarly to QTBUG-90626 (not that this has in-tree revdeps as of writing
+# of this). Restricting because also seen this result in hanging. Note that
+# qtspeech:6 is still somewhat new (started in 6.4.0), and should review
+# status on new major versions.
+RESTRICT="test"
+
+RDEPEND="
+   ~dev-qt/qtbase-${PV}:6
+   ~dev-qt/qtmultimedia-${PV}:6
+   flite? ( app-accessibility/flite )
+   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
+   speechd? ( app-accessibility/speech-dispatcher )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake_use_find_package qml Qt6Qml)
+   $(qt_feature flite)
+   $(qt_feature speechd)
+
+   # flite_alsa was likely to work around old issues in flite, it 
does
+   # nothing but add -lasound (no code change, and is unneeded)
+   -DQT_FEATURE_flite_alsa=OFF
+   )
+
+   qt6-build_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-03-24 Thread Ionen Wolkens
commit: 671c8132af32c15d1635d56630f9dc15a7650043
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Sun Mar 24 12:15:23 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Sun Mar 24 18:37:32 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=671c8132

dev-qt/qtspeech: drop 6.7.0_rc

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest |  1 -
 dev-qt/qtspeech/qtspeech-6.7.0_rc.ebuild | 47 
 2 files changed, 48 deletions(-)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 1cddffb00383..3155a76a6321 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -3,5 +3,4 @@ DIST qtspeech-5.15.13-gentoo-kde-1.tar.xz 1048 BLAKE2B 
93b16166dd8fd83eb9d7ce84c
 DIST qtspeech-everywhere-opensource-src-5.15.12.tar.xz 104816 BLAKE2B 
8a64688c8ee24788498ad8eb3827cf55d4ba124230ef5f451cbf7720808d6586e48e5f0344b8546fceaf7fe048243b940f8c0bd6b44fcd5d303a1749c380ca7c
 SHA512 
960eb661cfeb8a4fc01337ac998bc8ce101da73782155e75a7b128987d9809fa1e4cc6fee30cfa3cbd39f7fff9bbe7e49e55430681ac6582e7c8110242d7183a
 DIST qtspeech-everywhere-opensource-src-5.15.13.tar.xz 104612 BLAKE2B 
3c35098f0d4f4b4f804808f3d11abc0c0d189e3883cb1d15ea9b350948e061125299df1207ad44ed7af207c417980b0360ab6b44733efbbe7e5bdac6fe2402b5
 SHA512 
43b97ddc333d1c4a9715b1c306ced0506eb8faf69f1d22500b74e509d33b5a5cb9d0c166b9211a32a78eaba57925195d8ba0c39c8ae6a15551f841426294c75f
 DIST qtspeech-everywhere-src-6.6.2.tar.xz 262008 BLAKE2B 
6d9ae5b42f96fa02a15ac82e9e1c6a378c3b0ceccd278af9ef99346ad79a256e41d1d2ae10cfef75f311bdfad457271357b09fd067ddc902bff3e4ee31eda12e
 SHA512 
e43793931b81bb86cc074a2153ec0160991c86bc255ea1b11e5b4a272b8d067fcfc6788261d4b2f6f7630eadbcab7be23249b980d2792cb9a109137af614601e
-DIST qtspeech-everywhere-src-6.7.0-rc.tar.xz 261612 BLAKE2B 
4e60ca59cf511b4bb7455dce3af5f76bd1973428eae2b9c8753b1ab8bdc33b50fb0c71bb6a75b0894b54e70f632ccd737f7027e1a90aa5eff82af172207a27f1
 SHA512 
3be97469fbc1f5880afe5aa7f42a974c3cb1832830542685480a2ae698dd8f81c1705dd89f3b50cfbc7a0db38d2c6b1a6ef0625dd7a2f965f59f7643af654b3f
 DIST qtspeech-everywhere-src-6.7.0-rc2.tar.xz 261700 BLAKE2B 
18c6dd54c48a9589936b6c2fcbcbcd2a3459013f853ab10b9005d4a2446ab1df546cc3b6ef8fa44c61afc569455ab5bb12936dd16f3c470c97a0f39637892093
 SHA512 
6e7ddca444f186cde1585c5edd2aeca7dc4369cdca302264264040bdd4b8397106fb82f9cb22bca86d97e0d662541292c643c4096e0736364b4ede59dbd13186

diff --git a/dev-qt/qtspeech/qtspeech-6.7.0_rc.ebuild 
b/dev-qt/qtspeech/qtspeech-6.7.0_rc.ebuild
deleted file mode 100644
index 867d3ddc19b8..
--- a/dev-qt/qtspeech/qtspeech-6.7.0_rc.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit qt6-build
-
-DESCRIPTION="Text-to-speech library for the Qt6 framework"
-
-if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm64 ~loong"
-fi
-
-IUSE="flite qml +speechd"
-# can build with neither, but then it is just mock tts and may be confusing
-REQUIRED_USE="|| ( flite speechd )"
-
-# TODO: tests are known failing with clang and needs looking into, albeit
-# it is still usable at runtime save for applications segfaulting on exit
-# similarly to QTBUG-90626 (not that this has in-tree revdeps as of writing
-# of this). Restricting because also seen this result in hanging. Note that
-# qtspeech:6 is still somewhat new (started in 6.4.0), and should review
-# status on new major versions.
-RESTRICT="test"
-
-RDEPEND="
-   ~dev-qt/qtbase-${PV}:6
-   ~dev-qt/qtmultimedia-${PV}:6
-   flite? ( app-accessibility/flite )
-   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
-   speechd? ( app-accessibility/speech-dispatcher )
-"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package qml Qt6Qml)
-   $(qt_feature flite)
-   $(qt_feature speechd)
-
-   # flite_alsa was likely to work around old issues in flite, it 
does
-   # nothing but add -lasound (no code change, and is unneeded)
-   -DQT_FEATURE_flite_alsa=OFF
-   )
-
-   qt6-build_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-03-23 Thread Andreas Sturmlechner
commit: 72a70359128367f902e08705966884f0644bdc4c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Mar 23 12:33:41 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Mar 23 16:59:42 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72a70359

dev-qt/qtspeech: 5.15.13 version bump

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtspeech/Manifest|  2 ++
 dev-qt/qtspeech/qtspeech-5.15.13.ebuild | 36 +
 2 files changed, 38 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 1cafa50020c2..1cddffb00383 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,5 +1,7 @@
 DIST qtspeech-5.15.12-gentoo-kde-1.tar.xz 1044 BLAKE2B 
680ec75681359279fab886816c078b3178e6b29af257d5163b9f5794e5ee90ad186d13029ff9a806e55f5c28d66b8e8870b15d531af8067fbed4ac86646bb00b
 SHA512 
7773439748b85d2dd0c4d21d9e1a5e574eae848087d25b89c2cb07240021d73ea6fe62627ab061a049f7062a4b97a4316871873decc2abe0ea2cdad29ed88b1d
+DIST qtspeech-5.15.13-gentoo-kde-1.tar.xz 1048 BLAKE2B 
93b16166dd8fd83eb9d7ce84cd3fff2dd330cc4060327e107b12a084aa47b7dc2d237bbf0852d207d2b4fbe9a5688d0236ebc5e7c1e6a42da84fd92fbd912050
 SHA512 
8eb6b865663b9fb837e88f859c1f407c4fab5d0976630e29bb0c3f2e2d01f225f3a614cba6c20495c56429d37427c75e314194d0c74c69296ab3e5df128290c6
 DIST qtspeech-everywhere-opensource-src-5.15.12.tar.xz 104816 BLAKE2B 
8a64688c8ee24788498ad8eb3827cf55d4ba124230ef5f451cbf7720808d6586e48e5f0344b8546fceaf7fe048243b940f8c0bd6b44fcd5d303a1749c380ca7c
 SHA512 
960eb661cfeb8a4fc01337ac998bc8ce101da73782155e75a7b128987d9809fa1e4cc6fee30cfa3cbd39f7fff9bbe7e49e55430681ac6582e7c8110242d7183a
+DIST qtspeech-everywhere-opensource-src-5.15.13.tar.xz 104612 BLAKE2B 
3c35098f0d4f4b4f804808f3d11abc0c0d189e3883cb1d15ea9b350948e061125299df1207ad44ed7af207c417980b0360ab6b44733efbbe7e5bdac6fe2402b5
 SHA512 
43b97ddc333d1c4a9715b1c306ced0506eb8faf69f1d22500b74e509d33b5a5cb9d0c166b9211a32a78eaba57925195d8ba0c39c8ae6a15551f841426294c75f
 DIST qtspeech-everywhere-src-6.6.2.tar.xz 262008 BLAKE2B 
6d9ae5b42f96fa02a15ac82e9e1c6a378c3b0ceccd278af9ef99346ad79a256e41d1d2ae10cfef75f311bdfad457271357b09fd067ddc902bff3e4ee31eda12e
 SHA512 
e43793931b81bb86cc074a2153ec0160991c86bc255ea1b11e5b4a272b8d067fcfc6788261d4b2f6f7630eadbcab7be23249b980d2792cb9a109137af614601e
 DIST qtspeech-everywhere-src-6.7.0-rc.tar.xz 261612 BLAKE2B 
4e60ca59cf511b4bb7455dce3af5f76bd1973428eae2b9c8753b1ab8bdc33b50fb0c71bb6a75b0894b54e70f632ccd737f7027e1a90aa5eff82af172207a27f1
 SHA512 
3be97469fbc1f5880afe5aa7f42a974c3cb1832830542685480a2ae698dd8f81c1705dd89f3b50cfbc7a0db38d2c6b1a6ef0625dd7a2f965f59f7643af654b3f
 DIST qtspeech-everywhere-src-6.7.0-rc2.tar.xz 261700 BLAKE2B 
18c6dd54c48a9589936b6c2fcbcbcd2a3459013f853ab10b9005d4a2446ab1df546cc3b6ef8fa44c61afc569455ab5bb12936dd16f3c470c97a0f39637892093
 SHA512 
6e7ddca444f186cde1585c5edd2aeca7dc4369cdca302264264040bdd4b8397106fb82f9cb22bca86d97e0d662541292c643c4096e0736364b4ede59dbd13186

diff --git a/dev-qt/qtspeech/qtspeech-5.15.13.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.13.ebuild
new file mode 100644
index ..e54210475a40
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-5.15.13.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+if [[ ${PV} != ** ]]; then
+   QT5_KDEPATCHSET_REV=1
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+fi
+
+inherit qt5-build
+
+DESCRIPTION="Text-to-speech library for the Qt5 framework"
+
+IUSE="alsa flite"
+
+RDEPEND="
+   >=app-accessibility/speech-dispatcher-0.8.7
+   =dev-qt/qtcore-${QT5_PV}*
+   flite? (
+   >=app-accessibility/flite-2[alsa?]
+   =dev-qt/qtmultimedia-${QT5_PV}*[alsa?]
+   alsa? ( media-libs/alsa-lib )
+   )
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   qt_use_disable_config flite flite \
+   src/plugins/tts/tts.pro
+
+   qt_use_disable_config alsa flite_alsa \
+   src/plugins/tts/flite/flite.pro
+
+   qt5-build_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-03-22 Thread Ionen Wolkens
commit: 5aa3436f83a8b0e10a8894db76fe11e2ed860542
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Fri Mar 22 08:33:46 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Fri Mar 22 10:28:29 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5aa3436f

dev-qt/qtspeech: add 6.7.0_rc2

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest  |  1 +
 dev-qt/qtspeech/qtspeech-6.7.0_rc2.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 22ac8c938cad..1cafa50020c2 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -2,3 +2,4 @@ DIST qtspeech-5.15.12-gentoo-kde-1.tar.xz 1044 BLAKE2B 
680ec75681359279fab886816
 DIST qtspeech-everywhere-opensource-src-5.15.12.tar.xz 104816 BLAKE2B 
8a64688c8ee24788498ad8eb3827cf55d4ba124230ef5f451cbf7720808d6586e48e5f0344b8546fceaf7fe048243b940f8c0bd6b44fcd5d303a1749c380ca7c
 SHA512 
960eb661cfeb8a4fc01337ac998bc8ce101da73782155e75a7b128987d9809fa1e4cc6fee30cfa3cbd39f7fff9bbe7e49e55430681ac6582e7c8110242d7183a
 DIST qtspeech-everywhere-src-6.6.2.tar.xz 262008 BLAKE2B 
6d9ae5b42f96fa02a15ac82e9e1c6a378c3b0ceccd278af9ef99346ad79a256e41d1d2ae10cfef75f311bdfad457271357b09fd067ddc902bff3e4ee31eda12e
 SHA512 
e43793931b81bb86cc074a2153ec0160991c86bc255ea1b11e5b4a272b8d067fcfc6788261d4b2f6f7630eadbcab7be23249b980d2792cb9a109137af614601e
 DIST qtspeech-everywhere-src-6.7.0-rc.tar.xz 261612 BLAKE2B 
4e60ca59cf511b4bb7455dce3af5f76bd1973428eae2b9c8753b1ab8bdc33b50fb0c71bb6a75b0894b54e70f632ccd737f7027e1a90aa5eff82af172207a27f1
 SHA512 
3be97469fbc1f5880afe5aa7f42a974c3cb1832830542685480a2ae698dd8f81c1705dd89f3b50cfbc7a0db38d2c6b1a6ef0625dd7a2f965f59f7643af654b3f
+DIST qtspeech-everywhere-src-6.7.0-rc2.tar.xz 261700 BLAKE2B 
18c6dd54c48a9589936b6c2fcbcbcd2a3459013f853ab10b9005d4a2446ab1df546cc3b6ef8fa44c61afc569455ab5bb12936dd16f3c470c97a0f39637892093
 SHA512 
6e7ddca444f186cde1585c5edd2aeca7dc4369cdca302264264040bdd4b8397106fb82f9cb22bca86d97e0d662541292c643c4096e0736364b4ede59dbd13186

diff --git a/dev-qt/qtspeech/qtspeech-6.7.0_rc2.ebuild 
b/dev-qt/qtspeech/qtspeech-6.7.0_rc2.ebuild
new file mode 100644
index ..867d3ddc19b8
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-6.7.0_rc2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qt6-build
+
+DESCRIPTION="Text-to-speech library for the Qt6 framework"
+
+if [[ ${QT6_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~arm64 ~loong"
+fi
+
+IUSE="flite qml +speechd"
+# can build with neither, but then it is just mock tts and may be confusing
+REQUIRED_USE="|| ( flite speechd )"
+
+# TODO: tests are known failing with clang and needs looking into, albeit
+# it is still usable at runtime save for applications segfaulting on exit
+# similarly to QTBUG-90626 (not that this has in-tree revdeps as of writing
+# of this). Restricting because also seen this result in hanging. Note that
+# qtspeech:6 is still somewhat new (started in 6.4.0), and should review
+# status on new major versions.
+RESTRICT="test"
+
+RDEPEND="
+   ~dev-qt/qtbase-${PV}:6
+   ~dev-qt/qtmultimedia-${PV}:6
+   flite? ( app-accessibility/flite )
+   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
+   speechd? ( app-accessibility/speech-dispatcher )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake_use_find_package qml Qt6Qml)
+   $(qt_feature flite)
+   $(qt_feature speechd)
+
+   # flite_alsa was likely to work around old issues in flite, it 
does
+   # nothing but add -lasound (no code change, and is unneeded)
+   -DQT_FEATURE_flite_alsa=OFF
+   )
+
+   qt6-build_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-03-21 Thread Arthur Zamarin
commit: 99ba65534a8b1bb303242074b20b4cfb3335db6d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Mar 22 06:15:12 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Mar 22 06:15:12 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99ba6553

dev-qt/qtspeech: Stabilize 6.6.2 arm64, #927197

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.6.2.ebuild 
b/dev-qt/qtspeech/qtspeech-6.6.2.ebuild
index 9ee33d282179..0a07541315c2 100644
--- a/dev-qt/qtspeech/qtspeech-6.6.2.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.6.2.ebuild
@@ -8,7 +8,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 ~arm64 ~loong"
+   KEYWORDS="amd64 arm64 ~loong"
 fi
 
 IUSE="flite qml +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-03-12 Thread Ionen Wolkens
commit: 0be708479981a08b1ff4987955c778a1c318f7e3
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Mar 12 10:32:42 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Mar 12 11:59:34 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0be70847

dev-qt/qtspeech: add 6.7.0_rc

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest |  1 +
 dev-qt/qtspeech/qtspeech-6.7.0_rc.ebuild | 47 
 2 files changed, 48 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 0f64fbd25d8e..22ac8c938cad 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,3 +1,4 @@
 DIST qtspeech-5.15.12-gentoo-kde-1.tar.xz 1044 BLAKE2B 
680ec75681359279fab886816c078b3178e6b29af257d5163b9f5794e5ee90ad186d13029ff9a806e55f5c28d66b8e8870b15d531af8067fbed4ac86646bb00b
 SHA512 
7773439748b85d2dd0c4d21d9e1a5e574eae848087d25b89c2cb07240021d73ea6fe62627ab061a049f7062a4b97a4316871873decc2abe0ea2cdad29ed88b1d
 DIST qtspeech-everywhere-opensource-src-5.15.12.tar.xz 104816 BLAKE2B 
8a64688c8ee24788498ad8eb3827cf55d4ba124230ef5f451cbf7720808d6586e48e5f0344b8546fceaf7fe048243b940f8c0bd6b44fcd5d303a1749c380ca7c
 SHA512 
960eb661cfeb8a4fc01337ac998bc8ce101da73782155e75a7b128987d9809fa1e4cc6fee30cfa3cbd39f7fff9bbe7e49e55430681ac6582e7c8110242d7183a
 DIST qtspeech-everywhere-src-6.6.2.tar.xz 262008 BLAKE2B 
6d9ae5b42f96fa02a15ac82e9e1c6a378c3b0ceccd278af9ef99346ad79a256e41d1d2ae10cfef75f311bdfad457271357b09fd067ddc902bff3e4ee31eda12e
 SHA512 
e43793931b81bb86cc074a2153ec0160991c86bc255ea1b11e5b4a272b8d067fcfc6788261d4b2f6f7630eadbcab7be23249b980d2792cb9a109137af614601e
+DIST qtspeech-everywhere-src-6.7.0-rc.tar.xz 261612 BLAKE2B 
4e60ca59cf511b4bb7455dce3af5f76bd1973428eae2b9c8753b1ab8bdc33b50fb0c71bb6a75b0894b54e70f632ccd737f7027e1a90aa5eff82af172207a27f1
 SHA512 
3be97469fbc1f5880afe5aa7f42a974c3cb1832830542685480a2ae698dd8f81c1705dd89f3b50cfbc7a0db38d2c6b1a6ef0625dd7a2f965f59f7643af654b3f

diff --git a/dev-qt/qtspeech/qtspeech-6.7.0_rc.ebuild 
b/dev-qt/qtspeech/qtspeech-6.7.0_rc.ebuild
new file mode 100644
index ..867d3ddc19b8
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-6.7.0_rc.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qt6-build
+
+DESCRIPTION="Text-to-speech library for the Qt6 framework"
+
+if [[ ${QT6_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~arm64 ~loong"
+fi
+
+IUSE="flite qml +speechd"
+# can build with neither, but then it is just mock tts and may be confusing
+REQUIRED_USE="|| ( flite speechd )"
+
+# TODO: tests are known failing with clang and needs looking into, albeit
+# it is still usable at runtime save for applications segfaulting on exit
+# similarly to QTBUG-90626 (not that this has in-tree revdeps as of writing
+# of this). Restricting because also seen this result in hanging. Note that
+# qtspeech:6 is still somewhat new (started in 6.4.0), and should review
+# status on new major versions.
+RESTRICT="test"
+
+RDEPEND="
+   ~dev-qt/qtbase-${PV}:6
+   ~dev-qt/qtmultimedia-${PV}:6
+   flite? ( app-accessibility/flite )
+   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
+   speechd? ( app-accessibility/speech-dispatcher )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake_use_find_package qml Qt6Qml)
+   $(qt_feature flite)
+   $(qt_feature speechd)
+
+   # flite_alsa was likely to work around old issues in flite, it 
does
+   # nothing but add -lasound (no code change, and is unneeded)
+   -DQT_FEATURE_flite_alsa=OFF
+   )
+
+   qt6-build_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-02-20 Thread Arthur Zamarin
commit: 3484025b659c2ff5efdb5c5b4d08a3732e15f798
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Feb 20 06:44:42 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Feb 20 14:30:11 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3484025b

dev-qt/qtspeech: Stabilize 6.6.2 amd64, #924651

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.6.2.ebuild 
b/dev-qt/qtspeech/qtspeech-6.6.2.ebuild
index 867d3ddc19b8..9ee33d282179 100644
--- a/dev-qt/qtspeech/qtspeech-6.6.2.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.6.2.ebuild
@@ -8,7 +8,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm64 ~loong"
+   KEYWORDS="amd64 ~arm64 ~loong"
 fi
 
 IUSE="flite qml +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-02-14 Thread Ionen Wolkens
commit: a3df1044f897829d29faaba63361ce8d4163a4ec
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Wed Feb 14 11:07:13 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Wed Feb 14 12:20:58 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3df1044

dev-qt/qtspeech: add 6.6.2

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest  |  1 +
 dev-qt/qtspeech/qtspeech-6.6.2.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 2abb07e5cc4f..85f64c636d19 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,3 +1,4 @@
 DIST qtspeech-5.15.12-gentoo-kde-1.tar.xz 1044 BLAKE2B 
680ec75681359279fab886816c078b3178e6b29af257d5163b9f5794e5ee90ad186d13029ff9a806e55f5c28d66b8e8870b15d531af8067fbed4ac86646bb00b
 SHA512 
7773439748b85d2dd0c4d21d9e1a5e574eae848087d25b89c2cb07240021d73ea6fe62627ab061a049f7062a4b97a4316871873decc2abe0ea2cdad29ed88b1d
 DIST qtspeech-everywhere-opensource-src-5.15.12.tar.xz 104816 BLAKE2B 
8a64688c8ee24788498ad8eb3827cf55d4ba124230ef5f451cbf7720808d6586e48e5f0344b8546fceaf7fe048243b940f8c0bd6b44fcd5d303a1749c380ca7c
 SHA512 
960eb661cfeb8a4fc01337ac998bc8ce101da73782155e75a7b128987d9809fa1e4cc6fee30cfa3cbd39f7fff9bbe7e49e55430681ac6582e7c8110242d7183a
 DIST qtspeech-everywhere-src-6.6.1.tar.xz 270752 BLAKE2B 
b5e5155d5313e130ef212d25fd949613bf8701ef4ac697e85f8702a94909c0d3b6c83cdc357cd5eef12bca36a1a1a0227495c2ac45ee97eabc1ff814bab0a9d5
 SHA512 
79a2f9192585efbea0567648e4dcbf8f36f31f28463b031378a5027c036870c67b7b15c1223fbf838fae7f8e5b036fb29ca0a631cb7d19b0a40c55588b34d5a5
+DIST qtspeech-everywhere-src-6.6.2.tar.xz 262008 BLAKE2B 
6d9ae5b42f96fa02a15ac82e9e1c6a378c3b0ceccd278af9ef99346ad79a256e41d1d2ae10cfef75f311bdfad457271357b09fd067ddc902bff3e4ee31eda12e
 SHA512 
e43793931b81bb86cc074a2153ec0160991c86bc255ea1b11e5b4a272b8d067fcfc6788261d4b2f6f7630eadbcab7be23249b980d2792cb9a109137af614601e

diff --git a/dev-qt/qtspeech/qtspeech-6.6.2.ebuild 
b/dev-qt/qtspeech/qtspeech-6.6.2.ebuild
new file mode 100644
index ..867d3ddc19b8
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-6.6.2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qt6-build
+
+DESCRIPTION="Text-to-speech library for the Qt6 framework"
+
+if [[ ${QT6_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~arm64 ~loong"
+fi
+
+IUSE="flite qml +speechd"
+# can build with neither, but then it is just mock tts and may be confusing
+REQUIRED_USE="|| ( flite speechd )"
+
+# TODO: tests are known failing with clang and needs looking into, albeit
+# it is still usable at runtime save for applications segfaulting on exit
+# similarly to QTBUG-90626 (not that this has in-tree revdeps as of writing
+# of this). Restricting because also seen this result in hanging. Note that
+# qtspeech:6 is still somewhat new (started in 6.4.0), and should review
+# status on new major versions.
+RESTRICT="test"
+
+RDEPEND="
+   ~dev-qt/qtbase-${PV}:6
+   ~dev-qt/qtmultimedia-${PV}:6
+   flite? ( app-accessibility/flite )
+   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
+   speechd? ( app-accessibility/speech-dispatcher )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake_use_find_package qml Qt6Qml)
+   $(qt_feature flite)
+   $(qt_feature speechd)
+
+   # flite_alsa was likely to work around old issues in flite, it 
does
+   # nothing but add -lasound (no code change, and is unneeded)
+   -DQT_FEATURE_flite_alsa=OFF
+   )
+
+   qt6-build_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-02-01 Thread Andreas Sturmlechner
commit: 058b3359f712cd1c91c7d1c1ca9654b8b12a1f57
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Feb  1 22:57:22 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Feb  1 23:00:56 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=058b3359

dev-qt/qtspeech: drop 5.15.11

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtspeech/Manifest|  2 --
 dev-qt/qtspeech/qtspeech-5.15.11.ebuild | 36 -
 2 files changed, 38 deletions(-)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 89e662634c92..2abb07e5cc4f 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,5 +1,3 @@
-DIST qtspeech-5.15.11-gentoo-kde-1.tar.xz 1044 BLAKE2B 
6acf62a4fdbba05604f3fc4154f8057b1a32621b5cb35de26d5e960645894248d458871678316bfc553136c31ca687804b2eefdcf342e82efd6211cf00d2760e
 SHA512 
84780c2dcb84caba0cb2a927d4bd73f6b7285d25487451785ae56f6bfddc2d714a27954560d6ee121c9f5b464c7529276cc5415c3d49ee5dc89275dc1d005b60
 DIST qtspeech-5.15.12-gentoo-kde-1.tar.xz 1044 BLAKE2B 
680ec75681359279fab886816c078b3178e6b29af257d5163b9f5794e5ee90ad186d13029ff9a806e55f5c28d66b8e8870b15d531af8067fbed4ac86646bb00b
 SHA512 
7773439748b85d2dd0c4d21d9e1a5e574eae848087d25b89c2cb07240021d73ea6fe62627ab061a049f7062a4b97a4316871873decc2abe0ea2cdad29ed88b1d
-DIST qtspeech-everywhere-opensource-src-5.15.11.tar.xz 104996 BLAKE2B 
3272a72d8073023631c3ac18734c672b2cde2f382a011d9f02d6604093454ab7d308c0d5141d0488eb953262e8beb46e0aa1616d86db4ebabfdc3366eab32b4d
 SHA512 
658eb9d24ea2f2bf39c6f4cd6dc75677067c8058cae694b53e665e28a273d2f730ab0dd4744ca8f8db224e52bb014fd145af1abd1667e3cd37f74c51bf96ebf4
 DIST qtspeech-everywhere-opensource-src-5.15.12.tar.xz 104816 BLAKE2B 
8a64688c8ee24788498ad8eb3827cf55d4ba124230ef5f451cbf7720808d6586e48e5f0344b8546fceaf7fe048243b940f8c0bd6b44fcd5d303a1749c380ca7c
 SHA512 
960eb661cfeb8a4fc01337ac998bc8ce101da73782155e75a7b128987d9809fa1e4cc6fee30cfa3cbd39f7fff9bbe7e49e55430681ac6582e7c8110242d7183a
 DIST qtspeech-everywhere-src-6.6.1.tar.xz 270752 BLAKE2B 
b5e5155d5313e130ef212d25fd949613bf8701ef4ac697e85f8702a94909c0d3b6c83cdc357cd5eef12bca36a1a1a0227495c2ac45ee97eabc1ff814bab0a9d5
 SHA512 
79a2f9192585efbea0567648e4dcbf8f36f31f28463b031378a5027c036870c67b7b15c1223fbf838fae7f8e5b036fb29ca0a631cb7d19b0a40c55588b34d5a5

diff --git a/dev-qt/qtspeech/qtspeech-5.15.11.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.11.ebuild
deleted file mode 100644
index 080e2f22739a..
--- a/dev-qt/qtspeech/qtspeech-5.15.11.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-if [[ ${PV} != ** ]]; then
-   QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
-fi
-
-inherit qt5-build
-
-DESCRIPTION="Text-to-speech library for the Qt5 framework"
-
-IUSE="alsa flite"
-
-RDEPEND="
-   >=app-accessibility/speech-dispatcher-0.8.7
-   =dev-qt/qtcore-${QT5_PV}*
-   flite? (
-   >=app-accessibility/flite-2[alsa?]
-   =dev-qt/qtmultimedia-${QT5_PV}*[alsa?]
-   alsa? ( media-libs/alsa-lib )
-   )
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   qt_use_disable_config flite flite \
-   src/plugins/tts/tts.pro
-
-   qt_use_disable_config alsa flite_alsa \
-   src/plugins/tts/flite/flite.pro
-
-   qt5-build_src_prepare
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-01-31 Thread Ionen Wolkens
commit: ee0b61fc7aa1defbe9cf33776f4097bdd4555bca
Author: Matoro Mahri  matoro  tk>
AuthorDate: Wed Jan 31 07:47:31 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Wed Jan 31 22:30:19 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee0b61fc

dev-qt/qtspeech: Stabilize 5.15.12 arm, #921565

Signed-off-by: Matoro Mahri  matoro.tk>
Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.12.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.12.ebuild
index a50f10a9f2cb..07a269a79b0d 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.12.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.12.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 ~arm arm64 ~loong ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-01-30 Thread Joonas Niilola
commit: 95d6c17a9f009bfb032032f1c08088b4945e016f
Author: Matoro Mahri  matoro  tk>
AuthorDate: Tue Jan 30 23:03:18 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jan 31 07:17:53 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95d6c17a

dev-qt/qtspeech: Stabilize 5.15.12 arm64, #921565

Signed-off-by: Matoro Mahri  matoro.tk>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.12.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.12.ebuild
index c022d1b110a0..a50f10a9f2cb 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.12.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.12.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 ~arm ~arm64 ~loong ppc64 ~riscv x86"
+   KEYWORDS="amd64 ~arm arm64 ~loong ppc64 ~riscv x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-01-28 Thread Ionen Wolkens
commit: 5e1d0be0592d1e54bb1a75d1bdfb977030a2077f
Author: Matoro Mahri  matoro  tk>
AuthorDate: Mon Jan 29 03:21:14 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Mon Jan 29 04:09:35 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e1d0be0

dev-qt/qtspeech: Stabilize 5.15.12 amd64, #921565

Signed-off-by: Matoro Mahri  matoro.tk>
Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.12.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.12.ebuild
index e54210475a40..80a0fb019274 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.12.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.12.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-01-04 Thread WANG Xuerui
commit: a8b9daf8a5b89766c9d2ddbf93632652d139086f
Author: WANG Xuerui  gentoo  org>
AuthorDate: Thu Jan  4 16:19:16 2024 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Thu Jan  4 16:19:16 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8b9daf8

dev-qt/qtspeech: keyword 6.6.1 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.6.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.6.1.ebuild 
b/dev-qt/qtspeech/qtspeech-6.6.1.ebuild
index 4723aec534af..9ee33d282179 100644
--- a/dev-qt/qtspeech/qtspeech-6.6.1.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.6.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2023 Gentoo Authors
+# Copyright 2023-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -8,7 +8,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 ~arm64"
+   KEYWORDS="amd64 ~arm64 ~loong"
 fi
 
 IUSE="flite qml +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2024-01-01 Thread Andreas Sturmlechner
commit: 86d5e852b285dc0a29113cd9c74e163c9d8e66c6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jan  1 20:00:14 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jan  1 21:01:25 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86d5e852

dev-qt/qtspeech: add 5.15.12

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtspeech/Manifest|  2 ++
 dev-qt/qtspeech/qtspeech-5.15.12.ebuild | 36 +
 2 files changed, 38 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index c02a2ddba265..89e662634c92 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,3 +1,5 @@
 DIST qtspeech-5.15.11-gentoo-kde-1.tar.xz 1044 BLAKE2B 
6acf62a4fdbba05604f3fc4154f8057b1a32621b5cb35de26d5e960645894248d458871678316bfc553136c31ca687804b2eefdcf342e82efd6211cf00d2760e
 SHA512 
84780c2dcb84caba0cb2a927d4bd73f6b7285d25487451785ae56f6bfddc2d714a27954560d6ee121c9f5b464c7529276cc5415c3d49ee5dc89275dc1d005b60
+DIST qtspeech-5.15.12-gentoo-kde-1.tar.xz 1044 BLAKE2B 
680ec75681359279fab886816c078b3178e6b29af257d5163b9f5794e5ee90ad186d13029ff9a806e55f5c28d66b8e8870b15d531af8067fbed4ac86646bb00b
 SHA512 
7773439748b85d2dd0c4d21d9e1a5e574eae848087d25b89c2cb07240021d73ea6fe62627ab061a049f7062a4b97a4316871873decc2abe0ea2cdad29ed88b1d
 DIST qtspeech-everywhere-opensource-src-5.15.11.tar.xz 104996 BLAKE2B 
3272a72d8073023631c3ac18734c672b2cde2f382a011d9f02d6604093454ab7d308c0d5141d0488eb953262e8beb46e0aa1616d86db4ebabfdc3366eab32b4d
 SHA512 
658eb9d24ea2f2bf39c6f4cd6dc75677067c8058cae694b53e665e28a273d2f730ab0dd4744ca8f8db224e52bb014fd145af1abd1667e3cd37f74c51bf96ebf4
+DIST qtspeech-everywhere-opensource-src-5.15.12.tar.xz 104816 BLAKE2B 
8a64688c8ee24788498ad8eb3827cf55d4ba124230ef5f451cbf7720808d6586e48e5f0344b8546fceaf7fe048243b940f8c0bd6b44fcd5d303a1749c380ca7c
 SHA512 
960eb661cfeb8a4fc01337ac998bc8ce101da73782155e75a7b128987d9809fa1e4cc6fee30cfa3cbd39f7fff9bbe7e49e55430681ac6582e7c8110242d7183a
 DIST qtspeech-everywhere-src-6.6.1.tar.xz 270752 BLAKE2B 
b5e5155d5313e130ef212d25fd949613bf8701ef4ac697e85f8702a94909c0d3b6c83cdc357cd5eef12bca36a1a1a0227495c2ac45ee97eabc1ff814bab0a9d5
 SHA512 
79a2f9192585efbea0567648e4dcbf8f36f31f28463b031378a5027c036870c67b7b15c1223fbf838fae7f8e5b036fb29ca0a631cb7d19b0a40c55588b34d5a5

diff --git a/dev-qt/qtspeech/qtspeech-5.15.12.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.12.ebuild
new file mode 100644
index ..e54210475a40
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-5.15.12.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+if [[ ${PV} != ** ]]; then
+   QT5_KDEPATCHSET_REV=1
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+fi
+
+inherit qt5-build
+
+DESCRIPTION="Text-to-speech library for the Qt5 framework"
+
+IUSE="alsa flite"
+
+RDEPEND="
+   >=app-accessibility/speech-dispatcher-0.8.7
+   =dev-qt/qtcore-${QT5_PV}*
+   flite? (
+   >=app-accessibility/flite-2[alsa?]
+   =dev-qt/qtmultimedia-${QT5_PV}*[alsa?]
+   alsa? ( media-libs/alsa-lib )
+   )
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   qt_use_disable_config flite flite \
+   src/plugins/tts/tts.pro
+
+   qt_use_disable_config alsa flite_alsa \
+   src/plugins/tts/flite/flite.pro
+
+   qt5-build_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-12-22 Thread Mart Raudsepp
commit: 5cc2c89bec8605bb8b2b6ad4c012d7f05e631ce3
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Fri Dec 22 16:06:08 2023 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Fri Dec 22 22:28:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cc2c89b

dev-qt/qtspeech: keyword 6.6.1 for ~arm64

Bug: https://bugs.gentoo.org/907080
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.6.1.ebuild 
b/dev-qt/qtspeech/qtspeech-6.6.1.ebuild
index e27b273e26f4..4723aec534af 100644
--- a/dev-qt/qtspeech/qtspeech-6.6.1.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.6.1.ebuild
@@ -8,7 +8,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64"
+   KEYWORDS="amd64 ~arm64"
 fi
 
 IUSE="flite qml +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-12-19 Thread Ionen Wolkens
commit: 06d3b70e1f807aed90b19233cc47cf9be0754198
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Dec 19 19:40:43 2023 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Dec 19 20:31:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06d3b70e

dev-qt/qtspeech: drop 6.5.3

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest  |  1 -
 dev-qt/qtspeech/qtspeech-6.5.3.ebuild | 48 ---
 2 files changed, 49 deletions(-)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 225e50a4cc70..c02a2ddba265 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,4 +1,3 @@
 DIST qtspeech-5.15.11-gentoo-kde-1.tar.xz 1044 BLAKE2B 
6acf62a4fdbba05604f3fc4154f8057b1a32621b5cb35de26d5e960645894248d458871678316bfc553136c31ca687804b2eefdcf342e82efd6211cf00d2760e
 SHA512 
84780c2dcb84caba0cb2a927d4bd73f6b7285d25487451785ae56f6bfddc2d714a27954560d6ee121c9f5b464c7529276cc5415c3d49ee5dc89275dc1d005b60
 DIST qtspeech-everywhere-opensource-src-5.15.11.tar.xz 104996 BLAKE2B 
3272a72d8073023631c3ac18734c672b2cde2f382a011d9f02d6604093454ab7d308c0d5141d0488eb953262e8beb46e0aa1616d86db4ebabfdc3366eab32b4d
 SHA512 
658eb9d24ea2f2bf39c6f4cd6dc75677067c8058cae694b53e665e28a273d2f730ab0dd4744ca8f8db224e52bb014fd145af1abd1667e3cd37f74c51bf96ebf4
-DIST qtspeech-everywhere-src-6.5.3.tar.xz 250112 BLAKE2B 
fd33ced6cd415e24789bfede90563f68e3bb63319766cb60ffb7f0708ac5f092f5cccafa840565bea6d52e5aeadd226eece9993be9f0132b65b8cabe8764a65d
 SHA512 
d37c68cb9599e8d9a81ac070a87ed5a942e15e01401b5e179b4127aa0894a272023d717f0fc5f5c167e2ff299f79d6a19f3594172cf9779b400ac218d9587508
 DIST qtspeech-everywhere-src-6.6.1.tar.xz 270752 BLAKE2B 
b5e5155d5313e130ef212d25fd949613bf8701ef4ac697e85f8702a94909c0d3b6c83cdc357cd5eef12bca36a1a1a0227495c2ac45ee97eabc1ff814bab0a9d5
 SHA512 
79a2f9192585efbea0567648e4dcbf8f36f31f28463b031378a5027c036870c67b7b15c1223fbf838fae7f8e5b036fb29ca0a631cb7d19b0a40c55588b34d5a5

diff --git a/dev-qt/qtspeech/qtspeech-6.5.3.ebuild 
b/dev-qt/qtspeech/qtspeech-6.5.3.ebuild
deleted file mode 100644
index 78bb4e99d6eb..
--- a/dev-qt/qtspeech/qtspeech-6.5.3.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit qt6-build
-
-DESCRIPTION="Text-to-speech library for the Qt6 framework"
-
-if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64"
-fi
-
-IUSE="flite +speechd"
-# can build with neither, but then it is just mock tts and may be confusing
-REQUIRED_USE="|| ( flite speechd )"
-
-# TODO: tests are known failing with clang and needs looking into, albeit
-# it is still usable at runtime save for applications segfaulting on exit
-# similarly to QTBUG-90626 (not that this has in-tree revdeps as of writing
-# of this). Restricting because also seen this result in hanging. Note that
-# qtspeech:6 is still somewhat new (started in 6.4.0), and should review
-# status on new major versions.
-RESTRICT="test"
-
-RDEPEND="
-   ~dev-qt/qtbase-${PV}:6
-   ~dev-qt/qtdeclarative-${PV}:6
-   flite? (
-   app-accessibility/flite
-   ~dev-qt/qtmultimedia-${PV}:6
-   )
-   speechd? ( app-accessibility/speech-dispatcher )
-"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   local mycmakeargs=(
-   $(qt_feature flite)
-   $(qt_feature speechd)
-
-   # flite_alsa was likely to work around old issues in flite, it 
does
-   # nothing but add -lasound (no code change, and is unneeded)
-   -DQT_FEATURE_flite_alsa=OFF
-   )
-
-   qt6-build_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-12-17 Thread Arthur Zamarin
commit: eb254f774d0dd54a6191d6c262d39013e138617b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Dec 17 18:26:52 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Dec 17 18:28:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb254f77

dev-qt/qtspeech: Stabilize 6.6.1 amd64, #920154

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.6.1.ebuild 
b/dev-qt/qtspeech/qtspeech-6.6.1.ebuild
index e8a12770ddf0..e27b273e26f4 100644
--- a/dev-qt/qtspeech/qtspeech-6.6.1.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.6.1.ebuild
@@ -8,7 +8,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64"
+   KEYWORDS="amd64"
 fi
 
 IUSE="flite qml +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-12-12 Thread Ionen Wolkens
commit: 030d8761136e1e2e028951016e3a1a0a6bc45494
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Dec 12 14:29:25 2023 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Dec 12 21:23:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=030d8761

dev-qt/qtspeech: add 6.7.

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.7..ebuild | 47 
 1 file changed, 47 insertions(+)

diff --git a/dev-qt/qtspeech/qtspeech-6.7..ebuild 
b/dev-qt/qtspeech/qtspeech-6.7..ebuild
new file mode 100644
index ..e8a12770ddf0
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-6.7..ebuild
@@ -0,0 +1,47 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qt6-build
+
+DESCRIPTION="Text-to-speech library for the Qt6 framework"
+
+if [[ ${QT6_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64"
+fi
+
+IUSE="flite qml +speechd"
+# can build with neither, but then it is just mock tts and may be confusing
+REQUIRED_USE="|| ( flite speechd )"
+
+# TODO: tests are known failing with clang and needs looking into, albeit
+# it is still usable at runtime save for applications segfaulting on exit
+# similarly to QTBUG-90626 (not that this has in-tree revdeps as of writing
+# of this). Restricting because also seen this result in hanging. Note that
+# qtspeech:6 is still somewhat new (started in 6.4.0), and should review
+# status on new major versions.
+RESTRICT="test"
+
+RDEPEND="
+   ~dev-qt/qtbase-${PV}:6
+   ~dev-qt/qtmultimedia-${PV}:6
+   flite? ( app-accessibility/flite )
+   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
+   speechd? ( app-accessibility/speech-dispatcher )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake_use_find_package qml Qt6Qml)
+   $(qt_feature flite)
+   $(qt_feature speechd)
+
+   # flite_alsa was likely to work around old issues in flite, it 
does
+   # nothing but add -lasound (no code change, and is unneeded)
+   -DQT_FEATURE_flite_alsa=OFF
+   )
+
+   qt6-build_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-11-27 Thread Ionen Wolkens
commit: dd1d89c563235c5ca7f5113d6c80118ac777e584
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Mon Nov 27 06:11:02 2023 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Mon Nov 27 08:45:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd1d89c5

dev-qt/qtspeech: add 6.6.1

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest  |  1 +
 dev-qt/qtspeech/qtspeech-6.6.1.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 7a834e517b04..3931dda9e036 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -2,3 +2,4 @@ DIST qtspeech-5.15.11-gentoo-kde-1.tar.xz 1044 BLAKE2B 
6acf62a4fdbba05604f3fc415
 DIST qtspeech-everywhere-opensource-src-5.15.11.tar.xz 104996 BLAKE2B 
3272a72d8073023631c3ac18734c672b2cde2f382a011d9f02d6604093454ab7d308c0d5141d0488eb953262e8beb46e0aa1616d86db4ebabfdc3366eab32b4d
 SHA512 
658eb9d24ea2f2bf39c6f4cd6dc75677067c8058cae694b53e665e28a273d2f730ab0dd4744ca8f8db224e52bb014fd145af1abd1667e3cd37f74c51bf96ebf4
 DIST qtspeech-everywhere-src-6.5.3.tar.xz 250112 BLAKE2B 
fd33ced6cd415e24789bfede90563f68e3bb63319766cb60ffb7f0708ac5f092f5cccafa840565bea6d52e5aeadd226eece9993be9f0132b65b8cabe8764a65d
 SHA512 
d37c68cb9599e8d9a81ac070a87ed5a942e15e01401b5e179b4127aa0894a272023d717f0fc5f5c167e2ff299f79d6a19f3594172cf9779b400ac218d9587508
 DIST qtspeech-everywhere-src-6.6.0.tar.xz 270044 BLAKE2B 
754a160963415fcdd764290cfac1314ddac0ef34ddf44d429cabe594a0056b29bfc71d5c746c07a45f729ef4e56ca2551bdd38b940e982c919b23fea6e5146fc
 SHA512 
29fc5e2401ac0d184ca5931c86eba152d33433ef60e91e3c30fdce79438e13f89b9f7ea01452c528fabd24425a9396c6d6f18b8d7d085a002073f0d27ec2a56a
+DIST qtspeech-everywhere-src-6.6.1.tar.xz 270752 BLAKE2B 
b5e5155d5313e130ef212d25fd949613bf8701ef4ac697e85f8702a94909c0d3b6c83cdc357cd5eef12bca36a1a1a0227495c2ac45ee97eabc1ff814bab0a9d5
 SHA512 
79a2f9192585efbea0567648e4dcbf8f36f31f28463b031378a5027c036870c67b7b15c1223fbf838fae7f8e5b036fb29ca0a631cb7d19b0a40c55588b34d5a5

diff --git a/dev-qt/qtspeech/qtspeech-6.6.1.ebuild 
b/dev-qt/qtspeech/qtspeech-6.6.1.ebuild
new file mode 100644
index ..e8a12770ddf0
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-6.6.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qt6-build
+
+DESCRIPTION="Text-to-speech library for the Qt6 framework"
+
+if [[ ${QT6_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64"
+fi
+
+IUSE="flite qml +speechd"
+# can build with neither, but then it is just mock tts and may be confusing
+REQUIRED_USE="|| ( flite speechd )"
+
+# TODO: tests are known failing with clang and needs looking into, albeit
+# it is still usable at runtime save for applications segfaulting on exit
+# similarly to QTBUG-90626 (not that this has in-tree revdeps as of writing
+# of this). Restricting because also seen this result in hanging. Note that
+# qtspeech:6 is still somewhat new (started in 6.4.0), and should review
+# status on new major versions.
+RESTRICT="test"
+
+RDEPEND="
+   ~dev-qt/qtbase-${PV}:6
+   ~dev-qt/qtmultimedia-${PV}:6
+   flite? ( app-accessibility/flite )
+   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
+   speechd? ( app-accessibility/speech-dispatcher )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake_use_find_package qml Qt6Qml)
+   $(qt_feature flite)
+   $(qt_feature speechd)
+
+   # flite_alsa was likely to work around old issues in flite, it 
does
+   # nothing but add -lasound (no code change, and is unneeded)
+   -DQT_FEATURE_flite_alsa=OFF
+   )
+
+   qt6-build_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-11-15 Thread Ionen Wolkens
commit: 1e0df6d9dce62eda4b1330f7f319e0525bebb4a0
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Wed Nov 15 18:00:53 2023 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Wed Nov 15 19:27:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e0df6d9

dev-qt/qtspeech: drop 6.5.2

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest  |  1 -
 dev-qt/qtspeech/qtspeech-6.5.2.ebuild | 48 ---
 2 files changed, 49 deletions(-)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 6c450e6d7ce9..7a834e517b04 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,5 +1,4 @@
 DIST qtspeech-5.15.11-gentoo-kde-1.tar.xz 1044 BLAKE2B 
6acf62a4fdbba05604f3fc4154f8057b1a32621b5cb35de26d5e960645894248d458871678316bfc553136c31ca687804b2eefdcf342e82efd6211cf00d2760e
 SHA512 
84780c2dcb84caba0cb2a927d4bd73f6b7285d25487451785ae56f6bfddc2d714a27954560d6ee121c9f5b464c7529276cc5415c3d49ee5dc89275dc1d005b60
 DIST qtspeech-everywhere-opensource-src-5.15.11.tar.xz 104996 BLAKE2B 
3272a72d8073023631c3ac18734c672b2cde2f382a011d9f02d6604093454ab7d308c0d5141d0488eb953262e8beb46e0aa1616d86db4ebabfdc3366eab32b4d
 SHA512 
658eb9d24ea2f2bf39c6f4cd6dc75677067c8058cae694b53e665e28a273d2f730ab0dd4744ca8f8db224e52bb014fd145af1abd1667e3cd37f74c51bf96ebf4
-DIST qtspeech-everywhere-src-6.5.2.tar.xz 249568 BLAKE2B 
af86153ea1cf0f248ab80aa828a0457e23e1f97cc5ae91bf60fa426a43a44247230b643ae48e6ae839668ea9a66edc94e0358502abcab03788cd7d1368403592
 SHA512 
bc6ca225f9eadc838e63bb3b011f604c1ae18eee76445c2c0d22152e473b9316b6903e349aee2555c5a110ef65fbd25ca9065b22ae4cef6e5290daa665c78434
 DIST qtspeech-everywhere-src-6.5.3.tar.xz 250112 BLAKE2B 
fd33ced6cd415e24789bfede90563f68e3bb63319766cb60ffb7f0708ac5f092f5cccafa840565bea6d52e5aeadd226eece9993be9f0132b65b8cabe8764a65d
 SHA512 
d37c68cb9599e8d9a81ac070a87ed5a942e15e01401b5e179b4127aa0894a272023d717f0fc5f5c167e2ff299f79d6a19f3594172cf9779b400ac218d9587508
 DIST qtspeech-everywhere-src-6.6.0.tar.xz 270044 BLAKE2B 
754a160963415fcdd764290cfac1314ddac0ef34ddf44d429cabe594a0056b29bfc71d5c746c07a45f729ef4e56ca2551bdd38b940e982c919b23fea6e5146fc
 SHA512 
29fc5e2401ac0d184ca5931c86eba152d33433ef60e91e3c30fdce79438e13f89b9f7ea01452c528fabd24425a9396c6d6f18b8d7d085a002073f0d27ec2a56a

diff --git a/dev-qt/qtspeech/qtspeech-6.5.2.ebuild 
b/dev-qt/qtspeech/qtspeech-6.5.2.ebuild
deleted file mode 100644
index 78bb4e99d6eb..
--- a/dev-qt/qtspeech/qtspeech-6.5.2.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit qt6-build
-
-DESCRIPTION="Text-to-speech library for the Qt6 framework"
-
-if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64"
-fi
-
-IUSE="flite +speechd"
-# can build with neither, but then it is just mock tts and may be confusing
-REQUIRED_USE="|| ( flite speechd )"
-
-# TODO: tests are known failing with clang and needs looking into, albeit
-# it is still usable at runtime save for applications segfaulting on exit
-# similarly to QTBUG-90626 (not that this has in-tree revdeps as of writing
-# of this). Restricting because also seen this result in hanging. Note that
-# qtspeech:6 is still somewhat new (started in 6.4.0), and should review
-# status on new major versions.
-RESTRICT="test"
-
-RDEPEND="
-   ~dev-qt/qtbase-${PV}:6
-   ~dev-qt/qtdeclarative-${PV}:6
-   flite? (
-   app-accessibility/flite
-   ~dev-qt/qtmultimedia-${PV}:6
-   )
-   speechd? ( app-accessibility/speech-dispatcher )
-"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   local mycmakeargs=(
-   $(qt_feature flite)
-   $(qt_feature speechd)
-
-   # flite_alsa was likely to work around old issues in flite, it 
does
-   # nothing but add -lasound (no code change, and is unneeded)
-   -DQT_FEATURE_flite_alsa=OFF
-   )
-
-   qt6-build_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-11-15 Thread Arthur Zamarin
commit: d794521be957a493f4fff29025e11b7534c5d538
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Nov 15 17:19:03 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Nov 15 17:19:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d794521b

dev-qt/qtspeech: Stabilize 6.5.3 amd64, #915549

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.5.3.ebuild 
b/dev-qt/qtspeech/qtspeech-6.5.3.ebuild
index 94803ab4eff3..78bb4e99d6eb 100644
--- a/dev-qt/qtspeech/qtspeech-6.5.3.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.5.3.ebuild
@@ -8,7 +8,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64"
+   KEYWORDS="amd64"
 fi
 
 IUSE="flite +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-11-06 Thread Andreas Sturmlechner
commit: 10da53fd73aceee547084d50feca412b243c49f5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Nov  6 09:39:48 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Nov  6 18:10:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10da53fd

dev-qt/qtspeech: drop 5.15.10

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtspeech/Manifest|  2 --
 dev-qt/qtspeech/qtspeech-5.15.10.ebuild | 36 -
 2 files changed, 38 deletions(-)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 5b02fb001f91..6c450e6d7ce9 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,6 +1,4 @@
-DIST qtspeech-5.15.10-gentoo-kde-1.tar.xz 1044 BLAKE2B 
e555c475fa1824ffbe34c5a0e0b6c24eeec81ad29337966e89f9dbd7d43c3a5d079603ad6dbe51e695984741cff0a749921b329242bd68d23c4ff9eed3eff008
 SHA512 
c4551ba08e9c23af59b9ce86d4ea0420c0b60372e3bb177d17b066b8651bb6d726c1d9981b6cf762f1cbce0fdae8f05cd77055af13384eb55c1ba834428b
 DIST qtspeech-5.15.11-gentoo-kde-1.tar.xz 1044 BLAKE2B 
6acf62a4fdbba05604f3fc4154f8057b1a32621b5cb35de26d5e960645894248d458871678316bfc553136c31ca687804b2eefdcf342e82efd6211cf00d2760e
 SHA512 
84780c2dcb84caba0cb2a927d4bd73f6b7285d25487451785ae56f6bfddc2d714a27954560d6ee121c9f5b464c7529276cc5415c3d49ee5dc89275dc1d005b60
-DIST qtspeech-everywhere-opensource-src-5.15.10.tar.xz 104944 BLAKE2B 
7e664719d352cd29cb289f8b8f59d4595ffe343dca028a69030032030eb02c601b29492cea885bcab940264624b39042773bc70884512726abcd89dc27065b64
 SHA512 
b938c8baba11aa9a40a2ec5492df32c511164686aa2649d78023beccc8b23f1e0a77193672f7bc7d7f72aeb7b59fe30972683f5a4e22e1e39da9744ecd40201d
 DIST qtspeech-everywhere-opensource-src-5.15.11.tar.xz 104996 BLAKE2B 
3272a72d8073023631c3ac18734c672b2cde2f382a011d9f02d6604093454ab7d308c0d5141d0488eb953262e8beb46e0aa1616d86db4ebabfdc3366eab32b4d
 SHA512 
658eb9d24ea2f2bf39c6f4cd6dc75677067c8058cae694b53e665e28a273d2f730ab0dd4744ca8f8db224e52bb014fd145af1abd1667e3cd37f74c51bf96ebf4
 DIST qtspeech-everywhere-src-6.5.2.tar.xz 249568 BLAKE2B 
af86153ea1cf0f248ab80aa828a0457e23e1f97cc5ae91bf60fa426a43a44247230b643ae48e6ae839668ea9a66edc94e0358502abcab03788cd7d1368403592
 SHA512 
bc6ca225f9eadc838e63bb3b011f604c1ae18eee76445c2c0d22152e473b9316b6903e349aee2555c5a110ef65fbd25ca9065b22ae4cef6e5290daa665c78434
 DIST qtspeech-everywhere-src-6.5.3.tar.xz 250112 BLAKE2B 
fd33ced6cd415e24789bfede90563f68e3bb63319766cb60ffb7f0708ac5f092f5cccafa840565bea6d52e5aeadd226eece9993be9f0132b65b8cabe8764a65d
 SHA512 
d37c68cb9599e8d9a81ac070a87ed5a942e15e01401b5e179b4127aa0894a272023d717f0fc5f5c167e2ff299f79d6a19f3594172cf9779b400ac218d9587508

diff --git a/dev-qt/qtspeech/qtspeech-5.15.10.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.10.ebuild
deleted file mode 100644
index 080e2f22739a..
--- a/dev-qt/qtspeech/qtspeech-5.15.10.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-if [[ ${PV} != ** ]]; then
-   QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
-fi
-
-inherit qt5-build
-
-DESCRIPTION="Text-to-speech library for the Qt5 framework"
-
-IUSE="alsa flite"
-
-RDEPEND="
-   >=app-accessibility/speech-dispatcher-0.8.7
-   =dev-qt/qtcore-${QT5_PV}*
-   flite? (
-   >=app-accessibility/flite-2[alsa?]
-   =dev-qt/qtmultimedia-${QT5_PV}*[alsa?]
-   alsa? ( media-libs/alsa-lib )
-   )
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   qt_use_disable_config flite flite \
-   src/plugins/tts/tts.pro
-
-   qt_use_disable_config alsa flite_alsa \
-   src/plugins/tts/flite/flite.pro
-
-   qt5-build_src_prepare
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-11-06 Thread Arthur Zamarin
commit: d704c2dd291a8b3696c60c67cde8793f05e0f260
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Nov  6 08:14:15 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Nov  6 08:14:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d704c2dd

dev-qt/qtspeech: Stabilize 5.15.11 ppc64, #915391

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.11.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.11.ebuild
index 00e87a9fd0a5..080e2f22739a 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.11.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.11.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 arm arm64 ~loong ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-11-05 Thread Arthur Zamarin
commit: 4375066c109258f9e05f88fdaa5375c47e57ba19
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Nov  6 07:11:22 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Nov  6 07:14:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4375066c

dev-qt/qtspeech: Stabilize 5.15.11 arm, #915391

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.11.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.11.ebuild
index 8fa7a557c149..00e87a9fd0a5 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.11.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.11.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ~loong ~ppc64 ~riscv x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-10-10 Thread Ionen Wolkens
commit: 4df220252b23c77b5683dc93eb9aaebd4666504a
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Oct 10 08:55:29 2023 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Oct 10 14:49:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4df22025

dev-qt/qtspeech: add 6.6.0

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest  |  1 +
 dev-qt/qtspeech/qtspeech-6.6.0.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index c87a3e61585d..5b02fb001f91 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -4,3 +4,4 @@ DIST qtspeech-everywhere-opensource-src-5.15.10.tar.xz 104944 
BLAKE2B 7e664719d3
 DIST qtspeech-everywhere-opensource-src-5.15.11.tar.xz 104996 BLAKE2B 
3272a72d8073023631c3ac18734c672b2cde2f382a011d9f02d6604093454ab7d308c0d5141d0488eb953262e8beb46e0aa1616d86db4ebabfdc3366eab32b4d
 SHA512 
658eb9d24ea2f2bf39c6f4cd6dc75677067c8058cae694b53e665e28a273d2f730ab0dd4744ca8f8db224e52bb014fd145af1abd1667e3cd37f74c51bf96ebf4
 DIST qtspeech-everywhere-src-6.5.2.tar.xz 249568 BLAKE2B 
af86153ea1cf0f248ab80aa828a0457e23e1f97cc5ae91bf60fa426a43a44247230b643ae48e6ae839668ea9a66edc94e0358502abcab03788cd7d1368403592
 SHA512 
bc6ca225f9eadc838e63bb3b011f604c1ae18eee76445c2c0d22152e473b9316b6903e349aee2555c5a110ef65fbd25ca9065b22ae4cef6e5290daa665c78434
 DIST qtspeech-everywhere-src-6.5.3.tar.xz 250112 BLAKE2B 
fd33ced6cd415e24789bfede90563f68e3bb63319766cb60ffb7f0708ac5f092f5cccafa840565bea6d52e5aeadd226eece9993be9f0132b65b8cabe8764a65d
 SHA512 
d37c68cb9599e8d9a81ac070a87ed5a942e15e01401b5e179b4127aa0894a272023d717f0fc5f5c167e2ff299f79d6a19f3594172cf9779b400ac218d9587508
+DIST qtspeech-everywhere-src-6.6.0.tar.xz 270044 BLAKE2B 
754a160963415fcdd764290cfac1314ddac0ef34ddf44d429cabe594a0056b29bfc71d5c746c07a45f729ef4e56ca2551bdd38b940e982c919b23fea6e5146fc
 SHA512 
29fc5e2401ac0d184ca5931c86eba152d33433ef60e91e3c30fdce79438e13f89b9f7ea01452c528fabd24425a9396c6d6f18b8d7d085a002073f0d27ec2a56a

diff --git a/dev-qt/qtspeech/qtspeech-6.6.0.ebuild 
b/dev-qt/qtspeech/qtspeech-6.6.0.ebuild
new file mode 100644
index ..e8a12770ddf0
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-6.6.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qt6-build
+
+DESCRIPTION="Text-to-speech library for the Qt6 framework"
+
+if [[ ${QT6_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64"
+fi
+
+IUSE="flite qml +speechd"
+# can build with neither, but then it is just mock tts and may be confusing
+REQUIRED_USE="|| ( flite speechd )"
+
+# TODO: tests are known failing with clang and needs looking into, albeit
+# it is still usable at runtime save for applications segfaulting on exit
+# similarly to QTBUG-90626 (not that this has in-tree revdeps as of writing
+# of this). Restricting because also seen this result in hanging. Note that
+# qtspeech:6 is still somewhat new (started in 6.4.0), and should review
+# status on new major versions.
+RESTRICT="test"
+
+RDEPEND="
+   ~dev-qt/qtbase-${PV}:6
+   ~dev-qt/qtmultimedia-${PV}:6
+   flite? ( app-accessibility/flite )
+   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
+   speechd? ( app-accessibility/speech-dispatcher )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake_use_find_package qml Qt6Qml)
+   $(qt_feature flite)
+   $(qt_feature speechd)
+
+   # flite_alsa was likely to work around old issues in flite, it 
does
+   # nothing but add -lasound (no code change, and is unneeded)
+   -DQT_FEATURE_flite_alsa=OFF
+   )
+
+   qt6-build_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-10-08 Thread Andreas Sturmlechner
commit: 652e3e9aa8e2895c251638a3a8d4600764cc23a6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Oct  8 15:06:15 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct  8 15:47:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=652e3e9a

dev-qt/qtspeech: add 5.15.11

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtspeech/Manifest|  2 ++
 dev-qt/qtspeech/qtspeech-5.15.11.ebuild | 36 +
 2 files changed, 38 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 58223c620516..eb634851e6be 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,5 +1,7 @@
 DIST qtspeech-5.15.10-gentoo-kde-1.tar.xz 1044 BLAKE2B 
e555c475fa1824ffbe34c5a0e0b6c24eeec81ad29337966e89f9dbd7d43c3a5d079603ad6dbe51e695984741cff0a749921b329242bd68d23c4ff9eed3eff008
 SHA512 
c4551ba08e9c23af59b9ce86d4ea0420c0b60372e3bb177d17b066b8651bb6d726c1d9981b6cf762f1cbce0fdae8f05cd77055af13384eb55c1ba834428b
+DIST qtspeech-5.15.11-gentoo-kde-1.tar.xz 1044 BLAKE2B 
6acf62a4fdbba05604f3fc4154f8057b1a32621b5cb35de26d5e960645894248d458871678316bfc553136c31ca687804b2eefdcf342e82efd6211cf00d2760e
 SHA512 
84780c2dcb84caba0cb2a927d4bd73f6b7285d25487451785ae56f6bfddc2d714a27954560d6ee121c9f5b464c7529276cc5415c3d49ee5dc89275dc1d005b60
 DIST qtspeech-everywhere-opensource-src-5.15.10.tar.xz 104944 BLAKE2B 
7e664719d352cd29cb289f8b8f59d4595ffe343dca028a69030032030eb02c601b29492cea885bcab940264624b39042773bc70884512726abcd89dc27065b64
 SHA512 
b938c8baba11aa9a40a2ec5492df32c511164686aa2649d78023beccc8b23f1e0a77193672f7bc7d7f72aeb7b59fe30972683f5a4e22e1e39da9744ecd40201d
+DIST qtspeech-everywhere-opensource-src-5.15.11.tar.xz 104996 BLAKE2B 
3272a72d8073023631c3ac18734c672b2cde2f382a011d9f02d6604093454ab7d308c0d5141d0488eb953262e8beb46e0aa1616d86db4ebabfdc3366eab32b4d
 SHA512 
658eb9d24ea2f2bf39c6f4cd6dc75677067c8058cae694b53e665e28a273d2f730ab0dd4744ca8f8db224e52bb014fd145af1abd1667e3cd37f74c51bf96ebf4
 DIST qtspeech-everywhere-src-6.5.2.tar.xz 249568 BLAKE2B 
af86153ea1cf0f248ab80aa828a0457e23e1f97cc5ae91bf60fa426a43a44247230b643ae48e6ae839668ea9a66edc94e0358502abcab03788cd7d1368403592
 SHA512 
bc6ca225f9eadc838e63bb3b011f604c1ae18eee76445c2c0d22152e473b9316b6903e349aee2555c5a110ef65fbd25ca9065b22ae4cef6e5290daa665c78434
 DIST qtspeech-everywhere-src-6.5.3.tar.xz 250112 BLAKE2B 
fd33ced6cd415e24789bfede90563f68e3bb63319766cb60ffb7f0708ac5f092f5cccafa840565bea6d52e5aeadd226eece9993be9f0132b65b8cabe8764a65d
 SHA512 
d37c68cb9599e8d9a81ac070a87ed5a942e15e01401b5e179b4127aa0894a272023d717f0fc5f5c167e2ff299f79d6a19f3594172cf9779b400ac218d9587508
 DIST qtspeech-everywhere-src-6.6.0-rc.tar.xz 270020 BLAKE2B 
22508eb6cd967267ae02c99331af90be6aef7171c0d390e95afbf8104961c95199b3e654db976957a65468119052d646f288e5478d543ac0b3547cb603bb0109
 SHA512 
30d78ae40e44facc4915d55e1aeada78a31fb3be68265a772499a7e40a1c223e317339d096df98a27fff8f6c538c8a6b602308e8ec6037110eb8dea0739fe96c

diff --git a/dev-qt/qtspeech/qtspeech-5.15.11.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.11.ebuild
new file mode 100644
index ..19d976af0d2c
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-5.15.11.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+if [[ ${PV} != ** ]]; then
+   QT5_KDEPATCHSET_REV=1
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+fi
+
+inherit qt5-build
+
+DESCRIPTION="Text-to-speech library for the Qt5 framework"
+
+IUSE="alsa flite"
+
+RDEPEND="
+   >=app-accessibility/speech-dispatcher-0.8.7
+   =dev-qt/qtcore-${QT5_PV}*
+   flite? (
+   >=app-accessibility/flite-2[alsa?]
+   =dev-qt/qtmultimedia-${QT5_PV}*[alsa?]
+   alsa? ( media-libs/alsa-lib )
+   )
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   qt_use_disable_config flite flite \
+   src/plugins/tts/tts.pro
+
+   qt_use_disable_config alsa flite_alsa \
+   src/plugins/tts/flite/flite.pro
+
+   qt5-build_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-09-28 Thread Ionen Wolkens
commit: 4c3ee27108da4292eef050505bca2e41227e52f0
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Sep 28 07:02:32 2023 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Sep 28 12:31:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c3ee271

dev-qt/qtspeech: add 6.5.3

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest  |  1 +
 dev-qt/qtspeech/qtspeech-6.5.3.ebuild | 48 +++
 2 files changed, 49 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 85dd79eba91e..58223c620516 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,4 +1,5 @@
 DIST qtspeech-5.15.10-gentoo-kde-1.tar.xz 1044 BLAKE2B 
e555c475fa1824ffbe34c5a0e0b6c24eeec81ad29337966e89f9dbd7d43c3a5d079603ad6dbe51e695984741cff0a749921b329242bd68d23c4ff9eed3eff008
 SHA512 
c4551ba08e9c23af59b9ce86d4ea0420c0b60372e3bb177d17b066b8651bb6d726c1d9981b6cf762f1cbce0fdae8f05cd77055af13384eb55c1ba834428b
 DIST qtspeech-everywhere-opensource-src-5.15.10.tar.xz 104944 BLAKE2B 
7e664719d352cd29cb289f8b8f59d4595ffe343dca028a69030032030eb02c601b29492cea885bcab940264624b39042773bc70884512726abcd89dc27065b64
 SHA512 
b938c8baba11aa9a40a2ec5492df32c511164686aa2649d78023beccc8b23f1e0a77193672f7bc7d7f72aeb7b59fe30972683f5a4e22e1e39da9744ecd40201d
 DIST qtspeech-everywhere-src-6.5.2.tar.xz 249568 BLAKE2B 
af86153ea1cf0f248ab80aa828a0457e23e1f97cc5ae91bf60fa426a43a44247230b643ae48e6ae839668ea9a66edc94e0358502abcab03788cd7d1368403592
 SHA512 
bc6ca225f9eadc838e63bb3b011f604c1ae18eee76445c2c0d22152e473b9316b6903e349aee2555c5a110ef65fbd25ca9065b22ae4cef6e5290daa665c78434
+DIST qtspeech-everywhere-src-6.5.3.tar.xz 250112 BLAKE2B 
fd33ced6cd415e24789bfede90563f68e3bb63319766cb60ffb7f0708ac5f092f5cccafa840565bea6d52e5aeadd226eece9993be9f0132b65b8cabe8764a65d
 SHA512 
d37c68cb9599e8d9a81ac070a87ed5a942e15e01401b5e179b4127aa0894a272023d717f0fc5f5c167e2ff299f79d6a19f3594172cf9779b400ac218d9587508
 DIST qtspeech-everywhere-src-6.6.0-rc.tar.xz 270020 BLAKE2B 
22508eb6cd967267ae02c99331af90be6aef7171c0d390e95afbf8104961c95199b3e654db976957a65468119052d646f288e5478d543ac0b3547cb603bb0109
 SHA512 
30d78ae40e44facc4915d55e1aeada78a31fb3be68265a772499a7e40a1c223e317339d096df98a27fff8f6c538c8a6b602308e8ec6037110eb8dea0739fe96c

diff --git a/dev-qt/qtspeech/qtspeech-6.5.3.ebuild 
b/dev-qt/qtspeech/qtspeech-6.5.3.ebuild
new file mode 100644
index ..94803ab4eff3
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-6.5.3.ebuild
@@ -0,0 +1,48 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qt6-build
+
+DESCRIPTION="Text-to-speech library for the Qt6 framework"
+
+if [[ ${QT6_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64"
+fi
+
+IUSE="flite +speechd"
+# can build with neither, but then it is just mock tts and may be confusing
+REQUIRED_USE="|| ( flite speechd )"
+
+# TODO: tests are known failing with clang and needs looking into, albeit
+# it is still usable at runtime save for applications segfaulting on exit
+# similarly to QTBUG-90626 (not that this has in-tree revdeps as of writing
+# of this). Restricting because also seen this result in hanging. Note that
+# qtspeech:6 is still somewhat new (started in 6.4.0), and should review
+# status on new major versions.
+RESTRICT="test"
+
+RDEPEND="
+   ~dev-qt/qtbase-${PV}:6
+   ~dev-qt/qtdeclarative-${PV}:6
+   flite? (
+   app-accessibility/flite
+   ~dev-qt/qtmultimedia-${PV}:6
+   )
+   speechd? ( app-accessibility/speech-dispatcher )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   $(qt_feature flite)
+   $(qt_feature speechd)
+
+   # flite_alsa was likely to work around old issues in flite, it 
does
+   # nothing but add -lasound (no code change, and is unneeded)
+   -DQT_FEATURE_flite_alsa=OFF
+   )
+
+   qt6-build_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-09-26 Thread Ionen Wolkens
commit: 5a4668081ef70933c30e05c7fdf81e9f5ab3c2cd
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Sep 26 13:38:23 2023 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Sep 26 19:47:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a466808

dev-qt/qtspeech: add 6.6.0_rc

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest |  1 +
 dev-qt/qtspeech/qtspeech-6.6.0_rc.ebuild | 47 
 2 files changed, 48 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 4feccbe6a821..85dd79eba91e 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,3 +1,4 @@
 DIST qtspeech-5.15.10-gentoo-kde-1.tar.xz 1044 BLAKE2B 
e555c475fa1824ffbe34c5a0e0b6c24eeec81ad29337966e89f9dbd7d43c3a5d079603ad6dbe51e695984741cff0a749921b329242bd68d23c4ff9eed3eff008
 SHA512 
c4551ba08e9c23af59b9ce86d4ea0420c0b60372e3bb177d17b066b8651bb6d726c1d9981b6cf762f1cbce0fdae8f05cd77055af13384eb55c1ba834428b
 DIST qtspeech-everywhere-opensource-src-5.15.10.tar.xz 104944 BLAKE2B 
7e664719d352cd29cb289f8b8f59d4595ffe343dca028a69030032030eb02c601b29492cea885bcab940264624b39042773bc70884512726abcd89dc27065b64
 SHA512 
b938c8baba11aa9a40a2ec5492df32c511164686aa2649d78023beccc8b23f1e0a77193672f7bc7d7f72aeb7b59fe30972683f5a4e22e1e39da9744ecd40201d
 DIST qtspeech-everywhere-src-6.5.2.tar.xz 249568 BLAKE2B 
af86153ea1cf0f248ab80aa828a0457e23e1f97cc5ae91bf60fa426a43a44247230b643ae48e6ae839668ea9a66edc94e0358502abcab03788cd7d1368403592
 SHA512 
bc6ca225f9eadc838e63bb3b011f604c1ae18eee76445c2c0d22152e473b9316b6903e349aee2555c5a110ef65fbd25ca9065b22ae4cef6e5290daa665c78434
+DIST qtspeech-everywhere-src-6.6.0-rc.tar.xz 270020 BLAKE2B 
22508eb6cd967267ae02c99331af90be6aef7171c0d390e95afbf8104961c95199b3e654db976957a65468119052d646f288e5478d543ac0b3547cb603bb0109
 SHA512 
30d78ae40e44facc4915d55e1aeada78a31fb3be68265a772499a7e40a1c223e317339d096df98a27fff8f6c538c8a6b602308e8ec6037110eb8dea0739fe96c

diff --git a/dev-qt/qtspeech/qtspeech-6.6.0_rc.ebuild 
b/dev-qt/qtspeech/qtspeech-6.6.0_rc.ebuild
new file mode 100644
index ..e8a12770ddf0
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-6.6.0_rc.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qt6-build
+
+DESCRIPTION="Text-to-speech library for the Qt6 framework"
+
+if [[ ${QT6_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64"
+fi
+
+IUSE="flite qml +speechd"
+# can build with neither, but then it is just mock tts and may be confusing
+REQUIRED_USE="|| ( flite speechd )"
+
+# TODO: tests are known failing with clang and needs looking into, albeit
+# it is still usable at runtime save for applications segfaulting on exit
+# similarly to QTBUG-90626 (not that this has in-tree revdeps as of writing
+# of this). Restricting because also seen this result in hanging. Note that
+# qtspeech:6 is still somewhat new (started in 6.4.0), and should review
+# status on new major versions.
+RESTRICT="test"
+
+RDEPEND="
+   ~dev-qt/qtbase-${PV}:6
+   ~dev-qt/qtmultimedia-${PV}:6
+   flite? ( app-accessibility/flite )
+   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
+   speechd? ( app-accessibility/speech-dispatcher )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake_use_find_package qml Qt6Qml)
+   $(qt_feature flite)
+   $(qt_feature speechd)
+
+   # flite_alsa was likely to work around old issues in flite, it 
does
+   # nothing but add -lasound (no code change, and is unneeded)
+   -DQT_FEATURE_flite_alsa=OFF
+   )
+
+   qt6-build_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-09-14 Thread Sam James
commit: a7bf97a9dd6ef6f323caa4158b5f40058d36e5d9
Author: Sam James  gentoo  org>
AuthorDate: Fri Sep 15 04:47:46 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Sep 15 04:47:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7bf97a9

dev-qt/qtspeech: Stabilize 6.5.2 amd64, #914113

Signed-off-by: Sam James  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.5.2.ebuild 
b/dev-qt/qtspeech/qtspeech-6.5.2.ebuild
index 94803ab4eff3..78bb4e99d6eb 100644
--- a/dev-qt/qtspeech/qtspeech-6.5.2.ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.5.2.ebuild
@@ -8,7 +8,7 @@ inherit qt6-build
 DESCRIPTION="Text-to-speech library for the Qt6 framework"
 
 if [[ ${QT6_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64"
+   KEYWORDS="amd64"
 fi
 
 IUSE="flite +speechd"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-09-13 Thread Ionen Wolkens
commit: a6cbf67349061b81243e29200cdff1b000ed694e
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Wed Sep 13 12:48:34 2023 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Wed Sep 13 16:40:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6cbf673

dev-qt/qtspeech: hard require qtmultimedia in 6.6+

Now is hard required by CMakeLists.txt.

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/qtspeech-6.6..ebuild | 6 ++
 dev-qt/qtspeech/qtspeech-6..ebuild   | 6 ++
 2 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/dev-qt/qtspeech/qtspeech-6.6..ebuild 
b/dev-qt/qtspeech/qtspeech-6.6..ebuild
index e242ec0db59d..e8a12770ddf0 100644
--- a/dev-qt/qtspeech/qtspeech-6.6..ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.6..ebuild
@@ -25,10 +25,8 @@ RESTRICT="test"
 
 RDEPEND="
~dev-qt/qtbase-${PV}:6
-   flite? (
-   app-accessibility/flite
-   ~dev-qt/qtmultimedia-${PV}:6
-   )
+   ~dev-qt/qtmultimedia-${PV}:6
+   flite? ( app-accessibility/flite )
qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
speechd? ( app-accessibility/speech-dispatcher )
 "

diff --git a/dev-qt/qtspeech/qtspeech-6..ebuild 
b/dev-qt/qtspeech/qtspeech-6..ebuild
index e242ec0db59d..e8a12770ddf0 100644
--- a/dev-qt/qtspeech/qtspeech-6..ebuild
+++ b/dev-qt/qtspeech/qtspeech-6..ebuild
@@ -25,10 +25,8 @@ RESTRICT="test"
 
 RDEPEND="
~dev-qt/qtbase-${PV}:6
-   flite? (
-   app-accessibility/flite
-   ~dev-qt/qtmultimedia-${PV}:6
-   )
+   ~dev-qt/qtmultimedia-${PV}:6
+   flite? ( app-accessibility/flite )
qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
speechd? ( app-accessibility/speech-dispatcher )
 "



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-09-13 Thread Ionen Wolkens
commit: 944df3924e64523fb0a736f67a635a02ca22d0cc
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Wed Sep 13 12:46:22 2023 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Wed Sep 13 16:40:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=944df392

dev-qt/qtspeech: make qml optional in 6.6+

No longer a hard dependency.

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/metadata.xml | 1 +
 dev-qt/qtspeech/qtspeech-6.6..ebuild | 5 +++--
 dev-qt/qtspeech/qtspeech-6..ebuild   | 5 +++--
 3 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-qt/qtspeech/metadata.xml b/dev-qt/qtspeech/metadata.xml
index fa0f657a4256..b51b2479697c 100644
--- a/dev-qt/qtspeech/metadata.xml
+++ b/dev-qt/qtspeech/metadata.xml
@@ -12,6 +12,7 @@


Enable text-to-speech synthesizer plugin 
using app-accessibility/flite engine
+   Build QML/QtQuick bindings and imports
Enable text-to-speech synthesizer plugin 
using app-accessibility/speech-dispatcher engine



diff --git a/dev-qt/qtspeech/qtspeech-6.6..ebuild 
b/dev-qt/qtspeech/qtspeech-6.6..ebuild
index 94803ab4eff3..e242ec0db59d 100644
--- a/dev-qt/qtspeech/qtspeech-6.6..ebuild
+++ b/dev-qt/qtspeech/qtspeech-6.6..ebuild
@@ -11,7 +11,7 @@ if [[ ${QT6_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64"
 fi
 
-IUSE="flite +speechd"
+IUSE="flite qml +speechd"
 # can build with neither, but then it is just mock tts and may be confusing
 REQUIRED_USE="|| ( flite speechd )"
 
@@ -25,17 +25,18 @@ RESTRICT="test"
 
 RDEPEND="
~dev-qt/qtbase-${PV}:6
-   ~dev-qt/qtdeclarative-${PV}:6
flite? (
app-accessibility/flite
~dev-qt/qtmultimedia-${PV}:6
)
+   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
speechd? ( app-accessibility/speech-dispatcher )
 "
 DEPEND="${RDEPEND}"
 
 src_configure() {
local mycmakeargs=(
+   $(cmake_use_find_package qml Qt6Qml)
$(qt_feature flite)
$(qt_feature speechd)
 

diff --git a/dev-qt/qtspeech/qtspeech-6..ebuild 
b/dev-qt/qtspeech/qtspeech-6..ebuild
index 94803ab4eff3..e242ec0db59d 100644
--- a/dev-qt/qtspeech/qtspeech-6..ebuild
+++ b/dev-qt/qtspeech/qtspeech-6..ebuild
@@ -11,7 +11,7 @@ if [[ ${QT6_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64"
 fi
 
-IUSE="flite +speechd"
+IUSE="flite qml +speechd"
 # can build with neither, but then it is just mock tts and may be confusing
 REQUIRED_USE="|| ( flite speechd )"
 
@@ -25,17 +25,18 @@ RESTRICT="test"
 
 RDEPEND="
~dev-qt/qtbase-${PV}:6
-   ~dev-qt/qtdeclarative-${PV}:6
flite? (
app-accessibility/flite
~dev-qt/qtmultimedia-${PV}:6
)
+   qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
speechd? ( app-accessibility/speech-dispatcher )
 "
 DEPEND="${RDEPEND}"
 
 src_configure() {
local mycmakeargs=(
+   $(cmake_use_find_package qml Qt6Qml)
$(qt_feature flite)
$(qt_feature speechd)
 



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-09-05 Thread Ionen Wolkens
commit: 24e16820c591eb00d7995916c0a2dd0ca85d1850
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Sun Sep  3 22:55:37 2023 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Sep  5 13:01:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24e16820

dev-qt/qtspeech: new qt6 module, add 6.5.2 + live

Packaging some extra modules that are likely needed by upcoming
kde6 and were available with Qt5 in ::gentoo, so can be in a good
shape by the time need these for testing.

Please ask if need other modules that are still missing.

wrt IUSE=speechd, normally would do IUSE=speech, but this is more
specifically about enabling (optional) speechd support in a library
that can do tts by other means, and also do not want it to be confused
with enabling the "speech" Qt module either (nothing should need to
depend on this USE).

Note this module currently seems rather fragile (see ebuild comments),
considered just not packaging it (yet) but it will be needed and may
as well see where it goes now.

Signed-off-by: Ionen Wolkens  gentoo.org>

 dev-qt/qtspeech/Manifest |  1 +
 dev-qt/qtspeech/metadata.xml |  2 ++
 dev-qt/qtspeech/qtspeech-6.5.2.ebuild| 48 
 dev-qt/qtspeech/qtspeech-6.5..ebuild | 48 
 dev-qt/qtspeech/qtspeech-6..ebuild   | 48 
 5 files changed, 147 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index abbe8c534e0f..4feccbe6a821 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,2 +1,3 @@
 DIST qtspeech-5.15.10-gentoo-kde-1.tar.xz 1044 BLAKE2B 
e555c475fa1824ffbe34c5a0e0b6c24eeec81ad29337966e89f9dbd7d43c3a5d079603ad6dbe51e695984741cff0a749921b329242bd68d23c4ff9eed3eff008
 SHA512 
c4551ba08e9c23af59b9ce86d4ea0420c0b60372e3bb177d17b066b8651bb6d726c1d9981b6cf762f1cbce0fdae8f05cd77055af13384eb55c1ba834428b
 DIST qtspeech-everywhere-opensource-src-5.15.10.tar.xz 104944 BLAKE2B 
7e664719d352cd29cb289f8b8f59d4595ffe343dca028a69030032030eb02c601b29492cea885bcab940264624b39042773bc70884512726abcd89dc27065b64
 SHA512 
b938c8baba11aa9a40a2ec5492df32c511164686aa2649d78023beccc8b23f1e0a77193672f7bc7d7f72aeb7b59fe30972683f5a4e22e1e39da9744ecd40201d
+DIST qtspeech-everywhere-src-6.5.2.tar.xz 249568 BLAKE2B 
af86153ea1cf0f248ab80aa828a0457e23e1f97cc5ae91bf60fa426a43a44247230b643ae48e6ae839668ea9a66edc94e0358502abcab03788cd7d1368403592
 SHA512 
bc6ca225f9eadc838e63bb3b011f604c1ae18eee76445c2c0d22152e473b9316b6903e349aee2555c5a110ef65fbd25ca9065b22ae4cef6e5290daa665c78434

diff --git a/dev-qt/qtspeech/metadata.xml b/dev-qt/qtspeech/metadata.xml
index aa174c30fde5..fa0f657a4256 100644
--- a/dev-qt/qtspeech/metadata.xml
+++ b/dev-qt/qtspeech/metadata.xml
@@ -8,9 +8,11 @@

https://bugreports.qt.io/
https://doc.qt.io/
+   qt/qtspeech


Enable text-to-speech synthesizer plugin 
using app-accessibility/flite engine
+   Enable text-to-speech synthesizer plugin 
using app-accessibility/speech-dispatcher engine




diff --git a/dev-qt/qtspeech/qtspeech-6.5.2.ebuild 
b/dev-qt/qtspeech/qtspeech-6.5.2.ebuild
new file mode 100644
index ..94803ab4eff3
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-6.5.2.ebuild
@@ -0,0 +1,48 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qt6-build
+
+DESCRIPTION="Text-to-speech library for the Qt6 framework"
+
+if [[ ${QT6_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64"
+fi
+
+IUSE="flite +speechd"
+# can build with neither, but then it is just mock tts and may be confusing
+REQUIRED_USE="|| ( flite speechd )"
+
+# TODO: tests are known failing with clang and needs looking into, albeit
+# it is still usable at runtime save for applications segfaulting on exit
+# similarly to QTBUG-90626 (not that this has in-tree revdeps as of writing
+# of this). Restricting because also seen this result in hanging. Note that
+# qtspeech:6 is still somewhat new (started in 6.4.0), and should review
+# status on new major versions.
+RESTRICT="test"
+
+RDEPEND="
+   ~dev-qt/qtbase-${PV}:6
+   ~dev-qt/qtdeclarative-${PV}:6
+   flite? (
+   app-accessibility/flite
+   ~dev-qt/qtmultimedia-${PV}:6
+   )
+   speechd? ( app-accessibility/speech-dispatcher )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   $(qt_feature flite)
+   $(qt_feature speechd)
+
+   # flite_alsa was likely to work around old issues in flite, it 
does
+   # nothing but add -lasound (no code change, and is unneeded)
+   -DQT_FEATURE_flite_alsa=OFF
+   )
+
+   qt6-build_src_configure
+}

diff --git a/dev-qt/qtspeech/qtspeech-6.5..ebuild 
b/dev-qt/qtspeech/qtspee

[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-07-13 Thread Andreas Sturmlechner
commit: 6d77866bcdf411beb5357f91c76d6f48747af58a
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jul 13 07:36:02 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jul 13 08:42:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d77866b

dev-qt/qtspeech: drop 5.15.9

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtspeech/Manifest   |  2 --
 dev-qt/qtspeech/qtspeech-5.15.9.ebuild | 36 --
 2 files changed, 38 deletions(-)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 7ee5041d5d75..abbe8c534e0f 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,4 +1,2 @@
 DIST qtspeech-5.15.10-gentoo-kde-1.tar.xz 1044 BLAKE2B 
e555c475fa1824ffbe34c5a0e0b6c24eeec81ad29337966e89f9dbd7d43c3a5d079603ad6dbe51e695984741cff0a749921b329242bd68d23c4ff9eed3eff008
 SHA512 
c4551ba08e9c23af59b9ce86d4ea0420c0b60372e3bb177d17b066b8651bb6d726c1d9981b6cf762f1cbce0fdae8f05cd77055af13384eb55c1ba834428b
-DIST qtspeech-5.15.9-gentoo-kde-1.tar.xz 1040 BLAKE2B 
fee7bf8280a4b8ca6f9769a7f1387b73fdc796ee40f3f2c37bd1408b091c544fad15b76b02fd8df80b9b206b749eaba6eefb488b4656e1000f400570e669b754
 SHA512 
ec0014532cbe29d067ad35f240b1b3842b035b5e20026dae0994939f9f6a43d380663b258ef0f280b43e0f1f7b5f8cd56ae1047377f1e6ead355563a9b31173b
 DIST qtspeech-everywhere-opensource-src-5.15.10.tar.xz 104944 BLAKE2B 
7e664719d352cd29cb289f8b8f59d4595ffe343dca028a69030032030eb02c601b29492cea885bcab940264624b39042773bc70884512726abcd89dc27065b64
 SHA512 
b938c8baba11aa9a40a2ec5492df32c511164686aa2649d78023beccc8b23f1e0a77193672f7bc7d7f72aeb7b59fe30972683f5a4e22e1e39da9744ecd40201d
-DIST qtspeech-everywhere-opensource-src-5.15.9.tar.xz 104024 BLAKE2B 
76aa0f2c0e2093bae51cdfbdadbabe87719958bc730d11f7f160e2441ae9c3b6797c3b81a8c034068639fb1a56339b7122b52c0a4323d1b90778b1f39398baf3
 SHA512 
c614798cca4485d9880fe8bc19df563b29673f8fc111ce8129e8e1a8f1c8f769f76c9a7754e8cde43e7223ef7fed899bff9e91bcebe113281eb44f39aa7bfe4a

diff --git a/dev-qt/qtspeech/qtspeech-5.15.9.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.9.ebuild
deleted file mode 100644
index 080e2f22739a..
--- a/dev-qt/qtspeech/qtspeech-5.15.9.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-if [[ ${PV} != ** ]]; then
-   QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
-fi
-
-inherit qt5-build
-
-DESCRIPTION="Text-to-speech library for the Qt5 framework"
-
-IUSE="alsa flite"
-
-RDEPEND="
-   >=app-accessibility/speech-dispatcher-0.8.7
-   =dev-qt/qtcore-${QT5_PV}*
-   flite? (
-   >=app-accessibility/flite-2[alsa?]
-   =dev-qt/qtmultimedia-${QT5_PV}*[alsa?]
-   alsa? ( media-libs/alsa-lib )
-   )
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   qt_use_disable_config flite flite \
-   src/plugins/tts/tts.pro
-
-   qt_use_disable_config alsa flite_alsa \
-   src/plugins/tts/flite/flite.pro
-
-   qt5-build_src_prepare
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-07-11 Thread Sam James
commit: 3626d6a01ea4c79e090e17aa9e20ddb3c1dbbdb8
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 12 01:12:42 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 12 01:12:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3626d6a0

dev-qt/qtspeech: Stabilize 5.15.10 arm, #909313

Signed-off-by: Sam James  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.10.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.10.ebuild
index 5b5ba96d6c1f..080e2f22739a 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.10.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.10.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 ~arm arm64 ~loong ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-07-09 Thread Arthur Zamarin
commit: 01fe78b65c9566bb46f8e92c79aecd3979e70536
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Jul  9 16:59:14 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Jul  9 16:59:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01fe78b6

dev-qt/qtspeech: Stabilize 5.15.10 amd64, #909313

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.10.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.10.ebuild
index 2625e6446c80..5b5ba96d6c1f 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.10.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.10.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="~amd64 ~arm arm64 ~loong ppc64 ~riscv x86"
+   KEYWORDS="amd64 ~arm arm64 ~loong ppc64 ~riscv x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-06-13 Thread Andreas Sturmlechner
commit: dd09d99a402063e7c4b8502547cebee15198b919
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun 13 11:23:25 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun 13 11:41:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd09d99a

dev-qt/qtspeech: 5.15.10 version bump

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtspeech/Manifest|  2 ++
 dev-qt/qtspeech/qtspeech-5.15.10.ebuild | 36 +
 2 files changed, 38 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index b4f7bed418ed..7ee5041d5d75 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,2 +1,4 @@
+DIST qtspeech-5.15.10-gentoo-kde-1.tar.xz 1044 BLAKE2B 
e555c475fa1824ffbe34c5a0e0b6c24eeec81ad29337966e89f9dbd7d43c3a5d079603ad6dbe51e695984741cff0a749921b329242bd68d23c4ff9eed3eff008
 SHA512 
c4551ba08e9c23af59b9ce86d4ea0420c0b60372e3bb177d17b066b8651bb6d726c1d9981b6cf762f1cbce0fdae8f05cd77055af13384eb55c1ba834428b
 DIST qtspeech-5.15.9-gentoo-kde-1.tar.xz 1040 BLAKE2B 
fee7bf8280a4b8ca6f9769a7f1387b73fdc796ee40f3f2c37bd1408b091c544fad15b76b02fd8df80b9b206b749eaba6eefb488b4656e1000f400570e669b754
 SHA512 
ec0014532cbe29d067ad35f240b1b3842b035b5e20026dae0994939f9f6a43d380663b258ef0f280b43e0f1f7b5f8cd56ae1047377f1e6ead355563a9b31173b
+DIST qtspeech-everywhere-opensource-src-5.15.10.tar.xz 104944 BLAKE2B 
7e664719d352cd29cb289f8b8f59d4595ffe343dca028a69030032030eb02c601b29492cea885bcab940264624b39042773bc70884512726abcd89dc27065b64
 SHA512 
b938c8baba11aa9a40a2ec5492df32c511164686aa2649d78023beccc8b23f1e0a77193672f7bc7d7f72aeb7b59fe30972683f5a4e22e1e39da9744ecd40201d
 DIST qtspeech-everywhere-opensource-src-5.15.9.tar.xz 104024 BLAKE2B 
76aa0f2c0e2093bae51cdfbdadbabe87719958bc730d11f7f160e2441ae9c3b6797c3b81a8c034068639fb1a56339b7122b52c0a4323d1b90778b1f39398baf3
 SHA512 
c614798cca4485d9880fe8bc19df563b29673f8fc111ce8129e8e1a8f1c8f769f76c9a7754e8cde43e7223ef7fed899bff9e91bcebe113281eb44f39aa7bfe4a

diff --git a/dev-qt/qtspeech/qtspeech-5.15.10.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.10.ebuild
new file mode 100644
index ..19d976af0d2c
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-5.15.10.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+if [[ ${PV} != ** ]]; then
+   QT5_KDEPATCHSET_REV=1
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+fi
+
+inherit qt5-build
+
+DESCRIPTION="Text-to-speech library for the Qt5 framework"
+
+IUSE="alsa flite"
+
+RDEPEND="
+   >=app-accessibility/speech-dispatcher-0.8.7
+   =dev-qt/qtcore-${QT5_PV}*
+   flite? (
+   >=app-accessibility/flite-2[alsa?]
+   =dev-qt/qtmultimedia-${QT5_PV}*[alsa?]
+   alsa? ( media-libs/alsa-lib )
+   )
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   qt_use_disable_config flite flite \
+   src/plugins/tts/tts.pro
+
+   qt_use_disable_config alsa flite_alsa \
+   src/plugins/tts/flite/flite.pro
+
+   qt5-build_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-05-01 Thread Andreas Sturmlechner
commit: 4f3489011ea1b90403e5ffbc18810acfeb7ced6f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon May  1 11:53:15 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon May  1 12:53:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f348901

dev-qt/qtspeech: drop 5.15.8

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtspeech/Manifest   |  2 --
 dev-qt/qtspeech/qtspeech-5.15.8.ebuild | 36 --
 2 files changed, 38 deletions(-)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index a66d6d551a65..b4f7bed418ed 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,4 +1,2 @@
-DIST qtspeech-5.15.8-gentoo-kde-1.tar.xz 1032 BLAKE2B 
1c65df9530d5a8b56249aabacf22faeb0f015a2f668aed442ee17588efee041d5262f73c201b561e87f6c434dee0ff49e3fa51403f1fd2b096b923c0b4cd7102
 SHA512 
ae1b42931ce11702bb447de1530148c29ec3fc680778b43034f2001db375d9fb049fd17d8937520bf59cb466bf34ff7ffaaccd8fa590473cbfad2181e6a4ba28
 DIST qtspeech-5.15.9-gentoo-kde-1.tar.xz 1040 BLAKE2B 
fee7bf8280a4b8ca6f9769a7f1387b73fdc796ee40f3f2c37bd1408b091c544fad15b76b02fd8df80b9b206b749eaba6eefb488b4656e1000f400570e669b754
 SHA512 
ec0014532cbe29d067ad35f240b1b3842b035b5e20026dae0994939f9f6a43d380663b258ef0f280b43e0f1f7b5f8cd56ae1047377f1e6ead355563a9b31173b
-DIST qtspeech-everywhere-opensource-src-5.15.8.tar.xz 103728 BLAKE2B 
f771a0e9ac4ea9520542ade764480c1c3d280a24b424f01ffb31db7a8ba0a6fc98009369edafbe7bdbbc18089d92beda18eb62da43da640b7833f154aef619e7
 SHA512 
01b625f44ea0ce799ab338f76ca17701025f288b0e83d8d36f5ad0f8b1fd505bb3fa109ace6942c19b0d5734e01aae1c69b28f7da98f986066dcd0ae0d175cee
 DIST qtspeech-everywhere-opensource-src-5.15.9.tar.xz 104024 BLAKE2B 
76aa0f2c0e2093bae51cdfbdadbabe87719958bc730d11f7f160e2441ae9c3b6797c3b81a8c034068639fb1a56339b7122b52c0a4323d1b90778b1f39398baf3
 SHA512 
c614798cca4485d9880fe8bc19df563b29673f8fc111ce8129e8e1a8f1c8f769f76c9a7754e8cde43e7223ef7fed899bff9e91bcebe113281eb44f39aa7bfe4a

diff --git a/dev-qt/qtspeech/qtspeech-5.15.8.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.8.ebuild
deleted file mode 100644
index 080e2f22739a..
--- a/dev-qt/qtspeech/qtspeech-5.15.8.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-if [[ ${PV} != ** ]]; then
-   QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
-fi
-
-inherit qt5-build
-
-DESCRIPTION="Text-to-speech library for the Qt5 framework"
-
-IUSE="alsa flite"
-
-RDEPEND="
-   >=app-accessibility/speech-dispatcher-0.8.7
-   =dev-qt/qtcore-${QT5_PV}*
-   flite? (
-   >=app-accessibility/flite-2[alsa?]
-   =dev-qt/qtmultimedia-${QT5_PV}*[alsa?]
-   alsa? ( media-libs/alsa-lib )
-   )
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   qt_use_disable_config flite flite \
-   src/plugins/tts/tts.pro
-
-   qt_use_disable_config alsa flite_alsa \
-   src/plugins/tts/flite/flite.pro
-
-   qt5-build_src_prepare
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-05-01 Thread Arthur Zamarin
commit: f512748bd6cf4c738e22766ea41aa693344c2ea6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon May  1 07:24:44 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon May  1 07:24:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f512748b

dev-qt/qtspeech: Stabilize 5.15.9 ppc64, #904373

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.9.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.9.ebuild
index 00e87a9fd0a5..080e2f22739a 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.9.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.9.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 arm arm64 ~loong ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-04-25 Thread Arthur Zamarin
commit: 03b96efb6fcc6732bbfc283446ee8391acdb640b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Apr 25 09:41:03 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Apr 25 09:41:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03b96efb

dev-qt/qtspeech: Stabilize 5.15.9 arm, #904373

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.9.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.9.ebuild
index 8fa7a557c149..00e87a9fd0a5 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.9.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.9.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ~loong ~ppc64 ~riscv x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-04-23 Thread Arthur Zamarin
commit: fccacb913a4da60351084476c0202910a084e944
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Apr 23 15:58:49 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Apr 23 15:58:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fccacb91

dev-qt/qtspeech: Stabilize 5.15.9 amd64, #904373

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.9.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.9.ebuild
index 19d976af0d2c..4f76c015aada 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.9.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.9.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-04-13 Thread Andreas Sturmlechner
commit: e467c12f47c4c36ae8b5134e09ace1dd7eb16925
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Apr 13 21:12:21 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Apr 13 21:44:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e467c12f

dev-qt/qtspeech: 5.15.9 version bump

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtspeech/Manifest   |  2 ++
 dev-qt/qtspeech/qtspeech-5.15.9.ebuild | 36 ++
 2 files changed, 38 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 1b54b4488364..a66d6d551a65 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,2 +1,4 @@
 DIST qtspeech-5.15.8-gentoo-kde-1.tar.xz 1032 BLAKE2B 
1c65df9530d5a8b56249aabacf22faeb0f015a2f668aed442ee17588efee041d5262f73c201b561e87f6c434dee0ff49e3fa51403f1fd2b096b923c0b4cd7102
 SHA512 
ae1b42931ce11702bb447de1530148c29ec3fc680778b43034f2001db375d9fb049fd17d8937520bf59cb466bf34ff7ffaaccd8fa590473cbfad2181e6a4ba28
+DIST qtspeech-5.15.9-gentoo-kde-1.tar.xz 1040 BLAKE2B 
fee7bf8280a4b8ca6f9769a7f1387b73fdc796ee40f3f2c37bd1408b091c544fad15b76b02fd8df80b9b206b749eaba6eefb488b4656e1000f400570e669b754
 SHA512 
ec0014532cbe29d067ad35f240b1b3842b035b5e20026dae0994939f9f6a43d380663b258ef0f280b43e0f1f7b5f8cd56ae1047377f1e6ead355563a9b31173b
 DIST qtspeech-everywhere-opensource-src-5.15.8.tar.xz 103728 BLAKE2B 
f771a0e9ac4ea9520542ade764480c1c3d280a24b424f01ffb31db7a8ba0a6fc98009369edafbe7bdbbc18089d92beda18eb62da43da640b7833f154aef619e7
 SHA512 
01b625f44ea0ce799ab338f76ca17701025f288b0e83d8d36f5ad0f8b1fd505bb3fa109ace6942c19b0d5734e01aae1c69b28f7da98f986066dcd0ae0d175cee
+DIST qtspeech-everywhere-opensource-src-5.15.9.tar.xz 104024 BLAKE2B 
76aa0f2c0e2093bae51cdfbdadbabe87719958bc730d11f7f160e2441ae9c3b6797c3b81a8c034068639fb1a56339b7122b52c0a4323d1b90778b1f39398baf3
 SHA512 
c614798cca4485d9880fe8bc19df563b29673f8fc111ce8129e8e1a8f1c8f769f76c9a7754e8cde43e7223ef7fed899bff9e91bcebe113281eb44f39aa7bfe4a

diff --git a/dev-qt/qtspeech/qtspeech-5.15.9.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.9.ebuild
new file mode 100644
index ..19d976af0d2c
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-5.15.9.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+if [[ ${PV} != ** ]]; then
+   QT5_KDEPATCHSET_REV=1
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+fi
+
+inherit qt5-build
+
+DESCRIPTION="Text-to-speech library for the Qt5 framework"
+
+IUSE="alsa flite"
+
+RDEPEND="
+   >=app-accessibility/speech-dispatcher-0.8.7
+   =dev-qt/qtcore-${QT5_PV}*
+   flite? (
+   >=app-accessibility/flite-2[alsa?]
+   =dev-qt/qtmultimedia-${QT5_PV}*[alsa?]
+   alsa? ( media-libs/alsa-lib )
+   )
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   qt_use_disable_config flite flite \
+   src/plugins/tts/tts.pro
+
+   qt_use_disable_config alsa flite_alsa \
+   src/plugins/tts/flite/flite.pro
+
+   qt5-build_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-01-24 Thread Andreas Sturmlechner
commit: 36a7190a18a06d0fd7790695583e76be213265d8
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jan 23 19:20:44 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jan 24 09:34:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36a7190a

dev-qt/qtspeech: drop 5.15.7

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtspeech/Manifest   |  2 --
 dev-qt/qtspeech/qtspeech-5.15.7.ebuild | 36 --
 2 files changed, 38 deletions(-)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 00a70f2f3f3b..1b54b4488364 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,4 +1,2 @@
-DIST qtspeech-5.15.7-gentoo-kde-1.tar.xz 1036 BLAKE2B 
c469a591ad538b24aaf17ce8b9b35e878511dfec5f6a555b5b6336c924b181651a898914d5d7e09d7cdb04686ed12021f3b6b6e1b8c6b5bd21af80325d77f8b9
 SHA512 
c9842af963fad013d760e00afb5703b7953de7ad43d06987f43f8f3678c5f5496a987ba35762b6738b499fa5c148bdf2f85e3a6df408807cc5229959ee73caaf
 DIST qtspeech-5.15.8-gentoo-kde-1.tar.xz 1032 BLAKE2B 
1c65df9530d5a8b56249aabacf22faeb0f015a2f668aed442ee17588efee041d5262f73c201b561e87f6c434dee0ff49e3fa51403f1fd2b096b923c0b4cd7102
 SHA512 
ae1b42931ce11702bb447de1530148c29ec3fc680778b43034f2001db375d9fb049fd17d8937520bf59cb466bf34ff7ffaaccd8fa590473cbfad2181e6a4ba28
-DIST qtspeech-everywhere-opensource-src-5.15.7.tar.xz 103572 BLAKE2B 
580b0756e3c08dbe2ab86ad09a31b06e5f3ffa6fa3db0173bde269e6462fec7211f79c55b94dbac90b23f96a8c004ca1bd46d74dbfc1996b3e4c459ab013f2d4
 SHA512 
3db8edbf16366bcb155aa254483f059f0d6c6af769ff4e2bb87061c7c352fdbb30b63e4644e287a116292fa4f5f6f6c148b99fc9d39ded14e337f014a6aa66ea
 DIST qtspeech-everywhere-opensource-src-5.15.8.tar.xz 103728 BLAKE2B 
f771a0e9ac4ea9520542ade764480c1c3d280a24b424f01ffb31db7a8ba0a6fc98009369edafbe7bdbbc18089d92beda18eb62da43da640b7833f154aef619e7
 SHA512 
01b625f44ea0ce799ab338f76ca17701025f288b0e83d8d36f5ad0f8b1fd505bb3fa109ace6942c19b0d5734e01aae1c69b28f7da98f986066dcd0ae0d175cee

diff --git a/dev-qt/qtspeech/qtspeech-5.15.7.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.7.ebuild
deleted file mode 100644
index 30ccfc997cb1..
--- a/dev-qt/qtspeech/qtspeech-5.15.7.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-if [[ ${PV} != ** ]]; then
-   QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
-fi
-
-inherit qt5-build
-
-DESCRIPTION="Text-to-speech library for the Qt5 framework"
-
-IUSE="alsa flite"
-
-RDEPEND="
-   >=app-accessibility/speech-dispatcher-0.8.7
-   =dev-qt/qtcore-${QT5_PV}*
-   flite? (
-   >=app-accessibility/flite-2[alsa?]
-   =dev-qt/qtmultimedia-${QT5_PV}*[alsa?]
-   alsa? ( media-libs/alsa-lib )
-   )
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   qt_use_disable_config flite flite \
-   src/plugins/tts/tts.pro
-
-   qt_use_disable_config alsa flite_alsa \
-   src/plugins/tts/flite/flite.pro
-
-   qt5-build_src_prepare
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-01-21 Thread Arthur Zamarin
commit: 83d92120b1cd6120b2acae1f9d6f6115b30681c9
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jan 21 19:32:46 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jan 21 19:32:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83d92120

dev-qt/qtspeech: Stabilize 5.15.8 arm, #888946

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.8.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.8.ebuild
index 5b5ba96d6c1f..080e2f22739a 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.8.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.8.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 ~arm arm64 ~loong ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-01-21 Thread Arthur Zamarin
commit: d089eddd05611a793fa180a0c2543dcd75180c9d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jan 21 19:29:07 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jan 21 19:29:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d089eddd

dev-qt/qtspeech: Stabilize 5.15.8 ppc64, #888946

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.8.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.8.ebuild
index 8fa7a557c149..5b5ba96d6c1f 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.8.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.8.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 ~arm arm64 ~loong ppc64 ~riscv x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-01-21 Thread Arthur Zamarin
commit: 92e27e083fd228c0b72d858ae6f11bb4836ae6d4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jan 21 09:14:06 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jan 21 09:14:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92e27e08

dev-qt/qtspeech: Stabilize 5.15.8 x86, #888946

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.8.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.8.ebuild
index 06f96a21de9b..8fa7a557c149 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.8.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.8.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-01-17 Thread Arthur Zamarin
commit: fa50a1ff07b7209e460b08299ef38cc8102d0ce1
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jan 17 20:55:29 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jan 17 20:55:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa50a1ff

dev-qt/qtspeech: Stabilize 5.15.8 arm64, #888946

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.8.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.8.ebuild
index 4f76c015aada..06f96a21de9b 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.8.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.8.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-01-17 Thread Sam James
commit: 65ba388ce91f8e34071a29ebac28330eeb4bab73
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 17 20:03:27 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 17 20:03:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65ba388c

dev-qt/qtspeech: Stabilize 5.15.8 amd64, #888946

Signed-off-by: Sam James  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.8.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.8.ebuild
index 19d976af0d2c..4f76c015aada 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.8.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.8.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2023-01-08 Thread Andreas Sturmlechner
commit: 5bc92e7a497e0702e7798d0e1a5e6ab5304041ae
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jan  8 21:16:38 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan  8 21:44:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bc92e7a

dev-qt/qtspeech: 5.15.8 version bump

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtspeech/Manifest   |  2 ++
 dev-qt/qtspeech/qtspeech-5.15.8.ebuild | 36 ++
 2 files changed, 38 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index e10ecb8f990d..00a70f2f3f3b 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,2 +1,4 @@
 DIST qtspeech-5.15.7-gentoo-kde-1.tar.xz 1036 BLAKE2B 
c469a591ad538b24aaf17ce8b9b35e878511dfec5f6a555b5b6336c924b181651a898914d5d7e09d7cdb04686ed12021f3b6b6e1b8c6b5bd21af80325d77f8b9
 SHA512 
c9842af963fad013d760e00afb5703b7953de7ad43d06987f43f8f3678c5f5496a987ba35762b6738b499fa5c148bdf2f85e3a6df408807cc5229959ee73caaf
+DIST qtspeech-5.15.8-gentoo-kde-1.tar.xz 1032 BLAKE2B 
1c65df9530d5a8b56249aabacf22faeb0f015a2f668aed442ee17588efee041d5262f73c201b561e87f6c434dee0ff49e3fa51403f1fd2b096b923c0b4cd7102
 SHA512 
ae1b42931ce11702bb447de1530148c29ec3fc680778b43034f2001db375d9fb049fd17d8937520bf59cb466bf34ff7ffaaccd8fa590473cbfad2181e6a4ba28
 DIST qtspeech-everywhere-opensource-src-5.15.7.tar.xz 103572 BLAKE2B 
580b0756e3c08dbe2ab86ad09a31b06e5f3ffa6fa3db0173bde269e6462fec7211f79c55b94dbac90b23f96a8c004ca1bd46d74dbfc1996b3e4c459ab013f2d4
 SHA512 
3db8edbf16366bcb155aa254483f059f0d6c6af769ff4e2bb87061c7c352fdbb30b63e4644e287a116292fa4f5f6f6c148b99fc9d39ded14e337f014a6aa66ea
+DIST qtspeech-everywhere-opensource-src-5.15.8.tar.xz 103728 BLAKE2B 
f771a0e9ac4ea9520542ade764480c1c3d280a24b424f01ffb31db7a8ba0a6fc98009369edafbe7bdbbc18089d92beda18eb62da43da640b7833f154aef619e7
 SHA512 
01b625f44ea0ce799ab338f76ca17701025f288b0e83d8d36f5ad0f8b1fd505bb3fa109ace6942c19b0d5734e01aae1c69b28f7da98f986066dcd0ae0d175cee

diff --git a/dev-qt/qtspeech/qtspeech-5.15.8.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.8.ebuild
new file mode 100644
index ..19d976af0d2c
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-5.15.8.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+if [[ ${PV} != ** ]]; then
+   QT5_KDEPATCHSET_REV=1
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+fi
+
+inherit qt5-build
+
+DESCRIPTION="Text-to-speech library for the Qt5 framework"
+
+IUSE="alsa flite"
+
+RDEPEND="
+   >=app-accessibility/speech-dispatcher-0.8.7
+   =dev-qt/qtcore-${QT5_PV}*
+   flite? (
+   >=app-accessibility/flite-2[alsa?]
+   =dev-qt/qtmultimedia-${QT5_PV}*[alsa?]
+   alsa? ( media-libs/alsa-lib )
+   )
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   qt_use_disable_config flite flite \
+   src/plugins/tts/tts.pro
+
+   qt_use_disable_config alsa flite_alsa \
+   src/plugins/tts/flite/flite.pro
+
+   qt5-build_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2022-12-06 Thread Andreas Sturmlechner
commit: 4e5dd2a5276de9650ac8c8100050aa07271e3a66
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec  5 20:09:00 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec  6 17:05:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e5dd2a5

dev-qt/qtspeech: drop 5.15.5

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtspeech/Manifest   |  2 --
 dev-qt/qtspeech/qtspeech-5.15.5.ebuild | 36 --
 2 files changed, 38 deletions(-)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index a73a248f81ce..e10ecb8f990d 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,4 +1,2 @@
-DIST qtspeech-5.15.5-gentoo-kde-1.tar.xz 1036 BLAKE2B 
6b8a8ccd2d69ed3f286dbeb00c0175c847768cf2f5256fdb3c655bada3fb39d6a5d65f539ffefbed06e8164e2d9e9914ed25d6757bd5eae7d4da002977a37650
 SHA512 
28983faaa642e35dd2d06bba308664a6598ef2fcf49a3841b38bd783504378f37407e3e24379c050c5c2afbaee5f457cf46cb79fadc304e0627a7dafd35cb818
 DIST qtspeech-5.15.7-gentoo-kde-1.tar.xz 1036 BLAKE2B 
c469a591ad538b24aaf17ce8b9b35e878511dfec5f6a555b5b6336c924b181651a898914d5d7e09d7cdb04686ed12021f3b6b6e1b8c6b5bd21af80325d77f8b9
 SHA512 
c9842af963fad013d760e00afb5703b7953de7ad43d06987f43f8f3678c5f5496a987ba35762b6738b499fa5c148bdf2f85e3a6df408807cc5229959ee73caaf
-DIST qtspeech-everywhere-opensource-src-5.15.5.tar.xz 103640 BLAKE2B 
330baa5fe9f3fdd085e804780f60682d82ff1a80596661162dbb521de4bcf1584340a882a03405b71c77c247454c28cc9fd37200536c08b9b566af9cf0981a30
 SHA512 
b2f3a83a462c1f067804f8c2c28e47e76588cc5d70e3f0ec66a1955890b6a419371a769ec6f8867947f4a81cfc91db3bc65c1d628038cdec6c722cbfc1217aba
 DIST qtspeech-everywhere-opensource-src-5.15.7.tar.xz 103572 BLAKE2B 
580b0756e3c08dbe2ab86ad09a31b06e5f3ffa6fa3db0173bde269e6462fec7211f79c55b94dbac90b23f96a8c004ca1bd46d74dbfc1996b3e4c459ab013f2d4
 SHA512 
3db8edbf16366bcb155aa254483f059f0d6c6af769ff4e2bb87061c7c352fdbb30b63e4644e287a116292fa4f5f6f6c148b99fc9d39ded14e337f014a6aa66ea

diff --git a/dev-qt/qtspeech/qtspeech-5.15.5.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.5.ebuild
deleted file mode 100644
index 1106825c23b2..
--- a/dev-qt/qtspeech/qtspeech-5.15.5.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-QT5_KDEPATCHSET_REV=1
-inherit qt5-build
-
-DESCRIPTION="Text-to-speech library for the Qt5 framework"
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
-fi
-
-IUSE="alsa flite"
-
-RDEPEND="
-   >=app-accessibility/speech-dispatcher-0.8.7
-   =dev-qt/qtcore-${QT5_PV}*
-   flite? (
-   >=app-accessibility/flite-2[alsa?]
-   =dev-qt/qtmultimedia-${QT5_PV}*[alsa?]
-   alsa? ( media-libs/alsa-lib )
-   )
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   qt_use_disable_config flite flite \
-   src/plugins/tts/tts.pro
-
-   qt_use_disable_config alsa flite_alsa \
-   src/plugins/tts/flite/flite.pro
-
-   qt5-build_src_prepare
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2022-12-04 Thread Arthur Zamarin
commit: 2f44af04be2d2e06dc1d15f5fa0511f2e83e5f46
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Dec  4 19:28:08 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Dec  4 19:28:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f44af04

dev-qt/qtspeech: Stabilize 5.15.7 ppc64, #883677

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.7.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.7.ebuild
index aca5df20f9ff..30ccfc997cb1 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.7.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.7.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 arm arm64 ~loong ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2022-12-04 Thread Arthur Zamarin
commit: 5a6fd6fcd478a2ef5a638108eb610c2ac95de362
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Dec  4 19:22:10 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Dec  4 19:22:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a6fd6fc

dev-qt/qtspeech: Stabilize 5.15.7 arm64, #883677

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.7.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.7.ebuild
index 6b31124ca021..4cb1581b27bf 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.7.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.7.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2022-12-03 Thread Arthur Zamarin
commit: 88b5028ff17e3b372217adfce5a751b04d6ec1ed
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec  3 20:37:07 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec  3 20:37:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88b5028f

dev-qt/qtspeech: Stabilize 5.15.7 x86, #883677

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.7.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.7.ebuild
index 22183ae03c25..6b31124ca021 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.7.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.7.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2022-12-03 Thread Sam James
commit: bc953f0141e7fb934fe3632d2280b25030e2745d
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec  3 11:00:39 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec  3 11:00:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc953f01

dev-qt/qtspeech: Stabilize 5.15.7 amd64, #883677

Signed-off-by: Sam James  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.7.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.7.ebuild
index 23d4f4a90122..22183ae03c25 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.7.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.7.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 if [[ ${PV} != ** ]]; then
QT5_KDEPATCHSET_REV=1
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 inherit qt5-build



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2022-11-29 Thread Andreas Sturmlechner
commit: 1f94370f7d8e788951859418e20eca0f56eaf5d7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Nov 29 19:26:49 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Nov 29 20:50:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f94370f

dev-qt/qtspeech: 5.15.7 version bump

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtspeech/Manifest   |  2 ++
 dev-qt/qtspeech/qtspeech-5.15.7.ebuild | 36 ++
 2 files changed, 38 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index f2e076f64ec2..a73a248f81ce 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,2 +1,4 @@
 DIST qtspeech-5.15.5-gentoo-kde-1.tar.xz 1036 BLAKE2B 
6b8a8ccd2d69ed3f286dbeb00c0175c847768cf2f5256fdb3c655bada3fb39d6a5d65f539ffefbed06e8164e2d9e9914ed25d6757bd5eae7d4da002977a37650
 SHA512 
28983faaa642e35dd2d06bba308664a6598ef2fcf49a3841b38bd783504378f37407e3e24379c050c5c2afbaee5f457cf46cb79fadc304e0627a7dafd35cb818
+DIST qtspeech-5.15.7-gentoo-kde-1.tar.xz 1036 BLAKE2B 
c469a591ad538b24aaf17ce8b9b35e878511dfec5f6a555b5b6336c924b181651a898914d5d7e09d7cdb04686ed12021f3b6b6e1b8c6b5bd21af80325d77f8b9
 SHA512 
c9842af963fad013d760e00afb5703b7953de7ad43d06987f43f8f3678c5f5496a987ba35762b6738b499fa5c148bdf2f85e3a6df408807cc5229959ee73caaf
 DIST qtspeech-everywhere-opensource-src-5.15.5.tar.xz 103640 BLAKE2B 
330baa5fe9f3fdd085e804780f60682d82ff1a80596661162dbb521de4bcf1584340a882a03405b71c77c247454c28cc9fd37200536c08b9b566af9cf0981a30
 SHA512 
b2f3a83a462c1f067804f8c2c28e47e76588cc5d70e3f0ec66a1955890b6a419371a769ec6f8867947f4a81cfc91db3bc65c1d628038cdec6c722cbfc1217aba
+DIST qtspeech-everywhere-opensource-src-5.15.7.tar.xz 103572 BLAKE2B 
580b0756e3c08dbe2ab86ad09a31b06e5f3ffa6fa3db0173bde269e6462fec7211f79c55b94dbac90b23f96a8c004ca1bd46d74dbfc1996b3e4c459ab013f2d4
 SHA512 
3db8edbf16366bcb155aa254483f059f0d6c6af769ff4e2bb87061c7c352fdbb30b63e4644e287a116292fa4f5f6f6c148b99fc9d39ded14e337f014a6aa66ea

diff --git a/dev-qt/qtspeech/qtspeech-5.15.7.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.7.ebuild
new file mode 100644
index ..23d4f4a90122
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-5.15.7.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+if [[ ${PV} != ** ]]; then
+   QT5_KDEPATCHSET_REV=1
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+fi
+
+inherit qt5-build
+
+DESCRIPTION="Text-to-speech library for the Qt5 framework"
+
+IUSE="alsa flite"
+
+RDEPEND="
+   >=app-accessibility/speech-dispatcher-0.8.7
+   =dev-qt/qtcore-${QT5_PV}*
+   flite? (
+   >=app-accessibility/flite-2[alsa?]
+   =dev-qt/qtmultimedia-${QT5_PV}*[alsa?]
+   alsa? ( media-libs/alsa-lib )
+   )
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   qt_use_disable_config flite flite \
+   src/plugins/tts/tts.pro
+
+   qt_use_disable_config alsa flite_alsa \
+   src/plugins/tts/flite/flite.pro
+
+   qt5-build_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2022-11-18 Thread WANG Xuerui
commit: 89db085a04e50329f6794f62175e55ce1340e31e
Author: WANG Xuerui  gentoo  org>
AuthorDate: Sat Nov 19 02:42:22 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Sat Nov 19 04:50:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89db085a

dev-qt/qtspeech: keyword 5.15.5 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.5.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.5.ebuild
index e6c79caf8289..1106825c23b2 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.5.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.5.ebuild
@@ -9,7 +9,7 @@ inherit qt5-build
 DESCRIPTION="Text-to-speech library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
 fi
 
 IUSE="alsa flite"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2022-09-22 Thread Jakov Smolić
commit: 40fb26e81943cf94d6e4c03830a9f7374caf50e4
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep 22 08:04:07 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Sep 22 08:04:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40fb26e8

dev-qt/qtspeech: Stabilize 5.15.5 ppc64, #872041

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.5.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.5.ebuild
index a73f0796dd13..e6c79caf8289 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.5.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.5.ebuild
@@ -9,7 +9,7 @@ inherit qt5-build
 DESCRIPTION="Text-to-speech library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ppc64 ~riscv x86"
 fi
 
 IUSE="alsa flite"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2022-07-06 Thread Andreas Sturmlechner
commit: cbb54fa716ec3cf49e799c18428ad34611ba9eb7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul  6 09:18:19 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul  6 10:27:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbb54fa7

dev-qt/qtspeech: Drop 5.15.4

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtspeech/Manifest   |  2 --
 dev-qt/qtspeech/qtspeech-5.15.4.ebuild | 36 --
 2 files changed, 38 deletions(-)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 3ac02743348d..f2e076f64ec2 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,4 +1,2 @@
-DIST qtspeech-5.15.4-gentoo-kde-1.tar.xz 1036 BLAKE2B 
b842d09405198fee63d7ef54db26c683ec81319ae5fe48925349bec70e27019852259b80005d33a30b8462c573ab7e34308dc5d36c4ac0b99d273400eb7603f5
 SHA512 
5604f2c491ff9c5c1f65fa67d17d0aac37a6dfc6b188053bf338fbabdf00243c6a1f1d4ff07a3344de5241d1fca08d82768874d2888cd02d3a6a4a675ebc
 DIST qtspeech-5.15.5-gentoo-kde-1.tar.xz 1036 BLAKE2B 
6b8a8ccd2d69ed3f286dbeb00c0175c847768cf2f5256fdb3c655bada3fb39d6a5d65f539ffefbed06e8164e2d9e9914ed25d6757bd5eae7d4da002977a37650
 SHA512 
28983faaa642e35dd2d06bba308664a6598ef2fcf49a3841b38bd783504378f37407e3e24379c050c5c2afbaee5f457cf46cb79fadc304e0627a7dafd35cb818
-DIST qtspeech-everywhere-opensource-src-5.15.4.tar.xz 103820 BLAKE2B 
2c9fabcda61223ead3e3a7d51f4b28c86048fa4e1766b7c43fe5c41470782edfd6a9b1b784a50d69f40efbd5b8aac44ad01427b013f3aa7530c466c393b0433f
 SHA512 
6582fe36950aee8428c72582ff2eda2dae433ad969c323e0c6e8be611be7d81766ceb1cae85a10dcd4d266e33a0cf782fe857e1502d7f3863e0dfb2306af2aed
 DIST qtspeech-everywhere-opensource-src-5.15.5.tar.xz 103640 BLAKE2B 
330baa5fe9f3fdd085e804780f60682d82ff1a80596661162dbb521de4bcf1584340a882a03405b71c77c247454c28cc9fd37200536c08b9b566af9cf0981a30
 SHA512 
b2f3a83a462c1f067804f8c2c28e47e76588cc5d70e3f0ec66a1955890b6a419371a769ec6f8867947f4a81cfc91db3bc65c1d628038cdec6c722cbfc1217aba

diff --git a/dev-qt/qtspeech/qtspeech-5.15.4.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.4.ebuild
deleted file mode 100644
index a73f0796dd13..
--- a/dev-qt/qtspeech/qtspeech-5.15.4.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-QT5_KDEPATCHSET_REV=1
-inherit qt5-build
-
-DESCRIPTION="Text-to-speech library for the Qt5 framework"
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~ppc64 ~riscv x86"
-fi
-
-IUSE="alsa flite"
-
-RDEPEND="
-   >=app-accessibility/speech-dispatcher-0.8.7
-   =dev-qt/qtcore-${QT5_PV}*
-   flite? (
-   >=app-accessibility/flite-2[alsa?]
-   =dev-qt/qtmultimedia-${QT5_PV}*[alsa?]
-   alsa? ( media-libs/alsa-lib )
-   )
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   qt_use_disable_config flite flite \
-   src/plugins/tts/tts.pro
-
-   qt_use_disable_config alsa flite_alsa \
-   src/plugins/tts/flite/flite.pro
-
-   qt5-build_src_prepare
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2022-07-04 Thread Arthur Zamarin
commit: edbc94c349eb94b8e5cd694a0ce647363a305861
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Jul  4 17:59:42 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Jul  4 17:59:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edbc94c3

dev-qt/qtspeech: Stabilize 5.15.5 arm64, #853232

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.5.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.5.ebuild
index 0e48a33345f5..a73f0796dd13 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.5.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.5.ebuild
@@ -9,7 +9,7 @@ inherit qt5-build
 DESCRIPTION="Text-to-speech library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm ~arm64 ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ~ppc64 ~riscv x86"
 fi
 
 IUSE="alsa flite"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2022-07-02 Thread Sam James
commit: 15e95bafea0a91c8e5ecb08efc5420bb133c8965
Author: Sam James  gentoo  org>
AuthorDate: Sat Jul  2 18:25:26 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jul  2 18:25:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15e95baf

dev-qt/qtspeech: Stabilize 5.15.5 x86, #853232

Signed-off-by: Sam James  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.5.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.5.ebuild
index 215b248f32c0..90cafee0521b 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.5.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.5.ebuild
@@ -9,7 +9,7 @@ inherit qt5-build
 DESCRIPTION="Text-to-speech library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
 fi
 
 IUSE="alsa flite"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2022-06-30 Thread Sam James
commit: c1745f30ace8bd6261d8644aaf1bad30e517fde2
Author: Sam James  gentoo  org>
AuthorDate: Thu Jun 30 22:19:32 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jun 30 22:19:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1745f30

dev-qt/qtspeech: Stabilize 5.15.5 amd64, #853232

Signed-off-by: Sam James  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.5.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.5.ebuild
index 09fec6976129..215b248f32c0 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.5.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.5.ebuild
@@ -9,7 +9,7 @@ inherit qt5-build
 DESCRIPTION="Text-to-speech library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
 fi
 
 IUSE="alsa flite"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2022-06-19 Thread Andreas Sturmlechner
commit: c362b6fa51a17b1981eb6e33e795946dd5dbeb85
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jun 19 12:10:45 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jun 19 12:24:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c362b6fa

dev-qt/qtspeech: 5.15.5 version bump

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtspeech/Manifest   |  2 ++
 dev-qt/qtspeech/qtspeech-5.15.5.ebuild | 36 ++
 2 files changed, 38 insertions(+)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index c5eb7f4a3977..3ac02743348d 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,2 +1,4 @@
 DIST qtspeech-5.15.4-gentoo-kde-1.tar.xz 1036 BLAKE2B 
b842d09405198fee63d7ef54db26c683ec81319ae5fe48925349bec70e27019852259b80005d33a30b8462c573ab7e34308dc5d36c4ac0b99d273400eb7603f5
 SHA512 
5604f2c491ff9c5c1f65fa67d17d0aac37a6dfc6b188053bf338fbabdf00243c6a1f1d4ff07a3344de5241d1fca08d82768874d2888cd02d3a6a4a675ebc
+DIST qtspeech-5.15.5-gentoo-kde-1.tar.xz 1036 BLAKE2B 
6b8a8ccd2d69ed3f286dbeb00c0175c847768cf2f5256fdb3c655bada3fb39d6a5d65f539ffefbed06e8164e2d9e9914ed25d6757bd5eae7d4da002977a37650
 SHA512 
28983faaa642e35dd2d06bba308664a6598ef2fcf49a3841b38bd783504378f37407e3e24379c050c5c2afbaee5f457cf46cb79fadc304e0627a7dafd35cb818
 DIST qtspeech-everywhere-opensource-src-5.15.4.tar.xz 103820 BLAKE2B 
2c9fabcda61223ead3e3a7d51f4b28c86048fa4e1766b7c43fe5c41470782edfd6a9b1b784a50d69f40efbd5b8aac44ad01427b013f3aa7530c466c393b0433f
 SHA512 
6582fe36950aee8428c72582ff2eda2dae433ad969c323e0c6e8be611be7d81766ceb1cae85a10dcd4d266e33a0cf782fe857e1502d7f3863e0dfb2306af2aed
+DIST qtspeech-everywhere-opensource-src-5.15.5.tar.xz 103640 BLAKE2B 
330baa5fe9f3fdd085e804780f60682d82ff1a80596661162dbb521de4bcf1584340a882a03405b71c77c247454c28cc9fd37200536c08b9b566af9cf0981a30
 SHA512 
b2f3a83a462c1f067804f8c2c28e47e76588cc5d70e3f0ec66a1955890b6a419371a769ec6f8867947f4a81cfc91db3bc65c1d628038cdec6c722cbfc1217aba

diff --git a/dev-qt/qtspeech/qtspeech-5.15.5.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.5.ebuild
new file mode 100644
index ..09fec6976129
--- /dev/null
+++ b/dev-qt/qtspeech/qtspeech-5.15.5.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+QT5_KDEPATCHSET_REV=1
+inherit qt5-build
+
+DESCRIPTION="Text-to-speech library for the Qt5 framework"
+
+if [[ ${QT5_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+fi
+
+IUSE="alsa flite"
+
+RDEPEND="
+   >=app-accessibility/speech-dispatcher-0.8.7
+   =dev-qt/qtcore-${QT5_PV}*
+   flite? (
+   >=app-accessibility/flite-2[alsa?]
+   =dev-qt/qtmultimedia-${QT5_PV}*[alsa?]
+   alsa? ( media-libs/alsa-lib )
+   )
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   qt_use_disable_config flite flite \
+   src/plugins/tts/tts.pro
+
+   qt_use_disable_config alsa flite_alsa \
+   src/plugins/tts/flite/flite.pro
+
+   qt5-build_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2022-06-14 Thread Andreas Sturmlechner
commit: dd6c5c5c5a580e696be2c10d126c85c9e6fa379f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun 14 16:08:26 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun 14 17:31:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd6c5c5c

dev-qt/qtspeech: Drop 5.15.3

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtspeech/Manifest   |  2 --
 dev-qt/qtspeech/qtspeech-5.15.3.ebuild | 36 --
 2 files changed, 38 deletions(-)

diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest
index 0b04edd4437f..c5eb7f4a3977 100644
--- a/dev-qt/qtspeech/Manifest
+++ b/dev-qt/qtspeech/Manifest
@@ -1,4 +1,2 @@
-DIST qtspeech-5.15.3-gentoo-kde-1.tar.xz 1036 BLAKE2B 
8b648b77ed363060aa59bfcb8dcae81af1f9712e347b3f29969bb5a2a0b39087a8f469240c70f3bb9d2e371c70cac5a659f96fd3c34c02814bf619aa55fe8161
 SHA512 
0c0714b7a603eb7baa45af7fcbcb922750d38d4e5f8bba4426a7b5e5986fdaca4b3538ec4f5fd5f78df1e12892ad77713231cc1553cb875c1903f8ce0f61adc9
 DIST qtspeech-5.15.4-gentoo-kde-1.tar.xz 1036 BLAKE2B 
b842d09405198fee63d7ef54db26c683ec81319ae5fe48925349bec70e27019852259b80005d33a30b8462c573ab7e34308dc5d36c4ac0b99d273400eb7603f5
 SHA512 
5604f2c491ff9c5c1f65fa67d17d0aac37a6dfc6b188053bf338fbabdf00243c6a1f1d4ff07a3344de5241d1fca08d82768874d2888cd02d3a6a4a675ebc
-DIST qtspeech-everywhere-opensource-src-5.15.3.tar.xz 101852 BLAKE2B 
f6184e0bb28f480c7843aea772fa3bb59219dbff79213671051cf6b7322a14e8ad8f6bffdc190b5d0059695e6d780f6a97abc661a97d64bee55b5a919208eb44
 SHA512 
43790477887f533df9a1cfeb60194e171cbdbb79bce0f7d90228750219a67baa4b94a7f9d3833958bf7f9553f3f6302f980f269ce52c3756c116a61eae632a2a
 DIST qtspeech-everywhere-opensource-src-5.15.4.tar.xz 103820 BLAKE2B 
2c9fabcda61223ead3e3a7d51f4b28c86048fa4e1766b7c43fe5c41470782edfd6a9b1b784a50d69f40efbd5b8aac44ad01427b013f3aa7530c466c393b0433f
 SHA512 
6582fe36950aee8428c72582ff2eda2dae433ad969c323e0c6e8be611be7d81766ceb1cae85a10dcd4d266e33a0cf782fe857e1502d7f3863e0dfb2306af2aed

diff --git a/dev-qt/qtspeech/qtspeech-5.15.3.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.3.ebuild
deleted file mode 100644
index a73f0796dd13..
--- a/dev-qt/qtspeech/qtspeech-5.15.3.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-QT5_KDEPATCHSET_REV=1
-inherit qt5-build
-
-DESCRIPTION="Text-to-speech library for the Qt5 framework"
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm arm64 ~ppc64 ~riscv x86"
-fi
-
-IUSE="alsa flite"
-
-RDEPEND="
-   >=app-accessibility/speech-dispatcher-0.8.7
-   =dev-qt/qtcore-${QT5_PV}*
-   flite? (
-   >=app-accessibility/flite-2[alsa?]
-   =dev-qt/qtmultimedia-${QT5_PV}*[alsa?]
-   alsa? ( media-libs/alsa-lib )
-   )
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   qt_use_disable_config flite flite \
-   src/plugins/tts/tts.pro
-
-   qt_use_disable_config alsa flite_alsa \
-   src/plugins/tts/flite/flite.pro
-
-   qt5-build_src_prepare
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2022-06-14 Thread Sam James
commit: 9a56e6e0fe939c3940b9ee55a2998613f9ccd073
Author: Sam James  gentoo  org>
AuthorDate: Tue Jun 14 13:26:44 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jun 14 13:26:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a56e6e0

dev-qt/qtspeech: Stabilize 5.15.4 arm64, #843353

Signed-off-by: Sam James  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.4.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.4.ebuild
index 0e48a33345f5..a73f0796dd13 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.4.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.4.ebuild
@@ -9,7 +9,7 @@ inherit qt5-build
 DESCRIPTION="Text-to-speech library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm ~arm64 ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ~ppc64 ~riscv x86"
 fi
 
 IUSE="alsa flite"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2022-06-14 Thread Agostino Sarubbo
commit: fb2a685f1619dda8be2d323b243f2cc76bcc08d0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun 14 07:20:38 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun 14 07:21:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb2a685f

dev-qt/qtspeech: x86 stable wrt bug #843353

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.4.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.4.ebuild
index 22ad0ec07739..0e48a33345f5 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.4.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.4.ebuild
@@ -9,7 +9,7 @@ inherit qt5-build
 DESCRIPTION="Text-to-speech library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 arm ~arm64 ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 arm ~arm64 ~ppc64 ~riscv x86"
 fi
 
 IUSE="alsa flite"



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/

2022-06-13 Thread Sam James
commit: c4c4e2174ff810f077a688cdd1013ce08ca87cc2
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 13 21:18:15 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 13 21:18:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4c4e217

dev-qt/qtspeech: Stabilize 5.15.4 arm, #843353

Signed-off-by: Sam James  gentoo.org>

 dev-qt/qtspeech/qtspeech-5.15.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/qtspeech-5.15.4.ebuild 
b/dev-qt/qtspeech/qtspeech-5.15.4.ebuild
index 215b248f32c0..22ad0ec07739 100644
--- a/dev-qt/qtspeech/qtspeech-5.15.4.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.15.4.ebuild
@@ -9,7 +9,7 @@ inherit qt5-build
 DESCRIPTION="Text-to-speech library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 arm ~arm64 ~ppc64 ~riscv ~x86"
 fi
 
 IUSE="alsa flite"



  1   2   >