commit:     8c1c34d92c80bcfd362a933bf9b5e558aecd6aa9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 10 04:26:37 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 10 04:35:04 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c1c34d9

app-accessibility/speech-dispatcher: drop 0.11.2, 0.11.3

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-accessibility/speech-dispatcher/Manifest       |   1 -
 .../speech-dispatcher-0.11.2.ebuild                | 122 ---------------------
 .../speech-dispatcher-0.11.3.ebuild                | 122 ---------------------
 3 files changed, 245 deletions(-)

diff --git a/app-accessibility/speech-dispatcher/Manifest 
b/app-accessibility/speech-dispatcher/Manifest
index 6fb24297eea4..531b5d4f6a1d 100644
--- a/app-accessibility/speech-dispatcher/Manifest
+++ b/app-accessibility/speech-dispatcher/Manifest
@@ -1,3 +1,2 @@
-DIST speech-dispatcher-0.11.2.tar.gz 7147526 BLAKE2B 
6b11949736275d900e5e1d3909fab51fc04fbb45baf470a4c98aed19f61b7adb8cedf6b11f1a1aa69d9625383627beab4122c74ec78d9c07a5d0ddf4646669d6
 SHA512 
038ecaa5b9d56e3f915ec49fe7768cb4eebe1c8be79b95635f09fb3f6067e4c0ade13d2dd355e0b326579dcdf509dd180889b27282410b6bb252a2f642f028d4
 DIST speech-dispatcher-0.11.3.tar.gz 7150632 BLAKE2B 
92bad589e453a243362a9e0142d2897b9651fa648012f2bd7ef00bc1ded389fd2c01b6f38f19002289357f7aa6361a6e7fa3ee35ec2ad7c044f34d87e7f2c409
 SHA512 
e9f5b862066c0292230fda32f16782f9a2d66e8d0c0e3aa0ccdb4628c1182661d2f40894f480ae5206af7fbbc49338189312afe02092f5d472095b053afd75c7
 DIST speech-dispatcher-0.11.4.tar.gz 7127323 BLAKE2B 
651a20ec403c6158756ab6ff7fbedb38ce1cec413be49367128274c8d20ccc7080a2dccd68cb7ebbec6bab05599f06a4aafc561e4e5e53cf52d19fa1b94fa286
 SHA512 
d0ebe832e2586abdb1284be36f8427cfbbd94f1a2dead1b74526b151e9529f9e61679339274b73afab5f829d184337372ba0aad93d880c42d2a6a1bcb2b7afef

diff --git 
a/app-accessibility/speech-dispatcher/speech-dispatcher-0.11.2.ebuild 
b/app-accessibility/speech-dispatcher/speech-dispatcher-0.11.2.ebuild
deleted file mode 100644
index e2948724ba0f..000000000000
--- a/app-accessibility/speech-dispatcher/speech-dispatcher-0.11.2.ebuild
+++ /dev/null
@@ -1,122 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit python-r1 systemd
-
-DESCRIPTION="Speech synthesis interface"
-HOMEPAGE="https://freebsoft.org/speechd";
-SRC_URI="https://github.com/brailcom/speechd/releases/download/${PV}/${P}.tar.gz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc x86"
-IUSE="alsa ao espeak +espeak-ng flite nas pulseaudio python"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-DEPEND="python? ( ${PYTHON_DEPS} )
-       >=dev-libs/dotconf-1.3
-       >=dev-libs/glib-2.36:2
-       >=media-libs/libsndfile-1.0.2
-       alsa? ( media-libs/alsa-lib )
-       ao? ( media-libs/libao )
-       espeak? ( app-accessibility/espeak )
-       espeak-ng? ( app-accessibility/espeak-ng )
-       flite? ( app-accessibility/flite )
-       nas? ( media-libs/nas )
-       pulseaudio? ( media-sound/pulseaudio )"
-RDEPEND="${DEPEND}
-       python? ( dev-python/pyxdg[${PYTHON_USEDEP}] )"
-BDEPEND="
-       sys-apps/help2man
-       >=sys-devel/gettext-0.19.8
-       virtual/pkgconfig"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-0.11.1-include-pthread_h.patch
-)
-
-src_configure() {
-       # bug 573732
-       export GIT_CEILING_DIRECTORIES="${WORKDIR}"
-
-       local myeconfargs=(
-               --disable-ltdl
-               --disable-python
-               --disable-static
-               --with-baratinoo=no
-               --with-ibmtts=no
-               --with-kali=no
-               --with-pico=no
-               --with-voxin=no
-               $(use_with alsa)
-               $(use_with ao libao)
-               $(use_with espeak)
-               $(use_with espeak-ng)
-               $(use_with flite)
-               $(use_with nas)
-               $(use_with pulseaudio pulse)
-               --with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
-       )
-       econf "${myeconfargs[@]}"
-}
-
-src_compile() {
-       use python && python_copy_sources
-
-       emake
-
-       if use python; then
-               building() {
-                       cd src/api/python || die
-                       emake \
-                               pyexecdir="$(python_get_sitedir)" \
-                               pythondir="$(python_get_sitedir)"
-               }
-               python_foreach_impl run_in_build_dir building
-       fi
-}
-
-src_install() {
-       default
-
-       if use python; then
-               installation() {
-                       cd src/api/python || die
-                       emake \
-                               DESTDIR="${D}" \
-                               pyexecdir="$(python_get_sitedir)" \
-                               pythondir="$(python_get_sitedir)" \
-                               install
-               }
-               python_foreach_impl run_in_build_dir installation
-               python_replicate_script "${ED}"/usr/bin/spd-conf
-               python_foreach_impl python_optimize
-       fi
-
-       find "${D}" -name '*.la' -type f -delete || die
-}
-
-pkg_postinst() {
-       local editconfig="n"
-       if ! use espeak-ng; then
-               ewarn "You have disabled espeak-ng, which is 
speech-dispatcher's"
-               ewarn "default speech synthesizer."
-               ewarn
-               editconfig="y"
-       fi
-       if ! use pulseaudio; then
-               ewarn "You have disabled pulseaudio support."
-               ewarn "pulseaudio is speech-dispatcher's default audio 
subsystem."
-               ewarn
-               editconfig="y"
-       fi
-       if [[ "${editconfig}" == "y" ]]; then
-               ewarn "You must edit 
${EROOT}/etc/speech-dispatcher/speechd.conf"
-               ewarn "and make sure the settings there match your system."
-               ewarn
-       fi
-}

diff --git 
a/app-accessibility/speech-dispatcher/speech-dispatcher-0.11.3.ebuild 
b/app-accessibility/speech-dispatcher/speech-dispatcher-0.11.3.ebuild
deleted file mode 100644
index c55d7ced1ded..000000000000
--- a/app-accessibility/speech-dispatcher/speech-dispatcher-0.11.3.ebuild
+++ /dev/null
@@ -1,122 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-inherit python-r1 systemd
-
-DESCRIPTION="Speech synthesis interface"
-HOMEPAGE="https://freebsoft.org/speechd";
-SRC_URI="https://github.com/brailcom/speechd/releases/download/${PV}/${P}.tar.gz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv 
~sparc ~x86"
-IUSE="alsa ao espeak +espeak-ng flite nas pulseaudio python"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-DEPEND="python? ( ${PYTHON_DEPS} )
-       >=dev-libs/dotconf-1.3
-       >=dev-libs/glib-2.36:2
-       >=media-libs/libsndfile-1.0.2
-       alsa? ( media-libs/alsa-lib )
-       ao? ( media-libs/libao )
-       espeak? ( app-accessibility/espeak )
-       espeak-ng? ( app-accessibility/espeak-ng )
-       flite? ( app-accessibility/flite )
-       nas? ( media-libs/nas )
-       pulseaudio? ( media-sound/pulseaudio )"
-RDEPEND="${DEPEND}
-       python? ( dev-python/pyxdg[${PYTHON_USEDEP}] )"
-BDEPEND="
-       sys-apps/help2man
-       >=sys-devel/gettext-0.19.8
-       virtual/pkgconfig"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-0.11.1-include-pthread_h.patch
-)
-
-src_configure() {
-       # bug 573732
-       export GIT_CEILING_DIRECTORIES="${WORKDIR}"
-
-       local myeconfargs=(
-               --disable-ltdl
-               --disable-python
-               --disable-static
-               --with-baratinoo=no
-               --with-ibmtts=no
-               --with-kali=no
-               --with-pico=no
-               --with-voxin=no
-               $(use_with alsa)
-               $(use_with ao libao)
-               $(use_with espeak)
-               $(use_with espeak-ng)
-               $(use_with flite)
-               $(use_with nas)
-               $(use_with pulseaudio pulse)
-               --with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
-       )
-       econf "${myeconfargs[@]}"
-}
-
-src_compile() {
-       use python && python_copy_sources
-
-       emake
-
-       if use python; then
-               building() {
-                       cd src/api/python || die
-                       emake \
-                               pyexecdir="$(python_get_sitedir)" \
-                               pythondir="$(python_get_sitedir)"
-               }
-               python_foreach_impl run_in_build_dir building
-       fi
-}
-
-src_install() {
-       default
-
-       if use python; then
-               installation() {
-                       cd src/api/python || die
-                       emake \
-                               DESTDIR="${D}" \
-                               pyexecdir="$(python_get_sitedir)" \
-                               pythondir="$(python_get_sitedir)" \
-                               install
-               }
-               python_foreach_impl run_in_build_dir installation
-               python_replicate_script "${ED}"/usr/bin/spd-conf
-               python_foreach_impl python_optimize
-       fi
-
-       find "${D}" -name '*.la' -type f -delete || die
-}
-
-pkg_postinst() {
-       local editconfig="n"
-       if ! use espeak-ng; then
-               ewarn "You have disabled espeak-ng, which is 
speech-dispatcher's"
-               ewarn "default speech synthesizer."
-               ewarn
-               editconfig="y"
-       fi
-       if ! use pulseaudio; then
-               ewarn "You have disabled pulseaudio support."
-               ewarn "pulseaudio is speech-dispatcher's default audio 
subsystem."
-               ewarn
-               editconfig="y"
-       fi
-       if [[ "${editconfig}" == "y" ]]; then
-               ewarn "You must edit 
${EROOT}/etc/speech-dispatcher/speechd.conf"
-               ewarn "and make sure the settings there match your system."
-               ewarn
-       fi
-}

Reply via email to