kitty: update to 0.35.1.

This commit is contained in:
classabbyamp 2024-06-03 17:57:57 -04:00
parent c473100a38
commit 82dd01b959
No known key found for this signature in database
GPG key ID: 6BE0755918A4C7F5

View file

@ -1,6 +1,6 @@
# Template file for 'kitty'
pkgname=kitty
version=0.35.0
version=0.35.1
revision=1
build_helper="python3"
pycompile_dirs="usr/lib/kitty"
@ -17,7 +17,7 @@ license="GPL-3.0-only"
homepage="https://sw.kovidgoyal.net/kitty/"
changelog="https://sw.kovidgoyal.net/kitty/changelog.html"
distfiles="https://github.com/kovidgoyal/kitty/releases/download/v${version}/kitty-${version}.tar.xz"
checksum=68718f9dcb2e6bbc206badce5f4dfec845e893edf6ca13189c24600635c687f7
checksum=a9a4a5b06040b72f11f5f1c7bafe0f78b1e6a50dffb1903830f492aee42a63e4
python_version=3
nopie_files="/usr/bin/kitten"
@ -39,12 +39,13 @@ do_build() {
if [ "$CROSS_BUILD" ]; then
# hot mess, continued
env CC="cc" CFLAGS="$XBPS_CFLAGS" LDFLAGS="$XBPS_LDFLAGS" python3 setup.py build \
--prefix="${DESTDIR}/usr" --update-check-interval=0 --verbose
--prefix="${DESTDIR}/usr" --update-check-interval=0 --verbose --debug
python3 setup.py clean --clean-for-cross-compile
_cross_args=(--skip-code-generation)
fi
. /void-packages/common/environment/build-style/go.sh
python3 setup.py linux-package --prefix="${DESTDIR}/usr" --update-check-interval=0 --verbose "${_cross_args[@]}"
python3 setup.py linux-package --prefix="${DESTDIR}/usr" --update-check-interval=0 \
--verbose --debug "${_cross_args[@]}"
}
do_install() {