[nvidia-kmod/el8] (12 commits) ...Merge branch 'el9' into el8
by Leigh Scott
Summary of changes:
654315a... Switch simpledrm to fedora-only (*)
d911554... Merge commit '85e066abab0f8bfb7e7f0e9dc47f50aa66e88f02' int (*)
bc3eb42... Rebuilt for RHEL 9.1 (*)
d1d3b18... Merge branch 'master' into el9 (*)
b1b47aa... Merge branch 'master' into el9 (*)
b527a44... Update to 525.116.04 (*)
f6c9636... Merge branch 'master' into el9 (*)
05c9d8e... Merge branch 'master' into el9 (*)
89af2c5... Merge branch 'master' into el9 (*)
235c58c... Update to 550.100 (*)
1b2f951... Update to 550.107.02 (*)
0947781... Merge branch 'el9' into el8
(*) This commit already existed in another branch; no separate mail sent
2 months, 2 weeks
[qt5-qtwebengine-freeworld] Use Python 3 and bundled re2
by Leigh Scott
commit ad0a90d6cba8aa48d8f9437111aeedbc0715c395
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Mon Sep 2 18:32:21 2024 +0100
Use Python 3 and bundled re2
python3.12-imp.patch | 26 +++++++++++
python3.12-six.patch | 58 +++++++++++++++++++++++++
python3.13-pipes.patch | 21 +++++++++
qt5-qtwebengine-freeworld.spec | 40 +++++++----------
qtwebengine-everywhere-5.15.5-use-python2.patch | 13 ------
5 files changed, 120 insertions(+), 38 deletions(-)
---
diff --git a/python3.12-imp.patch b/python3.12-imp.patch
new file mode 100644
index 0000000..b06f957
--- /dev/null
+++ b/python3.12-imp.patch
@@ -0,0 +1,26 @@
+Description: stop using imp module which was removed in Python 3.12
+Origin: upstream, commits
+ https://chromium.googlesource.com/chromium/src/+/9e0c89a3b5638ba2
+ https://chromium.googlesource.com/chromium/src/+/f5f6e361d037c316
+Last-Update: 2024-03-17
+
+--- a/src/3rdparty/chromium/mojo/public/tools/mojom/mojom/fileutil.py
++++ b/src/3rdparty/chromium/mojo/public/tools/mojom/mojom/fileutil.py
+@@ -3,7 +3,6 @@
+ # found in the LICENSE file.
+
+ import errno
+-import imp
+ import os.path
+ import sys
+
+--- a/src/3rdparty/chromium/mojo/public/tools/mojom/mojom/parse/lexer.py
++++ b/src/3rdparty/chromium/mojo/public/tools/mojom/mojom/parse/lexer.py
+@@ -2,7 +2,6 @@
+ # Use of this source code is governed by a BSD-style license that can be
+ # found in the LICENSE file.
+
+-import imp
+ import os.path
+ import sys
+
diff --git a/python3.12-six.patch b/python3.12-six.patch
new file mode 100644
index 0000000..bfc0438
--- /dev/null
+++ b/python3.12-six.patch
@@ -0,0 +1,58 @@
+Patch-Source: https://sources.debian.org/data/main/q/qtwebengine-opensource-src/5.15.16...
+--
+Description: implement find_spec() for _SixMetaPathImporter
+Origin: upstream, https://github.com/benjaminp/six/commit/25916292d96f5f09
+Last-Update: 2024-03-17
+
+--- a/src/3rdparty/chromium/third_party/protobuf/third_party/six/six.py
++++ b/src/3rdparty/chromium/third_party/protobuf/third_party/six/six.py
+@@ -71,6 +71,11 @@ else:
+ MAXSIZE = int((1 << 63) - 1)
+ del X
+
++if PY34:
++ from importlib.util import spec_from_loader
++else:
++ spec_from_loader = None
++
+
+ def _add_doc(func, doc):
+ """Add documentation to a function."""
+@@ -186,6 +191,11 @@ class _SixMetaPathImporter(object):
+ return self
+ return None
+
++ def find_spec(self, fullname, path, target=None):
++ if fullname in self.known_modules:
++ return spec_from_loader(fullname, self)
++ return None
++
+ def __get_module(self, fullname):
+ try:
+ return self.known_modules[fullname]
+--- a/src/3rdparty/chromium/tools/grit/third_party/six/__init__.py
++++ b/src/3rdparty/chromium/tools/grit/third_party/six/__init__.py
+@@ -71,6 +71,11 @@ else:
+ MAXSIZE = int((1 << 63) - 1)
+ del X
+
++if PY34:
++ from importlib.util import spec_from_loader
++else:
++ spec_from_loader = None
++
+
+ def _add_doc(func, doc):
+ """Add documentation to a function."""
+@@ -186,6 +191,11 @@ class _SixMetaPathImporter(object):
+ return self
+ return None
+
++ def find_spec(self, fullname, path, target=None):
++ if fullname in self.known_modules:
++ return spec_from_loader(fullname, self)
++ return None
++
+ def __get_module(self, fullname):
+ try:
+ return self.known_modules[fullname]
diff --git a/python3.13-pipes.patch b/python3.13-pipes.patch
new file mode 100644
index 0000000..b04f6a4
--- /dev/null
+++ b/python3.13-pipes.patch
@@ -0,0 +1,21 @@
+diff --git a/src/3rdparty/chromium/build/android/gyp/util/build_utils.py b/src/3rdparty/chromium/build/android/gyp/util/build_utils.py
+index 022980517..e3f82704a 100644
+--- a/src/3rdparty/chromium/build/android/gyp/util/build_utils.py
++++ b/src/3rdparty/chromium/build/android/gyp/util/build_utils.py
+@@ -12,7 +12,6 @@ import fnmatch
+ import json
+ import logging
+ import os
+-import pipes
+ import re
+ import shutil
+ import stat
+@@ -198,7 +197,7 @@ class CalledProcessError(Exception):
+ # A user should be able to simply copy and paste the command that failed
+ # into their shell.
+ copyable_command = '( cd {}; {} )'.format(os.path.abspath(self.cwd),
+- ' '.join(map(pipes.quote, self.args)))
++ printed_cmd)
+ return 'Command failed: {}\n{}'.format(copyable_command, self.output)
+
+
diff --git a/qt5-qtwebengine-freeworld.spec b/qt5-qtwebengine-freeworld.spec
index 2423587..aa17adf 100644
--- a/qt5-qtwebengine-freeworld.spec
+++ b/qt5-qtwebengine-freeworld.spec
@@ -20,7 +20,6 @@
# need libwebp >= 0.6.0
%global use_system_libwebp 1
%global use_system_jsoncpp 1
-%global use_system_re2 1
%endif
%if 0%{?use_system_libwebp}
@@ -63,7 +62,7 @@
Summary: Qt5 - QtWebEngine components (freeworld version)
Name: qt5-qtwebengine-freeworld
Version: 5.15.17
-Release: 2%{?dist}
+Release: 3%{?dist}
%global major_minor %(echo %{version} | cut -d. -f-2)
%global major %(echo %{version} | cut -d. -f1)
@@ -97,8 +96,7 @@ Patch7: chromium-hunspell-nullptr.patch
Patch8: qtwebengine-everywhere-5.15.8-libpipewire-0.3.patch
# Fix/workaround FTBFS on aarch64 with newer glibc
Patch24: qtwebengine-everywhere-src-5.11.3-aarch64-new-stat.patch
-# Use Python2
-Patch26: qtwebengine-everywhere-5.15.5-use-python2.patch
+
Patch32: qtwebengine-skia-missing-includes.patch
# Fixes for GCC 13
# https://bugzilla.redhat.com/show_bug.cgi?id=2164993
@@ -109,6 +107,9 @@ Patch35: qt5-qtwebengine-c99.patch
# Fix build
Patch61: qtwebengine-5.15.13_p20240322-ninja1.12.patch
Patch62: fix_build_pdf_extension_util.patch
+Patch63: python3.12-imp.patch
+Patch64: python3.12-six.patch
+Patch65: python3.13-pipes.patch
## Upstream patches:
@@ -149,9 +150,6 @@ BuildRequires: libicu-devel >= 65
%endif
BuildRequires: libjpeg-devel
BuildRequires: nodejs
-%if 0%{?use_system_re2}
-BuildRequires: re2-devel
-%endif
%if 0%{?pipewire}
BuildRequires: pkgconfig(libpipewire-0.3)
%endif
@@ -213,15 +211,8 @@ BuildRequires: pkgconfig(xkbfile)
## requires libxml2 built with icu support
#BuildRequires: pkgconfig(libxslt) pkgconfig(libxml-2.0)
BuildRequires: perl-interpreter
-# fesco exception to allow python2 use: https://pagure.io/fesco/issue/2208
-# per https://fedoraproject.org/wiki/Changes/RetirePython2#FESCo_exceptions
-# Only the interpreter is needed
-%if 0%{?fedora} > 29 || 0%{?rhel} > 8
-BuildRequires: %{__python2}
-%else
-BuildRequires: python2
-BuildRequires: python2-rpm-macros
-%endif
+BuildRequires: %{__python3}
+BuildRequires: python3-html5lib
%if 0%{?use_system_libvpx}
BuildRequires: pkgconfig(vpx) >= 1.8.0
%endif
@@ -382,7 +373,6 @@ popd
## upstream patches
%patch -P24 -p1 -b .aarch64-new-stat
-%patch -P26 -p1 -b .use-python2
%patch -P32 -p1 -b .skia-missing-includes
%patch -P34 -p1 -b .gcc-13
@@ -390,18 +380,15 @@ popd
%patch -P61 -p1
%patch -P62 -p1
+%patch -P63 -p1
+%patch -P64 -p1
+%patch -P65 -p1
# delete all "toolprefix = " lines from build/toolchain/linux/BUILD.gn, as we
# never cross-compile in native Fedora RPMs, fixes ARM and aarch64 FTBFS
sed -i -e '/toolprefix = /d' -e 's/\${toolprefix}//g' \
src/3rdparty/chromium/build/toolchain/linux/BUILD.gn
-%if 0%{?use_system_re2}
-# http://bugzilla.redhat.com/1337585
-# can't just delete, but we'll overwrite with system headers to be on the safe side
-cp -bv /usr/include/re2/*.h src/3rdparty/chromium/third_party/re2/src/re2/
-%endif
-
%if 0
#ifarch x86_64
# enable this to force -g2 on x86_64 (most arches run out of memory with -g2)
@@ -413,7 +400,7 @@ sed -i -e 's/symbol_level=1/symbol_level=2/g' src/core/config/common.pri
# generate qtwebengine-3rdparty.qdoc, it is missing from the tarball
pushd src/3rdparty
-%{__python2} chromium/tools/licenses.py \
+%{__python3} chromium/tools/licenses.py \
--file-template ../../tools/about_credits.tmpl \
--entry-template ../../tools/about_credits_entry.tmpl \
credits >../webengine/doc/src/qtwebengine-3rdparty.qdoc
@@ -448,7 +435,7 @@ export NINJA_PATH=%{__ninja}
%{?system_ffmpeg_flag:QMAKE_EXTRA_ARGS+="%{?system_ffmpeg_flag}"} \
QMAKE_EXTRA_ARGS+="-proprietary-codecs" \
%{?use_system_libicu:QMAKE_EXTRA_ARGS+="-system-webengine-icu"} \
- QMAKE_EXTRA_ARGS+="-webengine-kerberos" \
+ QMAKE_EXTRA_ARGS+="-webengine-kerberos -webengine-python-version python3" \
%{?pipewire:QMAKE_EXTRA_ARGS+="-webengine-webrtc-pipewire"} \
.
@@ -481,6 +468,9 @@ echo "%{_libdir}/%{name}" \
%changelog
+* Mon Sep 02 2024 Leigh Scott <leigh123linux(a)gmail.com> - 5.15.17-3
+- Use Python 3 and bundled re2
+
* Fri Aug 02 2024 RPM Fusion Release Engineering <sergiomb(a)rpmfusion.org> - 5.15.17-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
2 months, 2 weeks
[steam] Update to 1.0.0.81
by slaanesh
Summary of changes:
63f83fb... Update to 1.0.0.81 (*)
(*) This commit already existed in another branch; no separate mail sent
2 months, 3 weeks
[steam/f41] Update to 1.0.0.81
by slaanesh
Summary of changes:
63f83fb... Update to 1.0.0.81 (*)
(*) This commit already existed in another branch; no separate mail sent
2 months, 3 weeks
[steam/f40] Update to 1.0.0.81
by slaanesh
Summary of changes:
63f83fb... Update to 1.0.0.81 (*)
(*) This commit already existed in another branch; no separate mail sent
2 months, 3 weeks
[steam/f39] Update to 1.0.0.81
by slaanesh
Summary of changes:
63f83fb... Update to 1.0.0.81 (*)
(*) This commit already existed in another branch; no separate mail sent
2 months, 3 weeks
[steam/el9] Update to 1.0.0.81
by slaanesh
commit 63f83fb40ba4aefeeeee8637f60fc57e3ef6990c
Author: Simone Caronni <negativo17(a)gmail.com>
Date: Sun Sep 1 20:01:34 2024 +0200
Update to 1.0.0.81
.gitignore | 1 +
sources | 2 +-
steam.spec | 7 +++++--
3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index d0df00e..6997ae4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,3 +11,4 @@
/steam_1.0.0.76.tar.gz
/steam_1.0.0.78.tar.gz
/steam_1.0.0.79.tar.gz
+/steam_1.0.0.81.tar.gz
diff --git a/sources b/sources
index 75a0531..6fe2301 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (steam_1.0.0.79.tar.gz) = 52d1a23f43012af641ebc9a03a444b6944ea966e0814619c890e792442e760a96bf570a84e4f8b38552904dafb6572a92de31154ddefe1eb8d702106605c8497
+SHA512 (steam_1.0.0.81.tar.gz) = adbb89f3af069d9ff417ca7789a3d275e6485212ec8e08a4b2d110a2f370fc6d1a564895ba58b0548ea1521ee90029a4bb397ef86f29e093907abd562f65d07f
diff --git a/steam.spec b/steam.spec
index 492f732..ba59e5f 100644
--- a/steam.spec
+++ b/steam.spec
@@ -4,8 +4,8 @@
%global appstream_id com.valvesoftware.Steam
Name: steam
-Version: 1.0.0.79
-Release: 7%{?dist}
+Version: 1.0.0.81
+Release: 1%{?dist}
Summary: Installer for the Steam software distribution service
# Redistribution and repackaging for Linux is allowed, see license file. udev rules are MIT.
License: Steam License Agreement and MIT
@@ -204,6 +204,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/%{appstream_id
%{_udevrulesdir}/*
%changelog
+* Sun Sep 01 2024 Simone Caronni <negativo17(a)gmail.com> - 1.0.0.81-1
+- Update to 1.0.0.81.
+
* Mon Aug 05 2024 Simone Caronni <negativo17(a)gmail.com> - 1.0.0.79-7
- Fix for Wayland on Fedora 40.
2 months, 3 weeks
[steam/el8] Update to 1.0.0.81
by slaanesh
commit 9b5313dc5e8a50196a3cf8e82fc4c31a3208c7b8
Author: Simone Caronni <negativo17(a)gmail.com>
Date: Sun Sep 1 20:01:34 2024 +0200
Update to 1.0.0.81
.gitignore | 1 +
sources | 2 +-
steam.spec | 7 +++++--
3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index d0df00e..6997ae4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,3 +11,4 @@
/steam_1.0.0.76.tar.gz
/steam_1.0.0.78.tar.gz
/steam_1.0.0.79.tar.gz
+/steam_1.0.0.81.tar.gz
diff --git a/sources b/sources
index 75a0531..6fe2301 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (steam_1.0.0.79.tar.gz) = 52d1a23f43012af641ebc9a03a444b6944ea966e0814619c890e792442e760a96bf570a84e4f8b38552904dafb6572a92de31154ddefe1eb8d702106605c8497
+SHA512 (steam_1.0.0.81.tar.gz) = adbb89f3af069d9ff417ca7789a3d275e6485212ec8e08a4b2d110a2f370fc6d1a564895ba58b0548ea1521ee90029a4bb397ef86f29e093907abd562f65d07f
diff --git a/steam.spec b/steam.spec
index c8034af..3eda7ad 100644
--- a/steam.spec
+++ b/steam.spec
@@ -4,8 +4,8 @@
%global appstream_id com.valvesoftware.Steam
Name: steam
-Version: 1.0.0.79
-Release: 6%{?dist}
+Version: 1.0.0.81
+Release: 1%{?dist}
Summary: Installer for the Steam software distribution service
# Redistribution and repackaging for Linux is allowed, see license file. udev rules are MIT.
License: Steam License Agreement and MIT
@@ -206,6 +206,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/%{appstream_id
%{_udevrulesdir}/*
%changelog
+* Sun Sep 01 2024 Simone Caronni <negativo17(a)gmail.com> - 1.0.0.81-1
+- Update to 1.0.0.81.
+
* Mon Aug 05 2024 Simone Caronni <negativo17(a)gmail.com> - 1.0.0.79-6
- Fix for Wayland on Fedora 40.
2 months, 3 weeks
[mimms/f41] Patch to use python3
by Leigh Scott
Summary of changes:
9976583... Patch to use python3 (*)
(*) This commit already existed in another branch; no separate mail sent
2 months, 3 weeks