forked from pool/alacritty
a423e0146f
- Update to 0.5.0 Packaging: * Minimum Rust version has been bumped to 1.41.0 * Prebuilt Linux binaries have been removed * Added manpage, terminfo, and completions to macOS application bundle * On Linux/BSD the build will fail without Fontconfig installed, instead of building it from source Added: * Default Command+N keybinding for SpawnNewInstance on macOS * Vi mode for regex search, copying text, and opening links * CopySelection action which copies into selection buffer on Linux/BSD * Option cursor.thickness to set terminal cursor thickness * Font fallback on Windows * Support for Fontconfig embolden and matrix options * Opt-out compilation flag winpty to disable WinPTY support * Scrolling during selection when mouse is at top/bottom of window * Expanding existing selections using single, double and triple click with the right mouse button * Support for gopher and gemini URLs * Unicode 13 support * Option to run command on bell which can be set in bell.command Changed: * Block cursor is no longer inverted at the start/end of a selection * Preserve selection on non-LMB or mouse mode clicks * Wayland client side decorations are now based on config colorscheme * Low resolution window decoration icon on Windows * Mouse bindings for additional buttons need to be specified as a number not a string * Don't hide cursor on modifier press with mouse.hide_when_typing enabled * Shift + Backspace now sends ^? instead of ^H * Default color scheme is now Tomorrow Night with the bright colors of Tomorrow Night Bright * Set IUTF8 termios flag for improved UTF8 input support * Dragging files into terminal now adds a space after each path * Default binding replacement conditions * Adjusted selection clearing granularity to more accurately match content * To use the cell's text color for selection with a modified background, the color.selection.text * variable must now be set to CellForeground instead of omitting it * URLs are no longer highlighted without a clearly delimited scheme * Renamed config option visual_bell to bell * Moved config option dynamic_title to window.dynamic_title Fixed: * Selection not cleared when switching between main and alt grid * Freeze when application is invisible on Wayland * Paste from some apps on Wayland * Slow startup with Nvidia binary drivers on some X11 systems * Display not scrolling when printing new lines while scrolled in history * Regression in font rendering on macOS * Scroll down escape (CSI Ps T) incorrectly pulling lines from history * Dim escape (CSI 2 m) support for truecolor text * Incorrectly deleted lines when increasing width with a prompt wrapped using spaces * Documentation for class in --help missing information on setting general class * Linewrap tracking when switching between primary and alternate screen buffer * Preservation of the alternate screen's saved cursor when swapping to primary screen and back * Reflow of cursor during resize * Cursor color escape ignored when its color is set to inverted in the config * Fontconfig's autohint and hinting options being ignored * Ingoring of default FreeType properties * Alacritty crashing at startup when the configured font does not exist * Font size rounding error Removed: * Environment variable RUST_LOG for selecting the log level * Deprecated window.start_maximized config field * Deprecated render_timer config field * Deprecated persistent_logging config field OBS-URL: https://build.opensuse.org/request/show/824021 OBS-URL: https://build.opensuse.org/package/show/X11:terminals/alacritty?expand=0&rev=29
127 lines
4.2 KiB
RPMSpec
127 lines
4.2 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.5.0
|
|
Release: 0
|
|
Summary: A GPU-accelerated terminal emulator
|
|
License: Apache-2.0
|
|
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.41.0
|
|
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}
|
|
Requires: bash-completion
|
|
Supplements: (%{name} and 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}
|
|
Supplements: (%{name} and fish)
|
|
BuildArch: noarch
|
|
|
|
%description fish-completion
|
|
The official fish completion script for alacritty.
|
|
|
|
%package zsh-completion
|
|
Summary: ZSH Completion for %{name}
|
|
Supplements: (%{name} and 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
|