summaryrefslogtreecommitdiff
path: root/dev-python/pyside/files
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/pyside/files
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/pyside/files')
-rw-r--r--dev-python/pyside/files/pyside-6.10.0-dont-vendor-ffmpeg.patch18
-rw-r--r--dev-python/pyside/files/pyside-6.10.1-pass-ninja-opts.patch20
-rw-r--r--dev-python/pyside/files/pyside-6.10.2-quick-fix-build-wheel.patch15
-rw-r--r--dev-python/pyside/files/pyside-6.11.0-find-cmake-helpers.patch26
-rw-r--r--dev-python/pyside/files/pyside-6.11.1-fix-llvm-version.patch16
5 files changed, 0 insertions, 95 deletions
diff --git a/dev-python/pyside/files/pyside-6.10.0-dont-vendor-ffmpeg.patch b/dev-python/pyside/files/pyside-6.10.0-dont-vendor-ffmpeg.patch
deleted file mode 100644
index 72c09ec5f9ca..000000000000
--- a/dev-python/pyside/files/pyside-6.10.0-dont-vendor-ffmpeg.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- a/build_scripts/platforms/unix.py
-+++ b/build_scripts/platforms/unix.py
-@@ -234,14 +234,6 @@ def prepare_packages_posix(pyside_build, _vars, cross_build=False):
- "{st_build_dir}/{st_package_name}/jar",
- _vars=_vars)
-
-- # Some libraries specific to Linux/Android from 6.8
-- # eg: the libav* libraries are required for the multimedia module
-- if config.is_internal_pyside_build() and (sys.platform != "darwin" or is_android):
-- qt_multimedia_filters = [f"lib{lib}*.so*" for lib in PYSIDE_MULTIMEDIA_LIBS]
-- copydir("{qt_lib_dir}", destination_qt_dir / "lib",
-- _filter=qt_multimedia_filters,
-- recursive=False, _vars=_vars, force_copy_symlinks=True)
--
- # Copy Qt libs to package
- if OPTION["STANDALONE"]:
- if config.is_internal_pyside_build() or config.is_internal_shiboken_generator_build():
-
diff --git a/dev-python/pyside/files/pyside-6.10.1-pass-ninja-opts.patch b/dev-python/pyside/files/pyside-6.10.1-pass-ninja-opts.patch
deleted file mode 100644
index b6f05c5a59c5..000000000000
--- a/dev-python/pyside/files/pyside-6.10.1-pass-ninja-opts.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-Allows passing --load-average and not passing --jobs which would stop the jobserver from working.
-
-This is a Gentoo'ism so its not upstreamable in this form.
-
-diff --git a/build_scripts/main.py b/build_scripts/main.py
-index cdaa439ff..3e088961e 100644
---- a/build_scripts/main.py
-+++ b/build_scripts/main.py
-@@ -854,8 +854,8 @@ class PysideBuild(_build, CommandMixin, BuildInfoCollectorMixin):
-
- log.info(f"-- Compiling module {extension}...")
- cmd_make = [str(self.make_path)]
-- if OPTION["JOBS"]:
-- cmd_make.append(OPTION["JOBS"])
-+ if self.make_generator == "Ninja":
-+ cmd_make.extend(os.getenv("NINJAOPTS").split())
- if OPTION["LOG_LEVEL"] == LogLevel.VERBOSE and self.make_generator == "Ninja":
- cmd_make.append("-v")
- if run_process(cmd_make) != 0:
-
diff --git a/dev-python/pyside/files/pyside-6.10.2-quick-fix-build-wheel.patch b/dev-python/pyside/files/pyside-6.10.2-quick-fix-build-wheel.patch
deleted file mode 100644
index 56992c3f49a4..000000000000
--- a/dev-python/pyside/files/pyside-6.10.2-quick-fix-build-wheel.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- a/build_scripts/wheel_override.py
-+++ b/build_scripts/wheel_override.py
-@@ -20,9 +20,9 @@
-
- from packaging import tags
- from wheel import __version__ as wheel_version
-- from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
-- from wheel.bdist_wheel import get_abi_tag, get_platform
-- from wheel.bdist_wheel import safer_name as _safer_name
-+ from setuptools.command.bdist_wheel import bdist_wheel as _bdist_wheel
-+ from setuptools.command.bdist_wheel import get_abi_tag, get_platform
-+ from setuptools.command.bdist_wheel import safer_name as _safer_name
-
- wheel_module_exists = True
- except Exception as e:
diff --git a/dev-python/pyside/files/pyside-6.11.0-find-cmake-helpers.patch b/dev-python/pyside/files/pyside-6.11.0-find-cmake-helpers.patch
deleted file mode 100644
index 4e321cc773ac..000000000000
--- a/dev-python/pyside/files/pyside-6.11.0-find-cmake-helpers.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/sources/pyside6/cmake/PySideHelpers.cmake b/sources/pyside6/cmake/PySideHelpers.cmake
-index ec803a1..335893f 100644
---- a/sources/pyside6/cmake/PySideHelpers.cmake
-+++ b/sources/pyside6/cmake/PySideHelpers.cmake
-@@ -43,6 +43,8 @@ function(pyside_internal_find_host_shiboken_tools)
- if(QFP_SHIBOKEN_HOST_PATH)
- list(APPEND find_package_extra_args PATHS "${QFP_SHIBOKEN_HOST_PATH}/lib/cmake")
- list(PREPEND CMAKE_FIND_ROOT_PATH "${QFP_SHIBOKEN_HOST_PATH}")
-+ elseif(QFP_SHIBOKEN_TARGET_PATH)
-+ list(APPEND find_package_extra_args PATHS "${QFP_SHIBOKEN_TARGET_PATH}/lib/cmake")
- endif()
-
- # When doing a regular build, immediately mark the package as required.
-diff --git a/sources/shiboken6/cmake/ShibokenHelpers.cmake b/sources/shiboken6/cmake/ShibokenHelpers.cmake
-index 8c3c8f9..b5e3c68 100644
---- a/sources/shiboken6/cmake/ShibokenHelpers.cmake
-+++ b/sources/shiboken6/cmake/ShibokenHelpers.cmake
-@@ -530,6 +530,8 @@ function(shiboken_internal_find_host_shiboken_tools)
- if(QFP_SHIBOKEN_HOST_PATH)
- list(APPEND find_package_extra_args PATHS "${QFP_SHIBOKEN_HOST_PATH}/lib/cmake")
- list(PREPEND CMAKE_FIND_ROOT_PATH "${QFP_SHIBOKEN_HOST_PATH}")
-+ elseif(QFP_SHIBOKEN_TARGET_PATH)
-+ list(APPEND find_package_extra_args PATHS "${QFP_SHIBOKEN_TARGET_PATH}/lib/cmake")
- endif()
- set(SHIBOKEN6TOOLS_SKIP_FIND_DEPENDENCIES TRUE)
- find_package(
diff --git a/dev-python/pyside/files/pyside-6.11.1-fix-llvm-version.patch b/dev-python/pyside/files/pyside-6.11.1-fix-llvm-version.patch
deleted file mode 100644
index 28cc48601ef3..000000000000
--- a/dev-python/pyside/files/pyside-6.11.1-fix-llvm-version.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-https://codeberg.org/gentoo/gentoo/pulls/884#issuecomment-14921022
-
-Fixes https://github.com/pyside/pyside-setup/commit/2f25d2a3db2ffc4c5e18654138249d285e995d08
-
---- a/sources/shiboken6_generator/cmake/ShibokenGeneratorSetup.cmake
-+++ b/sources/shiboken6_generator/cmake/ShibokenGeneratorSetup.cmake
-@@ -36,7 +36,7 @@ compute_config_py_values(shiboken6_VERSION)
-
- shiboken_internal_set_python_site_packages()
-
--string(REGEX REPLACE "\\.[0-9]+\\.[0-9]+$" "" LLVM_VERSION "${LLVM_PACKAGE_VERSION}")
-+set(LLVM_VERSION "${LLVM_VERSION_MAJOR}")
-
- set_cmake_cxx_flags()
- set(CMAKE_CXX_FLAGS
-