[packages/kitty] - up to 0.42.1
baggins
baggins at pld-linux.org
Thu May 29 05:14:05 CEST 2025
commit e2ca5037add5ec7aeb366aff73de42e9f20a2507
Author: Jan Rękorajski <baggins at pld-linux.org>
Date: Thu May 29 05:37:30 2025 +0200
- up to 0.42.1
kitty.spec | 10 +++++-----
num-workers.patch | 23 -----------------------
2 files changed, 5 insertions(+), 28 deletions(-)
---
diff --git a/kitty.spec b/kitty.spec
index 6661cbd..7fd532f 100644
--- a/kitty.spec
+++ b/kitty.spec
@@ -9,13 +9,13 @@
Summary: Cross-platform, fast, feature full, GPU based terminal emulator
Name: kitty
-Version: 0.28.0
-Release: 3
+Version: 0.42.1
+Release: 1
# BSD: docs/_templates/searchbox.html
# zlib: glfw/
License: GPLv3 and zlib and BSD
Source0: https://github.com/kovidgoyal/kitty/releases/download/v%{version}/%{name}-%{version}.tar.xz
-# Source0-md5: 5b458f1e594f7b5668b0e728957c221d
+# Source0-md5: 09a90145f10b4f4fd53b6751b1ae0079
# Add AppData manifest file
# * https://github.com/kovidgoyal/kitty/pull/2088
Source1: %{name}.metainfo.xml
@@ -23,14 +23,14 @@ Source2: %{name}.sh
Source3: %{name}.fish
%if %{without vendor}
Source4: %{name}-%{version}-vendor.tar.xz
-# Source4-md5: c509736ee0f2073aa504124e6efa1be0
+# Source4-md5: 31405bb84facc8e39e5e16f5298f6e45
%endif
-Patch0: num-workers.patch
URL: https://sw.kovidgoyal.net/kitty
BuildRequires: appstream-glib
BuildRequires: dbus-devel
BuildRequires: desktop-file-utils
BuildRequires: fontconfig-devel
+BuildRequires: fonts-TTF-Nerd-symbols-mono
BuildRequires: gcc
BuildRequires: gnupg2
BuildRequires: golang >= 1.20
diff --git a/num-workers.patch b/num-workers.patch
deleted file mode 100644
index e40bd9b..0000000
--- a/num-workers.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-Force 1 num worker:
-- https://github.com/kovidgoyal/kitty/issues/6050
-
---- kitty-0.27.1/setup.py~ 2023-02-22 16:41:43.000000000 +0200
-+++ kitty-0.27.1/setup.py 2023-02-22 16:45:34.114098801 +0200
-@@ -573,7 +573,7 @@
-
- def parallel_run(items: List[Command]) -> None:
- try:
-- num_workers = max(2, os.cpu_count() or 1)
-+ num_workers = int(os.environ.get('NUM_WORKERS', max(2, os.cpu_count() or 1)))
- except Exception:
- num_workers = 2
- items = list(reversed(items))
-@@ -1064,7 +1064,7 @@
- import compileall
- import py_compile
- try:
-- num_workers = max(1, os.cpu_count() or 1)
-+ num_workers = int(os.environ.get('NUM_WORKERS', max(2, os.cpu_count() or 1)))
- except Exception:
- num_workers = 1
- for root, dirs, files in os.walk(base_path):
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/kitty.git/commitdiff/e2ca5037add5ec7aeb366aff73de42e9f20a2507
More information about the pld-cvs-commit
mailing list