forked from pool/python-vistir
- version update to 0.4.0 - Fixed a bug which caused test failures due to generated paths on *nix based operating systems which were too long. `#65 <https://github.com/sarugaku/vistir/issues/65>`_ - Fixed a bug which caused spinner output to sometimes attempt to double encode on python 2, resulting in failed output encoding. `#69 <https://github.com/sarugaku/vistir/issues/69>`_ - Fixed an issue where paths could sometimes fail to be fs-encoded properly when using backported ``NamedTemporaryFile`` instances. `#74 <https://github.com/sarugaku/vistir/issues/74>`_ - Fixed a bug in ``vistir.misc.locale_encoding`` which caused invocation of a non-existent method called ``getlocaleencoding`` which forced all systems to use default encoding of ``ascii``. `#78 <https://github.com/sarugaku/vistir/issues/78>`_ - deleted patches - merged_pr_68-colorama-pin.patch (upstreamed) - merged_pr_75-backport-pins.patch (upstreamed) - no-ffi.patch (upstreamed) - py27-missing-exception.patch (upstreamed) OBS-URL: https://build.opensuse.org/request/show/701029 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-vistir?expand=0&rev=7
86 lines
2.8 KiB
RPMSpec
86 lines
2.8 KiB
RPMSpec
#
|
|
# spec file for package python-vistir
|
|
#
|
|
# Copyright (c) 2019 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-vistir
|
|
Version: 0.4.0
|
|
Release: 0
|
|
Summary: Utilities for filesystems, paths, projects, subprocesses, and more
|
|
License: ISC
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/sarugaku/vistir
|
|
Source: https://github.com/sarugaku/vistir/archive/%{version}.tar.gz#/vistir-%{version}.tar.gz
|
|
BuildRequires: %{python_module setuptools >= 38.2.5}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
# https://github.com/sarugaku/vistir/issues/67
|
|
Requires: python-colorama >= 0.3.4
|
|
Requires: python-requests
|
|
Requires: python-six
|
|
%ifpython2
|
|
Requires: python2-backports.functools_lru_cache
|
|
Requires: python2-backports.shutil_get_terminal_size
|
|
Requires: python2-backports.weakref
|
|
Requires: python2-pathlib2
|
|
%endif
|
|
Recommends: python-yaspin
|
|
BuildArch: noarch
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module colorama >= 0.3.4}
|
|
BuildRequires: %{python_module hypothesis-fspaths}
|
|
BuildRequires: %{python_module hypothesis}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module requests}
|
|
BuildRequires: %{python_module six}
|
|
BuildRequires: %{python_module yaspin}
|
|
BuildRequires: python2-backports.functools_lru_cache
|
|
BuildRequires: python2-backports.shutil_get_terminal_size
|
|
BuildRequires: python2-backports.weakref
|
|
BuildRequires: python2-pathlib2
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
Miscellaneous utilities for dealing with filesystems, paths, projects,
|
|
subprocesses, and more.
|
|
|
|
%prep
|
|
%setup -q -n vistir-%{version}
|
|
|
|
sed -i '/invoke/d;/parver/d;/wheel$/d;/addopts/d' setup.cfg
|
|
rm -r tasks
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
export LANG=en_US.UTF-8
|
|
# test_open_file requires network access
|
|
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} $python -m pytest -k 'not test_open_file'
|
|
|
|
%files %{python_files}
|
|
%doc CHANGELOG.rst README.rst
|
|
%license LICENSE
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|