mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-17 17:10:37 +00:00
Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0a203341c5 | |||
| 2e698c4efb | |||
| 06012fc940 | |||
| 5340feaf23 | |||
| 1c04a2a571 | |||
| 6facd4e696 | |||
| 2809ed8126 | |||
| c6f3b43bb1 | |||
| a24889a791 | |||
| 4f43c854ba | |||
| 9b26ce7e83 | |||
| ded598bc1e |
@@ -0,0 +1,128 @@
|
||||
%global pypi_name arctis-sound-manager
|
||||
%global _desc Linux GUI for SteelSeries Arctis headsets — Nova Pro Wireless & Wired, Nova Pro Omni, Nova Elite, Nova 7/7P/5/3, Arctis 7/7+/9/Pro Wireless. Device settings, Sonar EQ, 4-channel Game/Chat/Media mixer, PipeWire routing.
|
||||
|
||||
%global arctis_sound_manager_services arctis-manager.service arctis-video-router.service arctis-gui.service
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 1.1.74
|
||||
Release: 1%{?dist}
|
||||
Summary: GUI for SteelSeries Arctis headsets
|
||||
License: GPL-3.0-or-later
|
||||
# GitHub pages URL 404s
|
||||
URL: https://github.com/loteran/Arctis-Sound-Manager
|
||||
Source0: %{url}/archive/refs/tags/v%{version}.tar.gz
|
||||
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-wheel
|
||||
BuildRequires: python3-setuptools
|
||||
BuildRequires: python3-pip
|
||||
BuildRequires: python3-importlib-metadata
|
||||
BuildRequires: python3-uv-build
|
||||
BuildRequires: systemd-rpm-macros
|
||||
BuildRequires: python3-ruamel-yaml
|
||||
BuildRequires: desktop-file-utils
|
||||
|
||||
Packager: Owen Zimmerman <owen@fyralabs.com>
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
Provides: Arctis-Sound-Manager
|
||||
|
||||
%description
|
||||
%_desc
|
||||
|
||||
%package -n python3-%{pypi_name}
|
||||
Summary: %{summary}
|
||||
%{?python_provide:%python_provide python3-%{pypi_name}}
|
||||
|
||||
%description -n python3-%{pypi_name}
|
||||
%_desc
|
||||
|
||||
%prep
|
||||
%autosetup -n Arctis-Sound-Manager-%{version}
|
||||
|
||||
%build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%pyproject_install
|
||||
%pyproject_save_files arctis_sound_manager
|
||||
|
||||
install -Dm644 /dev/null %{buildroot}%{_udevrulesdir}/91-steelseries-arctis.rules
|
||||
python3 scripts/generate_udev_rules.py src/arctis_sound_manager/devices/ \
|
||||
> %{buildroot}%{_udevrulesdir}/91-steelseries-arctis.rules
|
||||
|
||||
# Systemd user services (single source of truth in systemd/, not heredocs)
|
||||
install -Dm644 systemd/arctis-manager.service %{buildroot}%{_userunitdir}/arctis-manager.service
|
||||
install -Dm644 systemd/arctis-video-router.service %{buildroot}%{_userunitdir}/arctis-video-router.service
|
||||
install -Dm644 systemd/arctis-gui.service %{buildroot}%{_userunitdir}/arctis-gui.service
|
||||
|
||||
# dinit service templates
|
||||
install -Dm644 dinit/arctis-manager %{buildroot}%{_datadir}/%{name}/dinit/arctis-manager
|
||||
install -Dm644 dinit/arctis-video-router %{buildroot}%{_datadir}/%{name}/dinit/arctis-video-router
|
||||
install -Dm644 dinit/arctis-gui %{buildroot}%{_datadir}/%{name}/dinit/arctis-gui
|
||||
install -Dm644 dinit/pipewire-filter-chain %{buildroot}%{_datadir}/%{name}/dinit/pipewire-filter-chain
|
||||
install -Dm755 scripts/asm-diag-dinit.py %{buildroot}%{_bindir}/asm-diag-dinit
|
||||
|
||||
# Desktop entry
|
||||
install -Dm644 src/arctis_sound_manager/desktop/ArctisManager.desktop \
|
||||
%{buildroot}%{_datadir}/applications/ArctisManager.desktop
|
||||
|
||||
# Icon
|
||||
install -Dm644 src/arctis_sound_manager/gui/images/steelseries_logo.svg \
|
||||
%{buildroot}%{_scalableiconsdir}/arctis-manager.svg
|
||||
|
||||
# PipeWire configs
|
||||
install -Dm644 scripts/pipewire/10-arctis-virtual-sinks.conf \
|
||||
%{buildroot}%{_datadir}/%{name}/pipewire/10-arctis-virtual-sinks.conf
|
||||
install -Dm644 scripts/pipewire/sink-virtual-surround-7.1-hesuvi.conf \
|
||||
%{buildroot}%{_datadir}/%{name}/pipewire/sink-virtual-surround-7.1-hesuvi.conf
|
||||
|
||||
# filter-chain.service (bundled for distros that don't ship one)
|
||||
install -Dm644 scripts/filter-chain.service \
|
||||
%{buildroot}%{_datadir}/%{name}/filter-chain.service
|
||||
|
||||
# First-run autostart (triggers asm-setup on first graphical login)
|
||||
install -Dm644 debian/asm-first-run.desktop \
|
||||
%{buildroot}%{_sysconfdir}/xdg/autostart/asm-first-run.desktop
|
||||
|
||||
%check
|
||||
%desktop_file_validate %{buildroot}%{_appsdir}/ArctisManager.desktop
|
||||
|
||||
%post
|
||||
%systemd_user_post %{arctis_sound_manager_services}
|
||||
|
||||
%preun
|
||||
%systemd_user_preun %{arctis_sound_manager_services}
|
||||
|
||||
%postun
|
||||
%systemd_postun_with_restart %{arctis_sound_manager_services}
|
||||
|
||||
%files -n python3-%{pypi_name} -f %{pyproject_files}
|
||||
%doc README.md CONTRIBUTING.md CHANGELOG.md
|
||||
%license LICENSE
|
||||
%{_bindir}/asm-cli
|
||||
%{_bindir}/asm-daemon
|
||||
%{_bindir}/asm-diag-dinit
|
||||
%{_bindir}/asm-gui
|
||||
%{_bindir}/asm-router
|
||||
%{_bindir}/asm-setup
|
||||
%{_udevrulesdir}/91-steelseries-arctis.rules
|
||||
%{_userunitdir}/arctis-manager.service
|
||||
%{_userunitdir}/arctis-video-router.service
|
||||
%{_userunitdir}/arctis-gui.service
|
||||
%{_datadir}/%{name}/dinit/arctis-manager
|
||||
%{_datadir}/%{name}/dinit/arctis-video-router
|
||||
%{_datadir}/%{name}/dinit/pipewire-filter-chain
|
||||
%{_bindir}/asm-diag-dinit
|
||||
%{_appsdir}/ArctisManager.desktop
|
||||
%{_scalableiconsdir}/arctis-manager.svg
|
||||
%{_datadir}/%{name}/pipewire/10-arctis-virtual-sinks.conf
|
||||
%{_datadir}/%{name}/pipewire/sink-virtual-surround-7.1-hesuvi.conf
|
||||
%{_datadir}/%{name}/filter-chain.service
|
||||
%{_sysconfdir}/xdg/autostart/asm-first-run.desktop
|
||||
%{_datadir}/python-arctis-sound-manager/dinit/arctis-gui
|
||||
|
||||
%changelog
|
||||
* Mon Jun 15 2026 Owen Zimmerman <owen@fyralabs.com>
|
||||
- Initial commit
|
||||
@@ -0,0 +1,6 @@
|
||||
project pkg {
|
||||
arches = ["x86_64"]
|
||||
rpm {
|
||||
spec = "Arctis-Sound-Manager.spec"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
rpm.version(pypi("arctis-sound-manager"));
|
||||
@@ -1,7 +1,7 @@
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
Name: chdig
|
||||
Version: 26.5.1
|
||||
Version: 26.6.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Dig into ClickHouse with TUI interface
|
||||
URL: https://github.com/azat/chdig
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: discord-canary-openasar
|
||||
Version: 1.0.1280
|
||||
Version: 1.0.1289
|
||||
Release: 1%{?dist}
|
||||
Summary: A snappier Discord rewrite with features like further customization and theming
|
||||
License: MIT AND https://discord.com/terms
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: discord-canary
|
||||
Version: 1.0.1280
|
||||
Version: 1.0.1289
|
||||
Release: 1%{?dist}
|
||||
Summary: Free Voice and Text Chat for Gamers
|
||||
URL: discord.com
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Disable X11 for RHEL 10+
|
||||
%bcond x11 %[%{undefined rhel} || 0%{?rhel} < 10]
|
||||
|
||||
%global commit 65a1852ba388bb17f03797abeceb6e78c37e3aab
|
||||
%global commit 53796ca2ea82bd960b0907c89231e773dc381502
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260616
|
||||
%global commit_date 20260617
|
||||
%global ver 0.41.0
|
||||
|
||||
Name: mpv-nightly
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
%global ver 2026-06-16
|
||||
%global ver 2026-06-17
|
||||
%global goodver %(echo %ver | sed 's/-//g')
|
||||
%global __brp_mangle_shebangs %{nil}
|
||||
%bcond_without mold
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: rustnet
|
||||
Version: 1.3.0
|
||||
Version: 1.4.0
|
||||
Release: 1%{?dist}
|
||||
Summary: A cross-platform network monitoring terminal UI tool built with Rust
|
||||
License: Apache-2.0 AND (MIT OR Apache-2.0) AND Unicode-3.0 AND (0BSD OR MIT OR Apache-2.0) AND (Apache-2.0 AND ISC) AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND Apache-2.0 AND (BSD-2-Clause OR Apache-2.0 OR MIT) AND BSD-2-Clause AND (BSD-3-Clause OR Apache-2.0) AND BSL-1.0 AND ISC AND (LGPL-2.1-only OR BSD-2-Clause) AND (MIT OR Apache-2.0 OR LGPL-2.1-or-later) AND (MIT OR Apache-2.0 OR Zlib) AND (MIT OR Zlib OR Apache-2.0) AND MIT AND (Unlicense OR MIT) AND (Zlib OR Apache-2.0 OR MIT) AND Zlib
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: budgie-extras
|
||||
Version: 2.2.3
|
||||
Release: 2%{?dist}
|
||||
Release: 3%{?dist}
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
Summary: Additional Budgie Desktop enhancements for user experience
|
||||
@@ -43,9 +43,9 @@ Requires: budgie-applet-dropby
|
||||
Requires: budgie-applet-fuzzyclock
|
||||
Requires: budgie-applet-kangaroo
|
||||
Requires: budgie-applet-network-manager
|
||||
Requires: budgie-applet-quickchar
|
||||
Requires: budgie-applet-quicknote
|
||||
Requires: budgie-applet-recentlyused
|
||||
Requires: budgie-applet-screencast
|
||||
Requires: budgie-applet-showtime
|
||||
Requires: budgie-applet-takeabreak
|
||||
Requires: budgie-applet-visualspace
|
||||
@@ -140,14 +140,6 @@ Summary: A fork of Wingpanel Network Indicator, ported to budgie desktop
|
||||
%description -n budgie-applet-network-manager
|
||||
%{summary}
|
||||
|
||||
%package -n budgie-applet-quickchar
|
||||
Requires: budgie-extras-common
|
||||
Requires: budgie-extras-daemon
|
||||
Summary: A mini-app to quickly choose and insert equivalents of ascii characters
|
||||
%description -n budgie-applet-quickchar
|
||||
QuickChar is a mini-app to quickly choose and insert equivalents of ascii
|
||||
characters. QuickChar is activated via the Budgie Menu.
|
||||
|
||||
%package -n budgie-applet-quicknote
|
||||
Requires: budgie-extras-common
|
||||
Summary: Applet providing simple notes capability for the Budgie Desktop
|
||||
@@ -234,15 +226,10 @@ find . -name "meson.build" -exec sed -i "s/dependency('libpeas-gtk-1.0')/depende
|
||||
%install
|
||||
%meson_install
|
||||
|
||||
# Remove absolute symlink and replace with relative symlink
|
||||
rm -f %{buildroot}%{_bindir}/quickchar
|
||||
|
||||
%fdupes %{buildroot}%{_datadir}/budgie-desktop/budgie-weathershow/weather_icons
|
||||
|
||||
%post
|
||||
|
||||
%{__ln_s} -fv %{_bindir}/quickchar %{_libdir}/quickchar/quickchar
|
||||
|
||||
%files
|
||||
|
||||
%files common
|
||||
@@ -301,9 +288,6 @@ rm -f %{buildroot}%{_bindir}/quickchar
|
||||
%files -n budgie-applet-network-manager
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-network-manager
|
||||
|
||||
%files -n budgie-applet-quickchar
|
||||
%ghost %{_bindir}/quickchar
|
||||
|
||||
%files -n budgie-applet-quicknote
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-quicknote
|
||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.plugins.quicknote.gschema.xml
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: nirius
|
||||
Version: 0.7.2
|
||||
Version: 0.7.3
|
||||
Release: 1%{?dist}
|
||||
Summary: Utility commands for niri
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
%global ver 5.0.0
|
||||
|
||||
%global commit de82488dc60db736acd5bf95fb448405ea99f404
|
||||
%global commit 6b0e16179645e15693efd94f51109d22b199418c
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commitdate 20260608
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 4f2f5b032280ea391bf5e7af9b13ab5e0eb21340
|
||||
%global commit_date 20260425
|
||||
%global commit 75fb2822c9a025acf373541998d603cbbf6536f1
|
||||
%global commit_date 20260617
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
# Exclude input files from mangling
|
||||
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit fdbf9ff3a31d7531b691cb49c98fc465a1a503a0
|
||||
%global commit e8e7fea103ab8bff5384673a60e04b59939738dd
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global fulldate 2026-06-15
|
||||
%global fulldate 2026-06-16
|
||||
%global commit_date %(echo %{fulldate} | sed 's/-//g')
|
||||
%global public_key RWQlAjJC23149WL2sEpT/l0QKy7hMIFhYdQOFy0Z7z7PbneUgvlsnYcV
|
||||
%global ver 1.3.2
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
%bcond test 1
|
||||
|
||||
Name: powershell
|
||||
Version: 7.6.2
|
||||
Version: 7.6.3
|
||||
Release: 1%{?dist}
|
||||
Summary: A cross-platform automation and configuration tool/framework
|
||||
SourceLicense: MIT
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit c3c38c5c09d887817229b133d904e6eb3f7e7011
|
||||
%global commit 45afbac0a5ab0d396e316ce0247fd41330c94d88
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260616
|
||||
%global commit_date 20260617
|
||||
%global ver 1.8.0
|
||||
|
||||
%bcond_with check
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
%global appid com.valvesoftware.Steam
|
||||
|
||||
Name: steam
|
||||
Version: 1.0.0.85
|
||||
Release: 11%{?dist}
|
||||
Version: 1.0.0.86
|
||||
Release: 1%{?dist}
|
||||
Summary: Installer for the Steam software distribution service
|
||||
# Redistribution and repackaging for Linux is allowed, see license file. udev rules are MIT.
|
||||
License: Steam License Agreement and MIT
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global commit da21a8f77f31b295e77e1b55e9ef408ca3bf9402
|
||||
%global commit 153468dc86e8d2cdd5e1908f68c17faf2d0b4b47
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver v26.3.27
|
||||
%global commit_date 20260610
|
||||
%global commit_date 20260617
|
||||
|
||||
%global goipath github.com/XTLS/Xray-core
|
||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
%global csrc_commit 561b417c65791cd8356b5f73620914ceff845d10
|
||||
%global commit f5d9e7a207383e45cd1dd8a17f8e754a14df71cf
|
||||
%global commit f8e470eb579c96515693d76ad393dbd41b393f26
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver 2.3.1
|
||||
%global commit_date 20260616
|
||||
%global commit_date 20260617
|
||||
%global debug_package %nil
|
||||
|
||||
Name: nim-nightly
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
%global _desc A Python SDK for interacting with the Public Trading API, providing a simple and intuitive interface for trading operations, market data retrieval, and account management.
|
||||
|
||||
Name: python-%{real_name}
|
||||
Version: 0.1.15
|
||||
Release: 2%{?dist}
|
||||
Version: 0.1.16
|
||||
Release: 1%{?dist}
|
||||
Summary: Python SDK for interacting with the Public Trading API
|
||||
License: Apache-2.0
|
||||
URL: https://github.com/PublicDotCom/publicdotcom-py
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit c0826a2a33b0aeaf9620002c1b0e9f51dc1c95f4
|
||||
%global commit_date 20260616
|
||||
%global commit 5e927a88f7c37b2592371a419cf4dd355a3ae4b7
|
||||
%global commit_date 20260617
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global pypi_name types-colorama
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
%global crate usage-cli
|
||||
|
||||
Name: rust-usage-cli
|
||||
Version: 3.5.0
|
||||
Version: 3.5.2
|
||||
Release: 1%{?dist}
|
||||
Summary: CLI for working with usage-based CLIs
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global commit 01ea6726b2c82d8dcd0d71ec852729b04628606a
|
||||
%global commit 9f9d8faf3a68541fb9e9e8245b103a6cab54df19
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver 20260614143513
|
||||
%global commit_date 20260615
|
||||
%global ver 20260616073835
|
||||
%global commit_date 20260617
|
||||
|
||||
Name: v2ray-domain-list-community
|
||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||
|
||||
@@ -123,42 +123,33 @@ python3 src/func_tests/run_tests.py
|
||||
%doc README.md
|
||||
%{_libdir}/liblcevc_dec_api.so.4
|
||||
%{_libdir}/liblcevc_dec_api.so.%{version}
|
||||
%{_libdir}/liblcevc_dec_legacy.so.1
|
||||
%{_libdir}/liblcevc_dec_pipeline_cpu.so.1
|
||||
%{_libdir}/liblcevc_dec_pipeline_legacy.so.1
|
||||
|
||||
%files devel
|
||||
%{_includedir}/LCEVC
|
||||
%{_libdir}/liblcevc_dec_api.so
|
||||
%{_libdir}/liblcevc_dec_legacy.so
|
||||
%{_libdir}/liblcevc_dec_pipeline_cpu.so
|
||||
%{_libdir}/liblcevc_dec_pipeline_legacy.so
|
||||
%{_libdir}/pkgconfig/lcevc_dec.pc
|
||||
%{_libdir}/pkgconfig/lcevc_dec_extract.pc
|
||||
%{_libdir}/pkgconfig/lcevc_dec_utility.pc
|
||||
|
||||
# Static:
|
||||
%{_libdir}/liblcevc_dec_api_utility.a
|
||||
%{_libdir}/liblcevc_dec_common.a
|
||||
%{_libdir}/liblcevc_dec_enhancement.a
|
||||
%{_libdir}/liblcevc_dec_extract.a
|
||||
%{_libdir}/liblcevc_dec_pipeline.a
|
||||
%{_libdir}/liblcevc_dec_pixel_processing.a
|
||||
%{_libdir}/liblcevc_dec_sequencer.a
|
||||
%{_libdir}/liblcevc_dec_unit_test_utilities.a
|
||||
%{_libdir}/liblcevc_dec_utility.a
|
||||
%{_libdir}/pkgconfig/lcevc_dec.pc
|
||||
|
||||
%files samples
|
||||
%{_bindir}/lcevc_dec_common_test_unit
|
||||
%{_bindir}/lcevc_dec_enhancement_sample
|
||||
%{_bindir}/lcevc_dec_enhancement_test_unit
|
||||
%{_bindir}/lcevc_dec_legacy_test_unit
|
||||
%{_bindir}/lcevc_dec_pipeline_cpu_test_unit
|
||||
%{_bindir}/lcevc_dec_pipeline_legacy_test_unit
|
||||
%{_bindir}/lcevc_dec_pipeline_test_unit
|
||||
%{_bindir}/lcevc_dec_pixel_processing_test_unit
|
||||
%{_bindir}/lcevc_dec_sample
|
||||
%{_bindir}/lcevc_dec_test_harness
|
||||
%{_bindir}/lcevc_dec_test_unit
|
||||
%{_bindir}/lcevc_dec_utility_test_unit
|
||||
%{_bindir}/lcevc_sequencer_test_unit
|
||||
|
||||
%changelog
|
||||
%autochangelog
|
||||
|
||||
@@ -1 +1 @@
|
||||
4.0.3
|
||||
4.2.0
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
Name: gstreamer1-plugins-bad
|
||||
Version: 1.28.4
|
||||
Release: 1%{?dist}
|
||||
Release: 2%{?dist}
|
||||
Epoch: 2
|
||||
Summary: GStreamer streaming media framework "bad" plugins
|
||||
License: LGPL-2.0-or-later and LGPL-2.0-only
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
%global debug_package %{nil}
|
||||
%global appid org.asus_linux.rog_control_center
|
||||
|
||||
%global asus_system_units asusd.service asus-shutdown.service
|
||||
|
||||
Name: asusctl
|
||||
Version: 6.3.8
|
||||
Release: 1%{?dist}
|
||||
Release: 2%{?dist}
|
||||
Epoch: 1
|
||||
Summary: A control daemon, CLI tools, and a collection of crates for interacting with ASUS ROG laptops
|
||||
URL: https://gitlab.com/asus-linux/asusctl
|
||||
@@ -93,16 +95,13 @@ mkdir -p %{buildroot}%{_sysconfdir}/asusd
|
||||
%{_datadir}/asusd/
|
||||
|
||||
%post
|
||||
%systemd_post asusd.service
|
||||
%systemd_post asus-shutdown.service
|
||||
%systemd_post %{asus_system_units}
|
||||
|
||||
%preun
|
||||
%systemd_preun asusd.service
|
||||
%systemd_preun asus-shutdown.service
|
||||
%systemd_preun %{asus_system_units}
|
||||
|
||||
%postun
|
||||
%systemd_postun_with_restart asusd.service
|
||||
%systemd_postun_with_restart asus-shutdown.service
|
||||
%systemd_postun_with_restart %{asus_system_units}
|
||||
|
||||
%files rog-gui
|
||||
%{_bindir}/rog-control-center
|
||||
@@ -112,6 +111,10 @@ mkdir -p %{buildroot}%{_sysconfdir}/asusd
|
||||
%{_metainfodir}/%{appid}.metainfo.xml
|
||||
|
||||
%changelog
|
||||
* Wed Jun 17 2026 Owen Zimmerman <owen@fyralabs.com> - 6.3.8-2
|
||||
- define %{asus_system_units} to make rhe spec a bit cleaner
|
||||
- and only call %%systemd_* once
|
||||
|
||||
* Fri May 08 2026 Owen Zimmerman <owen@fyralabs.com> - 6.3.7-3
|
||||
- Use new macros, clean some stuff up
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
rpm.version(gitlab("20328305"));
|
||||
rpm.version(gh_tag("OpenGamingCollective/asusctl"));
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit ce9416a9c214f7c0f1920ebcdfcfb343583dd4f8
|
||||
%global commit_date 20260616
|
||||
%global commit fd4a923c3787e7903971f45b62a0f594c608f846
|
||||
%global commit_date 20260617
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
Name: cloud-hypervisor-nightly
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
%global buildforkernels akmod
|
||||
%global debug_package %{nil}
|
||||
%global commit c313a9e539f49e983f8ff5d50c0ff192d3544a8a
|
||||
%global commit e9f7e01d0483c8596614b2f803c51ebb672ddc6c
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260605
|
||||
%global commit_date 20260617
|
||||
%global modulename intel-ipu6
|
||||
# Actual "release" version, currently unused as the release versions are back and forth on if on if they use 1.0.0 or 1.0.1
|
||||
%global ver 1.0.1
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global debug_package %{nil}
|
||||
%global commit c313a9e539f49e983f8ff5d50c0ff192d3544a8a
|
||||
%global commit e9f7e01d0483c8596614b2f803c51ebb672ddc6c
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260605
|
||||
%global commit_date 20260617
|
||||
%global modulename intel-ipu6
|
||||
# Actual "release" version, currently unused as the release versions are back and forth on if on if they use 1.0.0 or 1.0.1
|
||||
%global ver 1.0.1
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global debug_package %{nil}
|
||||
%global commit c313a9e539f49e983f8ff5d50c0ff192d3544a8a
|
||||
%global commit e9f7e01d0483c8596614b2f803c51ebb672ddc6c
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260605
|
||||
%global commit_date 20260617
|
||||
# Actual "release" version, currently unused as the release versions are back and forth on if on if they use 1.0.0 or 1.0.1
|
||||
# Use this if they ever stop doing that I guess
|
||||
%global ver 1.0.1
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit a95fef26012e60e578891124bd2aef9c46ef8c92
|
||||
%global commit 8015681139833d9cbaff739a1085785f9389f6aa
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commitdate 20260616
|
||||
%global commitdate 20260617
|
||||
%global ver 0
|
||||
%define buildforkernels akmod
|
||||
%global debug_package %{nil}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit a95fef26012e60e578891124bd2aef9c46ef8c92
|
||||
%global commit 8015681139833d9cbaff739a1085785f9389f6aa
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commitdate 20260616
|
||||
%global commitdate 20260617
|
||||
%global ver 0
|
||||
%global debug_package %{nil}
|
||||
%global modulename sc0710
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit a95fef26012e60e578891124bd2aef9c46ef8c92
|
||||
%global commit 8015681139833d9cbaff739a1085785f9389f6aa
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commitdate 20260616
|
||||
%global commitdate 20260617
|
||||
%global ver 0
|
||||
|
||||
Name: sc0710
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 9a8223bdb617cf38754f5e22dc9144fcc702d3c9
|
||||
%global commit 13d50ce4bbcf574dddfd222bc1d42dfc1949fb32
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commitdate 20260616
|
||||
%global commitdate 20260617
|
||||
%global ver 1.1.1
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: electron
|
||||
%electronmeta
|
||||
Version: 42.4.0
|
||||
Version: 42.4.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Build cross platform desktop apps with web technologies
|
||||
License: %{electron_license}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global forgeurl https://github.com/nakst/gf
|
||||
|
||||
%global commit 56c97f66769ec8109a9aff2e475a86c9a6781742
|
||||
%global commit 1c04ed95d45d49fb4b06cbc620c61acd58818977
|
||||
%global shortcommit %{sub %{commit} 0 7}
|
||||
%global commitdate 20251231
|
||||
|
||||
|
||||
@@ -13,8 +13,6 @@ License: GPL-3.0-or-later AND LGPL-2.1-or-later AND MIT AND GPL-2.0-or-
|
||||
|
||||
Requires: gtk3 pulseaudio-libs alsa-lib pipewire-jack-audio-connection-kit
|
||||
BuildRequires: gcc g++ gtk3-devel pulseaudio-libs-devel alsa-lib-devel pipewire-jack-audio-connection-kit-devel
|
||||
# for lscpu check below
|
||||
BuildRequires: util-linux
|
||||
# to install desktop file
|
||||
BuildRequires: desktop-file-utils
|
||||
# to generate the icon files
|
||||
@@ -33,16 +31,11 @@ Packager: june-fish <june@fyralabs.com>
|
||||
%autosetup -n praat.github.io-%{version}
|
||||
|
||||
%build
|
||||
# .LE makefile hardcodes little endian
|
||||
if [[ "$(lscpu | grep Endian)" == *"Little Endian"* ]]
|
||||
then
|
||||
cp makefiles/makefile.defs.linux.pulse-gcc.LE ./makefile.defs
|
||||
elif [[ "%{lscpu | grep Endian}" == *"Big Endian"* ]]
|
||||
then
|
||||
cp makefiles/makefile.defs.linux.pulse-gcc.BE ./makefile.defs
|
||||
fi
|
||||
|
||||
%make_build
|
||||
%ifarch x86_64
|
||||
%make_build PRAAT_ARCH=x64v1
|
||||
%else
|
||||
%make_build PRAAT_ARCH=native
|
||||
%endif
|
||||
|
||||
%install
|
||||
install -pDm755 praat %{buildroot}%{_bindir}/praat
|
||||
@@ -72,5 +65,7 @@ done
|
||||
%{_metainfodir}/%appid.metainfo.xml
|
||||
|
||||
%changelog
|
||||
* Wed Jun 17 2026 june-fish <git@june.fish> - 6.4.67
|
||||
- use new praat build process
|
||||
* Fri Feb 06 2026 june-fish <git@june.fish> - 6.4.59
|
||||
- Initial Package
|
||||
|
||||
Reference in New Issue
Block a user