alacritty/alacritty.spec
Marcus Meissner 4fefe0c8a0 Accepting request 766389 from home:mrey:branches:X11:terminals
- Update to 0.4.1
  * Adapt cargo config
- Packaging:
  * Added compatibility logo variants for environments which can't
  render the default SVG
- Added:
  * Terminal escape bindings with combined modifiers for Delete and
  Insert
  * Colored emojis on Linux/BSD
  * Value randr for WINIT_HIDPI_FACTOR, to ignore Xft.dpi and scale
  based on screen dimensions
- Changed:
  * The enable_experimental_conpty_backend config option has been
  replaced with winpty_backend
- Fixed:
  * URLs not truncated with non-matching single quote
  * Absolute file URLs (file:///home) not recognized because of
  leading /
  * Clipboard escape OSC 52 not working with empty clipboard
  parameter
  * Incorrect window size on X11 when waking up from suspend
  * Width of Unicode 11/12 emojis
  * Performance bottleneck when clearing colored rows
  * Crash on clear when scrolled up in history
  * Entire screen getting underlined/stroke out when running clear
  * Slow startup on some Wayland compositors
  * Resize cursor not showing up on Wayland
  * Maximized windows spawning behind system panel on Gnome Wayland
- Removed:
  * Support for 8-bit C1 escape sequences

OBS-URL: https://build.opensuse.org/request/show/766389
OBS-URL: https://build.opensuse.org/package/show/X11:terminals/alacritty?expand=0&rev=23
2020-01-24 10:02:18 +00:00

132 lines
4.4 KiB
RPMSpec

#
# spec file for package alacritty
#
# Copyright (c) 2020 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
# Use hardening ldflags.
%global rustflags "-Clink-arg=-Wl,-z,relro,-z,now"
Name: alacritty
Version: 0.4.1
Release: 0
Summary: A GPU-accelerated terminal emulator
License: Apache-2.0
Group: System/X11/Terminals
URL: https://github.com/jwilm/alacritty/
Source: https://github.com/jwilm/alacritty/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
Source1: vendor.tar.xz
Source2: cargo_config
Source3: README.suse-maint
BuildRequires: cargo
BuildRequires: cmake
BuildRequires: fdupes
BuildRequires: freetype-devel
BuildRequires: libxcb-devel
BuildRequires: pkgconfig
BuildRequires: rust >= 1.36
BuildRequires: update-desktop-files
BuildRequires: xclip
BuildRequires: pkgconfig(fontconfig)
%description
Alacritty is a terminal emulator written in Rust that leverages the GPU for
rendering.
%package bash-completion
Summary: Bash Completion for %{name}
Group: System/X11/Terminals
Requires: bash-completion
Supplements: packageand(%{name}:bash)
BuildArch: noarch
%description bash-completion
The official bash completion script for alacritty. It includes support
for every argument that can currently be passed to alacritty.
%package fish-completion
Summary: Fish Completion for %{name}
Group: System/X11/Terminals
Supplements: packageand(%{name}:fish)
BuildArch: noarch
%description fish-completion
The official fish completion script for alacritty.
%package zsh-completion
Summary: ZSH Completion for %{name}
Group: System/X11/Terminals
Supplements: packageand(%{name}:zsh)
BuildArch: noarch
%description zsh-completion
The official zsh completion script for alacritty.
%prep
%setup -qa1
mkdir .cargo
cp %{SOURCE2} .cargo/config
%ifarch aarch64 ppc64le
# Remove checksum of config.guess and config.sub since aarch64 and ppc64le modify them
sed -i 's#"expat/conftools/config.guess":"ebaffe1c6683ae2c3dcabb87825a83b892f00391514756f7640c4a3dcafbad4f",##g' ./vendor/expat-sys/.cargo-checksum.json
sed -i 's#"expat/conftools/config.sub":"523cb028db907d1fbbcecdcac6737f9e2eeba48fb639231dbc5ae69238f276c9",##g' ./vendor/expat-sys/.cargo-checksum.json
%endif
%build
RUSTFLAGS=%{rustflags} cargo build --release --bin alacritty
%install
mkdir -p "%{buildroot}%{_bindir}"
install -D -m 0755 target/release/alacritty %{buildroot}%{_bindir}/alacritty
# rm duplicate license and useless toml file
rm -fr %{buildroot}%{_datadir}
# install man page and completions
install -Dm 0644 extra/linux/alacritty.desktop %{buildroot}/%{_datadir}/applications/Alacritty.desktop
install -Dm 0644 extra/logo/alacritty-simple.svg %{buildroot}/%{_datadir}/pixmaps/Alacritty.svg
install -Dm 0644 extra/linux/io.alacritty.Alacritty.appdata.xml \
%{buildroot}/%{_datadir}/appdata/io.alacritty.Alacritty.appdata.xml
install -Dm 0644 extra/%{name}.man %{buildroot}/%{_mandir}/man1/%{name}.1
install -Dm 0644 extra/completions/%{name}.bash %{buildroot}/%{_datadir}/bash-completion/completions/%{name}
install -Dm 0644 extra/completions/%{name}.fish %{buildroot}/%{_datadir}/fish/vendor_completions.d/%{name}.fish
install -Dm 0644 extra/completions/_%{name} %{buildroot}/%{_datadir}/zsh/site-functions/_%{name}
# install desktop file
%suse_update_desktop_file Alacritty
%fdupes %{buildroot}
%files
%license LICENSE-APACHE
%doc alacritty.yml CHANGELOG.md CONTRIBUTING.md README.md
%{_bindir}/%{name}
%{_mandir}/man1/%{name}.1%{?ext_man}
%{_datadir}/applications/Alacritty.desktop
%{_datadir}/pixmaps/Alacritty.svg
%{_datadir}/appdata/io.alacritty.Alacritty.appdata.xml
%files bash-completion
%{_datadir}/bash-completion
%files fish-completion
%{_datadir}/fish
%files zsh-completion
%{_datadir}/zsh
%changelog