From 22a531d1dcfcfee23f7967fcd90a88ddffdc070b Mon Sep 17 00:00:00 2001 From: Raboneko <119771935+raboneko@users.noreply.github.com> Date: Sat, 23 May 2026 13:36:40 -0500 Subject: [PATCH] add: `vibepanel` (#12508) (#12512) --- anda/desktops/waylands/vibepanel/anda.hcl | 5 ++ anda/desktops/waylands/vibepanel/update.rhai | 1 + .../waylands/vibepanel/vibepanel.spec | 52 +++++++++++++++++++ 3 files changed, 58 insertions(+) create mode 100644 anda/desktops/waylands/vibepanel/anda.hcl create mode 100644 anda/desktops/waylands/vibepanel/update.rhai create mode 100644 anda/desktops/waylands/vibepanel/vibepanel.spec diff --git a/anda/desktops/waylands/vibepanel/anda.hcl b/anda/desktops/waylands/vibepanel/anda.hcl new file mode 100644 index 0000000000..416d24f2bc --- /dev/null +++ b/anda/desktops/waylands/vibepanel/anda.hcl @@ -0,0 +1,5 @@ +project pkg { + rpm { + spec = "vibepanel.spec" + } +} diff --git a/anda/desktops/waylands/vibepanel/update.rhai b/anda/desktops/waylands/vibepanel/update.rhai new file mode 100644 index 0000000000..5562243d33 --- /dev/null +++ b/anda/desktops/waylands/vibepanel/update.rhai @@ -0,0 +1 @@ +rpm.version(gh("prankstr/vibepanel")); diff --git a/anda/desktops/waylands/vibepanel/vibepanel.spec b/anda/desktops/waylands/vibepanel/vibepanel.spec new file mode 100644 index 0000000000..ca5d2e7dba --- /dev/null +++ b/anda/desktops/waylands/vibepanel/vibepanel.spec @@ -0,0 +1,52 @@ +Name: vibepanel +Version: 0.14.1 +Release: 1%{?dist} +Summary: GTK4 panel for Wayland with notifications, OSD, and quick settings – between a status bar and a desktop shell +URL: https://github.com/prankstr/vibepanel +Source0: %{url}/archive/refs/tags/v%{version}.tar.gz +SourceLicense: MIT +License: %{sourcelicense} AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND (MIT OR Apache-2.0 OR Zlib) AND (0BSD OR MIT OR Apache-2.0) AND ((MIT OR Apache-2.0) AND Unicode-3.0) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND Apache-2.0 AND MPL-2.0 AND (BSD-2-Clause OR Apache-2.0 OR MIT) AND CC0-1.0 AND Apache-2.0 AND ISC AND (BSD-3-Clause OR Apache-2.0) AND ISC AND (MIT OR Apache-2.0 OR LGPL-2.1-or-later) AND (Unlicense OR MIT) + +BuildRequires: rust +BuildRequires: cargo-rpm-macros +BuildRequires: gcc +BuildRequires: gtk4-devel +BuildRequires: gtk4-layer-shell-devel +BuildRequires: pulseaudio-libs-devel +BuildRequires: systemd-devel +BuildRequires: dbus-devel + +Requires: gtk4 +Requires: gtk4-layer-shell +Requires: pulseaudio-libs +Requires: upower +Requires: NetworkManager +Requires: bluez + +Recommends: power-profiles-daemon + +Packager: Its-J + +%description +%{summary}. + +%prep +%autosetup -n vibepanel-%{version} +%cargo_prep_online + +%build +%cargo_build + +%install +install -Dm 755 target/release/vibepanel %{buildroot}%{_bindir}/vibepanel +%{cargo_license_online} > LICENSE.dependencies + +%files +%{_bindir}/vibepanel +%license LICENSE +%license LICENSE.dependencies +%doc README.md + +%changelog +* Sat May 23 2026 Its-J +- Package vibepanel