Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeakup/
Date: Sat, 01 May 2021 21:24:21
Message-Id: 1619904115.afb8a6ab11f0556951f1fcb736b10425f0250ace.asturm@gentoo
1 commit: afb8a6ab11f0556951f1fcb736b10425f0250ace
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 1 21:13:31 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat May 1 21:21:55 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afb8a6ab
7
8 app-accessibility/espeakup: Drop 0.71-r1, EAPI5--
9
10 Closes: https://bugs.gentoo.org/756868
11 Package-Manager: Portage-3.0.18, Repoman-3.0.3
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 app-accessibility/espeakup/Manifest | 1 -
15 app-accessibility/espeakup/espeakup-0.71-r1.ebuild | 58 ----------------------
16 2 files changed, 59 deletions(-)
17
18 diff --git a/app-accessibility/espeakup/Manifest b/app-accessibility/espeakup/Manifest
19 index fb8ddde4731..f0ff5a95917 100644
20 --- a/app-accessibility/espeakup/Manifest
21 +++ b/app-accessibility/espeakup/Manifest
22 @@ -1,2 +1 @@
23 -DIST espeakup-0.71.tar.bz2 24663 BLAKE2B b5cae80e7a6d45e599dd03680da398cc9db8eb98d0140d8e71aa5047607484401c3906386627810e3ff78a244c9c0e16383675fdd845802225fdb32c8b2a3dbd SHA512 01091560cd4843897fa6925a54b4c856fe57ed5728ddc0c091c93b1ae14eb2f4d07ab2247e40bd5a5968cc22ee3696abfe1b28f67b95aa7ab61e33667c51135d
24 DIST espeakup-0.80.tar.gz 39626 BLAKE2B f36d9776b954e73fd2bc33c7ba97dd323184480549b667ac2afc4dc40a8b98089b8ced16e8b1cb33e6b4c586df27a8d6f782236ef8770bc98a530665e257edcf SHA512 1b7e2bd46c3c13a5305746d2d2810ec94a8660f561e4f679ee4779be1b22178f8ac7de42d626d649710509f7b087b9a2f94608bde203d1bcd6d353229ed9ff83
25
26 diff --git a/app-accessibility/espeakup/espeakup-0.71-r1.ebuild b/app-accessibility/espeakup/espeakup-0.71-r1.ebuild
27 deleted file mode 100644
28 index 4b368250095..00000000000
29 --- a/app-accessibility/espeakup/espeakup-0.71-r1.ebuild
30 +++ /dev/null
31 @@ -1,58 +0,0 @@
32 -# Copyright 1999-2016 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -
37 -inherit linux-info
38 -
39 -DESCRIPTION="espeakup is a small lightweight connector for espeak and speakup"
40 -HOMEPAGE="http://www.linux-speakup.org"
41 -SRC_URI="mirror://gentoo/${P}.tar.bz2"
42 -
43 -LICENSE="GPL-3"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -IUSE=""
47 -
48 -COMMON_DEPEND="|| (
49 - app-accessibility/espeak[portaudio]
50 - app-accessibility/espeak[pulseaudio] )"
51 -DEPEND="${COMMON_DEPEND}"
52 -RDEPEND="${COMMON_DEPEND}"
53 -
54 -CONFIG_CHECK="~SPEAKUP ~SPEAKUP_SYNTH_SOFT"
55 -ERROR_SPEAKUP="CONFIG_SPEAKUP is not enabled in this kernel!"
56 -ERROR_SPEAKUP_SYNTH_SOFT="CONFIG_SPEAKUP_SYNTH_SOFT is not enabled in this kernel!"
57 -
58 -pkg_setup() {
59 - if kernel_is -ge 2 6 37; then
60 - check_extra_config
61 - elif ! has_version app-accessibility/speakup; then
62 - ewarn "Cannot find speakup on your system."
63 - ewarn "Please upgrade your kernel to 2.6.37 or later and enable the"
64 - ewarn "CONFIG_SPEAKUP and CONFIG_SPEAKUP_SYNTH_SOFT options"
65 - ewarn "or install app-accessibility/speakup."
66 - fi
67 -}
68 -
69 -src_compile() {
70 - emake
71 -}
72 -
73 -src_install() {
74 - emake DESTDIR="${D}" install
75 - dodoc ChangeLog README ToDo
76 - newconfd "${FILESDIR}"/espeakup.confd espeakup
77 - newinitd "${FILESDIR}"/espeakup.rc espeakup
78 -}
79 -
80 -pkg_postinst() {
81 - elog "To get espeakup to start automatically, it is currently recommended"
82 - elog "that you add it to the default run level, by giving the following"
83 - elog "command as root."
84 - elog
85 - elog "rc-update add espeakup default"
86 - elog
87 - elog "You can also set a default voice now for espeakup."
88 - elog "See /etc/conf.d/espeakup for how to do this."
89 -}