From f1634517e73f2faf342a366354c3e0f2edb45952 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 11 Jan 2025 06:41:28 +0000 Subject: gentoo auto-resync : 11:01:2025 - 06:41:28 --- gui-apps/foot/Manifest | 2 +- gui-apps/foot/foot-1.20.1-r1.ebuild | 79 +++++++++++++++++++++++++++++++++++++ gui-apps/foot/foot-1.20.1.ebuild | 79 ------------------------------------- 3 files changed, 80 insertions(+), 80 deletions(-) create mode 100644 gui-apps/foot/foot-1.20.1-r1.ebuild delete mode 100644 gui-apps/foot/foot-1.20.1.ebuild (limited to 'gui-apps/foot') diff --git a/gui-apps/foot/Manifest b/gui-apps/foot/Manifest index 0062d52ca203..f9d8fe4b46d6 100644 --- a/gui-apps/foot/Manifest +++ b/gui-apps/foot/Manifest @@ -15,5 +15,5 @@ EBUILD foot-1.18.0.ebuild 1656 BLAKE2B 52ab20d3e694c665c18a111aa1d8cf84c1ce3e73d EBUILD foot-1.18.1.ebuild 1663 BLAKE2B 6a0d25047f546eaf7e461e0c8c5bea738a52687feef809b752093704bb0aa360fdbde4a825984d69f99e0a1e1c8da0d0bf4aed2cca1eeadb002f304600d113f8 SHA512 2fc72c4acaffa098e5c76e458b27b4487884d48217851a28f9097f238fc29d139a742bdcee8c27d333ad954c59a3fe584b8ada3047ce8060d75b93b3c7659631 EBUILD foot-1.19.0.ebuild 1894 BLAKE2B de411b7e722820e0336c4fb0695d33d5f69345993aa924c6c945f3f3d0cbaa223c11ea473cc3063567e11ea9364c78761af9f56fc8f84e8e7121c562bf3d7484 SHA512 c3bfb25a4358ecf7a22caa89c0de163749079369a91ff29e7af067facc6303ef4a5bc6af6e39642229d275216e3666d4bd22f718db8ed70c65bc5167bd65493a EBUILD foot-1.20.0.ebuild 1701 BLAKE2B 53f845b7ce4bbafaf3f24b3ea0c6b77f511030f549cf08781dfd4905ca29508c50fc33d931ffb000d6226b8ac28bdbcdacddc5d8bd0c354fc90c9d1d1e0db007 SHA512 033059e6e3e90ec12f21289e48c27ed2689602f41f36233f76d65b1d50be4083df569ed0f4e8c47d5d964376661e8a95a3c546cde7646791069c2a1043f27581 -EBUILD foot-1.20.1.ebuild 1701 BLAKE2B 53f845b7ce4bbafaf3f24b3ea0c6b77f511030f549cf08781dfd4905ca29508c50fc33d931ffb000d6226b8ac28bdbcdacddc5d8bd0c354fc90c9d1d1e0db007 SHA512 033059e6e3e90ec12f21289e48c27ed2689602f41f36233f76d65b1d50be4083df569ed0f4e8c47d5d964376661e8a95a3c546cde7646791069c2a1043f27581 +EBUILD foot-1.20.1-r1.ebuild 1707 BLAKE2B 03d30811ab1e2c37d8201be45554cd5618daeff3f4f928a2bd2fe4136576d1e02376526d5e199797755fb0b323ef45cab4e84872dd394ec824eedea737139de7 SHA512 5a7d97d9873fe07dee45a877b2e51e1f29ace1ea715c2940365e8c83399ac470164e73e73196b04a5bc2dec537bdaa9727aed7811681aa32ccd28e2422f74557 MISC metadata.xml 417 BLAKE2B 79751f755417450132e2d66f53ab5642452178da0f08b877572db0f1c3de3093c1047cd9e8e3d8b884745b54e1e7a60425e453e987193625e3be806cfe07023e SHA512 9392f93e37673f12fe5587fc4e4ea55014080b254e327532375212c7b2c43870cd5342b45afc170a60776ab747108ce70cf888096070c74f258fe6392ef23155 diff --git a/gui-apps/foot/foot-1.20.1-r1.ebuild b/gui-apps/foot/foot-1.20.1-r1.ebuild new file mode 100644 index 000000000000..1f184cc3a99b --- /dev/null +++ b/gui-apps/foot/foot-1.20.1-r1.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:=[-cjk] + 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 +} diff --git a/gui-apps/foot/foot-1.20.1.ebuild b/gui-apps/foot/foot-1.20.1.ebuild deleted file mode 100644 index 970ad3152ef5..000000000000 --- a/gui-apps/foot/foot-1.20.1.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# 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 -} -- cgit v1.2.3