Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/terminology/
Date: Tue, 30 Jul 2019 15:48:31
Message-Id: 1564501689.c11d964a45fd9c241a305cb71f6fbbbef02eafa3.juippis@gentoo
1 commit: c11d964a45fd9c241a305cb71f6fbbbef02eafa3
2 Author: Joonas Niilola <juippis <AT> gmail <DOT> com>
3 AuthorDate: Mon Jul 22 16:25:41 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 30 15:48:09 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c11d964a
7
8 x11-terms/terminology: bump to 1.5.0
9
10 Package-Manager: Portage-2.3.68, Repoman-2.3.16
11 Signed-off-by: Joonas Niilola <juippis <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/12495
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 x11-terms/terminology/Manifest | 1 +
16 x11-terms/terminology/terminology-1.5.0.ebuild | 44 ++++++++++++++++++++++++++
17 2 files changed, 45 insertions(+)
18
19 diff --git a/x11-terms/terminology/Manifest b/x11-terms/terminology/Manifest
20 index 82fccce6217..447ce302724 100644
21 --- a/x11-terms/terminology/Manifest
22 +++ b/x11-terms/terminology/Manifest
23 @@ -1,2 +1,3 @@
24 DIST terminology-1.4.0.tar.xz 4878656 BLAKE2B 7e6b41e1057aa245c9cbcbdf164efd68cef7d3bc92706d10d100bface25a7e29468512ee690795e9f09242b644d80215239f761fe7216ea5d768f48259436778 SHA512 c7fd6605c00983e79a647b1e577868e5d2b713321164cb0ee8ef4b4a4155bf320f3e145ce91ecf1d3b0c40f28ae360b96798e47fd11accfa230932cfbd9e5c9e
25 DIST terminology-1.4.1.tar.xz 4878484 BLAKE2B a8ec1a6f3a80057316c6c90ea60c2a273702dfbe7dae70fac649c9bbe3245ea8fbacc625a9b9430dbb969cc02b79792f189ea1c16b2ebc0dee9eeb0242dda8f4 SHA512 5756b09aa0f92f9e1fea17d399eca161272a8514e29343873024b9727eaaeeca0b7efe465c01e42cd548b37cf0da7d99733a789921093700519f80a2952f0706
26 +DIST terminology-1.5.0.tar.xz 4884284 BLAKE2B fff45958207bd6e06b8685ebe42ca734b183da9042940b773e15308200c27307f417a930a687c187a5f24f1eab9d1b7a518314b3cd919d260bb05369a2f2236c SHA512 ade2363e0a834b25a67157d0cfa946b3b09d8a2941fd7da9dd3792cf8d201f218c7723b691eab325d9bdadeefddfea56c19e562ebc37466cb3a9b3b45c9f708b
27
28 diff --git a/x11-terms/terminology/terminology-1.5.0.ebuild b/x11-terms/terminology/terminology-1.5.0.ebuild
29 new file mode 100644
30 index 00000000000..65b045e742a
31 --- /dev/null
32 +++ b/x11-terms/terminology/terminology-1.5.0.ebuild
33 @@ -0,0 +1,44 @@
34 +# Copyright 1999-2019 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +inherit meson xdg-utils
40 +
41 +DESCRIPTION="Feature rich terminal emulator using the Enlightenment Foundation Libraries"
42 +HOMEPAGE="https://www.enlightenment.org/about-terminology"
43 +SRC_URI="https://download.enlightenment.org/rel/apps/${PN}/${P}.tar.xz"
44 +
45 +LICENSE="BSD-2"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
48 +IUSE="extras nls"
49 +
50 +RDEPEND="
51 + || ( dev-libs/efl[gles2] dev-libs/efl[opengl] )
52 + || ( dev-libs/efl[X] dev-libs/efl[wayland] )
53 + app-arch/lz4
54 + dev-libs/efl[eet,fontconfig]
55 +"
56 +DEPEND="${RDEPEND}"
57 +BDEPEND="
58 + virtual/pkgconfig
59 + nls? ( sys-devel/gettext )
60 +"
61 +
62 +src_configure() {
63 + local emesonargs=(
64 + $(meson_use nls)
65 + $(meson_use extras tests)
66 + )
67 +
68 + meson_src_configure
69 +}
70 +
71 +pkg_postinst() {
72 + xdg_icon_cache_update
73 +}
74 +
75 +pkg_postrm() {
76 + xdg_icon_cache_update
77 +}