commit:     a210226ef6cdac927522a72593ff0a0e1a8ef04e
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 11 20:38:37 2022 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Mon Apr 11 23:19:02 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a210226e

x11-terms/kitty: add 0.25.0

--update-check-interval "shouldn't" be necessary anymore, but
keeping it in the ebuild while the option still exists

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 x11-terms/kitty/Manifest            |   2 +
 x11-terms/kitty/kitty-0.25.0.ebuild | 132 ++++++++++++++++++++++++++++++++++++
 2 files changed, 134 insertions(+)

diff --git a/x11-terms/kitty/Manifest b/x11-terms/kitty/Manifest
index 7dd1c235dca8..381ad1a52a1d 100644
--- a/x11-terms/kitty/Manifest
+++ b/x11-terms/kitty/Manifest
@@ -1,2 +1,4 @@
 DIST kitty-0.24.4.tar.xz 4613232 BLAKE2B 
3bcb957a2d1b43cbf222207fbd12e5d098e0b9616370761d9f9629e8b39419405fb146d91281912f55b35611cf01d4e33232224cc3b710044d8423300c9b53c8
 SHA512 
28b1e2415b5c73ad8922d4ed17a63638c497a91c9aedba71c2f53e77fc89ed49951a2e873bba5bbe85c8eda22107d9ff4e4321010ac33a2d289c2fbd5d3a5b8f
 DIST kitty-0.24.4.tar.xz.sig 566 BLAKE2B 
7a6513e6296b8c4a1781cef6bcea865b8187fcd8d2abd822627a401f943b1fb1d1432935fdbdc348c3062b07c91a85adcec280be64676782492f6245c72ed89b
 SHA512 
34d24eebf08e19a96f715afb4a570746e1b7bcace6b6226dd596b2886b7bf3bc34b9842d0686c07a655b6b870da77cf25adf6d577dac811a01a70db8c477723a
+DIST kitty-0.25.0.tar.xz 4640360 BLAKE2B 
2f982ecb2d13c49a6971d4a863f2215f22ccae2cc50fd7b6c6b5c2facf781ac23ec627edcbec8ebaa538c5d67b0b62ad4cc05aedf90fd722d9d886c2f62d5b42
 SHA512 
fed8d66a9f7f2117f4b495305db0d56d8b85ef03bf7ef24a7dca31e63e16fc90e026aa8022237ad45678efb026f11fdd8aa377eb53917fd8ec885f2ccea721f8
+DIST kitty-0.25.0.tar.xz.sig 566 BLAKE2B 
94d082c4520d1a25c9ea104df94876e342cc84fcc049ebc0b6061fe71206e98c5b5f8aa841ed636988b33f72f122b2d84f39e10d319c1d56c9cbf37d1b6fc064
 SHA512 
827546ea38af4babf431031184203bd11853469f87826a6b86f45b0b7d087e7523eee935908ca5a5e4a7a87e01d75114ed348ff39a9a0f6329d372fac15841af

diff --git a/x11-terms/kitty/kitty-0.25.0.ebuild 
b/x11-terms/kitty/kitty-0.25.0.ebuild
new file mode 100644
index 000000000000..16dd62bce059
--- /dev/null
+++ b/x11-terms/kitty/kitty-0.25.0.ebuild
@@ -0,0 +1,132 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit optfeature python-single-r1 toolchain-funcs xdg
+
+if [[ ${PV} == 9999 ]] ; then
+       inherit git-r3
+       EGIT_REPO_URI="https://github.com/kovidgoyal/kitty.git";
+else
+       inherit verify-sig
+       SRC_URI="
+               
https://github.com/kovidgoyal/kitty/releases/download/v${PV}/${P}.tar.xz
+               verify-sig? ( 
https://github.com/kovidgoyal/kitty/releases/download/v${PV}/${P}.tar.xz.sig )"
+       
VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}/usr/share/openpgp-keys/kovidgoyal.gpg"
+       KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+DESCRIPTION="Fast, feature-rich, GPU-based terminal"
+HOMEPAGE="https://sw.kovidgoyal.net/kitty/";
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="+X debug test transfer wayland"
+REQUIRED_USE="
+       || ( X wayland )
+       ${PYTHON_REQUIRED_USE}"
+RESTRICT="!X? ( test ) !test? ( test ) !transfer? ( test ) !wayland? ( test )"
+
+RDEPEND="
+       ${PYTHON_DEPS}
+       media-libs/fontconfig
+       media-libs/freetype:2
+       media-libs/harfbuzz:=
+       media-libs/lcms:2
+       media-libs/libglvnd[X?]
+       media-libs/libpng:=
+       sys-apps/dbus
+       sys-libs/zlib:=
+       x11-libs/libxkbcommon[X?]
+       x11-misc/xkeyboard-config
+       ~x11-terms/kitty-shell-integration-${PV}
+       ~x11-terms/kitty-terminfo-${PV}
+       X? ( x11-libs/libX11 )
+       transfer? ( net-libs/librsync:= )
+       wayland? ( dev-libs/wayland )"
+DEPEND="
+       ${RDEPEND}
+       X? (
+               x11-base/xorg-proto
+               x11-libs/libXcursor
+               x11-libs/libXi
+               x11-libs/libXinerama
+               x11-libs/libXrandr
+       )
+       wayland? ( dev-libs/wayland-protocols )"
+BDEPEND="
+       ${PYTHON_DEPS}
+       sys-libs/ncurses
+       virtual/pkgconfig
+       test? ( $(python_gen_cond_dep 'dev-python/pillow[${PYTHON_USEDEP}]') )
+       wayland? ( dev-util/wayland-scanner )"
+[[ ${PV} == 9999 ]] || BDEPEND+=" verify-sig? ( 
sec-keys/openpgp-keys-kovidgoyal )"
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-0.23.1-flags.patch
+)
+
+src_prepare() {
+       default
+
+       sed -i "s/'x11 wayland'/'$(usev X x11) $(usev wayland)'/" setup.py || 
die
+
+       if use !transfer; then
+               sed -i 's/rs_cflag =/& []#/;/files.*rsync/d' setup.py || die
+               rm -r kittens/transfer || die
+       fi
+
+       # test relies on 'who' command which doesn't detect users with 
pid-sandbox
+       rm kitty_tests/utmp.py || die
+
+       # test may fail/hang depending on environment and shell initialization 
scripts
+       rm kitty_tests/ssh.py || die
+
+       # skip docs for live version
+       [[ ${PV} != 9999 ]] || sed -i '/exists.*_build/,/docs(ddir)/d' setup.py 
|| die
+}
+
+src_compile() {
+       tc-export CC
+       export PKGCONFIG_EXE=$(tc-getPKG_CONFIG)
+
+       local setup=(
+               ${EPYTHON} setup.py linux-package
+               --disable-link-time-optimization
+               --ignore-compiler-warnings
+               --libdir-name=$(get_libdir)
+               --shell-integration="enabled no-rc"
+               --update-check-interval=0
+               --verbose
+               $(usev debug --debug)
+       )
+
+       echo "${setup[*]}"
+       "${setup[@]}" || die "setup.py failed to compile ${PN}"
+
+       [[ ${PV} == 9999 ]] || mv linux-package/share/doc/{${PN},${PF}} || die
+       rm -r linux-package/share/terminfo || die
+}
+
+src_test() {
+       PATH=linux-package/bin:${PATH} KITTY_CONFIG_DIRECTORY=${T} \
+               ${EPYTHON} test.py || die
+}
+
+src_install() {
+       insinto /usr
+       doins -r linux-package/.
+
+       fperms +x /usr/bin/kitty \
+               
/usr/$(get_libdir)/kitty/shell-integration/ssh/{askpass.py,kitty}
+}
+
+pkg_postinst() {
+       xdg_pkg_postinst
+
+       optfeature "in-terminal image display with kitty icat" 
media-gfx/imagemagick
+       optfeature "audio-based terminal bell support" media-libs/libcanberra
+       optfeature "opening links from the terminal" x11-misc/xdg-utils
+}

Reply via email to