kitty/kitty.spec
Michael Vetter d628d6e5c3 Accepting request 706474 from home:jubalh:branches:X11:terminals
- Update to 0.14.1:
  * Add an option command_on_bell to run an arbitrary command when a bell occurs (#1660)
  * Add a shortcut to toggle maximized window state ctrl+shift+f10
  * Add support for the underscore key found in some keyboard layouts (#1639)
  * Fix a missing newline when using the pipe command between the scrollback and screen contents (#1642)
  * Fix colors not being preserved when using the pipe command with the pager history buffer (#1657)
  * When resizing and only a single window is present in the current layout, use that window's background color to fill in the blank areas.
  * Linux: Automatically increase cell height if the font being used is broken and draws the underscore outside the bounding box (#690)
  * Wayland: Fix maximizing the window on a compositor that does not provide server side window decorations, such a GNOME or Weston not working (#1662)
- Update kitty-no-docs.patch

OBS-URL: https://build.opensuse.org/request/show/706474
OBS-URL: https://build.opensuse.org/package/show/X11:terminals/kitty?expand=0&rev=23
2019-05-30 07:28:58 +00:00

93 lines
2.8 KiB
RPMSpec

#
# spec file for package kitty
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: kitty
Version: 0.14.1
Release: 0
Summary: A GPU-based terminal emulator
License: GPL-3.0-only
Group: System/X11/Terminals
URL: https://github.com/kovidgoyal/kitty
Source: https://github.com/kovidgoyal/kitty/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
Patch0: kitty-no-docs.patch
BuildRequires: ImageMagick-devel
BuildRequires: Mesa-libGL-devel
BuildRequires: fontconfig-devel
BuildRequires: freetype2-devel
BuildRequires: harfbuzz-devel >= 1.5.0
BuildRequires: libXcursor-devel
BuildRequires: libXi-devel
BuildRequires: libXinerama-devel
BuildRequires: libXrandr-devel
BuildRequires: libpng16-compat-devel
BuildRequires: libwayland-egl-devel
BuildRequires: libxkbcommon-devel
BuildRequires: libxkbcommon-x11-devel
BuildRequires: pkgconfig(dbus-1)
# for 'tic'
BuildRequires: ncurses-devel
BuildRequires: pkgconfig
%if 0%{?suse_version} > 1500
BuildRequires: python3-Sphinx >= 1.7
%endif
BuildRequires: python3-devel >= 3.5
BuildRequires: wayland-devel
BuildRequires: wayland-protocols-devel
BuildRequires: zlib-devel
BuildRequires: fdupes
%description
A terminal emulator that uses OpenGL for rendering.
Supports terminal features like: graphics, Unicode,
true-color, OpenType ligatures, mouse protocol, focus tracking,
bracketed paste and so on, and which can be controlled by scripts.
%prep
%setup -q
%if 0%{?sle_version} == 150000 && 0%{?is_opensuse}
%patch0 -p1
%endif
find . -type f -exec sed -i "s/#!\/usr\/bin\/env python3/#!\/usr\/bin\/python3/" {} +
%build
python3 setup.py --verbose linux-package --prefix %{buildroot}%{_prefix}
%install
# yes they have a makefile, no they dont use it properly
# no they dont have a make install
%fdupes %{buildroot}/usr/lib
%files
%license LICENSE
%doc CHANGELOG.rst README.asciidoc
%{_bindir}/kitty
%{_libexecdir}/kitty
%{_datadir}/applications/kitty.desktop
%dir %{_datadir}/icons/hicolor/
%dir %{_datadir}/icons/hicolor/256x256/
%{_datadir}/icons/hicolor/256x256/apps/
%{_datadir}/terminfo/x/xterm-kitty
%if 0%{?suse_version} > 1500
%{_mandir}/man1/kitty.1%{?ext_man}
%{_datadir}/doc/kitty
%endif
%changelog