From 5fac7789c84f48e820c28b22980ba8d8c298163a Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Thu, 1 Sep 2022 13:40:07 +0000 Subject: [PATCH] - 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 --- kitty-0.26.0.tar.gz | 3 --- kitty-0.26.1.tar.gz | 3 +++ kitty.changes | 7 +++++++ kitty.spec | 2 +- optional-disable-docs.patch | 17 +++++++++-------- 5 files changed, 20 insertions(+), 12 deletions(-) delete mode 100644 kitty-0.26.0.tar.gz create mode 100644 kitty-0.26.1.tar.gz diff --git a/kitty-0.26.0.tar.gz b/kitty-0.26.0.tar.gz deleted file mode 100644 index 606628e..0000000 --- a/kitty-0.26.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7fef874ca6d7470da77ac49ccc25d60bc91177b9e4f7d76f0399e340d17c350a -size 6040164 diff --git a/kitty-0.26.1.tar.gz b/kitty-0.26.1.tar.gz new file mode 100644 index 0000000..abcaead --- /dev/null +++ b/kitty-0.26.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fb381ee0fa707c1c230ca992dde523060d099e6fb8af9cc740414599be360e0 +size 6039466 diff --git a/kitty.changes b/kitty.changes index e24233e..68c75c2 100644 --- a/kitty.changes +++ b/kitty.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Thu Sep 1 07:51:29 UTC 2022 - Michael Vetter + +- 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 diff --git a/kitty.spec b/kitty.spec index c3c90c9..4406cce 100644 --- a/kitty.spec +++ b/kitty.spec @@ -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 diff --git a/optional-disable-docs.patch b/optional-disable-docs.patch index 1c769f7..2482e2f 100644 --- a/optional-disable-docs.patch +++ b/optional-disable-docs.patch @@ -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(