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: x11-terms/terminology/
Date: Wed, 13 Jun 2018 12:15:37
Message-Id: 1528892129.add0479c72115113c1e3769134093f5c34e1df3f.mgorny@gentoo
1 commit: add0479c72115113c1e3769134093f5c34e1df3f
2 Author: Joonas Niilola <juippis <AT> gmail <DOT> com>
3 AuthorDate: Tue Jun 12 12:31:30 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 13 12:15:29 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=add0479c
7
8 x11-terms/terminology: bump to 1.1.0
9
10 Package-Manager: Portage[mgorny]-2.3.36.1
11 Closes: https://github.com/gentoo/gentoo/pull/8812
12
13 x11-terms/terminology/Manifest | 1 +
14 x11-terms/terminology/terminology-1.1.0.ebuild | 28 ++++++++++++++++++++++++++
15 2 files changed, 29 insertions(+)
16
17 diff --git a/x11-terms/terminology/Manifest b/x11-terms/terminology/Manifest
18 index 4941e768d02..59a2b4e4b00 100644
19 --- a/x11-terms/terminology/Manifest
20 +++ b/x11-terms/terminology/Manifest
21 @@ -1,3 +1,4 @@
22 DIST terminology-0.9.1.tar.xz 4961876 BLAKE2B 03aab7c5c0740bede4c06b90721d96c121500009b6dd939387e8bd3dae160b4c705cf95a724dd8cc404badc9b9d5f22a5321312f229dd488331e4c4c1e2b0844 SHA512 c6db9fa62f3f168be635da1e3ed7a13deba13cbfa5bed75e3f97ee6e13837ca9cb5facab48c44f200baed34b8f32f852eadd9844de648795733602602fae32fd
23 DIST terminology-1.0.0.tar.xz 4979420 BLAKE2B cbc78b751a2e6812ab31c69a62ea4abe2bb53f12b647cea7adae03e54fe0a238c56c5c029c43057c3a1326c7c8af0412574a85a404896554a142ed068ab581ab SHA512 5c99e1e1eea0de24d67779059d3ba65a8fbd1fdf63d9f22099e38defc11fdc8923fbe50a7276bc483ce5ee7527f665e3f2c48358d85c3a06f33e551bd8ef2320
24 +DIST terminology-1.1.0.tar.xz 4989512 BLAKE2B b2bcc22a63d25517aa4dd223b914a784d8c4c87ce9d971dff20b9f66b3ff0d2667babc053f3e1923d0bcaa5508902b824302420c0731173c96136d2071400f61 SHA512 ad4ecc6d51a6a124e90eb63d887d5f742500944747b469239366732587510717a227aa41a90089911cf1ac5b289228880619726ae95688de9a92972d554bf95d
25 DIST terminology-1.2.1.tar.xz 4858528 BLAKE2B 953917ed9dac9d17048d19394e6d8b38fd1673bc618cd1ecb596eee7b889f973b5622ef9d3424bc9f94928f44129062a7a4f88cdb2af519b87aeb141661902bc SHA512 8485d38a5426ac0f32b3cb049170bfa015a9f648134973462d72412b291b160f05b6ccfb3ba47115740946c8d87160401d55672a6853027d0cc216bdc7cc659b
26
27 diff --git a/x11-terms/terminology/terminology-1.1.0.ebuild b/x11-terms/terminology/terminology-1.1.0.ebuild
28 new file mode 100644
29 index 00000000000..ddf20a904f2
30 --- /dev/null
31 +++ b/x11-terms/terminology/terminology-1.1.0.ebuild
32 @@ -0,0 +1,28 @@
33 +# Copyright 1999-2018 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +DESCRIPTION="Feature rich terminal emulator using the Enlightenment Foundation Libraries"
39 +HOMEPAGE="https://www.enlightenment.org/about-terminology"
40 +SRC_URI="https://download.enlightenment.org/rel/apps/${PN}/${P}.tar.xz"
41 +
42 +LICENSE="BSD-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE="nls"
46 +
47 +RDEPEND=">=dev-libs/efl-1.18.0[eet,X]"
48 +DEPEND="
49 + ${RDEPEND}
50 + virtual/pkgconfig
51 + nls? ( sys-devel/gettext )
52 +"
53 +
54 +src_configure() {
55 + local myconf=(
56 + $(use_enable nls)
57 + )
58 +
59 + econf "${myconf[@]}"
60 +}