From bbe568cf9c15867eb3d931a2ff5df5ea65f15c453a74ae119a8b51b839589457 Mon Sep 17 00:00:00 2001 From: Christophe Giboudeaux Date: Sat, 6 Apr 2019 19:06:21 +0000 Subject: [PATCH 1/2] 5.12.2 OBS-URL: https://build.opensuse.org/package/show/KDE:Qt5/python3-pyside2?expand=0&rev=24 --- ...f-empty-build-directories-in-install.patch | 29 ----- ...ecessary-she-bang-from-icon-cache.py.patch | 8 +- _service | 15 --- fix-cmake.patch | 10 -- lib64.patch | 62 ++++++----- pyside-setup-5.12.0.obscpio | 3 - pyside-setup-everywhere-src-5.12.2.tar.xz | 3 + python3-pyside2.changes | 14 +++ python3-pyside2.spec | 101 +++++++++--------- 9 files changed, 100 insertions(+), 145 deletions(-) delete mode 100644 0001-Avoid-creation-of-empty-build-directories-in-install.patch delete mode 100644 _service delete mode 100644 fix-cmake.patch delete mode 100644 pyside-setup-5.12.0.obscpio create mode 100644 pyside-setup-everywhere-src-5.12.2.tar.xz diff --git a/0001-Avoid-creation-of-empty-build-directories-in-install.patch b/0001-Avoid-creation-of-empty-build-directories-in-install.patch deleted file mode 100644 index 41bed81..0000000 --- a/0001-Avoid-creation-of-empty-build-directories-in-install.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 08afddcf38ec96f2faf59c8ab548970fdc14a0b9 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Stefan=20Br=C3=BCns?= -Date: Fri, 21 Dec 2018 16:15:26 +0100 -Subject: [PATCH] Avoid creation of empty build directories in install tree - ---- - sources/pyside2/cmake/Macros/PySideModules.cmake | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -diff --git a/sources/pyside2/cmake/Macros/PySideModules.cmake b/sources/pyside2/cmake/Macros/PySideModules.cmake -index 98efd8c7..62af767d 100644 ---- a/sources/pyside2/cmake/Macros/PySideModules.cmake -+++ b/sources/pyside2/cmake/Macros/PySideModules.cmake -@@ -170,9 +170,9 @@ macro(create_pyside_module) - # install - install(TARGETS ${module_NAME} LIBRARY DESTINATION "${PYTHON_SITE_PACKAGES}/PySide2") - -- install(DIRECTORY "${CMAKE_BINARY_DIR}/" DESTINATION "${PYTHON_SITE_PACKAGES}" -- OPTIONAL -- FILES_MATCHING PATTERN "*.pyi") -+ file(GLOB hinting_stub_files RELATIVE "${CMAKE_CURRENT_BINARY_DIR}/PySide2" "${CMAKE_CURRENT_BINARY_DIR}/PySide2/*.pyi") -+ install(FILES ${hinting_stub_files} -+ DESTINATION "${PYTHON_SITE_PACKAGES}/PySide2") - - install(FILES ${CMAKE_CURRENT_BINARY_DIR}/PySide2/${module_NAME}/pyside2_${lower_module_name}_python.h - DESTINATION include/PySide2${pyside2_SUFFIX}/${module_NAME}/) --- -2.19.2 - diff --git a/0001-Remove-unnecessary-she-bang-from-icon-cache.py.patch b/0001-Remove-unnecessary-she-bang-from-icon-cache.py.patch index bc0cdc5..624756e 100644 --- a/0001-Remove-unnecessary-she-bang-from-icon-cache.py.patch +++ b/0001-Remove-unnecessary-she-bang-from-icon-cache.py.patch @@ -4,13 +4,13 @@ Date: Fri, 21 Dec 2018 16:20:45 +0100 Subject: [PATCH] Remove unnecessary she-bang from icon-cache.py --- - pyside2uic/icon_cache.py | 1 - + sources/pyside2-tools/pyside2uic/icon_cache.py | 1 - 1 file changed, 1 deletion(-) -diff --git a/pyside2uic/icon_cache.py b/pyside2uic/icon_cache.py +diff --git a/sources/pyside2-tools/pyside2uic/icon_cache.py b/sources/pyside2-tools/pyside2uic/icon_cache.py index 523d207..9d0dfe2 100644 ---- a/pyside2uic/icon_cache.py -+++ b/pyside2uic/icon_cache.py +--- a/sources/pyside2-tools/pyside2uic/icon_cache.py ++++ b/sources/pyside2-tools/pyside2uic/icon_cache.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # This file is part of the PySide project. diff --git a/_service b/_service deleted file mode 100644 index 445278d..0000000 --- a/_service +++ /dev/null @@ -1,15 +0,0 @@ - - - https://code.qt.io/pyside/pyside-setup.git - git - v5.12.0 - 5.12.0 - - - - - - *.tar - xz - - diff --git a/fix-cmake.patch b/fix-cmake.patch deleted file mode 100644 index 02e9323..0000000 --- a/fix-cmake.patch +++ /dev/null @@ -1,10 +0,0 @@ -diff --git a/sources/pyside2/libpyside/PySide2Config.cmake.in b/sources/pyside2/libpyside/PySide2Config.cmake.in -index 352a8999..7969ea50 100644 ---- a/sources/pyside2/libpyside/PySide2Config.cmake.in -+++ b/sources/pyside2/libpyside/PySide2Config.cmake.in -@@ -2,4 +2,4 @@ if (NOT PYTHON_CONFIG_SUFFIX) - message(STATUS "PySide2Config: Using default python: @SHIBOKEN_PYTHON_CONFIG_SUFFIX@") - SET(PYTHON_CONFIG_SUFFIX @SHIBOKEN_PYTHON_CONFIG_SUFFIX@) - endif() --include(@LIB_INSTALL_DIR@/cmake/PySide2-@BINDING_API_VERSION@/PySide2Config${PYTHON_CONFIG_SUFFIX}.cmake) -+include("@LIB_INSTALL_DIR@/cmake/PySide2-@BINDING_API_VERSION@/PySide2Config${PYTHON_CONFIG_SUFFIX}.cmake") diff --git a/lib64.patch b/lib64.patch index 1a7e179..1ec8eae 100644 --- a/lib64.patch +++ b/lib64.patch @@ -12,10 +12,10 @@ Subject: [PATCH] Lookup clang library and install in arch specific library 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/build_scripts/platforms/unix.py b/build_scripts/platforms/unix.py -index d3767976..63019a0a 100644 +index 83de489..f6498c6 100644 --- a/build_scripts/platforms/unix.py +++ b/build_scripts/platforms/unix.py -@@ -80,7 +80,7 @@ def prepare_packages_posix(self, vars): +@@ -81,7 +81,7 @@ def prepare_packages_posix(self, vars): # /lib/lib* -> {st_package_name}/ copydir( @@ -24,7 +24,7 @@ index d3767976..63019a0a 100644 "{st_build_dir}/{st_package_name}", filter=[ adjusted_lib_name("libshiboken*", -@@ -155,7 +155,7 @@ def prepare_packages_posix(self, vars): +@@ -156,7 +156,7 @@ def prepare_packages_posix(self, vars): # /lib/lib* -> {st_package_name}/ copydir( @@ -33,43 +33,22 @@ index d3767976..63019a0a 100644 "{st_build_dir}/{st_package_name}", filter=[ adjusted_lib_name("libpyside*", + diff --git a/sources/pyside2/CMakeLists.txt b/sources/pyside2/CMakeLists.txt -index 1d563fb4..7b8d8b85 100644 +index 1e6f017..fdfb631 100644 --- a/sources/pyside2/CMakeLists.txt +++ b/sources/pyside2/CMakeLists.txt -@@ -187,7 +187,7 @@ endif() +@@ -94,7 +94,7 @@ endif() option(BUILD_TESTS "Build tests." TRUE) option(ENABLE_VERSION_SUFFIX "Used to use current version in suffix to generated files. This is used to allow multiples versions installed simultaneous." FALSE) -set(LIB_SUFFIX "" CACHE STRING "Define suffix of directory name (32/64)" ) +set(LIB_SUFFIX "64" CACHE STRING "Define suffix of directory name (32/64)" ) - set(LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}" CACHE PATH "The subdirectory relative to the install prefix where libraries will be installed (default is /lib${LIB_SUFFIX})" FORCE) + set(LIB_INSTALL_DIR "lib${LIB_SUFFIX}" CACHE PATH "The subdirectory relative to the install prefix where libraries will be installed (default is /lib${LIB_SUFFIX})" FORCE) if(CMAKE_HOST_APPLE) set(ALTERNATIVE_QT_INCLUDE_DIR "" CACHE PATH "Deprecated. CMake now finds the proper include dir itself.") -diff --git a/sources/shiboken2/CMakeLists.txt b/sources/shiboken2/CMakeLists.txt -index 619c0f08..ab1dceff 100644 ---- a/sources/shiboken2/CMakeLists.txt -+++ b/sources/shiboken2/CMakeLists.txt -@@ -124,7 +124,8 @@ if(MSVC) - set(CLANG_LIB_NAMES libclang) - endif() - --find_library(CLANG_LIBRARY NAMES ${CLANG_LIB_NAMES} HINTS ${CLANG_DIR}/lib) -+set(LIB_SUFFIX "64" CACHE STRING "Define suffix of directory name (32/64)" ) -+find_library(CLANG_LIBRARY NAMES ${CLANG_LIB_NAMES} HINTS ${CLANG_DIR}/lib${LIB_SUFFIX}) - if (NOT EXISTS ${CLANG_LIBRARY}) - string(REPLACE ";" ", " CLANG_LIB_NAMES_STRING "${CLANG_LIB_NAMES}") - message(FATAL_ERROR "Unable to find the Clang library in ${CLANG_DIR}.\ -@@ -333,7 +334,6 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D QT_NO_CAST_FROM_ASCII -D QT_NO_CAST_T - set(CMAKE_CXX_STANDARD 11) - set(CMAKE_CXX_STANDARD_REQUIRED ON) - --set(LIB_SUFFIX "" CACHE STRING "Define suffix of directory name (32/64)" ) - set(LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}" CACHE PATH "The subdirectory relative to the install prefix where libraries will be installed (default is /lib${LIB_SUFFIX})" FORCE) - - if (WIN32) diff --git a/sources/shiboken2/ApiExtractor/clangparser/compilersupport.cpp b/sources/shiboken2/ApiExtractor/clangparser/compilersupport.cpp -index d3d5c8da..acb1efd9 100644 +index d3d5c8d..acb1efd 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/compilersupport.cpp +++ b/sources/shiboken2/ApiExtractor/clangparser/compilersupport.cpp @@ -243,7 +243,7 @@ static QString findClangLibDir() @@ -81,6 +60,25 @@ index d3d5c8da..acb1efd9 100644 if (QFileInfo::exists(path)) return path; } --- -2.19.2 - +diff --git a/sources/shiboken2/CMakeLists.txt b/sources/shiboken2/CMakeLists.txt +index 1e52c42..4cac3ae 100644 +--- a/sources/shiboken2/CMakeLists.txt ++++ b/sources/shiboken2/CMakeLists.txt +@@ -122,7 +122,8 @@ if(MSVC) + set(CLANG_LIB_NAMES libclang) + endif() + +-find_library(CLANG_LIBRARY NAMES ${CLANG_LIB_NAMES} HINTS ${CLANG_DIR}/lib) ++set(LIB_SUFFIX "64" CACHE STRING "Define suffix of directory name (32/64)" ) ++find_library(CLANG_LIBRARY NAMES ${CLANG_LIB_NAMES} HINTS ${CLANG_DIR}/lib${LIB_SUFFIX}) + if (NOT EXISTS ${CLANG_LIBRARY}) + string(REPLACE ";" ", " CLANG_LIB_NAMES_STRING "${CLANG_LIB_NAMES}") + message(FATAL_ERROR "Unable to find the Clang library in ${CLANG_DIR}.\ +@@ -309,7 +310,6 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D QT_NO_CAST_FROM_ASCII -D QT_NO_CAST_T + set(CMAKE_CXX_STANDARD 11) + set(CMAKE_CXX_STANDARD_REQUIRED ON) + +-set(LIB_SUFFIX "" CACHE STRING "Define suffix of directory name (32/64)" ) + set(LIB_INSTALL_DIR "lib${LIB_SUFFIX}" CACHE PATH "The subdirectory relative to the install prefix where libraries will be installed (default is /lib${LIB_SUFFIX})" FORCE) + set(BIN_INSTALL_DIR "bin" CACHE PATH "The subdirectory relative to the install prefix where dlls will be installed (default is /bin)" FORCE) + diff --git a/pyside-setup-5.12.0.obscpio b/pyside-setup-5.12.0.obscpio deleted file mode 100644 index d35b244..0000000 --- a/pyside-setup-5.12.0.obscpio +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3953b92218bf680ced2f4ada4d909ed58638df08e119aff31bd659b9736de0de -size 28712974 diff --git a/pyside-setup-everywhere-src-5.12.2.tar.xz b/pyside-setup-everywhere-src-5.12.2.tar.xz new file mode 100644 index 0000000..82f5403 --- /dev/null +++ b/pyside-setup-everywhere-src-5.12.2.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed974c0592019cbbcd4e4db3b18cf4f2af2c399cc1650e5c526be3efd7562bc1 +size 5491432 diff --git a/python3-pyside2.changes b/python3-pyside2.changes index 3525683..0f84359 100644 --- a/python3-pyside2.changes +++ b/python3-pyside2.changes @@ -1,3 +1,17 @@ +------------------------------------------------------------------- +Sat Apr 6 17:08:25 UTC 2019 - Christophe Giboudeaux + +- Update to 5.12.2 + * Added binding for QWebEngineUrlScheme + * Fixed a crash related to multiple inheritance + * Fixed wrong METADATA for generated wheels + * Prevent Python 3.5 from crashing the build + Check the changes-* files for the complete list of changes. +- Drop fix-cmake.patch +- Drop 0001-Avoid-creation-of-empty-build-directories-in-install.patch +- Refresh lib64.patch +- Drop the unused _service file. + ------------------------------------------------------------------- Fri Dec 28 11:38:26 UTC 2018 - Fabian Vogt diff --git a/python3-pyside2.spec b/python3-pyside2.spec index 02ef291..5663c3d 100644 --- a/python3-pyside2.spec +++ b/python3-pyside2.spec @@ -1,7 +1,7 @@ # # spec file for package python3-pyside2 # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -22,20 +22,16 @@ BuildRequires: python3-devel BuildRequires: python3-setuptools Name: python3-pyside2 - -Version: 5.12.0 +Version: 5.12.2 Release: 0 Summary: Python bindings for Qt License: LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later) Group: Development/Languages/Python URL: http://wiki.qt.io/Qt_for_Python -Source0: pyside-setup-%{version}.tar.xz -Patch1: fix-cmake.patch -Patch2: lib64.patch -# PATCH-FIX-UPSTREAM - PYSIDE-882 -Patch3: 0001-Avoid-creation-of-empty-build-directories-in-install.patch +Source0: https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-%{version}-src/pyside-setup-everywhere-src-%{version}.tar.xz +Patch0: lib64.patch # PATCH-FIX-UPSTREAM - PYSIDE-881 -Patch4: 0001-Remove-unnecessary-she-bang-from-icon-cache.py.patch +Patch1: 0001-Remove-unnecessary-she-bang-from-icon-cache.py.patch BuildRequires: cmake BuildRequires: fdupes BuildRequires: gcc-c++ @@ -43,53 +39,55 @@ BuildRequires: gcc-c++ BuildRequires: libqt5-qtdeclarative-private-headers-devel ##### essential modules -BuildRequires: pkgconfig(Qt5Concurrent) -BuildConflicts: pkgconfig(Qt5Core) >= 5.13 -BuildRequires: pkgconfig(Qt5Core) >= 5.12 -BuildRequires: pkgconfig(Qt5Network) -BuildRequires: pkgconfig(Qt5PrintSupport) -BuildRequires: pkgconfig(Qt5Sql) -BuildRequires: pkgconfig(Qt5Test) -BuildRequires: pkgconfig(Qt5Widgets) -BuildRequires: pkgconfig(Qt5X11Extras) -BuildRequires: pkgconfig(Qt5Xml) -BuildRequires: pkgconfig(Qt5XmlPatterns) +BuildRequires: cmake(Qt5Concurrent) +BuildConflicts: cmake(Qt5Core) >= 5.13 +BuildRequires: cmake(Qt5Core) >= 5.12 +BuildRequires: cmake(Qt5Network) +BuildRequires: cmake(Qt5PrintSupport) +BuildRequires: cmake(Qt5Sql) +BuildRequires: cmake(Qt5Test) +BuildRequires: cmake(Qt5Widgets) +BuildRequires: cmake(Qt5X11Extras) +BuildRequires: cmake(Qt5Xml) +BuildRequires: cmake(Qt5XmlPatterns) ##### optional modules BuildRequires: libQt53DQuickScene2D5 -BuildRequires: pkgconfig(Qt53DAnimation) -BuildRequires: pkgconfig(Qt53DCore) -BuildRequires: pkgconfig(Qt53DExtras) -BuildRequires: pkgconfig(Qt53DInput) -BuildRequires: pkgconfig(Qt53DLogic) -BuildRequires: pkgconfig(Qt53DRender) -BuildRequires: pkgconfig(Qt5Charts) -BuildRequires: pkgconfig(Qt5DataVisualization) -BuildRequires: pkgconfig(Qt5Designer) -BuildRequires: pkgconfig(Qt5Multimedia) -BuildRequires: pkgconfig(Qt5MultimediaWidgets) -BuildRequires: pkgconfig(Qt5OpenGL) -BuildRequires: pkgconfig(Qt5QuickWidgets) -BuildRequires: pkgconfig(Qt5Script) -BuildRequires: pkgconfig(Qt5ScriptTools) -BuildRequires: pkgconfig(Qt5Scxml) -BuildRequires: pkgconfig(Qt5Svg) -BuildRequires: pkgconfig(Qt5TextToSpeech) -BuildRequires: pkgconfig(Qt5WebChannel) -BuildRequires: pkgconfig(Qt5WebEngineWidgets) -BuildRequires: pkgconfig(Qt5WebSockets) -BuildRequires: pkgconfig(Qt5Widgets) -BuildRequires: pkgconfig(Qt5Xml) -BuildRequires: pkgconfig(Qt5XmlPatterns) -#BuildRequires: pkgconfig(Qt5Vector3D) -# WebKit modules is to be removed when FreeCAD 0.18 is released -BuildRequires: pkgconfig(Qt5WebKit) +BuildRequires: cmake(Qt53DAnimation) +BuildRequires: cmake(Qt53DCore) +BuildRequires: cmake(Qt53DExtras) +BuildRequires: cmake(Qt53DInput) +BuildRequires: cmake(Qt53DLogic) +BuildRequires: cmake(Qt53DRender) +BuildRequires: cmake(Qt5Charts) +BuildRequires: cmake(Qt5DataVisualization) +BuildRequires: cmake(Qt5Designer) +BuildRequires: cmake(Qt5Multimedia) +BuildRequires: cmake(Qt5MultimediaWidgets) +BuildRequires: cmake(Qt5OpenGL) +BuildRequires: cmake(Qt5QuickWidgets) +BuildRequires: cmake(Qt5RemoteObjects) +BuildRequires: cmake(Qt5Script) +BuildRequires: cmake(Qt5ScriptTools) +BuildRequires: cmake(Qt5Scxml) +BuildRequires: cmake(Qt5Sensors) +BuildRequires: cmake(Qt5Svg) +BuildRequires: cmake(Qt5TextToSpeech) +BuildRequires: cmake(Qt5WebChannel) +BuildRequires: cmake(Qt5WebEngineWidgets) +BuildRequires: cmake(Qt5WebSockets) +BuildRequires: cmake(Qt5Widgets) +BuildRequires: cmake(Qt5Xml) +BuildRequires: cmake(Qt5XmlPatterns) +# FreeCAD 0.18 still uses Qt5Webkit +BuildRequires: cmake(Qt5WebKit) BuildRequires: clang-devel >= 3.9 BuildRequires: libxslt-devel BuildRequires: python3-Sphinx BuildRequires: python3-idna BuildRequires: python3-urllib3 +BuildRequires: python3-wheel %description The PySide2 project provides Python bindings for the Qt @@ -113,13 +111,11 @@ Requires: %{name} = %{version} Examples and Tutorials for the PySide2 bindings for Qt. %prep -%setup -q -n pyside-setup-%{version} -%patch1 -p1 +%setup -q -n pyside-setup-everywhere-src-%{version} %if "%{_lib}" == "lib64" -%patch2 -p1 +%patch0 -p1 %endif -%patch3 -p1 -%patch4 -p1 -d sources/pyside2-tools/ +%patch1 -p1 %build export LLVM_INSTALL_DIR=%{_prefix} @@ -186,6 +182,7 @@ cd - %files %license LICENSE.* +%doc dist/changes* %{_bindir}/* %{_libdir}/*.so.* %{python_sitearch}/* From 7f62faad4ed5aea06484f7c33d963120b1f0bac4ddfafc009df74b82618e03ff Mon Sep 17 00:00:00 2001 From: Christophe Giboudeaux Date: Mon, 6 May 2019 09:01:49 +0000 Subject: [PATCH 2/2] Accepting request 701002 from home:cgiboudeaux:branches:KDE:Qt5 - Update to 5.12.3. No changelog available for this version. - Fix the license tag, the shiboken2 subdir uses a different license. OBS-URL: https://build.opensuse.org/request/show/701002 OBS-URL: https://build.opensuse.org/package/show/KDE:Qt5/python3-pyside2?expand=0&rev=25 --- pyside-setup-everywhere-src-5.12.2.tar.xz | 3 --- pyside-setup-everywhere-src-5.12.3.tar.xz | 3 +++ python3-pyside2.changes | 6 ++++++ python3-pyside2.spec | 5 +++-- 4 files changed, 12 insertions(+), 5 deletions(-) delete mode 100644 pyside-setup-everywhere-src-5.12.2.tar.xz create mode 100644 pyside-setup-everywhere-src-5.12.3.tar.xz diff --git a/pyside-setup-everywhere-src-5.12.2.tar.xz b/pyside-setup-everywhere-src-5.12.2.tar.xz deleted file mode 100644 index 82f5403..0000000 --- a/pyside-setup-everywhere-src-5.12.2.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ed974c0592019cbbcd4e4db3b18cf4f2af2c399cc1650e5c526be3efd7562bc1 -size 5491432 diff --git a/pyside-setup-everywhere-src-5.12.3.tar.xz b/pyside-setup-everywhere-src-5.12.3.tar.xz new file mode 100644 index 0000000..9a4a688 --- /dev/null +++ b/pyside-setup-everywhere-src-5.12.3.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f7aab7d4bbaf1b3573cc989d704e87b0de55cce656ae5e23418a88baa4c6842 +size 5474384 diff --git a/python3-pyside2.changes b/python3-pyside2.changes index 0f84359..8b5cbdf 100644 --- a/python3-pyside2.changes +++ b/python3-pyside2.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon May 6 08:19:22 UTC 2019 - Christophe Giboudeaux + +- Update to 5.12.3. No changelog available for this version. +- Fix the license tag, the shiboken2 subdir uses a different license. + ------------------------------------------------------------------- Sat Apr 6 17:08:25 UTC 2019 - Christophe Giboudeaux diff --git a/python3-pyside2.spec b/python3-pyside2.spec index 5663c3d..5e5f254 100644 --- a/python3-pyside2.spec +++ b/python3-pyside2.spec @@ -22,10 +22,11 @@ BuildRequires: python3-devel BuildRequires: python3-setuptools Name: python3-pyside2 -Version: 5.12.2 +Version: 5.12.3 Release: 0 Summary: Python bindings for Qt -License: LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later) +# shiboken2 is licensed under GPL-3.0-with-Qt-Company-Qt-exception-1.1 +License: LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later) AND GPL-3.0-with-Qt-Company-Qt-exception-1.1 Group: Development/Languages/Python URL: http://wiki.qt.io/Qt_for_Python Source0: https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-%{version}-src/pyside-setup-everywhere-src-%{version}.tar.xz