forked from pool/python-pyotherside
- cleanup spec file - update to 1.5.3 - disable python2 - Initial release 1.5.1 OBS-URL: https://build.opensuse.org/request/show/565819 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyotherside?expand=0&rev=1
72 lines
2.3 KiB
RPMSpec
72 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package python-pyotherside
|
|
#
|
|
# Copyright (c) 2018 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
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# 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/
|
|
#
|
|
|
|
%bcond_without test
|
|
%define skip_python2 1
|
|
%define srcname pyotherside
|
|
Name: python-pyotherside
|
|
Version: 1.5.3
|
|
Release: 0
|
|
Summary: Asynchronous Python 3 Bindings for Qt 5
|
|
License: ISC
|
|
Group: Development/Languages/Python
|
|
URL: http://thp.io/2011/pyotherside/
|
|
Source0: http://thp.io/2011/pyotherside/%{srcname}-%{version}.tar.gz
|
|
Provides: pyotherside = %{version}-%{release}
|
|
BuildRequires: libqt5-qtbase-devel
|
|
BuildRequires: libqt5-qtdeclarative-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: python-rpm-macros
|
|
%if %{with test}
|
|
BuildRequires: xvfb-run
|
|
%endif
|
|
BuildRequires: pkgconfig(Qt5Gui)
|
|
BuildRequires: pkgconfig(Qt5Qml)
|
|
BuildRequires: pkgconfig(Qt5Quick)
|
|
BuildRequires: pkgconfig(Qt5Svg)
|
|
BuildRequires: pkgconfig(Qt5Test)
|
|
BuildRequires: pkgconfig(python3)
|
|
%python_subpackages
|
|
|
|
%description
|
|
A QML Plugin that provides access to a Python 3 interpreter from QML.
|
|
|
|
%prep
|
|
%setup -q -n %{srcname}-%{version}
|
|
|
|
%build
|
|
qmake-qt5 PYTHON_CONFIG=python%{py_ver}-config CONFIG+="nosilent c++11" QMAKE_CXXFLAGS="%{optflags} -fvisibility=hidden -fvisibility-inlines-hidden"
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make INSTALL_ROOT=%{buildroot} install
|
|
|
|
%if %{with test}
|
|
%check
|
|
xvfb-run -s '-screen 0 640x480x8 -extension RANDR' -a ./tests/tests
|
|
%endif
|
|
|
|
%files %{python_files}
|
|
%doc README LICENSE
|
|
%dir %{_libqt5_archdatadir}/qml/io/
|
|
%dir %{_libqt5_archdatadir}/qml/io/thp/
|
|
%{_libqt5_archdatadir}/qml/io/thp/pyotherside
|
|
%exclude %{_libqt5_archdatadir}/tests/qtquicktests/qtquicktests
|
|
%exclude %{_prefix}/tests/qtquicktests/qtquicktests
|
|
|
|
%changelog
|