forked from pool/kitty
- 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:
parent
ccd97de2a0
commit
5fac7789c8
@ -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
3
kitty-0.26.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:8fb381ee0fa707c1c230ca992dde523060d099e6fb8af9cc740414599be360e0
|
||||||
|
size 6039466
|
@ -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>
|
Mon Aug 29 07:38:27 UTC 2022 - Michael Vetter <mvetter@suse.com>
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
# sphinx_copybutton not in Factory
|
# sphinx_copybutton not in Factory
|
||||||
%bcond_with docs
|
%bcond_with docs
|
||||||
Name: kitty
|
Name: kitty
|
||||||
Version: 0.26.0
|
Version: 0.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A GPU-based terminal emulator
|
Summary: A GPU-based terminal emulator
|
||||||
License: GPL-3.0-only
|
License: GPL-3.0-only
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
diff -Nur kitty-0.25.0/setup.py new/setup.py
|
Index: kitty-0.26.1/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
|
--- kitty-0.26.1.orig/setup.py
|
||||||
@@ -65,6 +65,7 @@
|
+++ kitty-0.26.1/setup.py
|
||||||
|
@@ -66,6 +66,7 @@ class Options(argparse.Namespace):
|
||||||
verbose: int = 0
|
verbose: int = 0
|
||||||
sanitize: bool = False
|
sanitize: bool = False
|
||||||
prefix: str = './linux-package'
|
prefix: str = './linux-package'
|
||||||
@ -9,7 +10,7 @@ diff -Nur kitty-0.25.0/setup.py new/setup.py
|
|||||||
incremental: bool = True
|
incremental: bool = True
|
||||||
profile: bool = False
|
profile: bool = False
|
||||||
libdir_name: str = 'lib'
|
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)
|
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():
|
for (icdir, ext) in {'256x256': 'png', 'scalable': 'svg'}.items():
|
||||||
icdir = os.path.join(ddir, 'share', 'icons', 'hicolor', icdir, 'apps')
|
icdir = os.path.join(ddir, 'share', 'icons', 'hicolor', icdir, 'apps')
|
||||||
safe_makedirs(icdir)
|
safe_makedirs(icdir)
|
||||||
@@ -1313,7 +1315,7 @@
|
@@ -1377,7 +1379,7 @@ def package(args: Options, bundle_type:
|
||||||
path = os.path.join(root, f_)
|
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:
|
if not is_macos:
|
||||||
- create_linux_bundle_gunk(ddir, args.libdir_name)
|
- create_linux_bundle_gunk(ddir, args.libdir_name)
|
||||||
+ create_linux_bundle_gunk(ddir, args.libdir_name, args.no_docs)
|
+ create_linux_bundle_gunk(ddir, args.libdir_name, args.no_docs)
|
||||||
|
|
||||||
if bundle_type.startswith('macos-'):
|
if bundle_type.startswith('macos-'):
|
||||||
create_macos_bundle_gunk(ddir)
|
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'
|
help='Where to create the linux package'
|
||||||
)
|
)
|
||||||
p.add_argument(
|
p.add_argument(
|
||||||
|
Loading…
Reference in New Issue
Block a user