mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-29 14:58:27 +00:00
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3c51f8a651 | |||
| 522784a931 | |||
| 1906e23d25 | |||
| 77857ff550 | |||
| 8f48ec10e5 | |||
| 46c715c2fb | |||
| fb17986797 | |||
| 682b3dc95e | |||
| 75671e36c8 |
@@ -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 62f1494661b362eac02e7d6c2f9173f53c0f278f
|
%global commit 5abce15f1c6f476c7425cd6542a5997614d08dfc
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global commit_date 20260628
|
%global commit_date 20260629
|
||||||
%global ver 0.41.0
|
%global ver 0.41.0
|
||||||
|
|
||||||
Name: mpv-nightly
|
Name: mpv-nightly
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
%global ver 2026-06-28
|
%global ver 2026-06-29
|
||||||
%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
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
project pkg {
|
||||||
|
arches = ["x86_64"]
|
||||||
|
rpm {
|
||||||
|
spec = "yumex.spec"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Name=Yum Extender
|
||||||
|
Exec=/usr/bin/yumex_updater
|
||||||
|
Icon=yumex-update-symbolic
|
||||||
|
Type=Application
|
||||||
|
NoDisplay=true
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
rpm.version(gh_tag("timlau/yumex-ng"));
|
||||||
@@ -0,0 +1,104 @@
|
|||||||
|
%global app_id dk.yumex.Yumex
|
||||||
|
%global app_build release
|
||||||
|
|
||||||
|
Name: yumex
|
||||||
|
Version: yumex.5.4.0
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: Yum Extender graphical package management tool
|
||||||
|
|
||||||
|
Packager: Jacob Secunda <secundaja@gmail.com>
|
||||||
|
|
||||||
|
Group: Applications/System
|
||||||
|
License: GPL-3.0-or-later
|
||||||
|
URL: https://github.com/timlau/yumex-ng
|
||||||
|
Source0: %{url}/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz
|
||||||
|
Source1: %{app_id}-updater.desktop
|
||||||
|
|
||||||
|
BuildArch: noarch
|
||||||
|
BuildRequires: python3-devel
|
||||||
|
BuildRequires: meson
|
||||||
|
BuildRequires: blueprint-compiler >= 0.4.0
|
||||||
|
BuildRequires: gettext
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: libappstream-glib
|
||||||
|
BuildRequires: pkgconfig(glib-2.0)
|
||||||
|
BuildRequires: pkgconfig(gtk4)
|
||||||
|
BuildRequires: pkgconfig(libadwaita-1)
|
||||||
|
BuildRequires: pkgconfig(pygobject-3.0)
|
||||||
|
BuildRequires: systemd-rpm-macros
|
||||||
|
|
||||||
|
Requires: python3-gobject
|
||||||
|
Requires: libadwaita >= 1.6
|
||||||
|
Requires: gtk4
|
||||||
|
Requires: python3-dbus
|
||||||
|
Requires: flatpak-libs > 1.15.0
|
||||||
|
Requires: appstream >= 1.0.2
|
||||||
|
|
||||||
|
Recommends: %{name}-updater
|
||||||
|
|
||||||
|
# dnf5 requirements
|
||||||
|
Requires: dnf5daemon-server >= 5.2.12
|
||||||
|
Provides: yumex-dnf5 = %{evr}
|
||||||
|
Obsoletes: yumex-dnf5 < %{evr}
|
||||||
|
|
||||||
|
%description
|
||||||
|
Graphical package tool for maintain packages on the system.
|
||||||
|
|
||||||
|
%package -n %{name}-updater
|
||||||
|
Summary: Yum Extender update notifier app
|
||||||
|
Requires: %{name} = %{evr}
|
||||||
|
Requires: python3-gobject
|
||||||
|
Requires: gtk3
|
||||||
|
Requires: python3-dbus
|
||||||
|
Requires: flatpak-libs > 1.15.0
|
||||||
|
Requires: libappindicator-gtk3
|
||||||
|
|
||||||
|
Provides: yumex-dnf5-updater-systray = %{evr}
|
||||||
|
Obsoletes: yumex-dnf5-updater-systray < %{evr}
|
||||||
|
Provides: yumex-updater-systray = %{evr}
|
||||||
|
Obsoletes: yumex-updater-systray < %{evr}
|
||||||
|
|
||||||
|
%description -n %{name}-updater
|
||||||
|
Checks for and notifies when updates are available.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup
|
||||||
|
|
||||||
|
%check
|
||||||
|
appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.metainfo.xml
|
||||||
|
%desktop_file_validate %{buildroot}%{_appsdir}/%{app_id}.desktop
|
||||||
|
%desktop_file_validate %{buildroot}%{_sysconfdir}/xdg/autostart/%{app_id}-updater.desktop
|
||||||
|
|
||||||
|
%conf
|
||||||
|
%meson --buildtype=%{app_build}
|
||||||
|
|
||||||
|
%build
|
||||||
|
%meson_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%meson_install
|
||||||
|
install -D -m 0644 %{SOURCE1} %{buildroot}%{_sysconfdir}/xdg/autostart/%{app_id}-updater.desktop
|
||||||
|
|
||||||
|
%find_lang %{name}
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%doc README.md
|
||||||
|
%license LICENSE
|
||||||
|
%{_datadir}/%{name}/
|
||||||
|
%{_bindir}/%{name}
|
||||||
|
%{python3_sitelib}/%{name}/
|
||||||
|
%{_appsdir}/%{app_id}*.desktop
|
||||||
|
%{_scalableiconsdir}/dk.yumex.Yumex.svg
|
||||||
|
%{_metainfodir}/%{app_id}.metainfo.xml
|
||||||
|
%{_datadir}/glib-2.0/schemas/%{app_id}.gschema.xml
|
||||||
|
|
||||||
|
%files -n %{name}-updater
|
||||||
|
%ghost %{_userunitdir}/%{name}-updater.service
|
||||||
|
%ghost %{_userpresetdir}/*%{name}-updater.preset
|
||||||
|
%{_bindir}/yumex_updater
|
||||||
|
%{_scalableiconsdir}/yumex-update-*.svg
|
||||||
|
%{_sysconfdir}/xdg/autostart/%{app_id}-updater.desktop
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Tue Jun 23 2026 Jacob Secunda <secundaja@gmail.com> - 5.4.0-1
|
||||||
|
- Initial package
|
||||||
@@ -3,8 +3,8 @@
|
|||||||
%global realname hyprutils
|
%global realname hyprutils
|
||||||
%global ver 0.13.1
|
%global ver 0.13.1
|
||||||
|
|
||||||
%global commit 9d8bf6e810597152eef8906c670b96679af2faec
|
%global commit d2b40ffe7bfcb001bbf5888bb56ff646de53e7db
|
||||||
%global commit_date 20260622
|
%global commit_date 20260629
|
||||||
%global shortcommit %{sub %commit 1 7}
|
%global shortcommit %{sub %commit 1 7}
|
||||||
|
|
||||||
Name: %realname.nightly
|
Name: %realname.nightly
|
||||||
|
|||||||
@@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
%global ver 5.0.0
|
%global ver 5.0.0
|
||||||
|
|
||||||
%global commit dfa00a4d316fa846f3b60760ad02faa7cacfdcbc
|
%global commit c6f09a8f436b21d4a932e778807d7bf707eab9b7
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global commitdate 20260628
|
%global commitdate 20260629
|
||||||
|
|
||||||
Name: noctalia-git
|
Name: noctalia-git
|
||||||
Version: %{ver}^%{commitdate}git.%{shortcommit}
|
Version: %{ver}^%{commitdate}git.%{shortcommit}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
%global commit cac94560c7d918e3d948a7a43806a10af2b1aba4
|
%global commit f9e292cc90686ab0ef0ba8cbf07eab265dabd167
|
||||||
%global commit_date 20260625
|
%global commit_date 20260629
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
|
|
||||||
Name: libsingularity
|
Name: libsingularity
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
%global commit 5837e7ef50f65d6e041d19ba6543532a1d596e6b
|
%global commit 5fa184f8b63df7e084140ab3c2a91b4a6f262bab
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global commit_date 20260628
|
%global commit_date 20260629
|
||||||
%global ver 1.10.0
|
%global ver 1.10.0
|
||||||
|
|
||||||
%bcond_with check
|
%bcond_with check
|
||||||
|
|||||||
@@ -6,9 +6,9 @@
|
|||||||
|
|
||||||
%global ver 1.1
|
%global ver 1.1
|
||||||
|
|
||||||
Name: melonds
|
Name: melonds-nightly
|
||||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: DS emulator, sorta
|
Summary: DS emulator, sorta
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-or-later
|
||||||
URL: https://melonds.kuribo64.net/
|
URL: https://melonds.kuribo64.net/
|
||||||
|
|||||||
@@ -0,0 +1,24 @@
|
|||||||
|
From a3a4839724f9cf7be546fa441ba12afc95da2743 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Svitkona <svitkona5@gmail.com>
|
||||||
|
Date: Fri, 19 Jun 2026 16:22:34 -0400
|
||||||
|
Subject: [PATCH] fix: use path.get_base_dir() instead of manual split + join
|
||||||
|
|
||||||
|
---
|
||||||
|
core/systems/input/input_plumber_profile.gd | 4 +---
|
||||||
|
1 file changed, 1 insertion(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/core/systems/input/input_plumber_profile.gd b/core/systems/input/input_plumber_profile.gd
|
||||||
|
index 7ac5eb37..bdb0adee 100644
|
||||||
|
--- a/core/systems/input/input_plumber_profile.gd
|
||||||
|
+++ b/core/systems/input/input_plumber_profile.gd
|
||||||
|
@@ -159,9 +159,7 @@ static func get_target_device(target_device_str: String) -> TargetDevice:
|
||||||
|
func save(path: String) -> Error:
|
||||||
|
if path.begins_with("user://") or path.begins_with("res://"):
|
||||||
|
path = ProjectSettings.globalize_path(path)
|
||||||
|
- var path_parts := Array(path.split("/", false))
|
||||||
|
- path_parts.pop_back()
|
||||||
|
- var base_path := "/".join(path_parts)
|
||||||
|
+ var base_path := path.get_base_dir()
|
||||||
|
|
||||||
|
if DirAccess.make_dir_recursive_absolute(base_path) != OK:
|
||||||
|
print("Failed to mkdir")
|
||||||
@@ -1,12 +1,15 @@
|
|||||||
Name: opengamepadui
|
Name: opengamepadui
|
||||||
Version: 0.45.0
|
Version: 0.45.0
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Open source gamepad-native game launcher and overlay
|
Summary: Open source gamepad-native game launcher and overlay
|
||||||
|
|
||||||
License: GPLv3
|
License: GPLv3
|
||||||
URL: https://github.com/ShadowBlip/OpenGamepadUI
|
URL: https://github.com/ShadowBlip/OpenGamepadUI
|
||||||
Packager: Cappy Ishihara <cappy@fyralabs.com>
|
Packager: Cappy Ishihara <cappy@fyralabs.com>
|
||||||
|
|
||||||
|
# https://patch-diff.githubusercontent.com/raw/ShadowBlip/OpenGamepadUI/pull/523
|
||||||
|
Patch0: 523.patch
|
||||||
|
|
||||||
BuildRequires: godot
|
BuildRequires: godot
|
||||||
BuildRequires: scons
|
BuildRequires: scons
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
@@ -33,6 +36,7 @@ BuildRequires: pkgconfig(xau)
|
|||||||
BuildRequires: pkgconfig(xtst)
|
BuildRequires: pkgconfig(xtst)
|
||||||
BuildRequires: pkgconfig(xdmcp)
|
BuildRequires: pkgconfig(xdmcp)
|
||||||
BuildRequires: systemd-rpm-macros
|
BuildRequires: systemd-rpm-macros
|
||||||
|
BuildRequires: patch
|
||||||
|
|
||||||
Requires: godot-runner
|
Requires: godot-runner
|
||||||
Recommends: inputplumber
|
Recommends: inputplumber
|
||||||
@@ -52,6 +56,7 @@ rm -rf %{build_dir}
|
|||||||
git clone %{url} %{build_dir} -b v%{version}
|
git clone %{url} %{build_dir} -b v%{version}
|
||||||
cd %{build_dir}
|
cd %{build_dir}
|
||||||
git checkout tags/v%{version}
|
git checkout tags/v%{version}
|
||||||
|
%patch 0 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
cd %{build_dir}
|
cd %{build_dir}
|
||||||
|
|||||||
@@ -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 cffd02bb3583aab3ae718b0435bcf80735c9badc
|
%global commit 635aac8ff301fd0430acd92526a1e171e3a80c90
|
||||||
%global ver 0.0.41-19517
|
%global ver 0.0.41-19519
|
||||||
|
|
||||||
Name: rpcs3
|
Name: rpcs3
|
||||||
Version: %(echo %{ver} | sed 's/-/^/g')
|
Version: %(echo %{ver} | sed 's/-/^/g')
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
%global commit bf8aa12ace2bdc453fd7224ad76702527c64b2fb
|
%global commit 4e366494a3dedb97ffd0f0e76cbb46f5e789ff80
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global ver v2.2.7.5
|
%global ver v2.4.4
|
||||||
%global commit_date 20260626
|
%global commit_date 20260629
|
||||||
|
|
||||||
%global goipath github.com/v2rayA/v2rayA
|
%global goipath github.com/v2rayA/v2rayA
|
||||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
%global _desc Python API Client for Jellyfin.
|
%global _desc Python API Client for Jellyfin.
|
||||||
|
|
||||||
Name: python-%{pypi_name}
|
Name: python-%{pypi_name}
|
||||||
Version: 1.12.0
|
Version: 1.13.0
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Python API Client for Jellyfin
|
Summary: Python API Client for Jellyfin
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-or-later
|
||||||
URL: https://github.com/jellyfin/jellyfin-apiclient-python
|
URL: https://github.com/jellyfin/jellyfin-apiclient-python
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
%global _desc Open Chinese Convert.
|
%global _desc Open Chinese Convert.
|
||||||
|
|
||||||
Name: python-%{pypi_name}
|
Name: python-%{pypi_name}
|
||||||
Version: 1.3.1
|
Version: 1.3.2
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Open Chinese Convert
|
Summary: Open Chinese Convert
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
URL: https://github.com/BYVoid/OpenCC
|
URL: https://github.com/BYVoid/OpenCC
|
||||||
|
|||||||
@@ -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.21.0
|
Version: 7.21.1
|
||||||
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
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/bash
|
#!/usr/bin/bash
|
||||||
|
|
||||||
version=0.17.0-dev.986+f3544a707
|
version=0.17.0-dev.1099+7db2ef610
|
||||||
|
|
||||||
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.986+f3544a707
|
%global ver 0.17.0-dev.1099+7db2ef610
|
||||||
%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.986+f3544a707
|
Version: 0.17.0~dev.1099+7db2ef610
|
||||||
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 1635bbd0ea044d1c3681b1843b5a0f3e878d0ed0
|
%global commit 14045e8f61f12f4f1e320bc3bba015b98f5294dd
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global commitdate 20260504
|
%global commitdate 20260629
|
||||||
%global debug_package %{nil}
|
%global debug_package %{nil}
|
||||||
|
|
||||||
Name: libtrueforce
|
Name: libtrueforce
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
%global commit b9838c2edeace1621315ae68d10d87c2881fac39
|
%global commit 197922d161f3a4fc0a36fa43d9668b7918b9338f
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global ver 20260627134952
|
%global ver 20260628154711
|
||||||
%global commit_date 20260628
|
%global commit_date 20260629
|
||||||
|
|
||||||
Name: v2ray-domain-list-community
|
Name: v2ray-domain-list-community
|
||||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||||
|
|||||||
@@ -7,8 +7,8 @@
|
|||||||
%global debug_package %{nil}
|
%global debug_package %{nil}
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%global commit 1635bbd0ea044d1c3681b1843b5a0f3e878d0ed0
|
%global commit 14045e8f61f12f4f1e320bc3bba015b98f5294dd
|
||||||
%global commitdate 20260504
|
%global commitdate 20260629
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global modulename logitech-rs50-linux-driver
|
%global modulename logitech-rs50-linux-driver
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
%global commit 1635bbd0ea044d1c3681b1843b5a0f3e878d0ed0
|
%global commit 14045e8f61f12f4f1e320bc3bba015b98f5294dd
|
||||||
%global debug_package %{nil}
|
%global debug_package %{nil}
|
||||||
%global modulename logitech-rs50-linux-driver
|
%global modulename logitech-rs50-linux-driver
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global commitdate 20260504
|
%global commitdate 20260629
|
||||||
|
|
||||||
Name: dkms-%{modulename}
|
Name: dkms-%{modulename}
|
||||||
Version: 1.0^%{commitdate}git.%{shortcommit}
|
Version: 1.0^%{commitdate}git.%{shortcommit}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
%global commit 1635bbd0ea044d1c3681b1843b5a0f3e878d0ed0
|
%global commit 14045e8f61f12f4f1e320bc3bba015b98f5294dd
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global commitdate 20260504
|
%global commitdate 20260629
|
||||||
|
|
||||||
Name: logitech-rs50-linux-driver
|
Name: logitech-rs50-linux-driver
|
||||||
Version: 1.0^%{commitdate}git.%{shortcommit}
|
Version: 1.0^%{commitdate}git.%{shortcommit}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: pixi
|
Name: pixi
|
||||||
Version: 0.71.1
|
Version: 0.71.2
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A cross-platform, multi-language package manager
|
Summary: A cross-platform, multi-language package manager
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Name: electron
|
Name: electron
|
||||||
%electronmeta
|
%electronmeta
|
||||||
Version: 42.5.0
|
Version: 42.5.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}
|
||||||
|
|||||||
Reference in New Issue
Block a user