From 092696ee825204759d6a0f7c05e8bf1295cb335d Mon Sep 17 00:00:00 2001 From: madonuko Date: Thu, 1 Jan 2026 03:51:50 +0800 Subject: [PATCH] add: buzz --- anda/apps/buzz/anda.hcl | 5 +++++ anda/apps/buzz/buzz.spec | 39 ++++++++++++++++++++++++++++++++++++++ anda/apps/buzz/update.rhai | 1 + 3 files changed, 45 insertions(+) create mode 100644 anda/apps/buzz/anda.hcl create mode 100644 anda/apps/buzz/buzz.spec create mode 100644 anda/apps/buzz/update.rhai diff --git a/anda/apps/buzz/anda.hcl b/anda/apps/buzz/anda.hcl new file mode 100644 index 0000000000..e86da3b0c5 --- /dev/null +++ b/anda/apps/buzz/anda.hcl @@ -0,0 +1,5 @@ +project pkg { + rpm { + spec = "buzz.spec" + } +} diff --git a/anda/apps/buzz/buzz.spec b/anda/apps/buzz/buzz.spec new file mode 100644 index 0000000000..950fbf962a --- /dev/null +++ b/anda/apps/buzz/buzz.spec @@ -0,0 +1,39 @@ +%global appid io.github.chidiwilliams.Buzz + +Name: buzz +Version: 1.3.3 +Release: 1%?dist +Summary: Buzz transcribes and translates audio offline on your personal computer +License: MIT +URL: https://chidiwilliams.github.io/buzz +Packager: madonuko +BuildRequires: python3-devel +BuildRequires: python3-wheel +BuildRequires: python3-pip +BuildRequires: python3-setuptools +BuildRequires: python3-setuptools_scm +BuildRequires: python3dist(polib) +BuildRequires: glslc +BuildRequires: cmake gcc gcc-c++ + +%description +Buzz transcribes and translates audio offline on your personal computer. Powered by OpenAI's Whisper. + +%prep +%git_clone https://github.com/chidiwilliams/buzz + +%build +%pyproject_wheel + +%install +%pyproject_install +%pyproject_save_files buzz + +%files -f %{pyproject_files} +%doc README.md +%license LICENSE +%{_appsdir}/buzz.desktop + +%changelog +* Thu Jan 01 2026 madonuko - 1.3.3-1 +- Initial commit diff --git a/anda/apps/buzz/update.rhai b/anda/apps/buzz/update.rhai new file mode 100644 index 0000000000..8b39342cdd --- /dev/null +++ b/anda/apps/buzz/update.rhai @@ -0,0 +1 @@ +rpm.version(pypi("buzz-captions"));