14
0
Files
python-texttable/python-texttable.spec
Tomáš Chvátal 15934b809b - Version update to 1.4.0:
* Add set_header_align() method (#45)
  * Fix missing textwrapper command when cjkwrap is not used (#43)
  * Remove redundant code for unsupported/EOL Python (#31)
  * Use test_cjkwrap only when cjkwrap is available (#35)
  * Use cjkwrap for better CJK text support (#34)
- Enable tests

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-texttable?expand=0&rev=7
2018-07-20 11:39:53 +00:00

59 lines
1.7 KiB
RPMSpec

#
# spec file for package python-texttable
#
# 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/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-texttable
Version: 1.4.0
Release: 0
Summary: Module for creating simple ASCII tables
License: LGPL-3.0-only
Group: Development/Languages/Python
Url: https://github.com/foutaise/texttable/
Source: https://files.pythonhosted.org/packages/source/t/texttable/texttable-%{version}.tar.gz
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
%python_subpackages
%description
texttable is a module to generate a formatted text table, using ASCII
characters.
%prep
%setup -q -n texttable-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%python_expand py.test-%{$python_bin_suffix} tests.py
%files %{python_files}
%license LICENSE
%doc README.md
%{python_sitelib}/*
%changelog