mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-19 18:10:38 +00:00
Compare commits
38 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3d443cfe71 | |||
| 045ea2080e | |||
| cde0d643d7 | |||
| 058dda85e2 | |||
| c155b632de | |||
| 09050f244c | |||
| 6889968620 | |||
| f274fda030 | |||
| ca4a7d8373 | |||
| 301f470fda | |||
| 1dba060957 | |||
| 50eaa100a7 | |||
| b166317d0c | |||
| 756254e09a | |||
| da86f4d6d6 | |||
| 4201279877 | |||
| 8bde54bc16 | |||
| f9fa7efc81 | |||
| 21e33b9bfa | |||
| 9561429385 | |||
| 5a1ee18acf | |||
| 38fe2370f6 | |||
| bafc595016 | |||
| 1ca1c6a510 | |||
| 948268c681 | |||
| f87a9abea0 | |||
| c397eb7fc1 | |||
| 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.78
|
||||||
|
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
|
%undefine __brp_mangle_shebangs
|
||||||
|
|
||||||
Name: chdig
|
Name: chdig
|
||||||
Version: 26.5.1
|
Version: 26.6.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Dig into ClickHouse with TUI interface
|
Summary: Dig into ClickHouse with TUI interface
|
||||||
URL: https://github.com/azat/chdig
|
URL: https://github.com/azat/chdig
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||||
|
|
||||||
Name: discord-canary-openasar
|
Name: discord-canary-openasar
|
||||||
Version: 1.0.1280
|
Version: 1.0.1316
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A snappier Discord rewrite with features like further customization and theming
|
Summary: A snappier Discord rewrite with features like further customization and theming
|
||||||
License: MIT AND https://discord.com/terms
|
License: MIT AND https://discord.com/terms
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: discord-canary
|
Name: discord-canary
|
||||||
Version: 1.0.1280
|
Version: 1.0.1316
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Free Voice and Text Chat for Gamers
|
Summary: Free Voice and Text Chat for Gamers
|
||||||
URL: discord.com
|
URL: discord.com
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||||
|
|
||||||
Name: discord-ptb-openasar
|
Name: discord-ptb-openasar
|
||||||
Version: 1.0.195
|
Version: 1.0.196
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A snappier Discord rewrite with features like further customization and theming
|
Summary: A snappier Discord rewrite with features like further customization and theming
|
||||||
License: MIT AND https://discord.com/terms
|
License: MIT AND https://discord.com/terms
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: discord-ptb
|
Name: discord-ptb
|
||||||
Version: 1.0.195
|
Version: 1.0.196
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Free Voice and Text Chat for Gamers.
|
Summary: Free Voice and Text Chat for Gamers.
|
||||||
URL: https://discord.com
|
URL: https://discord.com
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#? https://github.com/flameshot-org/flameshot/blob/master/packaging/rpm/fedora/flameshot.spec
|
#? https://github.com/flameshot-org/flameshot/blob/master/packaging/rpm/fedora/flameshot.spec
|
||||||
|
|
||||||
%global ver 13.3.0
|
%global ver 13.3.0
|
||||||
%global commit c47870ac95cdce9e63c19198b1f1c0bf57504cf6
|
%global commit 18accdcc9a739233438b1591965067e3e9cdec72
|
||||||
%global shortcommit %{sub %{commit} 1 7}
|
%global shortcommit %{sub %{commit} 1 7}
|
||||||
%global commit_date 20260615
|
%global commit_date 20260618
|
||||||
%global devel_name QtColorWidgets
|
%global devel_name QtColorWidgets
|
||||||
%global _distro_extra_cflags -fuse-ld=mold
|
%global _distro_extra_cflags -fuse-ld=mold
|
||||||
%global _distro_extra_cxxflags -fuse-ld=mold
|
%global _distro_extra_cxxflags -fuse-ld=mold
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
Name: fontviewer
|
Name: fontviewer
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Version: 1.2.0
|
Version: 1.3.0
|
||||||
Release: 1%?dist
|
Release: 1%{?dist}
|
||||||
Summary: View and install fonts
|
Summary: View and install fonts
|
||||||
|
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: helium-browser-bin
|
Name: helium-browser-bin
|
||||||
Version: 0.13.3.1
|
Version: 0.13.4.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Private, fast, and honest web browser based on Chromium
|
Summary: Private, fast, and honest web browser based on Chromium
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
%global pure_protobuf_version 2.0.0
|
%global pure_protobuf_version 2.0.0
|
||||||
|
|
||||||
Name: komikku
|
Name: komikku
|
||||||
Version: 50.6.0
|
Version: 50.7.0
|
||||||
%forgemeta
|
%forgemeta
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A manga reader for GNOME
|
Summary: A manga reader for GNOME
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
# Disable X11 for RHEL 10+
|
# Disable X11 for RHEL 10+
|
||||||
%bcond x11 %[%{undefined rhel} || 0%{?rhel} < 10]
|
%bcond x11 %[%{undefined rhel} || 0%{?rhel} < 10]
|
||||||
|
|
||||||
%global commit 65a1852ba388bb17f03797abeceb6e78c37e3aab
|
%global commit 2d5dfb343aeac72e4ee7303dbf34347a0ff4425d
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global commit_date 20260616
|
%global commit_date 20260618
|
||||||
%global ver 0.41.0
|
%global ver 0.41.0
|
||||||
|
|
||||||
Name: mpv-nightly
|
Name: mpv-nightly
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
%global ver 2026-06-16
|
%global ver 2026-06-19
|
||||||
%global goodver %(echo %ver | sed 's/-//g')
|
%global goodver %(echo %ver | sed 's/-//g')
|
||||||
%global __brp_mangle_shebangs %{nil}
|
%global __brp_mangle_shebangs %{nil}
|
||||||
%bcond_without mold
|
%bcond_without mold
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: rustnet
|
Name: rustnet
|
||||||
Version: 1.3.0
|
Version: 1.4.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A cross-platform network monitoring terminal UI tool built with Rust
|
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
|
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
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Name: signal-desktop
|
Name: signal-desktop
|
||||||
%electronmeta -aD
|
%electronmeta -aD
|
||||||
Version: 8.14.0
|
Version: 8.15.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A private messenger for Windows, macOS, and Linux
|
Summary: A private messenger for Windows, macOS, and Linux
|
||||||
URL: https://signal.org
|
URL: https://signal.org
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: gradle
|
Name: gradle
|
||||||
Version: 9.5.1
|
Version: 9.6.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Powerful build system for the JVM
|
Summary: Powerful build system for the JVM
|
||||||
URL: https://gradle.org/
|
URL: https://gradle.org/
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Name: budgie-extras
|
Name: budgie-extras
|
||||||
Version: 2.2.3
|
Version: 2.2.3
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
|
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-or-later
|
||||||
Summary: Additional Budgie Desktop enhancements for user experience
|
Summary: Additional Budgie Desktop enhancements for user experience
|
||||||
@@ -43,9 +43,9 @@ Requires: budgie-applet-dropby
|
|||||||
Requires: budgie-applet-fuzzyclock
|
Requires: budgie-applet-fuzzyclock
|
||||||
Requires: budgie-applet-kangaroo
|
Requires: budgie-applet-kangaroo
|
||||||
Requires: budgie-applet-network-manager
|
Requires: budgie-applet-network-manager
|
||||||
Requires: budgie-applet-quickchar
|
|
||||||
Requires: budgie-applet-quicknote
|
Requires: budgie-applet-quicknote
|
||||||
Requires: budgie-applet-recentlyused
|
Requires: budgie-applet-recentlyused
|
||||||
|
Requires: budgie-applet-screencast
|
||||||
Requires: budgie-applet-showtime
|
Requires: budgie-applet-showtime
|
||||||
Requires: budgie-applet-takeabreak
|
Requires: budgie-applet-takeabreak
|
||||||
Requires: budgie-applet-visualspace
|
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
|
%description -n budgie-applet-network-manager
|
||||||
%{summary}
|
%{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
|
%package -n budgie-applet-quicknote
|
||||||
Requires: budgie-extras-common
|
Requires: budgie-extras-common
|
||||||
Summary: Applet providing simple notes capability for the Budgie Desktop
|
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
|
%install
|
||||||
%meson_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
|
%fdupes %{buildroot}%{_datadir}/budgie-desktop/budgie-weathershow/weather_icons
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
|
||||||
%{__ln_s} -fv %{_bindir}/quickchar %{_libdir}/quickchar/quickchar
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
|
|
||||||
%files common
|
%files common
|
||||||
@@ -301,9 +288,6 @@ rm -f %{buildroot}%{_bindir}/quickchar
|
|||||||
%files -n budgie-applet-network-manager
|
%files -n budgie-applet-network-manager
|
||||||
%{_libdir}/budgie-desktop/plugins/budgie-network-manager
|
%{_libdir}/budgie-desktop/plugins/budgie-network-manager
|
||||||
|
|
||||||
%files -n budgie-applet-quickchar
|
|
||||||
%ghost %{_bindir}/quickchar
|
|
||||||
|
|
||||||
%files -n budgie-applet-quicknote
|
%files -n budgie-applet-quicknote
|
||||||
%{_libdir}/budgie-desktop/plugins/budgie-quicknote
|
%{_libdir}/budgie-desktop/plugins/budgie-quicknote
|
||||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.plugins.quicknote.gschema.xml
|
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.plugins.quicknote.gschema.xml
|
||||||
|
|||||||
+2
-2
@@ -1,5 +1,5 @@
|
|||||||
%global commit bd8475a3f103360945450a9fa8e8cf32034527b6
|
%global commit fd9ad168cd5e5c8bb326262fc5983912b42dc500
|
||||||
%global commit_date 20260610
|
%global commit_date 20260618
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
|
|
||||||
%global extension multi-monitors-bar
|
%global extension multi-monitors-bar
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-app-launch
|
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-app-launch
|
||||||
%global commit c40aaeecbc1a1634f961ed6ce2b5f5cb0e5196e3
|
%global commit d32f39df026806150ffcdc1dcabf08c74aa3f621
|
||||||
%forgemeta
|
%forgemeta
|
||||||
|
|
||||||
Name: lomiri-app-launch
|
Name: lomiri-app-launch
|
||||||
Version: 0.1.12
|
Version: 0.2.0
|
||||||
Release: 1%?dist
|
Release: 1%{?dist}
|
||||||
Summary: Provides the Lomiri App Launch user space daemon
|
Summary: Provides the Lomiri App Launch user space daemon
|
||||||
License: GPL-3.0
|
License: GPL-3.0
|
||||||
URL: https://gitlab.com/ubports/development/core/lomiri-app-launch
|
URL: https://gitlab.com/ubports/development/core/lomiri-app-launch
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-download-manager
|
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-download-manager
|
||||||
%global commit 0939d480c72871b3270cc529e16902fd41bfdda5
|
%global commit 72b77e657d71f4a0b1b979d27321b7a909ff5ad7
|
||||||
%forgemeta
|
%forgemeta
|
||||||
|
|
||||||
Name: lomiri-download-manager
|
Name: lomiri-download-manager
|
||||||
Version: 0.3.1
|
Version: 0.3.2
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Upload Download Manager for Lomiri
|
Summary: Upload Download Manager for Lomiri
|
||||||
License: LGPLv3
|
License: LGPLv3
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-indicator-network
|
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-indicator-network
|
||||||
%global commit 5c72fe38523e70377205cfa31c929d20fa8b29ac
|
%global commit 3a7597e25d13e587188a33c881caa6ed4f055267
|
||||||
%forgemeta
|
%forgemeta
|
||||||
|
|
||||||
Name: lomiri-indicator-network
|
Name: lomiri-indicator-network
|
||||||
Version: 1.2.0
|
Version: 1.99.0
|
||||||
Release: 1%?dist
|
Release: 1%{?dist}
|
||||||
Summary: The Network indicator for Ubuntu Touch
|
Summary: The Network indicator for Ubuntu Touch
|
||||||
License: GPL-3.0 AND LGPL-3.0
|
License: GPL-3.0 AND LGPL-3.0
|
||||||
URL: https://gitlab.com/ubports/development/core/lomiri-indicator-network
|
URL: https://gitlab.com/ubports/development/core/lomiri-indicator-network
|
||||||
|
|||||||
+2
-2
@@ -1,9 +1,9 @@
|
|||||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-settings-components
|
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-settings-components
|
||||||
%global commit 7bfc33d16ca234af8c88477cfbb2a95f3b7d8c9a
|
%global commit 3fcff0a27374d675702671564018b10d3627bd1b
|
||||||
%forgemeta
|
%forgemeta
|
||||||
|
|
||||||
Name: lomiri-settings-components
|
Name: lomiri-settings-components
|
||||||
Version: 1.2.0
|
Version: 1.2.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: The system settings components for Lomiri
|
Summary: The system settings components for Lomiri
|
||||||
License: GPLv3 AND LGPLv3
|
License: GPLv3 AND LGPLv3
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-system-settings
|
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-system-settings
|
||||||
%global commit e6b254aec0b827849bccab1337c3ca030168f892
|
%global commit 611f0bdfc80f7934cf890b703a0b2ec112626a27
|
||||||
%forgemeta
|
%forgemeta
|
||||||
|
|
||||||
Name: lomiri-system-settings
|
Name: lomiri-system-settings
|
||||||
Version: 1.3.2
|
Version: 1.4.0
|
||||||
Release: 1%?dist
|
Release: 1%{?dist}
|
||||||
Summary: The system settings application for Lomiri
|
Summary: The system settings application for Lomiri
|
||||||
License: GPLv3
|
License: GPLv3
|
||||||
URL: https://gitlab.com/ubports/development/core/lomiri-system-settings
|
URL: https://gitlab.com/ubports/development/core/lomiri-system-settings
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-ui-toolkit
|
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-ui-toolkit
|
||||||
%global commit 32d39be4d36abc5de7dc3cc8ab2aecb74a7505ce
|
%global commit 74d94596a8b273dc02dc6d5a44d614a16bb2383b
|
||||||
%forgemeta
|
%forgemeta
|
||||||
|
|
||||||
Name: lomiri-ui-toolkit
|
Name: lomiri-ui-toolkit
|
||||||
Version: 1.3.5906
|
Version: 1.3.5907
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: QML components to ease the creation of beautiful applications in QML for Lomiri
|
Summary: QML components to ease the creation of beautiful applications in QML for Lomiri
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri
|
%global forgeurl https://gitlab.com/ubports/development/core/lomiri
|
||||||
%global commit 39840a77525e57f29cde9d6773bd2742feae2486
|
%global commit d1bd01080e905154e9e8492673c8887ad5d87b7c
|
||||||
%forgemeta
|
%forgemeta
|
||||||
|
|
||||||
Name: lomiri
|
Name: lomiri
|
||||||
Version: 0.5.0
|
Version: 0.6.0
|
||||||
Release: 1%?dist
|
Release: 1%{?dist}
|
||||||
Summary: A convergent desktop environment by Ubports
|
Summary: A convergent desktop environment by Ubports
|
||||||
|
|
||||||
License: GPLv3 AND LGPLv3
|
License: GPLv3 AND LGPLv3
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: nirius
|
Name: nirius
|
||||||
Version: 0.7.2
|
Version: 0.7.3
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Utility commands for niri
|
Summary: Utility commands for niri
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
%global ver 5.0.0
|
%global ver 5.0.0
|
||||||
|
|
||||||
%global commit de82488dc60db736acd5bf95fb448405ea99f404
|
%global commit 7bc707b611fcb88401f64a52f483f389e2771f43
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global commitdate 20260608
|
%global commitdate 20260608
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
%global commit 3aae7f9a42a25b79fc7e01e6e3782d7dff43c174
|
%global commit 51ad7203edccbf9c40b68928cb5fe8ae1298a5be
|
||||||
%global commit_date 20260616
|
%global commit_date 20260619
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
|
|
||||||
Name: libsingularity
|
Name: libsingularity
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
%global commit 4f2f5b032280ea391bf5e7af9b13ab5e0eb21340
|
%global commit 75fb2822c9a025acf373541998d603cbbf6536f1
|
||||||
%global commit_date 20260425
|
%global commit_date 20260617
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
# Exclude input files from mangling
|
# Exclude input files from mangling
|
||||||
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
%global __requires_exclude ^libaaudio\\.so.*|^libandroid\\.so.*|^libmediandk\\.so.*|^liblog\\.so.*|^libc\\.so.*|^libm\\.so.*|^libdl\\.so.*|^libcrypt\\.so.*|^libstdc\\+\\+\\.so.*|^libncursesw\\.so.*|^libtinfo\\.so.*|^libnsl\\.so.*|^libpanelw\\.so.*$
|
%global __requires_exclude ^libaaudio\\.so.*|^libandroid\\.so.*|^libmediandk\\.so.*|^liblog\\.so.*|^libc\\.so.*|^libm\\.so.*|^libdl\\.so.*|^libcrypt\\.so.*|^libstdc\\+\\+\\.so.*|^libncursesw\\.so.*|^libtinfo\\.so.*|^libnsl\\.so.*|^libpanelw\\.so.*$
|
||||||
|
|
||||||
Name: android-studio-canary
|
Name: android-studio-canary
|
||||||
Version: 2026.1.2.7
|
Version: 2026.1.3.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Official IDE for Android development (Canary build)
|
Summary: Official IDE for Android development (Canary build)
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
@@ -24,7 +24,7 @@ Packager: veuxit <erroor234@gmail.com>
|
|||||||
ExclusiveArch: x86_64
|
ExclusiveArch: x86_64
|
||||||
URL: https://developer.android.com/studio/preview
|
URL: https://developer.android.com/studio/preview
|
||||||
|
|
||||||
%define suffixS quail2-canary7
|
%define suffixS quail3-canary1
|
||||||
|
|
||||||
Source0: https://dl.google.com/dl/android/studio/ide-zips/%{version}/android-studio-%{suffixS}-linux.tar.gz
|
Source0: https://dl.google.com/dl/android/studio/ide-zips/%{version}/android-studio-%{suffixS}-linux.tar.gz
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
%bcond test 0
|
%bcond test 0
|
||||||
|
|
||||||
Name: nodejs-%{npm_name}
|
Name: nodejs-%{npm_name}
|
||||||
Version: 12.0.1
|
Version: 12.0.4
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Backport GitHub commits
|
Summary: Backport GitHub commits
|
||||||
SourceLicense: Apache-2.0
|
SourceLicense: Apache-2.0
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
%global crate create-tauri-app
|
%global crate create-tauri-app
|
||||||
|
|
||||||
Name: rust-create-tauri-app
|
Name: rust-create-tauri-app
|
||||||
Version: 4.7.0
|
Version: 4.7.3
|
||||||
Release: 2%?dist
|
Release: 1%{?dist}
|
||||||
Summary: Rapidly scaffold out a new tauri app project
|
Summary: Rapidly scaffold out a new tauri app project
|
||||||
License: Apache-2.0 OR MIT
|
License: Apache-2.0 OR MIT
|
||||||
URL: https://crates.io/crates/create-tauri-app
|
URL: https://crates.io/crates/create-tauri-app
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
%global commit fdbf9ff3a31d7531b691cb49c98fc465a1a503a0
|
%global commit f9c52d0cd9d0da0cd970a5863b94c655c285d83e
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global fulldate 2026-06-15
|
%global fulldate 2026-06-18
|
||||||
%global commit_date %(echo %{fulldate} | sed 's/-//g')
|
%global commit_date %(echo %{fulldate} | sed 's/-//g')
|
||||||
%global public_key RWQlAjJC23149WL2sEpT/l0QKy7hMIFhYdQOFy0Z7z7PbneUgvlsnYcV
|
%global public_key RWQlAjJC23149WL2sEpT/l0QKy7hMIFhYdQOFy0Z7z7PbneUgvlsnYcV
|
||||||
%global ver 1.3.2
|
%global ver 1.3.2
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
%bcond test 1
|
%bcond test 1
|
||||||
|
|
||||||
Name: powershell
|
Name: powershell
|
||||||
Version: 7.6.2
|
Version: 7.6.3
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A cross-platform automation and configuration tool/framework
|
Summary: A cross-platform automation and configuration tool/framework
|
||||||
SourceLicense: MIT
|
SourceLicense: MIT
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
%global commit c3c38c5c09d887817229b133d904e6eb3f7e7011
|
%global commit 69b602c797a62f09318916d24a98c930533fbdc8
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global commit_date 20260616
|
%global commit_date 20260619
|
||||||
%global ver 1.8.0
|
%global ver 1.9.0
|
||||||
|
|
||||||
%bcond_with check
|
%bcond_with check
|
||||||
%bcond_with debug_no_build
|
%bcond_with debug_no_build
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
%global debug_package %{nil}
|
%global debug_package %{nil}
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%global ver 1.7.2-pre
|
%global ver 1.8.0-pre
|
||||||
# Exclude input files from mangling
|
# Exclude input files from mangling
|
||||||
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
%global rustflags_debuginfo 0
|
%global rustflags_debuginfo 0
|
||||||
|
|
||||||
Name: zed
|
Name: zed
|
||||||
Version: 1.6.3
|
Version: 1.7.2
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Zed is a high-performance, multiplayer code editor
|
Summary: Zed is a high-performance, multiplayer code editor
|
||||||
SourceLicense: AGPL-3.0-only AND Apache-2.0 AND GPL-3.0-or-later
|
SourceLicense: AGPL-3.0-only AND Apache-2.0 AND GPL-3.0-or-later
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
%global __brp_mangle_shebangs %{nil}
|
%global __brp_mangle_shebangs %{nil}
|
||||||
|
|
||||||
Name: inputplumber
|
Name: inputplumber
|
||||||
Version: 0.77.5
|
Version: 0.77.6
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Open source input router and remapper daemon for Linux
|
Summary: Open source input router and remapper daemon for Linux
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-or-later
|
||||||
|
|||||||
@@ -3,10 +3,10 @@
|
|||||||
%global name_pretty %{quote:Prism Launcher (Nightly)}
|
%global name_pretty %{quote:Prism Launcher (Nightly)}
|
||||||
%global appid org.prismlauncher.PrismLauncher-nightly
|
%global appid org.prismlauncher.PrismLauncher-nightly
|
||||||
|
|
||||||
%global commit 5f59aa58294b24e178e30a408230dda3d98ea5b0
|
%global commit f654ce821291b8b8db1f52850dec9e48ede1866f
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
|
|
||||||
%global commit_date 20260612
|
%global commit_date 20260618
|
||||||
%global snapshot_info %{commit_date}.%{shortcommit}
|
%global snapshot_info %{commit_date}.%{shortcommit}
|
||||||
|
|
||||||
# Change this variables if you want to use custom keys
|
# Change this variables if you want to use custom keys
|
||||||
|
|||||||
@@ -9,8 +9,8 @@
|
|||||||
# GLIBCXX_ASSERTIONS is known to break RPCS3
|
# 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_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 build_cxxflags %(echo "%{__build_flags_lang_cxx}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags}
|
||||||
%global commit e429f8cf05926852ed63949cad652bf1de5869a4
|
%global commit e32d19ffac500c6194f93b0338a4a64c51399b38
|
||||||
%global ver 0.0.41-19488
|
%global ver 0.0.41-19499
|
||||||
|
|
||||||
Name: rpcs3
|
Name: rpcs3
|
||||||
Version: %(echo %{ver} | sed 's/-/^/g')
|
Version: %(echo %{ver} | sed 's/-/^/g')
|
||||||
|
|||||||
@@ -3,8 +3,8 @@
|
|||||||
%global appid com.valvesoftware.Steam
|
%global appid com.valvesoftware.Steam
|
||||||
|
|
||||||
Name: steam
|
Name: steam
|
||||||
Version: 1.0.0.85
|
Version: 1.0.0.86
|
||||||
Release: 11%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Installer for the Steam software distribution service
|
Summary: Installer for the Steam software distribution service
|
||||||
# Redistribution and repackaging for Linux is allowed, see license file. udev rules are MIT.
|
# Redistribution and repackaging for Linux is allowed, see license file. udev rules are MIT.
|
||||||
License: Steam License Agreement and MIT
|
License: Steam License Agreement and MIT
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
%global commit da21a8f77f31b295e77e1b55e9ef408ca3bf9402
|
%global commit 1e036ce1c5076f695d149a672ca578ebf907f882
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global ver v26.3.27
|
%global ver v26.3.27
|
||||||
%global commit_date 20260610
|
%global commit_date 20260619
|
||||||
|
|
||||||
%global goipath github.com/XTLS/Xray-core
|
%global goipath github.com/XTLS/Xray-core
|
||||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
%global csrc_commit 561b417c65791cd8356b5f73620914ceff845d10
|
%global csrc_commit 561b417c65791cd8356b5f73620914ceff845d10
|
||||||
%global commit f5d9e7a207383e45cd1dd8a17f8e754a14df71cf
|
%global commit f8e470eb579c96515693d76ad393dbd41b393f26
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global ver 2.3.1
|
%global ver 2.3.1
|
||||||
%global commit_date 20260616
|
%global commit_date 20260617
|
||||||
%global debug_package %nil
|
%global debug_package %nil
|
||||||
|
|
||||||
Name: nim-nightly
|
Name: nim-nightly
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
%global _desc A framework for package management.
|
%global _desc A framework for package management.
|
||||||
|
|
||||||
Name: python-%{pypi_name}
|
Name: python-%{pypi_name}
|
||||||
Version: 0.12.33
|
Version: 0.12.34
|
||||||
Release: 2%?dist
|
Release: 1%{?dist}
|
||||||
Summary: A framework for package management
|
Summary: A framework for package management
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
URL: https://pkgcore.github.io/pkgcore
|
URL: https://pkgcore.github.io/pkgcore
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
%global _desc Send usage data from your Python code to PostHog.
|
%global _desc Send usage data from your Python code to PostHog.
|
||||||
|
|
||||||
Name: python-%{pypi_name}
|
Name: python-%{pypi_name}
|
||||||
Version: 7.19.1
|
Version: 7.19.2
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Send usage data from your Python code to PostHog
|
Summary: Send usage data from your Python code to PostHog
|
||||||
License: MIT
|
License: MIT
|
||||||
|
|||||||
@@ -3,8 +3,8 @@
|
|||||||
%global _desc Command-line client for the Public.com Trading API.
|
%global _desc Command-line client for the Public.com Trading API.
|
||||||
|
|
||||||
Name: python-%{real_name}
|
Name: python-%{real_name}
|
||||||
Version: 1.1.0
|
Version: 1.2.1
|
||||||
Release: 2%?dist
|
Release: 1%{?dist}
|
||||||
Summary: Command-line client for the Public.com Trading API
|
Summary: Command-line client for the Public.com Trading API
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
URL: https://github.com/PublicDotCom/publicdotcom-cli
|
URL: https://github.com/PublicDotCom/publicdotcom-cli
|
||||||
|
|||||||
@@ -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.
|
%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}
|
Name: python-%{real_name}
|
||||||
Version: 0.1.15
|
Version: 0.1.17
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Python SDK for interacting with the Public Trading API
|
Summary: Python SDK for interacting with the Public Trading API
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
URL: https://github.com/PublicDotCom/publicdotcom-py
|
URL: https://github.com/PublicDotCom/publicdotcom-py
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
%global _desc A python library that implements optimized versions of common functionality.
|
%global _desc A python library that implements optimized versions of common functionality.
|
||||||
|
|
||||||
Name: python-%{pypi_name}
|
Name: python-%{pypi_name}
|
||||||
Version: 0.11.0
|
Version: 0.11.1
|
||||||
Release: 2%?dist
|
Release: 1%{?dist}
|
||||||
Summary: Implements optimized versions of common functionality
|
Summary: Implements optimized versions of common functionality
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
URL: https://pkgcore.github.io/snakeoil
|
URL: https://pkgcore.github.io/snakeoil
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
%global commit c0826a2a33b0aeaf9620002c1b0e9f51dc1c95f4
|
%global commit 63c876f66ae413d8729da02422c5f40153a86540
|
||||||
%global commit_date 20260616
|
%global commit_date 20260618
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
|
|
||||||
%global pypi_name types-colorama
|
%global pypi_name types-colorama
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
%undefine __brp_mangle_shebangs
|
%undefine __brp_mangle_shebangs
|
||||||
|
|
||||||
Name: fresh
|
Name: fresh
|
||||||
Version: 0.4.0
|
Version: 0.4.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Text editor for your terminal: easy, powerful and fast
|
Summary: Text editor for your terminal: easy, powerful and fast
|
||||||
URL: https://getfresh.dev
|
URL: https://getfresh.dev
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
%global crate usage-cli
|
%global crate usage-cli
|
||||||
|
|
||||||
Name: rust-usage-cli
|
Name: rust-usage-cli
|
||||||
Version: 3.5.0
|
Version: 3.5.2
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: CLI for working with usage-based CLIs
|
Summary: CLI for working with usage-based CLIs
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
%define __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
%define __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
||||||
|
|
||||||
%global crate zoi-rs
|
%global crate zoi-rs
|
||||||
%global crate_version 1.18.5
|
%global crate_version 1.18.6
|
||||||
|
|
||||||
Name: rust-zoi-rs
|
Name: rust-zoi-rs
|
||||||
Version: %(echo %crate_version | sed 's/-/~/g')
|
Version: %(echo %crate_version | sed 's/-/~/g')
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/bash
|
#!/usr/bin/bash
|
||||||
|
|
||||||
version=0.17.0-dev.864+3deb86baf
|
version=0.17.0-dev.892+54537285c
|
||||||
|
|
||||||
mirrors=()
|
mirrors=()
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
%define llvm_compat 22
|
%define llvm_compat 22
|
||||||
%endif
|
%endif
|
||||||
%global llvm_version 22.0.0
|
%global llvm_version 22.0.0
|
||||||
%global ver 0.17.0-dev.864+3deb86baf
|
%global ver 0.17.0-dev.892+54537285c
|
||||||
%bcond bootstrap 1
|
%bcond bootstrap 1
|
||||||
%bcond docs %{without bootstrap}
|
%bcond docs %{without bootstrap}
|
||||||
%bcond test 1
|
%bcond test 1
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
%global zig_cache_dir %{builddir}/zig-cache
|
%global zig_cache_dir %{builddir}/zig-cache
|
||||||
|
|
||||||
Name: zig-master
|
Name: zig-master
|
||||||
Version: 0.17.0~dev.864+3deb86baf
|
Version: 0.17.0~dev.892+54537285c
|
||||||
Release: 2%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Master builds of the Zig language
|
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
|
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
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
%global commit 948805f6e8cf7f8c08eba06ab1db1eef0e75e3a0
|
%global commit 1c762bf4cf2f7e2aab1648d562dc98d2abc6e6ec
|
||||||
%global shortcommit 948805f
|
%global shortcommit 1c762bf
|
||||||
%global commit_date 20260613
|
%global commit_date 20260619
|
||||||
|
|
||||||
Name: astal
|
Name: astal
|
||||||
Version: 0^%commit_date.%commit
|
Version: 0^%commit_date.%commit
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
%global commit 948805f6e8cf7f8c08eba06ab1db1eef0e75e3a0
|
%global commit 1c762bf4cf2f7e2aab1648d562dc98d2abc6e6ec
|
||||||
%global shortcommit %{sub %commit 1 7}
|
%global shortcommit %{sub %commit 1 7}
|
||||||
%global commit_date 20260613
|
%global commit_date 20260619
|
||||||
|
|
||||||
Name: astal
|
Name: astal
|
||||||
Version: 0^%commit_date.%shortcommit
|
Version: 0^%commit_date.%shortcommit
|
||||||
|
|||||||
@@ -3,8 +3,8 @@
|
|||||||
%forgemeta
|
%forgemeta
|
||||||
|
|
||||||
Name: cmake-extras
|
Name: cmake-extras
|
||||||
Version: 1.9
|
Version: 1.10
|
||||||
Release: 2%?dist
|
Release: 1%{?dist}
|
||||||
Summary: A collection of add-ons for the CMake build tool
|
Summary: A collection of add-ons for the CMake build tool
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-or-later
|
||||||
URL: https://gitlab.com/ubports/development/core/cmake-extras
|
URL: https://gitlab.com/ubports/development/core/cmake-extras
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Name: libusermetrics
|
Name: libusermetrics
|
||||||
Version: 1.4.1
|
Version: 1.4.2
|
||||||
Release: 2%?dist
|
Release: 1%{?dist}
|
||||||
Summary: library for retrieving anonymous metrics about users
|
Summary: library for retrieving anonymous metrics about users
|
||||||
License: GPL-3.0-or-later AND LGPL-3.0-or-later AND LGPL-2.1-or-later
|
License: GPL-3.0-or-later AND LGPL-3.0-or-later AND LGPL-2.1-or-later
|
||||||
URL: https://gitlab.com/ubports/development/core/libusermetrics
|
URL: https://gitlab.com/ubports/development/core/libusermetrics
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
%global commit 01ea6726b2c82d8dcd0d71ec852729b04628606a
|
%global commit 9ad36e14f6e5db3b45235943d61768e5fa246edd
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global ver 20260614143513
|
%global ver 20260618031303
|
||||||
%global commit_date 20260615
|
%global commit_date 20260618
|
||||||
|
|
||||||
Name: v2ray-domain-list-community
|
Name: v2ray-domain-list-community
|
||||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||||
|
|||||||
@@ -123,42 +123,33 @@ python3 src/func_tests/run_tests.py
|
|||||||
%doc README.md
|
%doc README.md
|
||||||
%{_libdir}/liblcevc_dec_api.so.4
|
%{_libdir}/liblcevc_dec_api.so.4
|
||||||
%{_libdir}/liblcevc_dec_api.so.%{version}
|
%{_libdir}/liblcevc_dec_api.so.%{version}
|
||||||
%{_libdir}/liblcevc_dec_legacy.so.1
|
|
||||||
%{_libdir}/liblcevc_dec_pipeline_cpu.so.1
|
%{_libdir}/liblcevc_dec_pipeline_cpu.so.1
|
||||||
%{_libdir}/liblcevc_dec_pipeline_legacy.so.1
|
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%{_includedir}/LCEVC
|
%{_includedir}/LCEVC
|
||||||
%{_libdir}/liblcevc_dec_api.so
|
%{_libdir}/liblcevc_dec_api.so
|
||||||
%{_libdir}/liblcevc_dec_legacy.so
|
|
||||||
%{_libdir}/liblcevc_dec_pipeline_cpu.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:
|
# Static:
|
||||||
%{_libdir}/liblcevc_dec_api_utility.a
|
%{_libdir}/liblcevc_dec_api_utility.a
|
||||||
%{_libdir}/liblcevc_dec_common.a
|
|
||||||
%{_libdir}/liblcevc_dec_enhancement.a
|
|
||||||
%{_libdir}/liblcevc_dec_extract.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_unit_test_utilities.a
|
||||||
%{_libdir}/liblcevc_dec_utility.a
|
%{_libdir}/liblcevc_dec_utility.a
|
||||||
%{_libdir}/pkgconfig/lcevc_dec.pc
|
|
||||||
|
|
||||||
%files samples
|
%files samples
|
||||||
%{_bindir}/lcevc_dec_common_test_unit
|
%{_bindir}/lcevc_dec_common_test_unit
|
||||||
%{_bindir}/lcevc_dec_enhancement_sample
|
%{_bindir}/lcevc_dec_enhancement_sample
|
||||||
%{_bindir}/lcevc_dec_enhancement_test_unit
|
%{_bindir}/lcevc_dec_enhancement_test_unit
|
||||||
%{_bindir}/lcevc_dec_legacy_test_unit
|
|
||||||
%{_bindir}/lcevc_dec_pipeline_cpu_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_pipeline_test_unit
|
||||||
%{_bindir}/lcevc_dec_pixel_processing_test_unit
|
%{_bindir}/lcevc_dec_pixel_processing_test_unit
|
||||||
%{_bindir}/lcevc_dec_sample
|
%{_bindir}/lcevc_dec_sample
|
||||||
%{_bindir}/lcevc_dec_test_harness
|
%{_bindir}/lcevc_dec_test_harness
|
||||||
%{_bindir}/lcevc_dec_test_unit
|
%{_bindir}/lcevc_dec_test_unit
|
||||||
%{_bindir}/lcevc_dec_utility_test_unit
|
%{_bindir}/lcevc_dec_utility_test_unit
|
||||||
%{_bindir}/lcevc_sequencer_test_unit
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
%autochangelog
|
%autochangelog
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
4.0.3
|
4.2.0
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
Name: gstreamer1-plugins-bad
|
Name: gstreamer1-plugins-bad
|
||||||
Version: 1.28.4
|
Version: 1.28.4
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Epoch: 2
|
Epoch: 2
|
||||||
Summary: GStreamer streaming media framework "bad" plugins
|
Summary: GStreamer streaming media framework "bad" plugins
|
||||||
License: LGPL-2.0-or-later and LGPL-2.0-only
|
License: LGPL-2.0-or-later and LGPL-2.0-only
|
||||||
|
|||||||
@@ -1,13 +1,15 @@
|
|||||||
%global debug_package %{nil}
|
%global debug_package %{nil}
|
||||||
%global appid org.asus_linux.rog_control_center
|
%global appid org.asus_linux.rog_control_center
|
||||||
|
|
||||||
|
%global asus_system_units asusd.service asus-shutdown.service
|
||||||
|
|
||||||
Name: asusctl
|
Name: asusctl
|
||||||
Version: 6.3.8
|
Version: 1.0.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Summary: A control daemon, CLI tools, and a collection of crates for interacting with ASUS ROG laptops
|
Summary: A control daemon, CLI tools, and a collection of crates for interacting with ASUS ROG laptops
|
||||||
URL: https://gitlab.com/asus-linux/asusctl
|
URL: https://github.com/OpenGamingCollective/asusctl
|
||||||
Source0: %url/-/archive/%version/asusctl-%version.tar.gz
|
Source0: %{url}/archive/refs/tags/%{version}.tar.gz
|
||||||
Source1: %{appid}.metainfo.xml
|
Source1: %{appid}.metainfo.xml
|
||||||
License: MPL-2.0 AND (MIT OR Apache-2.0) AND NCSA AND Unicode-3.0 AND (0BSD OR MIT OR Apache-2.0) AND Apache-2.0 AND MIT AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR MIT) AND (Apache-2.0 OR Zlib) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND BSD-2-Clause (BSD-2-Clause OR Apache-2.0 OR MIT) AND (BSD-3-Clause OR Apache-2.0) AND BSD-3-Clause AND BSL-1.0 AND (CC0-1.0 OR Apache-2.0) AND (GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0) AND ISC AND MIT AND Zlib AND (MIT OR Apache-2.0 OR LGPL-2.1-or-later) AND (MIT OR Apache-2.0 OR Zlib) AND Unlicense AND (Zlib OR Apache-2.0 OR MIT)
|
License: MPL-2.0 AND (MIT OR Apache-2.0) AND NCSA AND Unicode-3.0 AND (0BSD OR MIT OR Apache-2.0) AND Apache-2.0 AND MIT AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR MIT) AND (Apache-2.0 OR Zlib) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND BSD-2-Clause (BSD-2-Clause OR Apache-2.0 OR MIT) AND (BSD-3-Clause OR Apache-2.0) AND BSD-3-Clause AND BSL-1.0 AND (CC0-1.0 OR Apache-2.0) AND (GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0) AND ISC AND MIT AND Zlib AND (MIT OR Apache-2.0 OR LGPL-2.1-or-later) AND (MIT OR Apache-2.0 OR Zlib) AND Unlicense AND (Zlib OR Apache-2.0 OR MIT)
|
||||||
BuildRequires: anda-srpm-macros
|
BuildRequires: anda-srpm-macros
|
||||||
@@ -43,7 +45,7 @@ A one-stop-shop GUI tool for asusd/asusctl. It aims to provide most controls,
|
|||||||
a notification service, and ability to run in the background.
|
a notification service, and ability to run in the background.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n asusctl-%version
|
%autosetup
|
||||||
%cargo_prep_online
|
%cargo_prep_online
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@@ -93,16 +95,13 @@ mkdir -p %{buildroot}%{_sysconfdir}/asusd
|
|||||||
%{_datadir}/asusd/
|
%{_datadir}/asusd/
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%systemd_post asusd.service
|
%systemd_post %{asus_system_units}
|
||||||
%systemd_post asus-shutdown.service
|
|
||||||
|
|
||||||
%preun
|
%preun
|
||||||
%systemd_preun asusd.service
|
%systemd_preun %{asus_system_units}
|
||||||
%systemd_preun asus-shutdown.service
|
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
%systemd_postun_with_restart asusd.service
|
%systemd_postun_with_restart %{asus_system_units}
|
||||||
%systemd_postun_with_restart asus-shutdown.service
|
|
||||||
|
|
||||||
%files rog-gui
|
%files rog-gui
|
||||||
%{_bindir}/rog-control-center
|
%{_bindir}/rog-control-center
|
||||||
@@ -112,6 +111,13 @@ mkdir -p %{buildroot}%{_sysconfdir}/asusd
|
|||||||
%{_metainfodir}/%{appid}.metainfo.xml
|
%{_metainfodir}/%{appid}.metainfo.xml
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jun 18 2026 Owen Zimmerman <owen@fyralabs.com> - 6.3.8-3
|
||||||
|
- Switch to OGC upstream
|
||||||
|
|
||||||
|
* 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
|
* Fri May 08 2026 Owen Zimmerman <owen@fyralabs.com> - 6.3.7-3
|
||||||
- Use new macros, clean some stuff up
|
- Use new macros, clean some stuff up
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1,2 @@
|
|||||||
rpm.version(gitlab("20328305"));
|
rpm.version(gh_tag("OpenGamingCollective/asusctl"));
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
%global commit ce9416a9c214f7c0f1920ebcdfcfb343583dd4f8
|
%global commit 066091a54c08b240939c3bc2c4119c693c636bdb
|
||||||
%global commit_date 20260616
|
%global commit_date 20260619
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
|
|
||||||
Name: cloud-hypervisor-nightly
|
Name: cloud-hypervisor-nightly
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
%global buildforkernels akmod
|
%global buildforkernels akmod
|
||||||
%global debug_package %{nil}
|
%global debug_package %{nil}
|
||||||
%global commit c313a9e539f49e983f8ff5d50c0ff192d3544a8a
|
%global commit 0d5ba31069ead844e231ed1ac637ac8ef571d63a
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global commit_date 20260605
|
%global commit_date 20260618
|
||||||
%global modulename intel-ipu6
|
%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
|
# 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
|
%global ver 1.0.1
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
%global debug_package %{nil}
|
%global debug_package %{nil}
|
||||||
%global commit c313a9e539f49e983f8ff5d50c0ff192d3544a8a
|
%global commit 0d5ba31069ead844e231ed1ac637ac8ef571d63a
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global commit_date 20260605
|
%global commit_date 20260618
|
||||||
%global modulename intel-ipu6
|
%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
|
# 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
|
%global ver 1.0.1
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
%global debug_package %{nil}
|
%global debug_package %{nil}
|
||||||
%global commit c313a9e539f49e983f8ff5d50c0ff192d3544a8a
|
%global commit 0d5ba31069ead844e231ed1ac637ac8ef571d63a
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global commit_date 20260605
|
%global commit_date 20260618
|
||||||
# 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
|
# 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
|
# Use this if they ever stop doing that I guess
|
||||||
%global ver 1.0.1
|
%global ver 1.0.1
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: pion
|
Name: pion
|
||||||
Version: 0.1.0
|
Version: 0.1.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Binder IPC Linux userspace root service
|
Summary: Binder IPC Linux userspace root service
|
||||||
License: MIT AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND (Unlicense OR MIT)
|
License: MIT AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND (Unlicense OR MIT)
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
%global commit a95fef26012e60e578891124bd2aef9c46ef8c92
|
%global commit 8015681139833d9cbaff739a1085785f9389f6aa
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global commitdate 20260616
|
%global commitdate 20260617
|
||||||
%global ver 0
|
%global ver 0
|
||||||
%define buildforkernels akmod
|
%define buildforkernels akmod
|
||||||
%global debug_package %{nil}
|
%global debug_package %{nil}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
%global commit a95fef26012e60e578891124bd2aef9c46ef8c92
|
%global commit 8015681139833d9cbaff739a1085785f9389f6aa
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global commitdate 20260616
|
%global commitdate 20260617
|
||||||
%global ver 0
|
%global ver 0
|
||||||
%global debug_package %{nil}
|
%global debug_package %{nil}
|
||||||
%global modulename sc0710
|
%global modulename sc0710
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
%global commit a95fef26012e60e578891124bd2aef9c46ef8c92
|
%global commit 8015681139833d9cbaff739a1085785f9389f6aa
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global commitdate 20260616
|
%global commitdate 20260617
|
||||||
%global ver 0
|
%global ver 0
|
||||||
|
|
||||||
Name: sc0710
|
Name: sc0710
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
%global commit 9a8223bdb617cf38754f5e22dc9144fcc702d3c9
|
%global commit f5e46f7fe7d7a804c422d8e981c5825402d8dac6
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global commitdate 20260616
|
%global commitdate 20260618
|
||||||
%global ver 1.1.1
|
%global ver 1.1.1
|
||||||
%undefine __brp_mangle_shebangs
|
%undefine __brp_mangle_shebangs
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ This build actually enables caching to remote storage.}
|
|||||||
%bcond dist %["%{_target_cpu}" == "x86_64"]
|
%bcond dist %["%{_target_cpu}" == "x86_64"]
|
||||||
|
|
||||||
Name: terra-sccache
|
Name: terra-sccache
|
||||||
Version: 0.15.0
|
Version: 0.16.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Remote caching enabled builds of sccache
|
Summary: Remote caching enabled builds of sccache
|
||||||
SourceLicense: Apache-2.0 AND (Apache-2.0 OR MIT)
|
SourceLicense: Apache-2.0 AND (Apache-2.0 OR MIT)
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: terra-scripts
|
Name: terra-scripts
|
||||||
Version: 0.2.0
|
Version: 0.2.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Helpful scripts for contributing to Terra
|
Summary: Helpful scripts for contributing to Terra
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-or-later
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
%global tag 2025-08-21
|
%global tag 2026-06-19
|
||||||
|
|
||||||
Name: fluent-icon-theme
|
Name: fluent-icon-theme
|
||||||
Version: 20250821
|
Version: 20260619
|
||||||
Release: 4%?dist
|
Release: 1%{?dist}
|
||||||
Summary: Fluent icon theme for linux desktops
|
Summary: Fluent icon theme for linux desktops
|
||||||
|
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-or-later
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
25
|
35
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
%global commit bf51523edbf825054c1bee6efe02a09aaeda394f
|
%global commit 4f560eccd0acc9c192f31077c2b3202422cb24fb
|
||||||
%global commit_date 20260528
|
%global commit_date 20260619
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
|
|
||||||
Name: tela-icon-theme
|
Name: tela-icon-theme
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
%define debug_package %{nil}
|
%define debug_package %{nil}
|
||||||
|
|
||||||
Name: cloudflare-speed-cli
|
Name: cloudflare-speed-cli
|
||||||
Version: 1.0.5
|
Version: 1.0.6
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: CLI for internet speed test via cloudflare
|
Summary: CLI for internet speed test via cloudflare
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
%define debug_package %nil
|
%define debug_package %nil
|
||||||
|
|
||||||
Name: coreboot-utils
|
Name: coreboot-utils
|
||||||
Version: 26.03
|
Version: 26.06
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Various coreboot utilities
|
Summary: Various coreboot utilities
|
||||||
URL: https://doc.coreboot.org
|
URL: https://doc.coreboot.org
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Name: electron
|
Name: electron
|
||||||
%electronmeta
|
%electronmeta
|
||||||
Version: 42.4.0
|
Version: 42.4.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Build cross platform desktop apps with web technologies
|
Summary: Build cross platform desktop apps with web technologies
|
||||||
License: %{electron_license}
|
License: %{electron_license}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
%global forgeurl https://github.com/nakst/gf
|
%global forgeurl https://github.com/nakst/gf
|
||||||
|
|
||||||
%global commit 56c97f66769ec8109a9aff2e475a86c9a6781742
|
%global commit 1c04ed95d45d49fb4b06cbc620c61acd58818977
|
||||||
%global shortcommit %{sub %{commit} 0 7}
|
%global shortcommit %{sub %{commit} 0 7}
|
||||||
%global commitdate 20251231
|
%global commitdate 20251231
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
%undefine __brp_mangle_shebangs
|
%undefine __brp_mangle_shebangs
|
||||||
|
|
||||||
Name: kittyCAD-cli
|
Name: kittyCAD-cli
|
||||||
Version: 0.2.177
|
Version: 0.2.178
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: The Zoo command line tool for KittyCAD
|
Summary: The Zoo command line tool for KittyCAD
|
||||||
URL: https://github.com/KittyCAD/cli
|
URL: https://github.com/KittyCAD/cli
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
Name: neovim-default-editor
|
Name: neovim-default-editor
|
||||||
# Version, release, and epoch are inherited from the editor package just like other default editors
|
# Version, release, and epoch are inherited from the editor package just like other default editors
|
||||||
Version: 0.12.3
|
Version: 0.6.0
|
||||||
Release: 1%{?dist}
|
Release: 5%{?dist}
|
||||||
Epoch: 0
|
Epoch: 0
|
||||||
# Inherited from Neovim itself
|
# Inherited from Neovim itself
|
||||||
License: Apache-2.0 AND Vim AND MIT
|
License: Apache-2.0 AND Vim AND MIT
|
||||||
|
|||||||
@@ -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
|
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
|
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
|
# to install desktop file
|
||||||
BuildRequires: desktop-file-utils
|
BuildRequires: desktop-file-utils
|
||||||
# to generate the icon files
|
# to generate the icon files
|
||||||
@@ -33,16 +31,11 @@ Packager: june-fish <june@fyralabs.com>
|
|||||||
%autosetup -n praat.github.io-%{version}
|
%autosetup -n praat.github.io-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# .LE makefile hardcodes little endian
|
%ifarch x86_64
|
||||||
if [[ "$(lscpu | grep Endian)" == *"Little Endian"* ]]
|
%make_build PRAAT_ARCH=x64v1
|
||||||
then
|
%else
|
||||||
cp makefiles/makefile.defs.linux.pulse-gcc.LE ./makefile.defs
|
%make_build PRAAT_ARCH=native
|
||||||
elif [[ "%{lscpu | grep Endian}" == *"Big Endian"* ]]
|
%endif
|
||||||
then
|
|
||||||
cp makefiles/makefile.defs.linux.pulse-gcc.BE ./makefile.defs
|
|
||||||
fi
|
|
||||||
|
|
||||||
%make_build
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
install -pDm755 praat %{buildroot}%{_bindir}/praat
|
install -pDm755 praat %{buildroot}%{_bindir}/praat
|
||||||
@@ -72,5 +65,7 @@ done
|
|||||||
%{_metainfodir}/%appid.metainfo.xml
|
%{_metainfodir}/%appid.metainfo.xml
|
||||||
|
|
||||||
%changelog
|
%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
|
* Fri Feb 06 2026 june-fish <git@june.fish> - 6.4.59
|
||||||
- Initial Package
|
- Initial Package
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
%global commit b8cfbdc5b6ea2f4f22faf46141255c4adfe34229
|
%global commit 61371fa6d93463c5451131f7bb68ae145aaf1e7a
|
||||||
%global commit_date 20260613
|
%global commit_date 20260618
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
|
|
||||||
Name: rpi-utils
|
Name: rpi-utils
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Name: shadowenv
|
Name: shadowenv
|
||||||
Version: 3.4.0
|
Version: 3.5.1
|
||||||
Release: 1%?dist
|
Release: 1%{?dist}
|
||||||
License: MIT
|
License: MIT
|
||||||
Summary: Reversible directory-local environment variable manipulations
|
Summary: Reversible directory-local environment variable manipulations
|
||||||
URL: https://shopify.github.io/shadowenv/
|
URL: https://shopify.github.io/shadowenv/
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
%undefine __brp_mangle_shebangs
|
%undefine __brp_mangle_shebangs
|
||||||
|
|
||||||
Name: rust-tauri
|
Name: rust-tauri
|
||||||
Version: 2.11.2
|
Version: 2.11.3
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Command line interface for building Tauri apps
|
Summary: Command line interface for building Tauri apps
|
||||||
License: Apache-2.0 OR MIT
|
License: Apache-2.0 OR MIT
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: termflix
|
Name: termflix
|
||||||
Version: 0.6.0
|
Version: 0.8.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Terminal animation player with 43 procedurally generated animations, multiple render modes, and true color support
|
Summary: Terminal animation player with 43 procedurally generated animations, multiple render modes, and true color support
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
%global oldpkgname yt-dlp-nightly
|
%global oldpkgname yt-dlp-nightly
|
||||||
|
|
||||||
Name: yt-dlp-git
|
Name: yt-dlp-git
|
||||||
Version: 2026.06.16.020134
|
Version: 2026.06.18.220525
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A command-line program to download videos from online video platforms
|
Summary: A command-line program to download videos from online video platforms
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user