5.11.3.dev1808131157 snapshot

enable dist-info, include in -base (#1558187)
f41
Rex Dieter 7 years ago
parent 43695bbd46
commit 8117cd5d84

1
.gitignore vendored

@ -8,3 +8,4 @@
/PyQt5_gpl-5.10.1.tar.gz /PyQt5_gpl-5.10.1.tar.gz
/PyQt5_gpl-5.10.2.dev1805251538.tar.gz /PyQt5_gpl-5.10.2.dev1805251538.tar.gz
/PyQt5_gpl-5.11.2.tar.gz /PyQt5_gpl-5.11.2.tar.gz
/PyQt5_gpl-5.11.3.dev1808131157.tar.gz

@ -1,21 +0,0 @@
diff -up PyQt5_gpl-5.11.2/configure.py.sip_check PyQt5_gpl-5.11.2/configure.py
--- PyQt5_gpl-5.11.2/configure.py.sip_check 2018-07-11 14:10:21.751437714 -0500
+++ PyQt5_gpl-5.11.2/configure.py 2018-07-11 14:12:13.035482279 -0500
@@ -647,7 +647,7 @@ class TargetConfiguration:
try:
from PyQt5 import sip
except ImportError:
- error(
+ inform(
"Unable to import PyQt5.sip. Make sure you have "
"configured SIP to create a private copy of the sip "
"module.")
@@ -2919,7 +2919,7 @@ def check_sip(target_config):
try:
from PyQt5 import sip
except ImportError:
- error(
+ inform(
"Unable to import PyQt5.sip. Make sure you have configured "
"SIP to create a private copy of the sip module.")

@ -25,10 +25,12 @@
# see also https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/JQQ66XJSIT2FGTK2YQY7AXMEH5IXMPUX/ # see also https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/JQQ66XJSIT2FGTK2YQY7AXMEH5IXMPUX/
%undefine _strict_symbol_defs_build %undefine _strict_symbol_defs_build
%global snap dev1808131157
Summary: PyQt5 is Python bindings for Qt5 Summary: PyQt5 is Python bindings for Qt5
Name: python-qt5 Name: python-qt5
Version: 5.11.2 Version: 5.11.3
Release: 3%{?dist} Release: 0.1.%{snap}%{?dist}
License: GPLv3 License: GPLv3
Url: http://www.riverbankcomputing.com/software/pyqt/ Url: http://www.riverbankcomputing.com/software/pyqt/
@ -49,8 +51,6 @@ Source4: pyuic5.sh
Patch0: python-qt5_sipdir.patch Patch0: python-qt5_sipdir.patch
# support newer Qt5 releases than 5.11.1 # support newer Qt5 releases than 5.11.1
Patch1: PyQt5-Timeline.patch Patch1: PyQt5-Timeline.patch
# make configure.py check for runtime PyQt5.sip dep informative (non-fatal)
Patch2: PyQt5_gpl-5.11.2-sip_check.patch
BuildRequires: chrpath BuildRequires: chrpath
BuildRequires: findutils BuildRequires: findutils
@ -247,7 +247,6 @@ Requires: python%{python3_pkgversion}-qt5%{?_isa} = %{version}-%{release}
%patch0 -p1 %patch0 -p1
%patch1 -p1 %patch1 -p1
%patch2 -p1 -b .sip_check
%build %build
@ -262,7 +261,6 @@ pushd %{_target_platform}
%{__python2} ./configure.py \ %{__python2} ./configure.py \
--assume-shared \ --assume-shared \
--confirm-license \ --confirm-license \
--no-dist-info \
--qmake=%{_qt5_qmake} \ --qmake=%{_qt5_qmake} \
--qsci-api --qsci-api-destdir=%{_qt5_datadir}/qsci \ --qsci-api --qsci-api-destdir=%{_qt5_datadir}/qsci \
--verbose \ --verbose \
@ -282,7 +280,6 @@ pushd %{_target_platform}-python3
%{__python3} ./configure.py \ %{__python3} ./configure.py \
--assume-shared \ --assume-shared \
--confirm-license \ --confirm-license \
--no-dist-info \
--qmake=%{_qt5_qmake} \ --qmake=%{_qt5_qmake} \
--no-qsci-api \ --no-qsci-api \
%{?py3_sipdir:--sipdir=%{py3_sipdir}} \ %{?py3_sipdir:--sipdir=%{py3_sipdir}} \
@ -389,6 +386,7 @@ sed -i \
%license LICENSE %license LICENSE
%{python2_dbus_dir}/pyqt5.so %{python2_dbus_dir}/pyqt5.so
%dir %{python2_sitearch}/PyQt5/ %dir %{python2_sitearch}/PyQt5/
%{python2_sitearch}/PyQt5-%{version}%{?snap:.%{snap}}.dist-info
%{python2_sitearch}/PyQt5/__init__.py* %{python2_sitearch}/PyQt5/__init__.py*
%{python2_sitearch}/PyQt5/Qt.so %{python2_sitearch}/PyQt5/Qt.so
%{python2_sitearch}/PyQt5/QtCore.so %{python2_sitearch}/PyQt5/QtCore.so
@ -461,6 +459,7 @@ sed -i \
%license LICENSE %license LICENSE
%{python3_dbus_dir}/pyqt5.so %{python3_dbus_dir}/pyqt5.so
%dir %{python3_sitearch}/PyQt5/ %dir %{python3_sitearch}/PyQt5/
%{python3_sitearch}/PyQt5-%{version}%{?snap:.%{snap}}.dist-info
%{python3_sitearch}/PyQt5/__pycache__/ %{python3_sitearch}/PyQt5/__pycache__/
%{python3_sitearch}/PyQt5/__init__.py* %{python3_sitearch}/PyQt5/__init__.py*
%{python3_sitearch}/PyQt5/Qt.* %{python3_sitearch}/PyQt5/Qt.*
@ -509,6 +508,10 @@ sed -i \
%changelog %changelog
* Tue Aug 14 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.11.3-0.1.dev1808131157
- 5.11.3.dev1808131157 snapshot
- enable dist-info, include in -base (#1558187)
* Tue Aug 14 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.11.2-3 * Tue Aug 14 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.11.2-3
- support compat py3_sipdir - support compat py3_sipdir
- python3-qt5: fix sip-api dep - python3-qt5: fix sip-api dep

@ -1 +1 @@
SHA512 (PyQt5_gpl-5.11.2.tar.gz) = fc60246b5e1ca0d8aeef829fe20de9dd28b77e3c151532f9dbcd92c0deec12d8308cc799901aeec3f84af745e735053d2aaad2866ef64a2426cba343e08bc2c0 SHA512 (PyQt5_gpl-5.11.3.dev1808131157.tar.gz) = 733c4ef235a0dff111a4f5402bddfc8223f2b4e96dc82fa2d2a11377bf243229bee8c8fe05a6b389fe2acc8ee3c9cdae15805242022bcc985e872751310de09a

Loading…
Cancel
Save