Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/translate-shell/
Date: Sun, 11 Feb 2018 21:25:24
Message-Id: 1518384131.570f062a955e9c25f6ebe4d0676ce98aa6a52ead.mgorny@gentoo
1 commit: 570f062a955e9c25f6ebe4d0676ce98aa6a52ead
2 Author: Ferenc Erki <erkiferenc <AT> gmail <DOT> com>
3 AuthorDate: Thu Feb 8 06:24:18 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 11 21:22:11 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=570f062a
7
8 app-i18n/translate-shell: bump version to 0.9.6.6
9
10 Closes: https://bugs.gentoo.org/617230
11 Package-Manager: Portage-2.3.19, Repoman-2.3.6
12
13 app-i18n/translate-shell/Manifest | 1 +
14 .../translate-shell/translate-shell-0.9.6.6.ebuild | 33 ++++++++++++++++++++++
15 2 files changed, 34 insertions(+)
16
17 diff --git a/app-i18n/translate-shell/Manifest b/app-i18n/translate-shell/Manifest
18 index b1e19f97f94..9e4183b4655 100644
19 --- a/app-i18n/translate-shell/Manifest
20 +++ b/app-i18n/translate-shell/Manifest
21 @@ -1 +1,2 @@
22 DIST translate-shell-0.9.6.2.tar.gz 69544 BLAKE2B b49a2c6d7101f5063c8c548c2dcd26ed8b5a310d5e723293b8082bb1bdffbb926fb6f0050953825c9fc4567880cfbf1e9956236db3c28b176db851983c743d0d SHA512 a7bd3fba43485a22c2fdd4261c24579b03aeafefa40863c3b8eb1c814a167b9a6f5700086c1cd411063c66c169875b96d2634ed04f45beb6d53b4725eb7fbea9
23 +DIST translate-shell-0.9.6.6.tar.gz 73189 BLAKE2B ad4de403f2c95a1e4de5c963cb017f5a744f08d3bb8256dcc22f28c0916f6a0e693bce171a5dc500de5353c954bab7681f1227df9e48be286ad5aa07c5d06fa4 SHA512 c5451e537f44e325ee2f59d54942f91b8e2ccc0e322c42a2c4a0e98b8a933fe0630798a45e6f587ad5aee2cbb092204710ae36779c94b8333376a8072678d868
24
25 diff --git a/app-i18n/translate-shell/translate-shell-0.9.6.6.ebuild b/app-i18n/translate-shell/translate-shell-0.9.6.6.ebuild
26 new file mode 100644
27 index 00000000000..30db5d91657
28 --- /dev/null
29 +++ b/app-i18n/translate-shell/translate-shell-0.9.6.6.ebuild
30 @@ -0,0 +1,33 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=5
35 +
36 +DESCRIPTION="Online command-line translator"
37 +HOMEPAGE="https://www.soimort.org/translate-shell/"
38 +SRC_URI="https://github.com/soimort/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
39 +
40 +LICENSE="public-domain"
41 +SLOT="0"
42 +KEYWORDS="~amd64"
43 +IUSE="+curl +bidi test tts"
44 +
45 +RDEPEND="
46 + app-misc/rlwrap
47 + >=sys-apps/gawk-4.0.2
48 + curl? ( net-misc/curl[ssl] )
49 + bidi? ( dev-libs/fribidi )
50 + tts? ( || (
51 + media-sound/mpg123
52 + app-accessibility/espeak
53 + media-video/mpv
54 + media-video/mplayer
55 + )
56 + )"
57 +DEPEND="${RDEPEND}
58 + test? ( app-editors/emacs )
59 + "
60 +
61 +src_install() {
62 + emake PREFIX="${D}/usr" install
63 +}