- Update to 0.26.1:

* ssh kitten: Fix executable permission missing from kitty bootstrap script (#5438)
  * Allow specifying a title when using the set_tab_title action (#5441)

OBS-URL: https://build.opensuse.org/package/show/X11:terminals/kitty?expand=0&rev=105
This commit is contained in:
Michael Vetter 2022-09-01 13:40:07 +00:00 committed by Git OBS Bridge
parent ff8920717b
commit f0778af580
5 changed files with 20 additions and 12 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7fef874ca6d7470da77ac49ccc25d60bc91177b9e4f7d76f0399e340d17c350a
size 6040164

3
kitty-0.26.1.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8fb381ee0fa707c1c230ca992dde523060d099e6fb8af9cc740414599be360e0
size 6039466

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Thu Sep 1 07:51:29 UTC 2022 - Michael Vetter <mvetter@suse.com>
- Update to 0.26.1:
* ssh kitten: Fix executable permission missing from kitty bootstrap script (#5438)
* Allow specifying a title when using the set_tab_title action (#5441)
-------------------------------------------------------------------
Mon Aug 29 07:38:27 UTC 2022 - Michael Vetter <mvetter@suse.com>

View File

@ -19,7 +19,7 @@
# sphinx_copybutton not in Factory
%bcond_with docs
Name: kitty
Version: 0.26.0
Version: 0.26.1
Release: 0
Summary: A GPU-based terminal emulator
License: GPL-3.0-only

View File

@ -1,7 +1,8 @@
diff -Nur kitty-0.25.0/setup.py new/setup.py
--- kitty-0.25.0/setup.py 2022-04-11 16:01:45.000000000 +0200
+++ new/setup.py 2022-04-18 14:03:18.715999089 +0200
@@ -65,6 +65,7 @@
Index: kitty-0.26.1/setup.py
===================================================================
--- kitty-0.26.1.orig/setup.py
+++ kitty-0.26.1/setup.py
@@ -66,6 +66,7 @@ class Options(argparse.Namespace):
verbose: int = 0
sanitize: bool = False
prefix: str = './linux-package'
@ -9,7 +10,7 @@ diff -Nur kitty-0.25.0/setup.py new/setup.py
incremental: bool = True
profile: bool = False
libdir_name: str = 'lib'
@@ -949,12 +950,13 @@
@@ -999,12 +1000,13 @@ def compile_python(base_path: str) -> No
c(base_path, ddir='', rx=exclude, force=True, optimize=optimize, quiet=1, workers=num_workers)
@ -29,16 +30,16 @@ diff -Nur kitty-0.25.0/setup.py new/setup.py
for (icdir, ext) in {'256x256': 'png', 'scalable': 'svg'}.items():
icdir = os.path.join(ddir, 'share', 'icons', 'hicolor', icdir, 'apps')
safe_makedirs(icdir)
@@ -1313,7 +1315,7 @@
@@ -1377,7 +1379,7 @@ def package(args: Options, bundle_type:
path = os.path.join(root, f_)
os.chmod(path, 0o755 if f_.endswith('.so') or os.path.basename(f_) == 'askpass.py' else 0o644)
os.chmod(path, 0o755 if should_be_executable(path) else 0o644)
if not is_macos:
- create_linux_bundle_gunk(ddir, args.libdir_name)
+ create_linux_bundle_gunk(ddir, args.libdir_name, args.no_docs)
if bundle_type.startswith('macos-'):
create_macos_bundle_gunk(ddir)
@@ -1397,6 +1399,12 @@
@@ -1470,6 +1472,12 @@ def option_parser() -> argparse.Argument
help='Where to create the linux package'
)
p.add_argument(