From f819aa8a666065bb772d86b3c29b4cf94239922e Mon Sep 17 00:00:00 2001 From: Raboneko <119771935+raboneko@users.noreply.github.com> Date: Sat, 23 May 2026 19:44:17 -0500 Subject: [PATCH] add: tail-tray (#12516) (#12517) (cherry picked from commit 34985caa4128baa3f9c61348517ee92b92d6a78f) Signed-off-by: Owen-sz Co-authored-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> --- anda/misc/tail-tray/anda.hcl | 5 ++++ anda/misc/tail-tray/tail-tray.spec | 46 ++++++++++++++++++++++++++++++ anda/misc/tail-tray/update.rhai | 1 + 3 files changed, 52 insertions(+) create mode 100644 anda/misc/tail-tray/anda.hcl create mode 100644 anda/misc/tail-tray/tail-tray.spec create mode 100644 anda/misc/tail-tray/update.rhai diff --git a/anda/misc/tail-tray/anda.hcl b/anda/misc/tail-tray/anda.hcl new file mode 100644 index 0000000000..a317bddfb9 --- /dev/null +++ b/anda/misc/tail-tray/anda.hcl @@ -0,0 +1,5 @@ +project pkg { + rpm { + spec = "tail-tray.spec" + } +} diff --git a/anda/misc/tail-tray/tail-tray.spec b/anda/misc/tail-tray/tail-tray.spec new file mode 100644 index 0000000000..4e47a8557a --- /dev/null +++ b/anda/misc/tail-tray/tail-tray.spec @@ -0,0 +1,46 @@ +Name: tail-tray +Version: 0.2.32 +Release: 1%{?dist} +Summary: Tailscale tray menu and UI for the KDE Plasma Desktop +License: GPL-3.0-or-later +URL: https://github.com/SneWs/tail-tray +Source0: %{url}/archive/refs/tags/v%{version}.tar.gz + +BuildRequires: cmake +BuildRequires: gcc-c++ +BuildRequires: glib2-devel +BuildRequires: gettext +BuildRequires: qt6-qtbase-devel +BuildRequires: qt6-qttools-devel + +Requires: tailscale +Suggests: davfs2 + +Packager: Owen Zimmerman + +%description +%{summary}. + +%prep +%autosetup + +%conf +%cmake + +%build +%cmake_build + +%install +%cmake_install + +%files +%doc README.md +%license LICENSE +%{_bindir}/%{name} +%{_appsdir}/%{name}.desktop +%{_scalableiconsdir}/tail-tray-dark.svg +%{_scalableiconsdir}/tail-tray.svg + +%changelog +* Sat May 23 2026 Owen Zimmerman +- Initial commit diff --git a/anda/misc/tail-tray/update.rhai b/anda/misc/tail-tray/update.rhai new file mode 100644 index 0000000000..bcb25762b9 --- /dev/null +++ b/anda/misc/tail-tray/update.rhai @@ -0,0 +1 @@ +rpm.version(gh("SneWs/tail-tray"));