Gentoo Archives: gentoo-commits

From: Haelwenn Monnier <contact@×××××××××.me>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: gui-apps/foot/
Date: Sat, 26 Jun 2021 10:53:39
Message-Id: 1624644744.e7adc84ca0c995ce1613a09f41210ca6c5fbf916.lanodan@gentoo
1 commit: e7adc84ca0c995ce1613a09f41210ca6c5fbf916
2 Author: Ryan Fox <flewkey <AT> 2a03 <DOT> party>
3 AuthorDate: Fri Jun 25 18:12:24 2021 +0000
4 Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
5 CommitDate: Fri Jun 25 18:12:24 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e7adc84c
7
8 gui-apps/foot: Bump to 1.8.0
9
10 Grapheme clustering is here!
11
12 Package-Manager: Portage-3.0.20, Repoman-3.0.2
13 Signed-off-by: Ryan Fox <flewkey <AT> 2a03.party>
14
15 gui-apps/foot/Manifest | 1 +
16 gui-apps/foot/foot-1.8.0.ebuild | 56 +++++++++++++++++++++++++++++++++++++++++
17 gui-apps/foot/metadata.xml | 1 +
18 3 files changed, 58 insertions(+)
19
20 diff --git a/gui-apps/foot/Manifest b/gui-apps/foot/Manifest
21 index 1e2f3954a..b47794767 100644
22 --- a/gui-apps/foot/Manifest
23 +++ b/gui-apps/foot/Manifest
24 @@ -1,2 +1,3 @@
25 DIST foot-1.7.1.tar.gz 390533 BLAKE2B 5eac8041ac5f46b71d8037550bcdd14899071e63fc4a9c6eabe2c44d336e3339e7dbf8b487ff79aa09a6f73378d1faca140fedbf864fdf641a0706c0b9c7912a SHA512 fa6961b24ef7929378c796a77547f509bc2ff319b3b546be8fad31dd02f2686771d2d4a0c72792746e004052fc032f180eb716cb45e2ebbf549859f1b7de7420
26 DIST foot-1.7.2.tar.gz 392748 BLAKE2B effd72665c553fbf3687fdb17776b264a775311503d974d12b5de4f4b7d1b835755824781a345f29f4866a33f449c61990830452bdca101952ff8c490e37b5f2 SHA512 2acb46daca5840b3a9fb0fc7055f9234618d7d6884ce74fee382f3904136a85f5c17f7119449fd7943dba2ccce2dde9a62d13a1b363ee234765b6ab65d95e19b
27 +DIST foot-1.8.0.tar.gz 415924 BLAKE2B ec97a6b76f568770fd9011e2245aee9b96c8fc51fb11f022ce7cc8a40bae81d45172e5e435aeab4575a8123825481fe3537376ac700f7036ea4e7079a0844eac SHA512 eb0e0c1b29490f60b241259819bb2e7ab4b847e1d5a1fe70a31e893d8588e82f04f184d88a91e77222aba6fb9473f10e20461278535b6de4c2f3345440354583
28
29 diff --git a/gui-apps/foot/foot-1.8.0.ebuild b/gui-apps/foot/foot-1.8.0.ebuild
30 new file mode 100644
31 index 000000000..6b651ea1a
32 --- /dev/null
33 +++ b/gui-apps/foot/foot-1.8.0.ebuild
34 @@ -0,0 +1,56 @@
35 +# Copyright 1999-2021 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +inherit meson xdg
41 +
42 +if [[ ${PV} != *9999* ]]; then
43 + SRC_URI="https://codeberg.org/dnkl/foot/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 + KEYWORDS="~amd64"
45 + S="${WORKDIR}/${PN}"
46 +else
47 + inherit git-r3
48 + EGIT_REPO_URI="https://codeberg.org/dnkl/foot.git"
49 +fi
50 +
51 +DESCRIPTION="A fast, lightweight and minimalistic Wayland terminal emulator"
52 +HOMEPAGE="https://codeberg.org/dnkl/foot"
53 +LICENSE="MIT"
54 +SLOT="0"
55 +IUSE="ime +grapheme-clustering"
56 +
57 +DEPEND="
58 + dev-libs/libutf8proc
59 + dev-libs/wayland
60 + media-libs/fcft
61 + media-libs/fontconfig
62 + media-libs/freetype
63 + x11-libs/libxkbcommon
64 + x11-libs/pixman
65 +"
66 +RDEPEND="
67 + ${DEPEND}
68 + gui-apps/foot-terminfo
69 +"
70 +BDEPEND="
71 + app-text/scdoc
72 + dev-libs/tllist
73 + dev-libs/wayland-protocols
74 + sys-libs/ncurses
75 +"
76 +
77 +src_configure() {
78 + local emesonargs=(
79 + $(meson_use ime)
80 + $(meson_feature grapheme-clustering)
81 + "-Dterminfo=disabled"
82 + "-Dwerror=false"
83 + )
84 + meson_src_configure
85 +}
86 +
87 +src_install() {
88 + meson_src_install
89 + mv "${D}/usr/share/doc/${PN}" "${D}/usr/share/doc/${PF}"
90 +}
91
92 diff --git a/gui-apps/foot/metadata.xml b/gui-apps/foot/metadata.xml
93 index 387e7919d..cb9b06845 100644
94 --- a/gui-apps/foot/metadata.xml
95 +++ b/gui-apps/foot/metadata.xml
96 @@ -7,5 +7,6 @@
97 </maintainer>
98 <use>
99 <flag name="ime">Enable IME support</flag>
100 + <flag name="grapheme-clustering">Enable grapheme clustering support</flag>
101 </use>
102 </pkgmetadata>