kitty: update to 0.32.0.
This commit is contained in:
parent
39f9e85e14
commit
ca69794248
2 changed files with 25 additions and 2 deletions
23
srcpkgs/kitty/patches/arm.patch
Normal file
23
srcpkgs/kitty/patches/arm.patch
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
From d6116f74260a53a94aa1a1438a76e67753f63fdc Mon Sep 17 00:00:00 2001
|
||||||
|
From: Kovid Goyal <kovid@kovidgoyal.net>
|
||||||
|
Date: Sun, 21 Jan 2024 08:33:59 +0530
|
||||||
|
Subject: [PATCH] Fix #7026
|
||||||
|
|
||||||
|
---
|
||||||
|
setup.py | 3 +++
|
||||||
|
1 file changed, 3 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/setup.py b/setup.py
|
||||||
|
index 35e69d00df..e4d8bc8517 100755
|
||||||
|
--- a/setup.py
|
||||||
|
+++ b/setup.py
|
||||||
|
@@ -454,6 +454,9 @@ def init_env(
|
||||||
|
# Universal build fails with -fcf-protection clang is not smart enough to filter it out for the ARM part
|
||||||
|
intel_control_flow_protection = '-fcf-protection=full' if ccver >= (9, 0) and not build_universal_binary else ''
|
||||||
|
control_flow_protection = arm_control_flow_protection if is_arm else intel_control_flow_protection
|
||||||
|
+ if control_flow_protection:
|
||||||
|
+ if not test_compile(cc, control_flow_protection):
|
||||||
|
+ control_flow_protection = ''
|
||||||
|
cflags_ = os.environ.get(
|
||||||
|
'OVERRIDE_CFLAGS', (
|
||||||
|
f'-Wextra {float_conversion} -Wno-missing-field-initializers -Wall -Wstrict-prototypes {std}'
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'kitty'
|
# Template file for 'kitty'
|
||||||
pkgname=kitty
|
pkgname=kitty
|
||||||
version=0.31.0
|
version=0.32.0
|
||||||
revision=1
|
revision=1
|
||||||
build_helper="python3"
|
build_helper="python3"
|
||||||
pycompile_dirs="usr/lib/kitty"
|
pycompile_dirs="usr/lib/kitty"
|
||||||
|
@ -17,7 +17,7 @@ license="GPL-3.0-only"
|
||||||
homepage="https://sw.kovidgoyal.net/kitty/"
|
homepage="https://sw.kovidgoyal.net/kitty/"
|
||||||
changelog="https://sw.kovidgoyal.net/kitty/changelog.html"
|
changelog="https://sw.kovidgoyal.net/kitty/changelog.html"
|
||||||
distfiles="https://github.com/kovidgoyal/kitty/releases/download/v${version}/kitty-${version}.tar.xz"
|
distfiles="https://github.com/kovidgoyal/kitty/releases/download/v${version}/kitty-${version}.tar.xz"
|
||||||
checksum=d122497134abab8e25dfcb6b127af40cfe641980e007f696732f70ed298198f5
|
checksum=7881a95c1a43d03b230b6ff817e4b5cfec267bac3dbd6dcbbf6c095d476d776d
|
||||||
python_version=3
|
python_version=3
|
||||||
nopie_files="/usr/bin/kitten"
|
nopie_files="/usr/bin/kitten"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue