forked from pool/python-plumbum
- Update to 1.7.2 * This is the final release for Python 2 and 3.5. * Some DeprecationWarnings changed to FutureWarnings (#567) - Version 1.7.1 * Paths: glob with local paths no longer expands the existing path too (#552) * Paramiko: support reverse tunnels (#562) * SSHMachine: support forwarding Unix sockets in .tunnel() (#550) * CLI: Support COLOR_GROUP_TITLES (#553) * Fix a deprecated in Python 3.10 warning (#563) * Extended testing and checking on Python 3.10 and various PyPy versions. Nox is supported for easier new-user development. - Version 1.7.0 * Commands: support .with_cwd() (#513) * Commands: make iter_lines deal with decoding errors during iteration (#525) * Commands: fix handling of env-vars passed to plumbum BoundEnvCommands (#513) * Paths: fix incorrect __getitem__ method in Path (#506) * Paths: Remote path stat had odd OSError (#505) * Paths: Fix RemotePath.copy() (#527) * Paths: missing __fspath__ added (#498) * SSH: better error reporting on SshSession error (#515) * Internal: redesigned CI, major cleanup to setuptools distribution, Black formatting, style checking throughout. * If you install from the auto-generated tarball for Git releases, you should either use SETUPTOOLS_SCM_PRETEND_VERSION=${pkgver} pip install . (where pkgver is the package version, 1.7.0 in this case), or (not recommended) install setuptools_scm before running SETUPTOOLS_SCM_PRETEND_VERSION=${pkgver} python setup.py install. PyPI SDists have the version file already, and git checkouts will get the version from git tags. - Drop no-python2.patch merged upstream OBS-URL: https://build.opensuse.org/request/show/947663 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-plumbum?expand=0&rev=13
78 lines
2.4 KiB
RPMSpec
78 lines
2.4 KiB
RPMSpec
#
|
|
# spec file for package python-plumbum
|
|
#
|
|
# Copyright (c) 2022 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-%{**}}
|
|
Name: python-plumbum
|
|
Version: 1.7.2
|
|
Release: 0
|
|
Summary: Shell combinators library
|
|
License: MIT
|
|
URL: https://github.com/tomerfiliba/plumbum
|
|
Source: https://github.com/tomerfiliba/plumbum/archive/v%{version}.tar.gz#/plumbum-%{version}.tar.gz
|
|
BuildRequires: %{python_module setuptools_scm}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildArch: noarch
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module paramiko}
|
|
BuildRequires: %{python_module psutil}
|
|
BuildRequires: %{python_module pytest-mock}
|
|
BuildRequires: %{python_module pytest-timeout}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: openssh
|
|
BuildRequires: sudo
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
Plumbum is a library for shell script-like programs in Python.
|
|
|
|
Apart from shell-like syntax and handy shortcuts, the library
|
|
provides local and remote command execution (over SSH), local and
|
|
remote file-system paths, working-directory and environment
|
|
manipulation, and a programmatic Command-Line Interface (CLI)
|
|
application toolkit.
|
|
|
|
%prep
|
|
%setup -q -n plumbum-%{version}
|
|
sed -i '/addopts/d' setup.cfg
|
|
|
|
%build
|
|
export SETUPTOOLS_SCM_PRETEND_VERSION=%{version}
|
|
%python_build
|
|
|
|
%install
|
|
export SETUPTOOLS_SCM_PRETEND_VERSION=%{version}
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
export LANG=en_US.UTF8
|
|
# timeouts too fast on obs
|
|
donttest="test_iter_lines_line_timeout"
|
|
%pytest --ignore tests/test_remote.py -k "not ($donttest)"
|
|
|
|
%files %{python_files}
|
|
%doc README.rst
|
|
%license LICENSE
|
|
%{python_sitelib}/plumbum
|
|
%{python_sitelib}/plumbum-%{version}*-info
|
|
|
|
%changelog
|