kitty: update to 0.14.0
This commit is contained in:
parent
6d6b543a2e
commit
5dfaae835d
|
@ -1,11 +0,0 @@
|
|||
--- kitty/keys.c 2018-05-05 06:33:02.268283599 -0700
|
||||
+++ kitty/keys.c 2018-05-05 06:32:45.995284267 -0700
|
||||
@@ -77,7 +77,7 @@
|
||||
}
|
||||
|
||||
static inline bool
|
||||
-is_ascii_control_char(char c) {
|
||||
+is_ascii_control_char(signed char c) {
|
||||
return c == 0 || (1 <= c && c <= 31) || c == 127;
|
||||
}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
Reason: Apparently doesn't work with more build jobs
|
||||
--- setup.py.orig 2019-01-16 07:04:11.515988522 +0100
|
||||
+++ setup.py 2019-01-16 07:04:24.905987494 +0100
|
||||
@@ -594,7 +594,7 @@
|
||||
for f in files:
|
||||
if f.rpartition('.')[-1] in ('pyc', 'pyo'):
|
||||
os.remove(os.path.join(root, f))
|
||||
- kwargs = dict(ddir='', force=True, optimize=1, quiet=1, workers=num_workers)
|
||||
+ kwargs = dict(ddir='', force=True, optimize=1, quiet=1, workers=1)
|
||||
if hasattr(py_compile, 'PycInvalidationMode'):
|
||||
kwargs['invalidation_mode'] = py_compile.PycInvalidationMode.UNCHECKED_HASH
|
||||
compileall.compile_dir(base_path, **kwargs)
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'kitty'
|
||||
pkgname=kitty
|
||||
version=0.13.3
|
||||
revision=2
|
||||
version=0.14.0
|
||||
revision=1
|
||||
pycompile_dirs="usr/lib/kitty"
|
||||
hostmakedepends="ncurses pkg-config python3 wayland-devel wayland-protocols"
|
||||
makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel
|
||||
|
@ -13,7 +13,7 @@ license="GPL-3.0-or-later"
|
|||
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=37b90f3467c31ee9f0338c066563ab2ec2eac56267286bc4ef6d9850f97f1507
|
||||
checksum=8f5a3262ce41e90b6ce316e0ef54879e8593fd7ea71790d1c55b039bdc34b2f4
|
||||
pycompile_version="$py3_ver"
|
||||
LDFLAGS+=" -Wl,-z,stack-size=2097152"
|
||||
|
||||
|
|
Loading…
Reference in New Issue