* progress-style configuration option with possible values of bar (previous behavior) and background which shows the progress as the background color. * Fish shell completions. * Default icon theme from hicolor to default. * Crash when max-icon-size=0 (#145). * Parse sections in order. This fixes a bug where sections before the main section get ignored. (#137). * fnottctl pause|unpause exiting with an error. * Lookup of icon themes in ~/.icons and /usr/share/pixmaps. OBS-URL: https://build.opensuse.org/package/show/X11:Wayland/fnott?expand=0&rev=40
122 lines
3.4 KiB
RPMSpec
122 lines
3.4 KiB
RPMSpec
#
|
|
# spec file for package fnott
|
|
#
|
|
# Copyright (c) 2025 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/
|
|
#
|
|
|
|
|
|
Name: fnott
|
|
Version: 1.8.0
|
|
Release: 0
|
|
Summary: Lightweight notification daemon for Wayland
|
|
License: MIT
|
|
Group: System/GUI/Other
|
|
URL: https://codeberg.org/dnkl/fnott
|
|
Source: %{url}/releases/download/%{version}/%{name}-%{version}.tar.gz
|
|
Source1: %{url}/releases/download/%{version}/%{name}-%{version}.tar.gz.sig
|
|
# https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xb19964fbba09664cc81027ed5bbd4992c116573f
|
|
Source2: %{name}.keyring
|
|
BuildRequires: meson >= 0.58
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: python3
|
|
BuildRequires: scdoc
|
|
BuildRequires: pkgconfig(dbus-1)
|
|
BuildRequires: pkgconfig(fcft) < 4.0.0
|
|
BuildRequires: pkgconfig(fcft) >= 3.0.0
|
|
BuildRequires: pkgconfig(libpng)
|
|
BuildRequires: pkgconfig(pixman-1)
|
|
BuildRequires: pkgconfig(tllist) >= 1.0.1
|
|
BuildRequires: pkgconfig(wayland-client)
|
|
BuildRequires: pkgconfig(wayland-cursor)
|
|
BuildRequires: pkgconfig(wayland-protocols)
|
|
BuildRequires: pkgconfig(wayland-scanner)
|
|
%if 0%{?sle_version} >= 150400
|
|
BuildRequires: gcc11
|
|
%else
|
|
BuildRequires: gcc >= 8
|
|
%endif
|
|
|
|
%description
|
|
Lightweight notification daemon for Wayland.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%package zsh-completion
|
|
Summary: Zsh Completion for %{name}
|
|
Group: System/Shells
|
|
Supplements: (%{name} and zsh)
|
|
Requires: %{name}
|
|
Requires: zsh
|
|
|
|
%description zsh-completion
|
|
Zsh command-line completion support for %{name}.
|
|
|
|
%package fish-completion
|
|
Summary: Fish Completion for %{name}
|
|
Group: System/Shells
|
|
Supplements: (%{name} and fish)
|
|
Requires: %{name}
|
|
Requires: fish
|
|
|
|
%description fish-completion
|
|
Fish command-line completion support for %{name}.
|
|
|
|
%build
|
|
%meson \
|
|
%if 0%{?suse_version} <= 1600 && 0%{?is_opensuse}
|
|
-Dc_std=c11 \
|
|
%endif
|
|
-Db_lto=true
|
|
%meson_build
|
|
|
|
%install
|
|
%meson_install
|
|
|
|
%files
|
|
%{_bindir}/fnott
|
|
%{_bindir}/fnottctl
|
|
%if 0%{?suse_version} >= 1600 && 0%{?is_opensuse}
|
|
%{_userunitdir}/fnott.service
|
|
%endif
|
|
|
|
%{_mandir}/man1/fnott.1%{?ext_man}
|
|
%{_mandir}/man1/fnottctl.1%{?ext_man}
|
|
%{_mandir}/man5/fnott.ini.5%{?ext_man}
|
|
|
|
%dir %{_datadir}/doc/%{name}
|
|
%license %{_datadir}/doc/%{name}/LICENSE
|
|
%doc %{_datadir}/doc/%{name}/README.md
|
|
%doc CHANGELOG.md
|
|
|
|
%dir %{_sysconfdir}/xdg/%{name}/
|
|
%config(noreplace) %{_sysconfdir}/xdg/%{name}/fnott.ini
|
|
%{_datadir}/applications/fnott.desktop
|
|
|
|
%dir %{_datadir}/dbus-1
|
|
%dir %{_datadir}/dbus-1/services
|
|
%{_datadir}/dbus-1/services/%{name}.service
|
|
|
|
%files zsh-completion
|
|
%{_datadir}/zsh/site-functions/_fnott
|
|
%{_datadir}/zsh/site-functions/_fnottctl
|
|
|
|
%files fish-completion
|
|
%dir %{_datadir}/fish
|
|
%dir %{_datadir}/fish/vendor_completions.d
|
|
%{_datadir}/fish/vendor_completions.d/fnott.fish
|
|
%{_datadir}/fish/vendor_completions.d/fnottctl.fish
|
|
|
|
%changelog
|