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, 04 Jan 2022 16:19:27
Message-Id: 1641313156.2a74d585403c1722aed194351ab8700300f02e69.juippis@gentoo
1 commit: 2a74d585403c1722aed194351ab8700300f02e69
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 4 16:09:19 2022 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 4 16:19:16 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a74d585
7
8 x11-terms/terminology: add 1.12.1
9
10 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
11
12 x11-terms/terminology/Manifest | 1 +
13 x11-terms/terminology/terminology-1.12.1.ebuild | 47 +++++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/x11-terms/terminology/Manifest b/x11-terms/terminology/Manifest
17 index 58e9a7146a0e..bb0226c076fc 100644
18 --- a/x11-terms/terminology/Manifest
19 +++ b/x11-terms/terminology/Manifest
20 @@ -1 +1,2 @@
21 DIST terminology-1.11.0.tar.xz 4984128 BLAKE2B 059de50cd9e4c94f628e992f44909a1f2dcd79ce01c48cbde2f043f08a2e22c6ded1e7de61f84bd8b37961191501a4ec32ca027c32994a1d7b1929a2270c977e SHA512 9c26c383760a497cc9bbb36aa8bd154599a708cb6bbede26fc2f5c6d6459a51d566066c4d9b64198afaadd94463ce83bca4b392551fd4ff3e68d8a4383d6c403
22 +DIST terminology-1.12.1.tar.xz 2722144 BLAKE2B ce6eea2fd6efe8a4a6d654f8e7899336b3bb7a1d2f1728c2ac2f1b367972c8b222e665309e2b704dd1f3bb774784d218789bcd8134348893a265c0e50fa855d9 SHA512 036f1e516d5f9c44185fc417266022bb4a3c34839451b2bd7ab64c9610e71cd1690faee014cf8364ceac12261cb9b57501446a3e6e58ac13f98f11064498a43b
23
24 diff --git a/x11-terms/terminology/terminology-1.12.1.ebuild b/x11-terms/terminology/terminology-1.12.1.ebuild
25 new file mode 100644
26 index 000000000000..68b2732bf05b
27 --- /dev/null
28 +++ b/x11-terms/terminology/terminology-1.12.1.ebuild
29 @@ -0,0 +1,47 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +
37 +inherit meson python-any-r1 xdg
38 +
39 +DESCRIPTION="Feature rich terminal emulator using the Enlightenment Foundation Libraries"
40 +HOMEPAGE="https://www.enlightenment.org/about-terminology"
41 +SRC_URI="https://download.enlightenment.org/rel/apps/terminology/${P}.tar.xz https://downloads.terminolo.gy/${P}.tar.xz"
42 +
43 +LICENSE="BSD-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
46 +IUSE="extras nls"
47 +
48 +RDEPEND="|| ( dev-libs/efl[X,opengl] dev-libs/efl[wayland] )
49 + app-arch/lz4
50 + >=dev-libs/efl-1.26.1[eet,fontconfig]"
51 +DEPEND="${RDEPEND}"
52 +BDEPEND="${PYTHON_DEPS}
53 + virtual/libintl
54 + virtual/pkgconfig
55 + nls? ( sys-devel/gettext )"
56 +
57 +pkg_setup() {
58 + python-any-r1_pkg_setup
59 +}
60 +
61 +src_prepare() {
62 + default
63 +
64 + # Fix python shebangs for python-exec[-native-symlinks], #766081
65 + local shebangs=($(grep -rl "#!/usr/bin/env python3" || die))
66 + python_fix_shebang -q ${shebangs[*]}
67 +}
68 +
69 +src_configure() {
70 + local emesonargs=(
71 + $(meson_use nls)
72 + $(meson_use extras tests)
73 + )
74 +
75 + meson_src_configure
76 +}