17
0
Files
python-traitsui/python-traitsui.spec
Tomáš Chvátal d5ceefb9ab Accepting request 832920 from home:pgajdos:python
- version update to 7.0.1
  * Fix error from true division of integers for Qt RangeEditor and BoundsEditor
    (#999, #1000)
  * Fix handling of minimum and maximum datetimes in Qt DatetimeEditor (#803)
  * Fix error in wx TabularEditor (#969)
  * Fix wx panel error due to alignments (#829)
  * Fix various issues in the demo application (#799, #808)
  * Fix format_func not used when EnumEditor is initialized with static values
    (#848)
  * Fix demo application description (#850)
  * Fix auto-add functionality in ListStrModel (#860)
  * Fix segmentation fault for TabularModel (#871, #873)
  * Fix event handling in ListStrEditor and TabularEditor for adding and removing
    items (#875)
  * Fix TabularAdapter crashes when column number reduces (#897)
  * Fix theme pickling issue (#915)
  * Fix error from example's tutor.py script (#813)
- use pytest instead of nose for running tests

OBS-URL: https://build.opensuse.org/request/show/832920
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-traitsui?expand=0&rev=11
2020-09-08 08:31:05 +00:00

103 lines
3.6 KiB
RPMSpec

#
# spec file for package python-traitsui
#
# Copyright (c) 2020 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define X_display ":98"
%define skip_python2 1
Name: python-traitsui
Version: 7.0.1
Release: 0
Summary: Traits-capable windowing framework
# Source code is under BSD but images are under different licenses
# and details are inside image_LICENSE.txt
License: BSD-3-Clause AND EPL-1.0 AND LGPL-2.1-only AND LGPL-3.0-only
Group: Development/Libraries/Python
URL: https://github.com/enthought/traitsui
Source: https://files.pythonhosted.org/packages/source/t/traitsui/traitsui-%{version}.tar.gz
BuildRequires: %{python_module configobj}
BuildRequires: %{python_module numpy}
BuildRequires: %{python_module pyface >= 6.0.0}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module traits >= 6}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-pyface >= 6.0.0
Requires: python-traits >= 6
Recommends: python-configobj
Recommends: python-qt5
Recommends: python-wxWidgets
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module Pygments}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module qt5}
BuildRequires: %{python_module wxPython >= 4}
BuildRequires: Mesa-dri
BuildRequires: xorg-x11-server
# /SECTION
%python_subpackages
%description
The TraitsGUI project contains a toolkit-independent GUI abstraction layer
(known as Pyface), which is used to support the "visualization" features of
the Traits package. Thus, you can write code in terms of the Traits API
(views, items, editors, etc.), and let TraitsGUI and your selected toolkit
and back-end take care of the details of displaying them.
Part of the Enthought Tool Suite (ETS).
%prep
%setup -q -n traitsui-%{version}
%build
%python_build
%install
%python_install
%{python_expand %fdupes %{buildroot}%{$python_sitelib}
$python -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/traitsui/wx/extra/
$python -O -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/traitsui/wx/extra/
$python -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/traitsui/wx/extra/windows/
$python -O -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/traitsui/wx/extra/windows/
%fdupes %{buildroot}%{$python_sitelib}
}
%check
export LANG=en_US.UTF-8
export DISPLAY=%{X_display}
Xvfb %{X_display} >& Xvfb.log &
trap "kill $! || true" EXIT
sleep 10
%{python_expand mkdir tester_%{$python_bin_suffix}
pushd tester_%{$python_bin_suffix}
export PYTHONPATH=%{buildroot}%{$python_sitelib}
pytest-%{$python_bin_suffix} -v ../traitsui/tests -k 'not (wx or test_splitter_prefs_are_restored)'
popd
}
%files %{python_files}
%doc CHANGES.txt README.rst TODO.txt
%doc docs/README.rst docs/traits*.*
%doc examples/
%license LICENSE.txt image_LICENSE*.txt
%{python_sitelib}/traitsui/
%{python_sitelib}/traitsui-%{version}-py*.egg-info
%changelog