Compare commits

..

18 Commits

Author SHA1 Message Date
Owen-sz b3e4fcc830 oops
Signed-off-by: Owen-sz <owen@fyralabs.com>
2026-06-15 14:33:36 +02:00
Owen-sz 90c58b51ea add: linsh
Signed-off-by: Owen-sz <owen@fyralabs.com>
2026-06-15 14:32:00 +02:00
Raboneko 638a055d24 bump: neohtop-cli nirius senpai 2026-06-15 07:35:14 +00:00
Owen Zimmerman cae524eb5e add: neohtop-cli (#10908)
* add: neohtop-cli

Signed-off-by: Owen-sz <owen@fyralabs.com>

* install manually

Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>

* this

Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>

* chore: use go packaging

Signed-off-by: Owen-sz <owen@fyralabs.com>

---------

Signed-off-by: Owen-sz <owen@fyralabs.com>
Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>
2026-06-15 13:30:43 +08:00
Raboneko 595730eea5 bump(nightly): flameshot-nightly mpv-nightly noctalia-git ghostty-nightly zed-nightly nim-nightly v2ray-domain-list-community 2026-06-15 04:50:03 +00:00
Raboneko 868854d928 bump: ruffle-nightly rpcs3 twintaillauncher vicinae 2026-06-15 02:07:10 +00:00
Raboneko 4173dca70a bump: rust-mise 2026-06-14 23:47:56 +00:00
Raboneko e87d208bc4 bump: rust-television 2026-06-14 22:42:17 +00:00
Raboneko c4fdc7af27 bump(branch): zig-master astal-gtk 2026-06-14 22:07:15 +00:00
Raboneko 8b3c7f7ee6 bump: ayatana-indicator-session vgmstream 2026-06-14 21:12:39 +00:00
Owen Zimmerman 017fdc961a add: lazyssh (#13078)
* add: lazyssh

Signed-off-by: Owen-sz <owen@fyralabs.com>

* fix update.rhai

Signed-off-by: Owen-sz <owen@fyralabs.com>

---------

Signed-off-by: Owen-sz <owen@fyralabs.com>
2026-06-15 04:21:09 +08:00
Raboneko 7af70ae448 bump: rust-gping 2026-06-14 19:55:18 +00:00
Raboneko 6609bfb604 bump: rpcs3 2026-06-14 16:48:28 +00:00
Raboneko 1b93a56ba7 bump: plasma6-applet-appgrid rpcs3 zig-master-bootstrap libayatana-appindicator-glib kmonad 2026-06-14 15:15:21 +00:00
Owen Zimmerman 64b91fb190 fix (kmonad): update script (#13077)
Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>
2026-06-14 23:13:48 +08:00
Raboneko 0692e15383 bump: rust-zoi-rs 2026-06-14 13:03:30 +00:00
june b04efc8693 fix(signal-desktop): fix license name conflicts (#13072) 2026-06-14 07:32:29 -05:00
Raboneko 189d95b364 bump: rust-mise rpcs3 senpai 2026-06-14 11:10:18 +00:00
79 changed files with 186 additions and 188 deletions
-5
View File
@@ -1,5 +0,0 @@
# Terra apps Folder
This folder is for all graphical-first, general purpose applications.
Any packages that have a graphical subpackage, or have a more specific purpose that better matches a different folder (for example, zed or veracrypt), should be placed in a more specific folder.
Use your best judgement.
+2 -2
View File
@@ -1,9 +1,9 @@
#? https://github.com/flameshot-org/flameshot/blob/master/packaging/rpm/fedora/flameshot.spec
%global ver 13.3.0
%global commit e79773b9895539980c0434182ca9154180c1e8f0
%global commit c47870ac95cdce9e63c19198b1f1c0bf57504cf6
%global shortcommit %{sub %{commit} 1 7}
%global commit_date 20260613
%global commit_date 20260615
%global devel_name QtColorWidgets
%global _distro_extra_cflags -fuse-ld=mold
%global _distro_extra_cxxflags -fuse-ld=mold
+2 -2
View File
@@ -1,9 +1,9 @@
# Disable X11 for RHEL 10+
%bcond x11 %[%{undefined rhel} || 0%{?rhel} < 10]
%global commit 7d245fd100fc0d87edcc559b0676a326dc8c5801
%global commit 662d41093c27e52a6c0ae0bee00f59310d16aa83
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global commit_date 20260613
%global commit_date 20260615
%global ver 0.41.0
Name: mpv-nightly
+5
View File
@@ -0,0 +1,5 @@
project pkg {
rpm {
spec = "neohtop-cli.spec"
}
}
@@ -0,0 +1,44 @@
%define debug_package %{nil}
%global goipath github.com/abdenasser/neohtop-cli
Version: 0.1.13
%gometa -f
Name: neohtop-cli
Release: 1%{?dist}
Summary: A cross-platform terminal process monitor with btop-style visualizations
License: MIT
URL: https://github.com/Abdenasser/neohtop-cli
Source0: %{url}/archive/refs/tags/v%{version}.tar.gz
Packager: Owen Zimmerman <owen@fyralabs.com>
BuildRequires: go-rpm-macros
%description
%summary.
%gopkg
%prep
%autosetup
%build
%define gomodulesmode GO111MODULE=on
pushd cli
%gobuild -o %{gobuilddir}/../neohtop-cli %{goipath}/
popd
%install
install -Dm 0755 cli/neohtop-cli %{buildroot}%{_bindir}/neohtop-cli
%files
%doc README.md CONTRIBUTING.md
%license LICENSE
%{_bindir}/neohtop-cli
%changelog
* Sun Jun 14 2026 Owen Zimmerman <owen@fyralabs.com>
- Use go packaging
* Sun Mar 29 2026 Owen Zimmerman <owen@fyralabs.com>
- Initial commit
@@ -0,0 +1 @@
rpm.version(gh("Abdenasser/neohtop-cli"));
+1 -1
View File
@@ -1,4 +1,4 @@
%global ver 2026-06-14
%global ver 2026-06-15
%global goodver %(echo %ver | sed 's/-//g')
%global __brp_mangle_shebangs %{nil}
%bcond_without mold
+7 -1
View File
@@ -74,6 +74,7 @@ popd
echo "Electron Builder" > %{rpmbuilddir}/webapp-tool.txt
%install
mv ./packages/mute-state-change/LICENSE ./packages/mute-state-change/LICENSE.mute-state-change
%electron_install -i signal -l -I build/icons/png
%desktop_file_install %{SOURCE1}
@@ -83,13 +84,15 @@ install -Dm644 $OUTDIR/resources/$policy %{buildroot}%{_datadir}/polkit-1/rules.
rm $OUTDIR/resources/$policy
done
mv LICENSE LICENSE.signal-desktop
%terra_appstream -o %{SOURCE2}
%check
%desktop_file_validate %{buildroot}%{_appsdir}/signal.desktop
%files
%license LICENSE
%license LICENSE.signal-desktop
%doc README.md CONTRIBUTING.md ACKNOWLEDGMENTS.md
%license bundled_licenses/*
%{_bindir}/signal-desktop
@@ -101,6 +104,9 @@ done
%{_metainfodir}/org.signal.Signal.metainfo.xml
%changelog
* Sun Jun 14 2026 june-fish <git@june.fish>
- Fix license name conflicts
* Mon Dec 22 2025 Owen Zimmerman <owen@fyralabs.com>
- Use more electron macros, correct build failures
-3
View File
@@ -1,3 +0,0 @@
# Terra buildsys Folder
This folder is for all build systems (buildsys).
+1 -1
View File
@@ -5,7 +5,7 @@
%global crate mise
Name: rust-mise
Version: 2026.6.7
Version: 2026.6.10
Release: 1%{?dist}
Summary: Front-end to your dev env
-3
View File
@@ -1,3 +0,0 @@
# Terra desktops Folder
This folder is for all desktop environments, wayland compositors, and any related packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra desktops/budgie Folder
This folder is for all Budgie related packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra desktops/elementary Folder
This folder is for all elementary related packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra desktops/gnome Folder
This folder is for all gnome related packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra desktops/hyprland Folder
This folder is for all hyprland related packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra desktops/kde Folder
This folder is for all KDE related packages.
@@ -1,6 +1,6 @@
Name: plasma6-applet-appgrid
Version: 1.8.5
Release: 2%{?dist}
Version: 1.9.0
Release: 1%{?dist}
Summary: A modern fullscreen application launcher for KDE Plasma
# Main code: GPL-2.0-or-later
# dev.xarbit.appgrid.metainfo.xml: CC0-1.0
-3
View File
@@ -1,3 +0,0 @@
# Terra desktops/lomiri-unity Folder
This folder is for all lomiri-unity related packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra desktops/mate Folder
This folder is for all MATE related packages.
@@ -1,6 +1,6 @@
Name: ayatana-indicator-session
Summary: Ayatana Indicator Session Applet
Version: 26.6.0
Version: 26.6.1
Release: 1%{?dist}
License: GPL-3.0
URL: https://github.com/AyatanaIndicators/ayatana-indicator-session
-3
View File
@@ -1,3 +0,0 @@
# Terra desktops/niri Folder
This folder is for all niri related packages.
+1 -1
View File
@@ -1,5 +1,5 @@
Name: nirius
Version: 0.0.0
Version: 0.7.2
Release: 1%{?dist}
Summary: Utility commands for niri
+1 -1
View File
@@ -2,7 +2,7 @@
%global ver 5.0.0
%global commit 65e127f88a528a953ca87ba9011665303ee35d24
%global commit deaae83724bb5707124f98904e907a670d1ffc0f
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global commitdate 20260608
-3
View File
@@ -1,3 +0,0 @@
# Terra desktops/singularity Folder
This folder is for all singularity related packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra desktops/stardust Folder
This folder is for all Stardust XR related packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra desktops/sway Folder
This folder is for all sway related packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra desktops/waylands Folder
This folder is for all wayland compositor/tiling window manager related/enhancing packages.
-9
View File
@@ -1,9 +0,0 @@
# Terra devs Folder
This folder is for developer related packages.
Examples:
- Terminals
- IDEs/editors
- Shells
@@ -1,6 +1,6 @@
%global commit 5659cef41f4f2f7a478d0800a11836fa17e64d66
%global commit 699387c2c16dd5723e8825ad608538142b07b86b
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global fulldate 2026-06-10
%global fulldate 2026-06-14
%global commit_date %(echo %{fulldate} | sed 's/-//g')
%global public_key RWQlAjJC23149WL2sEpT/l0QKy7hMIFhYdQOFy0Z7z7PbneUgvlsnYcV
%global ver 1.3.2
+5
View File
@@ -0,0 +1,5 @@
project pkg {
rpm {
spec = "linsh.spec"
}
}
+34
View File
@@ -0,0 +1,34 @@
%define debug_package %{nil}
Name: linsh
Version: 0.02
Release: 1%{?dist}
Summary: Linux shell
License: GPL-2.0-or-later
URL: https://github.com/maxskiier/linsh
Source0: %{url}/archive/refs/tags/v%{version}.tar.gz
Packager: Owen Zimmerman <owen@fyralabs.com>
BuildRequires: make
BuildRequires: gcc
%description
%{summary}.
%prep
%autosetup
%build
%make_build
%install
install -Dm755 linsh %{buildroot}%{_bindir}/linsh
%files
%license LICENSE
%doc README.txt
%{_bindir}/linsh
%changelog
* Mon Jun 15 2026 Owen Zimmerman <owen@fyralabs.com> - 0.02-1
- Initial package
+1
View File
@@ -0,0 +1 @@
rpm.version(gh_tag("maxskiier/linsh"));
+2 -2
View File
@@ -1,6 +1,6 @@
%global commit df9c9f055e55c891e627ffe17cce51ac9e20c648
%global commit cccc7b2d4408ee75d5c2e9dadad2cc0b7f992dd0
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global commit_date 20260614
%global commit_date 20260615
%global ver 1.8.0
%bcond_with check
-3
View File
@@ -1,3 +0,0 @@
# Terra fonts Folder
This folder is for all fonts/font related packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra games Folder
This folder is for all games/game related packages.
+2 -2
View File
@@ -9,8 +9,8 @@
# GLIBCXX_ASSERTIONS is known to break RPCS3
%global build_cflags %(echo "%{__build_flags_lang_c}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags}
%global build_cxxflags %(echo "%{__build_flags_lang_cxx}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags}
%global commit 4fed5e7b88d78c03359009377b740a3c826505a7
%global ver 0.0.41-19465
%global commit c38e8229ed063d476a55e8092922b728fa6854d3
%global ver 0.0.41-19475
Name: rpcs3
Version: %(echo %{ver} | sed 's/-/^/g')
@@ -6,7 +6,7 @@
Name: twintaillauncher
Version: 2.2.1
Version: 2.3.0
Release: 1%{?dist}
Summary: A multi-platform launcher for your anime games
Packager: Yoong Jin <solomoncyj@gmail.com>
-5
View File
@@ -1,5 +0,0 @@
# Terra langs Folder
This folder is for all language-specific packages.
This mostly includes software written for a specific language (language servers, language specific libraries/modules, languages themselves), but may also include software written in a specific language that does not fit anywhere else (for example, all our Haskell ghc-* packages).
Use your best judgement when contributing here.
-3
View File
@@ -1,3 +0,0 @@
# Terra langs/crystal Folder
This folder is for all crystal packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra langs/d Folder
This folder is for all D packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra langs/go Folder
This folder is for go specific or misc go packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra langs/haskell Folder
This folder is for all Haskell packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra langs/holyc Folder
This folder is for HolyC and HolyC related packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra langs/kotlin Folder
This folder is for all Kotlin packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra langs/lua Folder
This folder is for all Lua packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra langs/nim Folder
This folder is for Nim specific or miscellaneous Nim packages.
+2 -2
View File
@@ -1,8 +1,8 @@
%global csrc_commit 561b417c65791cd8356b5f73620914ceff845d10
%global commit 9d7c0cc68369a5040dc969a6ca6f69f005ee6cf0
%global commit 7171e6f01f846a511a5fad8d1ab24baaee66e308
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global ver 2.3.1
%global commit_date 20260614
%global commit_date 20260615
%global debug_package %nil
Name: nim-nightly
-3
View File
@@ -1,3 +0,0 @@
# Terra langs/python Folder
This folder is for Python specific packages, Python modules, or miscellaneous Python packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra langs/rust Folder
This folder is for Rust specific packages, or miscellaneous Rust packages.
+2 -2
View File
@@ -6,8 +6,8 @@
%global crate gping
Name: rust-gping
Version: 1.20.1
Release: 1%?dist
Version: 1.20.2
Release: 1%{?dist}
Summary: Ping, but with a graph
License: MIT
@@ -5,7 +5,7 @@
%global crate television
Name: rust-television
Version: 0.15.8
Version: 0.15.9
Release: 1%{?dist}
Summary: Very fast, portable and hackable fuzzy finder for the terminal
+1 -1
View File
@@ -1,7 +1,7 @@
%define __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
%global crate zoi-rs
%global crate_version 1.18.4
%global crate_version 1.18.5
Name: rust-zoi-rs
Version: %(echo %crate_version | sed 's/-/~/g')
-3
View File
@@ -1,3 +0,0 @@
# Terra langs/vala Folder
This folder is for Vala packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra langs/zig Folder
This folder is for Zig specific, or miscellaneous Zig packages.
+1 -1
View File
@@ -1,6 +1,6 @@
#!/usr/bin/bash
version=0.17.0-dev.836+e357134f0
version=0.17.0-dev.857+2b2b85c5f
mirrors=()
@@ -6,7 +6,7 @@
%define llvm_compat 22
%endif
%global llvm_version 22.0.0
%global ver 0.17.0-dev.836+e357134f0
%global ver 0.17.0-dev.857+2b2b85c5f
%bcond bootstrap 1
%bcond docs %{without bootstrap}
%bcond test 1
+1 -1
View File
@@ -18,7 +18,7 @@
%global zig_cache_dir %{builddir}/zig-cache
Name: zig-master
Version: 0.17.0~dev.813+2153f8143
Version: 0.17.0~dev.857+2b2b85c5f
Release: 2%{?dist}
Summary: Master builds of the Zig language
License: MIT AND NCSA AND LGPL-2.1-or-later AND LGPL-2.1-or-later WITH GCC-exception-2.0 AND GPL-2.0-or-later AND GPL-2.0-or-later WITH GCC-exception-2.0 AND BSD-3-Clause AND Inner-Net-2.0 AND ISC AND LicenseRef-Fedora-Public-Domain AND GFDL-1.1-or-later AND ZPL-2.1
-9
View File
@@ -1,9 +0,0 @@
# Terra langs Folder
This folder is for all library/library related packages.
Examples:
- C/C++ header/library first packages
- GUI frameworks
- API packages
- QT packages.
+3 -3
View File
@@ -1,6 +1,6 @@
%global commit 271851bbc07748100382ae7caf6ef71c70c01bfc
%global shortcommit 271851b
%global commit_date 20260602
%global commit 948805f6e8cf7f8c08eba06ab1db1eef0e75e3a0
%global shortcommit 948805f
%global commit_date 20260613
Name: astal
Version: 0^%commit_date.%commit
@@ -2,7 +2,7 @@
Name: libayatana-appindicator-glib
Summary: Ayatana Application Indicators Shared Library
Version: 2.0.2
Version: 2.0.3
Release: 1%{?dist}
License: GPL-3.0-or-later
Packager: veuxit <erroor234@gmail.com>
-4
View File
@@ -1,4 +0,0 @@
# Terra misc Folder
This folder is for all miscellaneous packages that do not fit in any other folders.
Use your best judgement when contributing here.
@@ -1,7 +1,7 @@
%global commit 5e1035c6f2458efa45ac825a798960ed0c310110
%global commit 01ea6726b2c82d8dcd0d71ec852729b04628606a
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global ver 20260613160425
%global commit_date 20260614
%global ver 20260614143513
%global commit_date 20260615
Name: v2ray-domain-list-community
Version: %{ver}^%{commit_date}git.%{shortcommit}
-9
View File
@@ -1,9 +0,0 @@
# Terra multimedia Folder
This folder is for all multimedia packages.
Examples:
- Codecs
- Media manipulation tools
- Media explorers
+2 -2
View File
@@ -1,6 +1,6 @@
%global commit c01f584b97c5f4567f49022872ba967ebf03917d
%global commit 74db1fd4cb6f7c98b7e3fb5290d695d276ce8f9a
%global shortcommit %{sub %{commit} 1 7}
%global commit_date 20260607
%global commit_date 20260614
Name: vgmstream
Version: 0~%{commit_date}git.%shortcommit
-11
View File
@@ -1,11 +0,0 @@
# Terra system Folder
This folder is for all system related packages.
Examples:
- Kernel modules
- Package managers
- Schedulers
- udev rules
- Tools to interact directly with the system (ex. asusctl)
+1 -1
View File
@@ -6,7 +6,7 @@
Name: vicinae
License: GPL-3.0-or-later
Version: 0.21.6
Version: 0.21.7
Release: 1%{?dist}
URL: https://docs.vicinae.com
Source: https://github.com/vicinaehq/%{name}/archive/refs/tags/v%{version}.tar.gz
-3
View File
@@ -1,3 +0,0 @@
# Terra terra Folder
This folder is for all terra related packages.
-3
View File
@@ -1,3 +0,0 @@
# Terra themes Folder
This folder is for all theme/theme related packages.
-5
View File
@@ -1,5 +0,0 @@
# Terra tools Folder
This folder is for all tool packages.
Generally speaking, these are CLI programs with a specific purpose.
Use your best judgement when contributing here.
+2 -2
View File
@@ -1,8 +1,8 @@
%global pkg_name kmonad
Name: %{pkg_name}
Version: 0.4.4
Release: 1%?dist
Version: 0.4.5
Release: 1%{?dist}
Summary: An advanced keyboard manager
License: MIT
+1 -1
View File
@@ -1 +1 @@
print(hackage("kmonad"));
rpm.version(hackage("kmonad"));
+5
View File
@@ -0,0 +1,5 @@
project pkg {
rpm {
spec = "lazyssh.spec"
}
}
+43
View File
@@ -0,0 +1,43 @@
%define debug_package %{nil}
%global goipath github.com/Adembc/lazyssh
Version: 0.3.0
%gometa -f
Name: lazyssh
Release: 1%{?dist}
Summary: A terminal-based SSH manager inspired by lazydocker and k9s - Written in go
License: Apache-2.0
URL: https://github.com/Adembc/lazyssh
Source0: %{url}/archive/refs/tags/v%{version}.tar.gz
Packager: Owen Zimmerman <owen@fyralabs.com>
BuildRequires: golang gcc go-rpm-macros
Requires: glibc
%description
%{summary}.
%gopkg
%prep
%autosetup
%build
%define gomodulesmode GO111MODULE=on
%gobuild -o %{gobuilddir}/lazyssh %{goipath}/cmd
%install
install -Dm 0755 %{gobuilddir}/lazyssh %{buildroot}%{_bindir}/lazyssh
%files
%license LICENSE
%doc README.md
%{_bindir}/lazyssh
%changelog
* Sun Jun 14 2026 Owen-sz <owen@fyralabs.com> - 0.3.0-1
- Initial commit
+1
View File
@@ -0,0 +1 @@
rpm.version(gh("Adembc/lazyssh"));