mirror of
https://github.com/terrapkg/packages.git
synced 2026-05-31 09:01:55 +00:00
fix(umu-launcher): urllib3 dependency issues on <= 41 (#3380)
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
project pkg {
|
||||
arches = ["x86_64"]
|
||||
rpm {
|
||||
spec = "umu-launcher.spec"
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: umu-launcher
|
||||
Version: 1.2.3
|
||||
Release: 1%?dist
|
||||
Release: 2%?dist
|
||||
Summary: A tool for launching non-steam games with proton
|
||||
|
||||
License: GPL-3.0-only
|
||||
@@ -27,11 +27,18 @@ BuildRequires: python3-wheel
|
||||
BuildRequires: python3-xlib
|
||||
BuildRequires: python3-pyzstd
|
||||
BuildRequires: cargo
|
||||
|
||||
Requires: python
|
||||
Requires: python3
|
||||
%if %{?fedora} <= 41
|
||||
Requires: python3-xlib
|
||||
Requires: python3-filelock
|
||||
Requires: python3-pyzstd
|
||||
|
||||
AutoReqProv: no
|
||||
%endif
|
||||
|
||||
BuildArch: x86_64
|
||||
|
||||
%description
|
||||
%summary.
|
||||
@@ -40,7 +47,11 @@ Requires: python3-filelock
|
||||
%git_clone %url %version
|
||||
|
||||
%build
|
||||
%if %{?fedora} <= 41
|
||||
./configure.sh --prefix=%_prefix --use-system-pyzstd
|
||||
%else
|
||||
./configure.sh --prefix=%_prefix --use-system-pyzstd --use-system-urllib
|
||||
%endif
|
||||
%{make_build}
|
||||
|
||||
%install
|
||||
|
||||
Reference in New Issue
Block a user