commit:     6ca4b6709fb45af5ad4f4cf34d591299eb5fe24e
Author:     Arsen Arsenović <arsen <AT> gentoo <DOT> org>
AuthorDate: Tue Jan  7 20:04:25 2025 +0000
Commit:     Arsen Arsenović <arsen <AT> gentoo <DOT> org>
CommitDate: Tue Jan  7 20:10:51 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ca4b670

gui-apps/foot: add 1.20.1

Signed-off-by: Arsen Arsenović <arsen <AT> gentoo.org>

 gui-apps/foot/Manifest           |  1 +
 gui-apps/foot/foot-1.20.1.ebuild | 79 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 80 insertions(+)

diff --git a/gui-apps/foot/Manifest b/gui-apps/foot/Manifest
index 893f1315dd9a..133e192d815e 100644
--- a/gui-apps/foot/Manifest
+++ b/gui-apps/foot/Manifest
@@ -6,3 +6,4 @@ DIST foot-1.18.0.tar.gz 579743 BLAKE2B 
5226b2beaafd9609904b1b6c683623d2d618623de
 DIST foot-1.18.1.tar.gz 581146 BLAKE2B 
25aa088218c5f1e44fe4cebaa63b933f21fa480446766f91b770b9eedb1ec25f1d1ac7a0519b72b907f0cf90c520d52625d9580fcdd7f8455c349d6c579b1614
 SHA512 
06744dcf33bdc5a47885b3720f194763fb680b5a21710a9289d9652237c207b70914e3689ffe32c8a6b7578ab0f010117866bddfd99055897c059e6554332bee
 DIST foot-1.19.0.tar.gz 584392 BLAKE2B 
39f0382d5d7888b652e6b733e00302eff83e544b81273f800f2b685a6840559faa5626d8bb06233e872dd08dc347472974ff2e737611bb209aca77f0495371b9
 SHA512 
14c6616acd7de538a02bbe464ee77cddc6196d1387f6818691ffafd00f7379194a37eb3968c1f9976d9d82490be60854295fbfe662a9b658fa6fa8dfa291bac0
 DIST foot-1.20.0.tar.gz 589056 BLAKE2B 
021927293c5b4950df33de42e37112bef79f908c44f7d2d47486e42c51096ff2416b3cf7d8dc3837448baa423e574b1ba83391af639e1782480e6370cfd5060f
 SHA512 
8f602c8763f26c0a86efb1e7efb183f13a8ec14e1d618bf16a95185613b7bf36d6091e0057f746425fbe9855e043dd9a07d2ceb774257c4f1eaa20228f4fada5
+DIST foot-1.20.1.tar.gz 590026 BLAKE2B 
991935b9b0b40d13914ae9831637a837275918821b70ba49173cccb2b1803c024d26261a75d245cd7bd9f88c8bc1019c462793f374302cfb93500502648502f7
 SHA512 
c4f0a36d1031915336110bb916f43d5f3ea19093555bc87141d3c3403fea058a7086eee13fed4aaff9b1d55484b9b04d90d75cf801889c205eca6415b9b9a2d5

diff --git a/gui-apps/foot/foot-1.20.1.ebuild b/gui-apps/foot/foot-1.20.1.ebuild
new file mode 100644
index 000000000000..970ad3152ef5
--- /dev/null
+++ b/gui-apps/foot/foot-1.20.1.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson xdg systemd
+
+DESCRIPTION="Fast, lightweight and minimalistic Wayland terminal emulator"
+HOMEPAGE="https://codeberg.org/dnkl/foot";
+SRC_URI="
+       https://codeberg.org/dnkl/foot/releases/download/${PV}/${P}.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv"
+IUSE="+grapheme-clustering test"
+RESTRICT="!test? ( test )"
+
+COMMON_DEPEND="
+       dev-libs/wayland
+       media-libs/fcft
+       media-libs/fontconfig
+       x11-libs/libxkbcommon
+       x11-libs/pixman
+       grapheme-clustering? (
+               dev-libs/libutf8proc:=
+               media-libs/fcft[harfbuzz]
+       )
+"
+DEPEND="
+       ${COMMON_DEPEND}
+       >=dev-libs/tllist-1.1.0
+       >=dev-libs/wayland-protocols-1.32
+"
+RDEPEND="
+       ${COMMON_DEPEND}
+       || (
+               >=sys-libs/ncurses-6.3[-minimal]
+               ~gui-apps/foot-terminfo-${PV}
+       )
+"
+BDEPEND="
+       app-text/scdoc
+       dev-util/wayland-scanner
+"
+
+src_prepare() {
+       default
+       # disable the systemd dep, we install the unit file manually
+       sed -i "s/systemd', required: false)$/', required: false)/" 
"${S}"/meson.build || die
+}
+
+src_configure() {
+       local emesonargs=(
+               $(meson_feature grapheme-clustering)
+               $(meson_use test tests)
+               -Dthemes=true
+               -Dime=true
+               -Dterminfo=disabled
+       )
+       meson_src_configure
+
+       sed 's|@bindir@|/usr/bin|g' "${S}"/foot-server.service.in > 
foot-server.service || die
+}
+
+src_install() {
+       local DOCS=( CHANGELOG.md README.md LICENSE )
+       meson_src_install
+
+       # foot unconditionally installs CHANGELOG.md, README.md and LICENSE.
+       # we handle this via DOCS and dodoc instead.
+       rm -r "${ED}/usr/share/doc/${PN}" || die
+       systemd_douserunit foot-server.service "${S}"/foot-server.socket
+}
+
+pkg_postinst() {
+       xdg_pkg_postinst
+}

Reply via email to