Skip to content

Commit ca69794

Browse files
committed
kitty: update to 0.32.0.
1 parent 39f9e85 commit ca69794

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

srcpkgs/kitty/patches/arm.patch

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
From d6116f74260a53a94aa1a1438a76e67753f63fdc Mon Sep 17 00:00:00 2001
2+
From: Kovid Goyal <kovid@kovidgoyal.net>
3+
Date: Sun, 21 Jan 2024 08:33:59 +0530
4+
Subject: [PATCH] Fix #7026
5+
6+
---
7+
setup.py | 3 +++
8+
1 file changed, 3 insertions(+)
9+
10+
diff --git a/setup.py b/setup.py
11+
index 35e69d00df..e4d8bc8517 100755
12+
--- a/setup.py
13+
+++ b/setup.py
14+
@@ -454,6 +454,9 @@ def init_env(
15+
# Universal build fails with -fcf-protection clang is not smart enough to filter it out for the ARM part
16+
intel_control_flow_protection = '-fcf-protection=full' if ccver >= (9, 0) and not build_universal_binary else ''
17+
control_flow_protection = arm_control_flow_protection if is_arm else intel_control_flow_protection
18+
+ if control_flow_protection:
19+
+ if not test_compile(cc, control_flow_protection):
20+
+ control_flow_protection = ''
21+
cflags_ = os.environ.get(
22+
'OVERRIDE_CFLAGS', (
23+
f'-Wextra {float_conversion} -Wno-missing-field-initializers -Wall -Wstrict-prototypes {std}'

srcpkgs/kitty/template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Template file for 'kitty'
22
pkgname=kitty
3-
version=0.31.0
3+
version=0.32.0
44
revision=1
55
build_helper="python3"
66
pycompile_dirs="usr/lib/kitty"
@@ -17,7 +17,7 @@ license="GPL-3.0-only"
1717
homepage="https://sw.kovidgoyal.net/kitty/"
1818
changelog="https://sw.kovidgoyal.net/kitty/changelog.html"
1919
distfiles="https://github.com/kovidgoyal/kitty/releases/download/v${version}/kitty-${version}.tar.xz"
20-
checksum=d122497134abab8e25dfcb6b127af40cfe641980e007f696732f70ed298198f5
20+
checksum=7881a95c1a43d03b230b6ff817e4b5cfec267bac3dbd6dcbbf6c095d476d776d
2121
python_version=3
2222
nopie_files="/usr/bin/kitten"
2323

0 commit comments

Comments
 (0)