74 lines
1.7 KiB
RPMSpec
74 lines
1.7 KiB
RPMSpec
%bcond_without tests
|
|
# The python-diskcache package, used in some of the tests, has been retired.
|
|
%bcond_with diskcache
|
|
|
|
Name: python-fasteners
|
|
Version: 0.17
|
|
Release: %autorelease
|
|
Summary: A python package that provides useful locks
|
|
|
|
License: ASL 2.0
|
|
URL: https://github.com/harlowja/fasteners
|
|
# We need to use the GitHub archive instead of the PyPI sdist to get tests.
|
|
Source0: %{url}/archive/%{version}/fasteners-%{version}.tar.gz
|
|
|
|
# “Remove futures from the requirements-test.txt”
|
|
# Backport upstream commit 49d8f5b to remove a test dependency that is no
|
|
# longer used and only supports Python 2.
|
|
Patch: %{url}/commit/49d8f5bb56157a82ff3e6128b506638a214e6d43.patch
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
%global common_description %{expand: \
|
|
Cross platform locks for threads and processes}
|
|
|
|
%description
|
|
%{common_description}
|
|
|
|
|
|
%package -n python3-fasteners
|
|
Summary: A python package that provides useful locks
|
|
|
|
%description -n python3-fasteners
|
|
%{common_description}
|
|
|
|
|
|
%prep
|
|
%autosetup -p1 -n fasteners-%{version}
|
|
%if %{without diskcache}
|
|
sed -r -i '/\b(diskcache)\b/d' requirements-test.txt
|
|
%endif
|
|
|
|
|
|
%generate_buildrequires
|
|
%pyproject_buildrequires %{?with_tests:requirements-test.txt}
|
|
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
|
|
%install
|
|
%pyproject_install
|
|
%pyproject_save_files fasteners
|
|
|
|
|
|
%check
|
|
%if %{with tests}
|
|
%pytest %{?!with_diskcache:--ignore=tests/test_reader_writer_lock.py}
|
|
%else
|
|
%pyproject_check_import -e 'fasteners.pywin32*'
|
|
%endif
|
|
|
|
|
|
%files -n python3-fasteners -f %{pyproject_files}
|
|
# pyproject_files handles LICENSE; verify with “rpm -qL -p …”
|
|
%doc ChangeLog
|
|
%doc README.md
|
|
|
|
|
|
%changelog
|
|
%autochangelog
|