mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-17 17:10:37 +00:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7c3ed819df |
@@ -29,15 +29,6 @@ jobs:
|
||||
ref: f${{ matrix.version }}
|
||||
fetch-depth: 1
|
||||
|
||||
- name: Setup build environment
|
||||
run: |
|
||||
sed -i 's/.fc%{fedora}/.fcrawhide/g' /usr/lib/rpm/macros.d/macros.dist
|
||||
cat<<EOF >> /etc/dnf/dnf.conf
|
||||
gpgcheck=1
|
||||
install_weak_deps=0
|
||||
max_parallel_downloads=20
|
||||
EOF
|
||||
|
||||
- name: Build anda-srpm-macros
|
||||
run: |
|
||||
mkdir -p anda-build/rpm/rpms
|
||||
@@ -46,7 +37,7 @@ jobs:
|
||||
dnf5 install -y ./anda-build/rpm/rpms/anda-*.rpm
|
||||
|
||||
- name: Install build dependencies
|
||||
run: dnf5 builddep -y anda/terra/{mock-configs,srpm-macros,appstream-helper}/*.spec anda/{buildsys/anda,tools/subatomic}/*.spec
|
||||
run: dnf5 builddep -y anda/terra/{mock-configs,srpm-macros}/*.spec anda/{buildsys/anda,tools/subatomic}/*.spec
|
||||
|
||||
- name: Install Anda
|
||||
run: |
|
||||
|
||||
@@ -1,128 +0,0 @@
|
||||
%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
|
||||
@@ -1,6 +0,0 @@
|
||||
project pkg {
|
||||
arches = ["x86_64"]
|
||||
rpm {
|
||||
spec = "Arctis-Sound-Manager.spec"
|
||||
}
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
rpm.version(pypi("arctis-sound-manager"));
|
||||
@@ -1,9 +1,9 @@
|
||||
%global xurl https://files.pythonhosted.org/packages/9c/a2/05729090f54c5489c79dee9177fb1d99860850d311247256eebb360ec622/anki-26.5-cp310-abi3-manylinux_2_35_x86_64.whl
|
||||
%global aurl https://files.pythonhosted.org/packages/67/ec/354efa779cb7293aa5feb460f552ff475063149523afc1099433bbe8e65f/anki-26.5-cp310-abi3-manylinux_2_35_aarch64.whl
|
||||
%global qurl https://files.pythonhosted.org/packages/2b/a1/8978e8200afcc9a9b5440366e5d579f9fb1e959147004943cb0ec97cdf0f/aqt-26.5-py3-none-any.whl
|
||||
%global xurl https://files.pythonhosted.org/packages/2b/bc/36972ebb0c09effa41a1dc5f1e9c19b9fd85675cc3196f43559eeb3d0ceb/anki-25.9.4-cp39-abi3-manylinux_2_36_x86_64.whl
|
||||
%global aurl https://files.pythonhosted.org/packages/cb/8e/42e0a2e8f8e6da78571ff8e79dd65eef1602390d03349839a2f4397fdcb5/anki-25.9.4-cp39-abi3-manylinux_2_36_aarch64.whl
|
||||
%global qurl https://files.pythonhosted.org/packages/83/a1/a8e8c5bc7dda44c0decfdeb128ca308d65d7beca1a4131230e9abadef439/aqt-25.9.4-py3-none-any.whl
|
||||
|
||||
Name: anki-bin
|
||||
Version: 26.5
|
||||
Version: 25.9.4
|
||||
Release: 1%{?dist}
|
||||
Summary: Flashcard program for using space repetition learning (Installed with wheel)
|
||||
License: AGPL-3.0-or-later AND GPL-3.0-or-later AND LGPL-3.0-or-later AND MIT AND BSD-3-Clause AND CC-BY-SA-3.0 AND CC-BY-3.0 AND Apache-2.0 AND CC-BY-2.5
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: anki-qt5
|
||||
Version: 26.05
|
||||
Version: 25.09.4
|
||||
Release: 1%{?dist}
|
||||
Summary: Flashcard program for using space repetition learning
|
||||
License: AGPL-3.0-or-later AND GPL-3.0-or-later AND LGPL-3.0-or-later AND MIT AND BSD-3-Clause AND CC-BY-SA-3.0 AND CC-BY-3.0 AND Apache-2.0 AND CC-BY-2.5
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: anki
|
||||
Version: 26.05
|
||||
Version: 25.09.4
|
||||
Release: 1%{?dist}
|
||||
Summary: Flashcard program for using space repetition learning
|
||||
License: AGPL-3.0-or-later AND GPL-3.0-or-later AND LGPL-3.0-or-later AND MIT AND BSD-3-Clause AND CC-BY-SA-3.0 AND CC-BY-3.0 AND Apache-2.0 AND CC-BY-2.5
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
Name: chdig
|
||||
Version: 26.6.1
|
||||
Version: 26.5.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.1289
|
||||
Version: 1.0.1260
|
||||
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.1289
|
||||
Version: 1.0.1260
|
||||
Release: 1%{?dist}
|
||||
Summary: Free Voice and Text Chat for Gamers
|
||||
URL: discord.com
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: discord-openasar
|
||||
Version: 1.0.143
|
||||
Version: 1.0.142
|
||||
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
|
||||
Version: 1.0.143
|
||||
Version: 1.0.142
|
||||
Release: 1%{?dist}
|
||||
Summary: Free Voice and Text Chat for Gamers
|
||||
URL: https://discord.com
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
Name: kopia
|
||||
%electronmeta -D
|
||||
Version: 0.23.1
|
||||
Version: 0.23.0
|
||||
Release: 1%{?dist}
|
||||
Summary: A backup/restore tool that allows you to create encrypted snapshots
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 158f537e7d4ce13ff7df49b6cb09c0cd27b8a517
|
||||
%global commit_date 20260616
|
||||
%global commit 7d933c652919899e46a6dfa0ac08dac36c492d95
|
||||
%global commit_date 20260614
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global debug_package %nil
|
||||
# terrible evil no good very bad hack
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Disable X11 for RHEL 10+
|
||||
%bcond x11 %[%{undefined rhel} || 0%{?rhel} < 10]
|
||||
|
||||
%global commit 53796ca2ea82bd960b0907c89231e773dc381502
|
||||
%global commit 662d41093c27e52a6c0ae0bee00f59310d16aa83
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260617
|
||||
%global commit_date 20260615
|
||||
%global ver 0.41.0
|
||||
|
||||
Name: mpv-nightly
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
%global ver 2026-06-17
|
||||
%global ver 2026-06-15
|
||||
%global goodver %(echo %ver | sed 's/-//g')
|
||||
%global __brp_mangle_shebangs %{nil}
|
||||
%bcond_without mold
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: rustnet
|
||||
Version: 1.4.0
|
||||
Version: 1.3.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
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global crate mise
|
||||
|
||||
Name: rust-mise
|
||||
Version: 2026.6.11
|
||||
Version: 2026.6.10
|
||||
Release: 1%{?dist}
|
||||
Summary: Front-end to your dev env
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: budgie-extras
|
||||
Version: 2.2.3
|
||||
Release: 3%{?dist}
|
||||
Release: 2%{?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,6 +140,14 @@ 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
|
||||
@@ -226,10 +234,15 @@ 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
|
||||
@@ -288,6 +301,9 @@ find . -name "meson.build" -exec sed -i "s/dependency('libpeas-gtk-1.0')/depende
|
||||
%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,7 +1,7 @@
|
||||
Name: plasma6-applet-appgrid
|
||||
Version: 1.9.1
|
||||
Release: 2%{?dist}
|
||||
Summary: A modern application launcher for KDE Plasma
|
||||
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
|
||||
License: GPL-2.0-or-later AND CC0-1.0
|
||||
@@ -17,27 +17,23 @@ BuildRequires: kf6-rpm-macros
|
||||
BuildRequires: cmake(Qt6Quick)
|
||||
BuildRequires: cmake(Qt6Gui)
|
||||
BuildRequires: cmake(Qt6DBus)
|
||||
BuildRequires: cmake(KF6Config)
|
||||
BuildRequires: cmake(KF6Service)
|
||||
BuildRequires: cmake(KF6I18n)
|
||||
BuildRequires: cmake(KF6CoreAddons)
|
||||
BuildRequires: cmake(KF6KIO)
|
||||
BuildRequires: cmake(KF6WindowSystem)
|
||||
BuildRequires: cmake(KF6Package)
|
||||
BuildRequires: cmake(KF6Runner)
|
||||
BuildRequires: cmake(KF6IconThemes)
|
||||
BuildRequires: cmake(KF6GlobalAccel)
|
||||
BuildRequires: cmake(KF6Svg)
|
||||
BuildRequires: cmake(Plasma)
|
||||
BuildRequires: cmake(PlasmaQuick)
|
||||
BuildRequires: cmake(LayerShellQt)
|
||||
BuildRequires: cmake(KF6IconThemes)
|
||||
BuildRequires: cmake(PlasmaActivities)
|
||||
BuildRequires: cmake(PlasmaActivitiesStats)
|
||||
BuildRequires: cmake(AppStreamQt)
|
||||
BuildRequires: cmake(LibKWorkspace)
|
||||
|
||||
Requires: plasma-workspace
|
||||
Requires: plasma-desktop
|
||||
Requires: kf6-kiconthemes
|
||||
Requires: kf6-ksvg
|
||||
|
||||
%description
|
||||
A modern application launcher for KDE Plasma. It offers unified
|
||||
@@ -45,7 +41,7 @@ search, favorites, categories, and both a panel and a centered popup
|
||||
presentation.
|
||||
|
||||
%prep
|
||||
%autosetup -n %{name}-%{version}
|
||||
%autosetup -n plasma6-applet-appgrid-%{version}
|
||||
|
||||
%conf
|
||||
%cmake -DAPPGRID_VERSION_OVERRIDE=%{version}
|
||||
@@ -55,20 +51,19 @@ presentation.
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
%find_lang dev.xarbit.appgrid
|
||||
%find_lang dev.xarbit.appgrid --with-kde
|
||||
|
||||
%files -f dev.xarbit.appgrid.lang
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%{_qt6_plugindir}/plasma/applets/dev.xarbit.appgrid.so
|
||||
%{_qt6_plugindir}/plasma/applets/dev.xarbit.appgrid.panel.so
|
||||
%{_libdir}/qt6/plugins/plasma/applets/dev.xarbit.appgrid.so
|
||||
%{_libdir}/qt6/plugins/plasma/applets/dev.xarbit.appgrid.panel.so
|
||||
%{_datadir}/plasma/plasmoids/dev.xarbit.appgrid/
|
||||
%{_datadir}/plasma/plasmoids/dev.xarbit.appgrid.panel/
|
||||
%{_metainfodir}/dev.xarbit.appgrid.metainfo.xml
|
||||
%{_datadir}/icons/hicolor/scalable/apps/dev.xarbit.appgrid.svg
|
||||
|
||||
%changelog
|
||||
* Mon Jun 15 2026 hilltty <49129010+hilltty@users.noreply.github.com> - 1.9.1-2
|
||||
- Sync with upstream
|
||||
|
||||
* Fri May 29 2026 hilltty <49129010+hilltty@users.noreply.github.com> - 1.8.5-1
|
||||
- pass version to cmake, update description
|
||||
|
||||
@@ -81,5 +76,5 @@ presentation.
|
||||
* Sat Apr 25 2026 hilltty <49129010+hilltty@users.noreply.github.com> - 1.7.8-1
|
||||
- Update to 1.7.8
|
||||
|
||||
* Fri Apr 24 2026 hilltty <49129010+hilltty@users.noreply.github.com> - 1.2.1-1
|
||||
* Thu Apr 24 2026 hilltty <49129010+hilltty@users.noreply.github.com> - 1.2.1-1
|
||||
- Initial package
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global mangowc_ver 0.12.5-1
|
||||
|
||||
Name: mangowm
|
||||
Version: 0.14.4
|
||||
Version: 0.14.2
|
||||
Release: 1%{?dist}
|
||||
Summary: A modern, lightweight, high-performance Wayland compositor built on dwl
|
||||
License: GPL-3.0-or-later AND MIT AND X11 AND CC0-1.0
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: nirius
|
||||
Version: 0.7.3
|
||||
Version: 0.7.2
|
||||
Release: 1%{?dist}
|
||||
Summary: Utility commands for niri
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
%global ver 5.0.0
|
||||
|
||||
%global commit 6b0e16179645e15693efd94f51109d22b199418c
|
||||
%global commit deaae83724bb5707124f98904e907a670d1ffc0f
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commitdate 20260608
|
||||
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "noctalia-greeter.spec"
|
||||
}
|
||||
labels {
|
||||
nightly = 1
|
||||
}
|
||||
}
|
||||
@@ -1,72 +0,0 @@
|
||||
%global ver 1.0.0
|
||||
|
||||
%global commit db60c06b5f6ff5da4d5f1126eff312b2a41ef614
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commitdate 20260609
|
||||
|
||||
Name: noctalia-greeter
|
||||
Version: %{ver}^%{commitdate}git.%{shortcommit}
|
||||
Release: 1%{?dist}
|
||||
Summary: A minimal login greeter for greetd that matches the look and feel of Noctalia Shell.
|
||||
|
||||
License: shortcommit
|
||||
URL: https://github.com/noctalia-dev/noctalia-greeter
|
||||
Source0: https://github.com/noctalia-dev/noctalia-greeter/archive/%{commit}/noctalia-greeter-%{commit}.tar.gz
|
||||
|
||||
BuildRequires: cage
|
||||
BuildRequires: dbus
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: greetd
|
||||
BuildRequires: just
|
||||
BuildRequires: meson
|
||||
BuildRequires: pkgconfig(cairo)
|
||||
BuildRequires: pkgconfig(egl)
|
||||
BuildRequires: pkgconfig(fontconfig)
|
||||
BuildRequires: pkgconfig(freetype2)
|
||||
BuildRequires: pkgconfig(glesv2)
|
||||
BuildRequires: pkgconfig(glib-2.0)
|
||||
BuildRequires: pkgconfig(librsvg-2.0)
|
||||
BuildRequires: pkgconfig(libwebp)
|
||||
BuildRequires: pkgconfig(pango)
|
||||
BuildRequires: pkgconfig(wayland-client)
|
||||
BuildRequires: pkgconfig(wayland-protocols)
|
||||
BuildRequires: pkgconfig(xkbcommon)
|
||||
BuildRequires: polkit
|
||||
BuildRequires: wlr-randr
|
||||
|
||||
Requires: cage
|
||||
Requires: dbus
|
||||
Requires: greetd
|
||||
|
||||
Packager: Cypress Reed <cypress@fyralabs.com>
|
||||
|
||||
%description
|
||||
Noctalia Greeter is the screen you see before your desktop session starts.
|
||||
It lets you pick a user, enter your password, choose a Wayland session, and pick a color scheme - with the same visual language as Noctalia Shell.
|
||||
|
||||
%prep
|
||||
%autosetup -n noctalia-greeter-%{commit}
|
||||
|
||||
%conf
|
||||
export LDFLAGS="%{__global_ldflags} -Wl,-z,notext"
|
||||
%meson
|
||||
|
||||
%build
|
||||
%meson_build
|
||||
|
||||
%install
|
||||
%meson_install
|
||||
|
||||
%files
|
||||
%doc README.md
|
||||
%license LICENSE
|
||||
%{_bindir}/%{name}
|
||||
%{_bindir}/%{name}-apply-appearance
|
||||
%{_bindir}/%{name}-print-greetd-config
|
||||
%{_bindir}/%{name}-session
|
||||
%{_datadir}/%{name}/*
|
||||
%{_datadir}/polkit-1/actions/org.noctalia.greeter.apply-appearance.policy
|
||||
|
||||
%changelog
|
||||
* Tue Jun 09 2026 Cypress Reed <cypress@fyralabs.com>
|
||||
- Port to terra from Fedora COPR lionheartp/Hyprland
|
||||
@@ -1,6 +0,0 @@
|
||||
rpm.global("commit", get("https://api.github.com/repos/noctalia-dev/noctalia-greeter/commits/main").json().sha);
|
||||
if rpm.changed() {
|
||||
rpm.global("ver", gh("noctalia-dev/noctalia-greeter"));
|
||||
rpm.global("commit_date", date());
|
||||
rpm.release();
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 3aae7f9a42a25b79fc7e01e6e3782d7dff43c174
|
||||
%global commit_date 20260616
|
||||
%global commit ee69ac8e462224798c9c619b57a0699112fe7d7a
|
||||
%global commit_date 20260613
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
Name: libsingularity
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 75fb2822c9a025acf373541998d603cbbf6536f1
|
||||
%global commit_date 20260617
|
||||
%global commit 4f2f5b032280ea391bf5e7af9b13ab5e0eb21340
|
||||
%global commit_date 20260425
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
# Exclude input files from mangling
|
||||
%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.*$
|
||||
|
||||
Name: android-studio
|
||||
Version: 2026.1.1.10
|
||||
Version: 2026.1.1.9
|
||||
Release: 1%{?dist}
|
||||
Summary: Official IDE for Android development
|
||||
License: Apache-2.0
|
||||
@@ -24,7 +24,7 @@ Packager: veuxit <erroor234@gmail.com>, like-engels <higashikataengels@icl
|
||||
ExclusiveArch: x86_64
|
||||
URL: https://developer.android.com/studio
|
||||
|
||||
%define suffixS quail1-patch2
|
||||
%define suffixS quail1-patch1
|
||||
|
||||
Source0: https://dl.google.com/dl/android/studio/ide-zips/%{version}/android-studio-%{suffixS}-linux.tar.gz
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit e8e7fea103ab8bff5384673a60e04b59939738dd
|
||||
%global commit 699387c2c16dd5723e8825ad608538142b07b86b
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global fulldate 2026-06-16
|
||||
%global fulldate 2026-06-14
|
||||
%global commit_date %(echo %{fulldate} | sed 's/-//g')
|
||||
%global public_key RWQlAjJC23149WL2sEpT/l0QKy7hMIFhYdQOFy0Z7z7PbneUgvlsnYcV
|
||||
%global ver 1.3.2
|
||||
|
||||
@@ -1,32 +0,0 @@
|
||||
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 CC="%__cc %build_cflags %build_ldflags"
|
||||
|
||||
%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 +0,0 @@
|
||||
rpm.version(gh_tag("maxskiier/linsh"));
|
||||
@@ -18,7 +18,7 @@
|
||||
%bcond test 1
|
||||
|
||||
Name: powershell
|
||||
Version: 7.6.3
|
||||
Version: 7.6.2
|
||||
Release: 1%{?dist}
|
||||
Summary: A cross-platform automation and configuration tool/framework
|
||||
SourceLicense: MIT
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%bcond bootstrap 0
|
||||
|
||||
Name: yarnpkg-berry
|
||||
Version: 4.17.0
|
||||
Version: 4.16.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Active development version of Yarn
|
||||
License: BSD-2-Clause
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 45afbac0a5ab0d396e316ce0247fd41330c94d88
|
||||
%global commit cccc7b2d4408ee75d5c2e9dadad2cc0b7f992dd0
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260617
|
||||
%global commit_date 20260615
|
||||
%global ver 1.8.0
|
||||
|
||||
%bcond_with check
|
||||
|
||||
@@ -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 e429f8cf05926852ed63949cad652bf1de5869a4
|
||||
%global ver 0.0.41-19488
|
||||
%global commit c38e8229ed063d476a55e8092922b728fa6854d3
|
||||
%global ver 0.0.41-19475
|
||||
|
||||
Name: rpcs3
|
||||
Version: %(echo %{ver} | sed 's/-/^/g')
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
%global appid com.valvesoftware.Steam
|
||||
|
||||
Name: steam
|
||||
Version: 1.0.0.86
|
||||
Release: 1%{?dist}
|
||||
Version: 1.0.0.85
|
||||
Release: 11%{?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,5 +1,5 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "linsh.spec"
|
||||
spec = "dae.spec"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
# Generated by go2rpm 1.19.0
|
||||
%bcond check 1
|
||||
%bcond bootstrap 0
|
||||
|
||||
%if %{with bootstrap}
|
||||
%global debug_package %{nil}
|
||||
%endif
|
||||
|
||||
%if %{with bootstrap}
|
||||
%global __requires_exclude %{?__requires_exclude:%{__requires_exclude}|}^golang\\(.*\\)$
|
||||
%endif
|
||||
|
||||
# https://github.com/daeuniverse/dae
|
||||
%global goipath github.com/daeuniverse/dae
|
||||
Version: 1.1.0
|
||||
|
||||
%gometa -f
|
||||
|
||||
%global common_description %{expand:
|
||||
EBPF-based Linux high-performance transparent proxy solution.}
|
||||
|
||||
%global golicenses LICENSE
|
||||
%global godocs docs .markdownlint-cli2.jsonc CHANGELOGS.md README.md\\\
|
||||
hack/templates/example-config.md
|
||||
|
||||
Name: dae
|
||||
Release: %autorelease
|
||||
Summary: EBPF-based Linux high-performance transparent proxy solution
|
||||
|
||||
License: AGPL-3.0-only
|
||||
URL: %{gourl}
|
||||
Source: %{gosource}
|
||||
|
||||
%description %{common_description}
|
||||
|
||||
%gopkg
|
||||
|
||||
%prep
|
||||
%goprep_online -A
|
||||
%autopatch -p1
|
||||
|
||||
%if %{without bootstrap}
|
||||
%build
|
||||
%dnl for cmd in cmd/* ; do
|
||||
%dnl %gobuild -o %{gobuilddir}/bin/$(basename $cmd) %{goipath}/$cmd
|
||||
%dnl done
|
||||
%define gomodulesmode GO111MODULE=on
|
||||
%gobuild -o %{gobuilddir}/bin/dae %{goipath}
|
||||
%endif
|
||||
|
||||
%install
|
||||
%gopkginstall
|
||||
%if %{without bootstrap}
|
||||
install -m 0755 -vd %{buildroot}%{_bindir}
|
||||
install -m 0755 -vp %{gobuilddir}/bin/* %{buildroot}%{_bindir}/
|
||||
%endif
|
||||
|
||||
%if %{without bootstrap}
|
||||
%if %{with check}
|
||||
%check
|
||||
%gocheck
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%if %{without bootstrap}
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc docs .markdownlint-cli2.jsonc CHANGELOGS.md README.md
|
||||
%doc hack/templates/example-config.md
|
||||
%{_bindir}/dae
|
||||
%endif
|
||||
|
||||
%gopkgfiles
|
||||
|
||||
%changelog
|
||||
* Mon Jun 15 2026 madonuko <mado@fyralabs.com> - 1.1.0-1
|
||||
- Initial package.
|
||||
@@ -0,0 +1 @@
|
||||
rpm.version(gh("daeuniverse/dae"));
|
||||
@@ -1,7 +1,7 @@
|
||||
%global commit 153468dc86e8d2cdd5e1908f68c17faf2d0b4b47
|
||||
%global commit da21a8f77f31b295e77e1b55e9ef408ca3bf9402
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver v26.3.27
|
||||
%global commit_date 20260617
|
||||
%global commit_date 20260610
|
||||
|
||||
%global goipath github.com/XTLS/Xray-core
|
||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "ghc-vinyl.spec"
|
||||
}
|
||||
}
|
||||
@@ -1,116 +0,0 @@
|
||||
# generated by cabal-rpm-2.3.2
|
||||
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/
|
||||
|
||||
%global pkg_name vinyl
|
||||
%global pkgver %{pkg_name}-%{version}
|
||||
%{?haskell_setup}
|
||||
|
||||
# testsuite missing deps: aeson hspec lens lens-aeson unordered-containers vector microlens should-not-typecheck
|
||||
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 0.14.3
|
||||
Release: 1%{?dist}
|
||||
Summary: Extensible Records
|
||||
|
||||
License: MIT
|
||||
URL: https://hackage.haskell.org/package/vinyl
|
||||
# Begin cabal-rpm sources:
|
||||
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
|
||||
# End cabal-rpm sources
|
||||
|
||||
Packager: Owen Zimmerman <owen@fyralabs.com>
|
||||
|
||||
# Begin cabal-rpm deps:
|
||||
BuildRequires: ghc-rpm-macros
|
||||
BuildRequires: ghc-Cabal-devel
|
||||
BuildRequires: ghc-array-devel
|
||||
BuildRequires: ghc-base-devel
|
||||
BuildRequires: ghc-deepseq-devel
|
||||
%if %{with ghc_prof}
|
||||
BuildRequires: ghc-array-prof
|
||||
BuildRequires: ghc-base-prof
|
||||
BuildRequires: ghc-deepseq-prof
|
||||
%endif
|
||||
# End cabal-rpm deps
|
||||
|
||||
%description
|
||||
Extensible records for Haskell with lenses.
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: Haskell %{pkg_name} library development files
|
||||
Provides: %{name}-static = %{version}-%{release}
|
||||
Provides: %{name}-static%{?_isa} = %{version}-%{release}
|
||||
%if %{defined ghc_version}
|
||||
Requires: ghc-compiler = %{ghc_version}
|
||||
%endif
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
This package provides the Haskell %{pkg_name} library development files.
|
||||
|
||||
|
||||
%if %{with haddock}
|
||||
%package doc
|
||||
Summary: Haskell %{pkg_name} library documentation
|
||||
BuildArch: noarch
|
||||
Requires: ghc-filesystem
|
||||
|
||||
%description doc
|
||||
This package provides the Haskell %{pkg_name} library documentation.
|
||||
%endif
|
||||
|
||||
|
||||
%if %{with ghc_prof}
|
||||
%package prof
|
||||
Summary: Haskell %{pkg_name} profiling library
|
||||
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
|
||||
Supplements: (%{name}-devel and ghc-prof)
|
||||
|
||||
%description prof
|
||||
This package provides the Haskell %{pkg_name} profiling library.
|
||||
%endif
|
||||
|
||||
|
||||
%prep
|
||||
# Begin cabal-rpm setup:
|
||||
%setup -q -n %{pkgver}
|
||||
# End cabal-rpm setup
|
||||
|
||||
|
||||
%build
|
||||
# Begin cabal-rpm build:
|
||||
%ghc_lib_build
|
||||
# End cabal-rpm build
|
||||
|
||||
|
||||
%install
|
||||
# Begin cabal-rpm install
|
||||
%ghc_lib_install
|
||||
# End cabal-rpm install
|
||||
|
||||
|
||||
%files -f %{name}.files
|
||||
# Begin cabal-rpm files:
|
||||
%license LICENSE
|
||||
# End cabal-rpm files
|
||||
|
||||
|
||||
%files devel -f %{name}-devel.files
|
||||
%doc CHANGELOG.md
|
||||
|
||||
|
||||
%if %{with haddock}
|
||||
%files doc -f %{name}-doc.files
|
||||
%license LICENSE
|
||||
%endif
|
||||
|
||||
|
||||
%if %{with ghc_prof}
|
||||
%files prof -f %{name}-prof.files
|
||||
%endif
|
||||
|
||||
|
||||
%changelog
|
||||
* Sun Jun 14 2026 Owen Zimmerman <owen@fyralabs.com> - 0.14.3-1
|
||||
- Initial commit
|
||||
@@ -1 +0,0 @@
|
||||
rpm.version(hackage("vinyl"));
|
||||
@@ -1,8 +1,8 @@
|
||||
%global csrc_commit 561b417c65791cd8356b5f73620914ceff845d10
|
||||
%global commit f8e470eb579c96515693d76ad393dbd41b393f26
|
||||
%global commit 7171e6f01f846a511a5fad8d1ab24baaee66e308
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver 2.3.1
|
||||
%global commit_date 20260617
|
||||
%global commit_date 20260615
|
||||
%global debug_package %nil
|
||||
|
||||
Name: nim-nightly
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global _desc Send usage data from your Python code to PostHog.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 7.19.1
|
||||
Version: 7.18.3
|
||||
Release: 1%{?dist}
|
||||
Summary: Send usage data from your Python code to PostHog
|
||||
License: MIT
|
||||
|
||||
@@ -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.16
|
||||
Release: 1%{?dist}
|
||||
Version: 0.1.15
|
||||
Release: 2%{?dist}
|
||||
Summary: Python SDK for interacting with the Public Trading API
|
||||
License: Apache-2.0
|
||||
URL: https://github.com/PublicDotCom/publicdotcom-py
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global _desc The model-definition framework for state-of-the-art machine learning models.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 5.12.1
|
||||
Version: 5.12.0
|
||||
Release: 1%{?dist}
|
||||
Summary: The model-definition framework for state-of-the-art machine learning models
|
||||
License: Apache-2.0
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 5e927a88f7c37b2592371a419cf4dd355a3ae4b7
|
||||
%global commit_date 20260617
|
||||
%global commit feeb9aa8dde3ae9269b13f3bae435b82d8538b76
|
||||
%global commit_date 20260614
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global pypi_name types-colorama
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
%global crate typst
|
||||
|
||||
Name: rust-typst
|
||||
Version: 0.15.0
|
||||
Release: 1%{?dist}
|
||||
Version: 0.14.2
|
||||
Release: 1%?dist
|
||||
Summary: New markup-based typesetting system that is powerful and easy to learn
|
||||
|
||||
License: Apache-2.0
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
%global crate usage-cli
|
||||
|
||||
Name: rust-usage-cli
|
||||
Version: 3.5.2
|
||||
Version: 3.5.0
|
||||
Release: 1%{?dist}
|
||||
Summary: CLI for working with usage-based CLIs
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
version=0.17.0-dev.864+3deb86baf
|
||||
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.864+3deb86baf
|
||||
%global ver 0.17.0-dev.857+2b2b85c5f
|
||||
%bcond bootstrap 1
|
||||
%bcond docs %{without bootstrap}
|
||||
%bcond test 1
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
%global zig_cache_dir %{builddir}/zig-cache
|
||||
|
||||
Name: zig-master
|
||||
Version: 0.17.0~dev.864+3deb86baf
|
||||
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
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global debug_package %{nil}
|
||||
|
||||
Name: glaze-devel
|
||||
Version: 7.8.2
|
||||
Version: 7.8.1
|
||||
Release: 1%{?dist}
|
||||
License: MIT
|
||||
URL: https://stephenberry.github.io/glaze
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global cuda_version 13
|
||||
|
||||
Name: cuda-cudnn
|
||||
Version: 9.23.2.1
|
||||
Version: 9.23.1.3
|
||||
Release: 1%{?dist}
|
||||
Epoch: 1
|
||||
Summary: NVIDIA CUDA Deep Neural Network library (cuDNN)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global commit 9f9d8faf3a68541fb9e9e8245b103a6cab54df19
|
||||
%global commit 01ea6726b2c82d8dcd0d71ec852729b04628606a
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver 20260616073835
|
||||
%global commit_date 20260617
|
||||
%global ver 20260614143513
|
||||
%global commit_date 20260615
|
||||
|
||||
Name: v2ray-domain-list-community
|
||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
%bcond docs 0
|
||||
|
||||
Name: LCEVCdec
|
||||
Version: 4.2.0
|
||||
Release: 1%{?dist}
|
||||
Version: 4.1.0
|
||||
Release: 2%{?dist}
|
||||
Summary: MPEG-5 LCEVC Decoder
|
||||
License: BSD-3-Clause-Clear
|
||||
URL: https://docs.v-nova.com/v-nova/lcevc/lcevc-sdk-overview
|
||||
@@ -123,33 +123,42 @@ 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}/pkgconfig/lcevc_dec.pc
|
||||
%{_libdir}/pkgconfig/lcevc_dec_extract.pc
|
||||
%{_libdir}/pkgconfig/lcevc_dec_utility.pc
|
||||
|
||||
%{_libdir}/liblcevc_dec_pipeline_legacy.so
|
||||
# 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.2.0
|
||||
4.0.3
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
Name: gstreamer1-plugins-bad
|
||||
Version: 1.28.4
|
||||
Release: 2%{?dist}
|
||||
Release: 1%{?dist}
|
||||
Epoch: 2
|
||||
Summary: GStreamer streaming media framework "bad" plugins
|
||||
License: LGPL-2.0-or-later and LGPL-2.0-only
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 192003b8aeedf8719a5837228b1041492f624d09
|
||||
%global commit 74db1fd4cb6f7c98b7e3fb5290d695d276ce8f9a
|
||||
%global shortcommit %{sub %{commit} 1 7}
|
||||
%global commit_date 20260616
|
||||
%global commit_date 20260614
|
||||
|
||||
Name: vgmstream
|
||||
Version: 0~%{commit_date}git.%shortcommit
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
%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: 2%{?dist}
|
||||
Release: 1%{?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
|
||||
@@ -95,13 +93,16 @@ mkdir -p %{buildroot}%{_sysconfdir}/asusd
|
||||
%{_datadir}/asusd/
|
||||
|
||||
%post
|
||||
%systemd_post %{asus_system_units}
|
||||
%systemd_post asusd.service
|
||||
%systemd_post asus-shutdown.service
|
||||
|
||||
%preun
|
||||
%systemd_preun %{asus_system_units}
|
||||
%systemd_preun asusd.service
|
||||
%systemd_preun asus-shutdown.service
|
||||
|
||||
%postun
|
||||
%systemd_postun_with_restart %{asus_system_units}
|
||||
%systemd_postun_with_restart asusd.service
|
||||
%systemd_postun_with_restart asus-shutdown.service
|
||||
|
||||
%files rog-gui
|
||||
%{_bindir}/rog-control-center
|
||||
@@ -111,10 +112,6 @@ 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(gh_tag("OpenGamingCollective/asusctl"));
|
||||
rpm.version(gitlab("20328305"));
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit fd4a923c3787e7903971f45b62a0f594c608f846
|
||||
%global commit_date 20260617
|
||||
%global commit 50f2fd369f3f340a643082c8a75ac3eadcdeddae
|
||||
%global commit_date 20260614
|
||||
%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 e9f7e01d0483c8596614b2f803c51ebb672ddc6c
|
||||
%global commit c313a9e539f49e983f8ff5d50c0ff192d3544a8a
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260617
|
||||
%global commit_date 20260605
|
||||
%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 e9f7e01d0483c8596614b2f803c51ebb672ddc6c
|
||||
%global commit c313a9e539f49e983f8ff5d50c0ff192d3544a8a
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260617
|
||||
%global commit_date 20260605
|
||||
%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 e9f7e01d0483c8596614b2f803c51ebb672ddc6c
|
||||
%global commit c313a9e539f49e983f8ff5d50c0ff192d3544a8a
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260617
|
||||
%global commit_date 20260605
|
||||
# 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,5 +1,5 @@
|
||||
Name: compat-nvidia-repo-580xx
|
||||
Version: 580.167.08
|
||||
Version: 580.159.04
|
||||
Epoch: 3
|
||||
Release: 1%{?dist}
|
||||
Summary: Compatibility package required by official CUDA packages
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
%global modulename nvidia-580xx
|
||||
|
||||
Name: dkms-%{modulename}
|
||||
Version: 580.159.04
|
||||
Release: 1%{?dist}
|
||||
Version: 580.159.03
|
||||
Release: 2%{?dist}
|
||||
Summary: NVIDIA display driver kernel module
|
||||
Epoch: 3
|
||||
License: NVIDIA License
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
%endif
|
||||
|
||||
Name: %{real_name}-580xx
|
||||
Version: 580.167.08
|
||||
Version: 580.159.04
|
||||
Release: 1%{?dist}
|
||||
Summary: NVIDIA's proprietary display driver for NVIDIA graphic cards
|
||||
Epoch: 3
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%global modulename nvidia-580xx
|
||||
|
||||
Name: %{modulename}-kmod-common
|
||||
Version: 580.159.04
|
||||
Version: 580.159.03
|
||||
Release: 1%{?dist}
|
||||
Summary: Common file for NVIDIA's proprietary driver kernel modules
|
||||
Epoch: 3
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
%global debug_package %{nil}
|
||||
|
||||
Name: %{modulename}-kmod
|
||||
Version: 580.159.04
|
||||
Release: 1%{?dist}
|
||||
Version: 580.159.03
|
||||
Release: 2%{?dist}
|
||||
Summary: NVIDIA display driver kernel module
|
||||
Epoch: 3
|
||||
License: NVIDIA License
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global real_name nvidia-modprobe
|
||||
|
||||
Name: %{real_name}-580xx
|
||||
Version: 580.167.08
|
||||
Version: 580.159.04
|
||||
Release: 1%{?dist}
|
||||
Summary: NVIDIA kernel module loader
|
||||
Epoch: 3
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global real_name nvidia-persistenced
|
||||
|
||||
Name: %{real_name}-580xx
|
||||
Version: 580.167.08
|
||||
Version: 580.159.04
|
||||
Release: 1%{?dist}
|
||||
Summary: A daemon to maintain persistent software state in the NVIDIA driver
|
||||
Epoch: 3
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global real_name nvidia-settings
|
||||
|
||||
Name: %{real_name}-580xx
|
||||
Version: 580.167.08
|
||||
Version: 580.159.04
|
||||
Release: 1%{?dist}
|
||||
Summary: Configure the NVIDIA graphics driver
|
||||
Epoch: 3
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global real_name nvidia-xconfig
|
||||
|
||||
Name: %{real_name}-580xx
|
||||
Version: 580.167.08
|
||||
Version: 580.159.04
|
||||
Release: 1%{?dist}
|
||||
Summary: NVIDIA X configuration file editor
|
||||
Epoch: 3
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global debug_package %{nil}
|
||||
%global commit 9f568e61bc6acba41fd9f5d457d9128782bc3e1c
|
||||
%global commit 28d678f8169bf2fa5ec3e0917233633340a400ef
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260616
|
||||
%global commit_date 20260611
|
||||
|
||||
|
||||
%global patches %{_datadir}/src/nvidia-patch
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 8015681139833d9cbaff739a1085785f9389f6aa
|
||||
%global commit 03cc676e669b8844782529553db6a53d8b98477c
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commitdate 20260617
|
||||
%global commitdate 20260601
|
||||
%global ver 0
|
||||
%define buildforkernels akmod
|
||||
%global debug_package %{nil}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 8015681139833d9cbaff739a1085785f9389f6aa
|
||||
%global commit 03cc676e669b8844782529553db6a53d8b98477c
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commitdate 20260617
|
||||
%global commitdate 20260601
|
||||
%global ver 0
|
||||
%global debug_package %{nil}
|
||||
%global modulename sc0710
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 8015681139833d9cbaff739a1085785f9389f6aa
|
||||
%global commit 03cc676e669b8844782529553db6a53d8b98477c
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commitdate 20260617
|
||||
%global commitdate 20260601
|
||||
%global ver 0
|
||||
|
||||
Name: sc0710
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 13d50ce4bbcf574dddfd222bc1d42dfc1949fb32
|
||||
%global commit 0f3df692e2bd733b0ea54add470ba4288b9bd3b2
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commitdate 20260617
|
||||
%global commitdate 20260614
|
||||
%global ver 1.1.1
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
|
||||
@@ -1,13 +1,12 @@
|
||||
Name: taidan
|
||||
Version: 0.2.1
|
||||
Release: 2%{?dist}
|
||||
Release: 1%{?dist}
|
||||
Summary: Out-Of-Box-Experience (OOBE) and Welcome App
|
||||
SourceLicense: GPL-3.0-or-later AND GPL-2.0-or-later
|
||||
License: (0BSD OR MIT OR Apache-2.0) AND Apache-2.0 AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND MIT AND (MIT OR Apache-2.0) AND (MIT OR Zlib OR Apache-2.0) AND Unicode-3.0 AND (Unlicense OR MIT) AND Zlib AND GPL-3.0-or-later AND GPL-2.0-or-later
|
||||
URL: https://github.com/Ultramarine-Linux/taidan
|
||||
Packager: Terra Packaging Team <terra@fyralabs.com>
|
||||
Requires: %name-configs
|
||||
Suggests: %name-default-configs
|
||||
Conflicts: initial-setup
|
||||
Requires: dbus-daemon
|
||||
Requires: (glib2 or (/usr/bin/plasma-apply-colorscheme and kf6-kconfig))
|
||||
Requires: shadow-utils
|
||||
@@ -33,14 +32,6 @@ BuildRequires: glibc-all-langpacks
|
||||
Taidan is a GUI Out-Of-Box-Experience (OOBE) and Welcome App for Ultramarine
|
||||
Linux, written in Rust and the Helium toolkit.
|
||||
|
||||
%package default-configs
|
||||
Summary: Default configurations for Taidan
|
||||
Provides: %name-configs
|
||||
BuildArch: noarch
|
||||
|
||||
%description default-configs
|
||||
This package contains the default configuration files for taidan.
|
||||
|
||||
%prep
|
||||
%git_clone
|
||||
%cargo_prep_online
|
||||
@@ -60,6 +51,7 @@ DESTDIR=%buildroot ./scripts/install.sh
|
||||
%_datadir/polkit-1/rules.d/100-taidan.rules
|
||||
%_datadir/taidan/
|
||||
%_presetdir/95-taidan.preset
|
||||
%_sysconfdir/com.fyralabs.Taidan/
|
||||
%_sysconfdir/pam.d/taidan
|
||||
%_sysusersdir/taidan.conf
|
||||
%_unitdir/taidan-initial-setup.service
|
||||
@@ -67,15 +59,7 @@ DESTDIR=%buildroot ./scripts/install.sh
|
||||
%dir %_prefix/lib/taidan/
|
||||
%_prefix/lib/taidan/labwc/*
|
||||
|
||||
%files default-configs
|
||||
%config %_sysconfdir/com.fyralabs.Taidan/
|
||||
%config %_datadir/taidan/
|
||||
|
||||
%changelog
|
||||
* Tue Jun 17 2026 madonuko <mado@fyralabs.com> - 0.2.1-2
|
||||
- split config files to separate subpkg
|
||||
- remove conflict with initial-setup
|
||||
|
||||
* Sun Mar 15 2026 Tulip Blossom <tulilirockz@outlook.com>
|
||||
- Add dbus-daemon as runtime dependency
|
||||
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Paskal Sitepu <rmnscnce@ya.ru>
|
||||
Date: Sat, 4 Nov 2023 09:54:38 +0700
|
||||
Subject: [PATCH] (RPM) makefile: Remove unused Makefile variables
|
||||
|
||||
Signed-off-by: Paskal Sitepu <rmnscnce@ya.ru>
|
||||
---
|
||||
makefile | 2 --
|
||||
1 file changed, 2 deletions(-)
|
||||
|
||||
diff --git a/makefile b/makefile
|
||||
index 5ca6bab..0091429 100644
|
||||
--- a/makefile
|
||||
+++ b/makefile
|
||||
@@ -1,5 +1,3 @@
|
||||
-CC=gcc
|
||||
-CFLAGS=-Wall -pedantic -Wextra -std=c99 -O2
|
||||
all: amdctl
|
||||
%.o: %.c
|
||||
$(CC) -c -o $@ $< $(CFLAGS)
|
||||
--
|
||||
2.41.0
|
||||
@@ -1,40 +1,34 @@
|
||||
Name: amdctl
|
||||
Summary: Set P-State voltages and clock speeds on recent AMD CPUs on Linux
|
||||
License: GPL-3.0-or-later
|
||||
URL: https://github.com/kevinlekiller/%{name}
|
||||
Version: 0.11
|
||||
Release: 2%{?dist}
|
||||
Source0: https://github.com/kevinlekiller/%{name}/archive/refs/tags/v%{version}.tar.gz
|
||||
Name: amdctl
|
||||
Summary: Set P-State voltages and clock speeds on recent AMD CPUs on Linux
|
||||
License: GPLv3
|
||||
URL: https://github.com/kevinlekiller/%{name}
|
||||
|
||||
BuildRequires: make
|
||||
BuildRequires: gcc
|
||||
BuildRequires: kernel-headers
|
||||
BuildRequires: glibc-headers
|
||||
BuildRequires: cmake-rpm-macros
|
||||
BuildRequires: cmake
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: systemd-rpm-macros
|
||||
Requires: kernel-core
|
||||
Requires: systemd-udev
|
||||
Requires: coreutils
|
||||
Version: 0.11
|
||||
Release: 2%{?dist}
|
||||
Source0: https://github.com/kevinlekiller/%{name}/archive/refs/tags/v%{version}.tar.gz
|
||||
# Remove hardcoded CFLAGS and CC
|
||||
Patch0: 0001-RPM-makefile-Remove-unused-Makefile-variables.patch
|
||||
|
||||
# `msr` is a builtin kernel module
|
||||
Requires: kernel-core systemd-udev coreutils
|
||||
BuildRequires: make gcc kernel-headers glibc-headers
|
||||
|
||||
%description
|
||||
Tool for changing voltages and clock speeds for AMD processors with
|
||||
control over every power state and CPU core.
|
||||
|
||||
%prep
|
||||
%autosetup
|
||||
|
||||
%conf
|
||||
%cmake -DCMAKE_POLICY_VERSION_MINIMUM=3.5
|
||||
%setup -qn %{name}-%{version}
|
||||
patch -p1 -i %{PATCH0}
|
||||
|
||||
%build
|
||||
%cmake_build
|
||||
%set_build_flags
|
||||
%make_build
|
||||
|
||||
%install
|
||||
# install the 'amdctl' binary
|
||||
mkdir -p %{buildroot}/%{_bindir}
|
||||
install -m 0755 redhat-linux-build/%{name} %{buildroot}/%{_bindir}/
|
||||
install -m 0755 ./%{name} %{buildroot}/%{_bindir}/
|
||||
|
||||
# add modules.load.d entry
|
||||
mkdir -p %{buildroot}/%{_modulesloaddir}/
|
||||
@@ -57,15 +51,12 @@ EOF
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%{_bindir}/%{name}
|
||||
%{_libexecdir}/%{name}
|
||||
%{_modulesloaddir}/%{name}.conf
|
||||
%{_udevrulesdir}/99-%{name}.rules
|
||||
/%{_bindir}/%{name}
|
||||
/%{_libexecdir}/%{name}
|
||||
/%{_modulesloaddir}/%{name}.conf
|
||||
/%{_udevrulesdir}/99-%{name}.rules
|
||||
|
||||
%changelog
|
||||
* Tue Jun 16 2026 Owen-sz <owen@fyralabs.com> - 0.11-2
|
||||
- Clean up spec
|
||||
|
||||
* Sat Nov 4 2023 <rmnscnce@ya.ru> - 0.11-1
|
||||
- Track upstream to 0.11
|
||||
|
||||
@@ -85,4 +76,4 @@ EOF
|
||||
- Track upstream to 0.6.1
|
||||
|
||||
* Mon May 24 2021 rmnscnce <rmnscnce@ya.ru> - 0.2-2.git+gb0ffbad
|
||||
- Initial packaging
|
||||
- Initial packaging
|
||||
@@ -1,6 +0,0 @@
|
||||
project pkg {
|
||||
arches = ["x86_64"]
|
||||
rpm {
|
||||
spec = "ansible-onepasswordconnect-collection.spec"
|
||||
}
|
||||
}
|
||||
-52
@@ -1,52 +0,0 @@
|
||||
%if %{defined fedora}
|
||||
%bcond_without tests
|
||||
%else
|
||||
%bcond_with tests
|
||||
%endif
|
||||
|
||||
Name: ansible-collection-onepassword-connect
|
||||
Version: 2.4.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Contains modules that interact with your 1Password Connect deployment
|
||||
License: GPL-3.0-or-later
|
||||
URL: %{ansible_collection_url onepassword connect}
|
||||
Source0: https://github.com/1Password/ansible-onepasswordconnect-collection/archive/refs/tags/v%{version}.tar.gz
|
||||
Patch0: doc-files.patch
|
||||
Packager: Owen Zimmerman <owen@fyralabs.com>
|
||||
|
||||
BuildRequires: ansible-packaging
|
||||
%if %{with tests}
|
||||
BuildRequires: ansible-packaging-tests
|
||||
%endif
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
The 1Password Connect collection contains modules that interact
|
||||
with your 1Password Connect deployment. The modules communicate
|
||||
with the 1Password Connect API to support Vault Item
|
||||
create/read/update/delete operations.
|
||||
|
||||
%prep
|
||||
%autosetup -n ansible-onepasswordconnect-collection-%{version} -p1
|
||||
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Ansible_collections/#_shebangs
|
||||
find -type f ! -executable -name '*.py' -print -exec sed -i -e '1{\@^#!.*@d}' '{}' +
|
||||
|
||||
%build
|
||||
%ansible_collection_build
|
||||
|
||||
%install
|
||||
%ansible_collection_install
|
||||
|
||||
%if %{with tests}
|
||||
%check
|
||||
%ansible_test_unit
|
||||
%endif
|
||||
|
||||
%files -f %{ansible_collection_filelist}
|
||||
%license LICENSE.md
|
||||
%doc CHANGELOG.md README.md USAGEGUIDE.md CHANGELOG.rst
|
||||
|
||||
%changelog
|
||||
* Sun Jun 14 2026 Owen Zimmerman <owen@fyralabs.com> - 2.4.0-1
|
||||
- Initial commit
|
||||
@@ -1,10 +0,0 @@
|
||||
diff --git a/galaxy.yml b/galaxy.yml
|
||||
index f068ebc..6ef0f71 100644
|
||||
--- a/galaxy.yml
|
||||
+++ b/galaxy.yml
|
||||
@@ -31,4 +31,4 @@ issues: https://github.com/1Password/ansible-onepasswordconnect-collection/issue
|
||||
|
||||
# A list of file glob-like patterns used to filter any files or directories that should not be included in the build
|
||||
# artifact.
|
||||
-build_ignore: [scripts, .venv, venv, .*, tests]
|
||||
+build_ignore: [.md, .rst, scripts, .venv, venv, .*, tests]
|
||||
@@ -1 +0,0 @@
|
||||
rpm.version(gh("1Password/ansible-onepasswordconnect-collection"));
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: electron
|
||||
%electronmeta
|
||||
Version: 42.4.1
|
||||
Version: 42.4.0
|
||||
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 1c04ed95d45d49fb4b06cbc620c61acd58818977
|
||||
%global commit 56c97f66769ec8109a9aff2e475a86c9a6781742
|
||||
%global shortcommit %{sub %{commit} 0 7}
|
||||
%global commitdate 20251231
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 9c2f0170d0461a6bbd15fa5f1c975433ba29747d
|
||||
%global commit_date 20260616
|
||||
%global commit 3d2a021561aeb15b3f45705f6580b962e8763fe7
|
||||
%global commit_date 20260604
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global pypi_name glasgow
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 0~%{commit_date}git.%{shortcommit}
|
||||
Release: 1%{?dist}
|
||||
Release: 2%{?dist}
|
||||
Summary: Scots Army Knife for electronics
|
||||
License: 0BSD AND Apache-2.0
|
||||
URL: https://github.com/GlasgowEmbedded/glasgow
|
||||
|
||||
@@ -13,6 +13,8 @@ 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
|
||||
@@ -31,11 +33,16 @@ Packager: june-fish <june@fyralabs.com>
|
||||
%autosetup -n praat.github.io-%{version}
|
||||
|
||||
%build
|
||||
%ifarch x86_64
|
||||
%make_build PRAAT_ARCH=x64v1
|
||||
%else
|
||||
%make_build PRAAT_ARCH=native
|
||||
%endif
|
||||
# .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
|
||||
|
||||
%install
|
||||
install -pDm755 praat %{buildroot}%{_bindir}/praat
|
||||
@@ -65,7 +72,5 @@ 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
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 72e85be7cc25eba9d4e7c4e04e65120d353cff4b
|
||||
%global commit_date 20260616
|
||||
%global commit 5b5674949bfa0d53b9ee490ed662bd46f6997ba9
|
||||
%global commit_date 20260612
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
Name: spotx-bash
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global goipath github.com/surge-downloader/surge
|
||||
Version: 0.9.0
|
||||
Version: 0.8.7
|
||||
|
||||
%gometa
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: termflix
|
||||
Version: 0.6.0
|
||||
Version: 0.5.1
|
||||
Release: 1%{?dist}
|
||||
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
|
||||
|
||||
Name: yt-dlp-git
|
||||
Version: 2026.06.16.020134
|
||||
Version: 2026.06.13.230640
|
||||
Release: 1%{?dist}
|
||||
Summary: A command-line program to download videos from online video platforms
|
||||
|
||||
|
||||
Reference in New Issue
Block a user