Accepting request 643711 from home:cgiboudeaux:branches:KDE:Qt5
Update to 5.11.3 OBS-URL: https://build.opensuse.org/request/show/643711 OBS-URL: https://build.opensuse.org/package/show/KDE:Qt5/python-qtcharts-qt5?expand=0&rev=6
This commit is contained in:
parent
3c43bd4c55
commit
88348b0d90
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:23f204de937008ee865dd3523015d172b46e10479f56694e3bf0bcb7c1bbd3c4
|
||||
size 60825
|
3
PyQtChart_gpl-5.11.3.tar.gz
Normal file
3
PyQtChart_gpl-5.11.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:89abf5e48c79c4db42a01f80433bb97d64b117f801be5e4cb0b9839efc99472f
|
||||
size 62791
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 22 12:42:47 UTC 2018 - Christophe Giboudeaux <christophe@krop.fr>
|
||||
|
||||
- Update to 5.11.3. Changes since 5.10.1:
|
||||
* Update the PyQt5 wheel to use.
|
||||
* Fixed all signal signatures.
|
||||
- Run spec-cleaner
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 17 01:58:49 UTC 2018 - termim@gmail.com
|
||||
|
||||
|
@ -12,15 +12,15 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: python-qtcharts-qt5
|
||||
Version: 5.10.1
|
||||
Version: 5.11.3
|
||||
Release: 0
|
||||
Summary: PyQtChart - python bindings for Qt5 Charts
|
||||
License: GPL-3.0
|
||||
License: GPL-3.0-only
|
||||
Group: Development/Libraries/Python
|
||||
URL: https://www.riverbankcomputing.com/software/pyqtchart/intro
|
||||
Source: https://sourceforge.net/projects/pyqt/files/PyQtChart/PyQtChart-%{version}/PyQtChart_gpl-%{version}.tar.gz
|
||||
@ -28,12 +28,11 @@ BuildRequires: libQt5Charts5
|
||||
BuildRequires: libQt5Charts5-devel
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: python-devel
|
||||
BuildRequires: python-sip >= 4.19.1
|
||||
BuildRequires: python-sip-devel >= 4.19.1
|
||||
BuildRequires: python-qt5
|
||||
BuildRequires: python-qt5-devel
|
||||
BuildRequires: python-sip >= 4.19.1
|
||||
BuildRequires: python-sip-devel >= 4.19.1
|
||||
Requires: python-qt5
|
||||
%py_requires
|
||||
%requires_python_sip_api
|
||||
|
||||
%description
|
||||
@ -71,34 +70,36 @@ This package provides PyQtChart examples.
|
||||
%setup -q -n PyQtChart_gpl-%{version}
|
||||
|
||||
%build
|
||||
python configure.py --qtchart-version=2.0.1 --qmake=/usr/bin/qmake-qt5
|
||||
python2 configure.py \
|
||||
--no-dist-info \
|
||||
--no-stubs \
|
||||
--qmake=%{_bindir}/qmake-qt5
|
||||
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
%make_install INSTALL_ROOT=%{buildroot}
|
||||
mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name}
|
||||
find examples -type f -executable -exec sed -i '1s=^#!/usr/bin/\(python\|env python\)3\?=#!/usr/bin/env python=' {} +
|
||||
cp -r examples $RPM_BUILD_ROOT%{_docdir}/%{name}
|
||||
mkdir -p %{buildroot}%{_docdir}/%{name}
|
||||
find examples -type f -executable -exec sed -i '1s=^#!%{_bindir}/\(python\|env python\)3\?=#!%{_bindir}/env python=' {} +
|
||||
cp -r examples %{buildroot}%{_docdir}/%{name}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc LICENSE NEWS README
|
||||
%license LICENSE
|
||||
%doc NEWS README
|
||||
%{python_sitearch}/PyQt5/
|
||||
%{python_sitearch}/PyQt5/QtChart.pyi
|
||||
%{python_sitearch}/PyQt5/QtChart.so
|
||||
%exclude %{_docdir}/%{name}/examples
|
||||
|
||||
%files api
|
||||
%defattr(-,root,root)
|
||||
%license LICENSE
|
||||
%{_datadir}/qt5/qsci/api/python
|
||||
|
||||
%files sip
|
||||
%defattr(-,root,root)
|
||||
%license LICENSE
|
||||
%{_datadir}/sip/PyQt5/QtChart
|
||||
|
||||
%files examples
|
||||
%defattr(-,root,root)
|
||||
%license LICENSE
|
||||
%{_docdir}/%{name}/examples
|
||||
|
||||
%changelog
|
||||
|
@ -1,11 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 17 01:57:38 UTC 2018 - termim@gmail.com
|
||||
Mon Oct 22 12:42:47 UTC 2018 - Christophe Giboudeaux <christophe@krop.fr>
|
||||
|
||||
- Update to 5.11.3. Changes since 5.10.1:
|
||||
* Update the PyQt5 wheel to use.
|
||||
* Fixed all signal signatures.
|
||||
- Run spec-cleaner
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 17 01:58:49 UTC 2018 - termim@gmail.com
|
||||
|
||||
- Update to 5.10.1
|
||||
* Added support for Qt Charts v5.10.1.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 11:40:11 UTC 2018 - aloisio@gmx.com
|
||||
Fri Jan 26 11:39:48 UTC 2018 - aloisio@gmx.com
|
||||
|
||||
- Update to 5.10
|
||||
|
||||
@ -15,7 +23,7 @@ Wed Feb 15 19:51:54 UTC 2017 - termim@gmail.com
|
||||
- Update to 5.8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 3 22:09:42 UTC 2017 - termim@gmail.com
|
||||
Tue Jan 3 22:09:03 UTC 2017 - termim@gmail.com
|
||||
|
||||
- Update to 5.7.1
|
||||
|
||||
|
@ -12,15 +12,15 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: python3-qtcharts-qt5
|
||||
Version: 5.10.1
|
||||
Version: 5.11.3
|
||||
Release: 0
|
||||
Summary: PyQtChart - python3 bindings for Qt5 Charts
|
||||
License: GPL-3.0
|
||||
License: GPL-3.0-only
|
||||
Group: Development/Libraries/Python
|
||||
URL: https://www.riverbankcomputing.com/software/pyqtchart/intro
|
||||
Source: https://sourceforge.net/projects/pyqt/files/PyQtChart/PyQtChart-%{version}/PyQtChart_gpl-%{version}.tar.gz
|
||||
@ -28,12 +28,11 @@ BuildRequires: libQt5Charts5
|
||||
BuildRequires: libQt5Charts5-devel
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-sip >= 4.19.1
|
||||
BuildRequires: python3-sip-devel >= 4.19.1
|
||||
BuildRequires: python3-qt5
|
||||
BuildRequires: python3-qt5-devel
|
||||
BuildRequires: python3-sip >= 4.19.1
|
||||
BuildRequires: python3-sip-devel >= 4.19.1
|
||||
Requires: python3-qt5
|
||||
|
||||
%requires_python3_sip_api
|
||||
|
||||
%description
|
||||
@ -71,33 +70,35 @@ This package provides PyQtChart examples.
|
||||
%setup -q -n PyQtChart_gpl-%{version}
|
||||
|
||||
%build
|
||||
python3 configure.py --qtchart-version=2.0.1 --qmake=/usr/bin/qmake-qt5
|
||||
python3 configure.py \
|
||||
--no-dist-info \
|
||||
--no-stubs \
|
||||
--qmake=%{_bindir}/qmake-qt5
|
||||
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
%make_install INSTALL_ROOT=%{buildroot}
|
||||
mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name}
|
||||
cp -r examples $RPM_BUILD_ROOT%{_docdir}/%{name}
|
||||
mkdir -p %{buildroot}%{_docdir}/%{name}
|
||||
cp -r examples %{buildroot}%{_docdir}/%{name}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc LICENSE NEWS README
|
||||
%license LICENSE
|
||||
%doc NEWS README
|
||||
%{python3_sitearch}/PyQt5/
|
||||
%{python3_sitearch}/PyQt5/QtChart.pyi
|
||||
%{python3_sitearch}/PyQt5/QtChart.so
|
||||
%exclude %{_docdir}/%{name}/examples
|
||||
|
||||
%files api
|
||||
%defattr(-,root,root)
|
||||
%license LICENSE
|
||||
%{_datadir}/qt5/qsci/api/python
|
||||
|
||||
%files sip
|
||||
%defattr(-,root,root)
|
||||
%license LICENSE
|
||||
%{_datadir}/sip/PyQt5/QtChart
|
||||
|
||||
%files examples
|
||||
%defattr(-,root,root)
|
||||
%license LICENSE
|
||||
%{_docdir}/%{name}/examples
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user