Gentoo Archives: gentoo-commits

From: Anna Vyalkova <cyber+gentoo@×××××.in>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-accessibility/speakup-tools/
Date: Mon, 05 Jul 2021 22:02:37
Message-Id: 1625522504.9b7665c4e64f48983fc2ce238720b4f05064087a.cybertailor@gentoo
1 commit: 9b7665c4e64f48983fc2ce238720b4f05064087a
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Mon Jul 5 21:53:50 2021 +0000
4 Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
5 CommitDate: Mon Jul 5 22:01:44 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9b7665c4
7
8 app-accessibility/speakup-tools: initial import
9
10 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
11
12 app-accessibility/speakup-tools/Manifest | 1 +
13 app-accessibility/speakup-tools/metadata.xml | 13 ++++++++++++
14 .../speakup-tools/speakup-tools-20121017.ebuild | 23 ++++++++++++++++++++++
15 3 files changed, 37 insertions(+)
16
17 diff --git a/app-accessibility/speakup-tools/Manifest b/app-accessibility/speakup-tools/Manifest
18 new file mode 100644
19 index 000000000..ab26639b0
20 --- /dev/null
21 +++ b/app-accessibility/speakup-tools/Manifest
22 @@ -0,0 +1 @@
23 +DIST speakup-tools-c4e89ab30116fbe22cb9fed4e22f4340fdbcfc4d.tar.gz 10830 BLAKE2B fe76362ecf7a14f2876128a340a5dcc5557503aad8ab03ee6174d8c73ca33b50079ec6932c8ee5eb577c5cdcb54aafb94a864cc5690d29e9e4dd4fca1c7e23e9 SHA512 e354b6db7aed703044931536f58fbb11fd6068d0a4795ae13041fdba14d83b71cbe4dabc002e3fbed38d96a1ae379926b6a0e8ce04f78defb30f35533ce0acf0
24
25 diff --git a/app-accessibility/speakup-tools/metadata.xml b/app-accessibility/speakup-tools/metadata.xml
26 new file mode 100644
27 index 000000000..80b0fdba1
28 --- /dev/null
29 +++ b/app-accessibility/speakup-tools/metadata.xml
30 @@ -0,0 +1,13 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="person">
35 + <email>cyber+gentoo@×××××.in</email>
36 + <name>Anna</name>
37 + </maintainer>
38 + <longdescription>
39 + - speakupconf allows one to save and restore speakup's customizable variables.
40 + - speakup_setlocale allows one to choose another language so that speakup's messages are localized.
41 + - talkwith allows one to easily switch between speech synthesizers.
42 + </longdescription>
43 +</pkgmetadata>
44
45 diff --git a/app-accessibility/speakup-tools/speakup-tools-20121017.ebuild b/app-accessibility/speakup-tools/speakup-tools-20121017.ebuild
46 new file mode 100644
47 index 000000000..a28837452
48 --- /dev/null
49 +++ b/app-accessibility/speakup-tools/speakup-tools-20121017.ebuild
50 @@ -0,0 +1,23 @@
51 +# Copyright 2021 Gentoo Authors
52 +# Distributed under the terms of the GNU General Public License v2
53 +
54 +EAPI=8
55 +
56 +COMMIT="c4e89ab30116fbe22cb9fed4e22f4340fdbcfc4d"
57 +DESCRIPTION="Tools to customize speakup module"
58 +HOMEPAGE="https://salsa.debian.org/a11y-team/speakup-tools"
59 +SRC_URI="https://salsa.debian.org/a11y-team/${PN}/-/archive/${COMMIT}/${PN}-${COMMIT}.tar.gz"
60 +S="${WORKDIR}/${PN}-${COMMIT}"
61 +
62 +LICENSE="GPL-2+"
63 +SLOT="0"
64 +KEYWORDS="~amd64 ~x86"
65 +
66 +src_compile() {
67 + :
68 +}
69 +
70 +src_install() {
71 + emake DESTDIR="${D}" prefix="${EPREFIX}"/usr install
72 + einstalldocs
73 +}