- We can now rely on pyproject-rpm-macros >= 1.2.0 - The LICENSE.txt file is now handled in pyproject_files - The setuptools_scm 7 patch is now merged upstream
74 lines
1.3 KiB
RPMSpec
74 lines
1.3 KiB
RPMSpec
# Let’s try to build this as early as we can, since it’s a dependency for
|
||
# some important libraries, such as python-platformdirs.
|
||
%bcond_with bootstrap
|
||
%if %{without bootstrap}
|
||
%bcond_without tests
|
||
%else
|
||
%bcond_with tests
|
||
%endif
|
||
|
||
Name: python-hatch-vcs
|
||
Version: 0.3.0
|
||
Release: %autorelease
|
||
Summary: Hatch plugin for versioning with your preferred VCS
|
||
|
||
# SPDX
|
||
License: MIT
|
||
URL: https://github.com/ofek/hatch-vcs
|
||
Source0: %{pypi_source hatch_vcs}
|
||
|
||
BuildArch: noarch
|
||
|
||
BuildRequires: python3-devel
|
||
|
||
%if %{with tests}
|
||
BuildRequires: python3dist(pytest)
|
||
BuildRequires: git-core
|
||
%endif
|
||
|
||
%global common_description %{expand:
|
||
This provides a plugin for Hatch that uses your preferred version control
|
||
system (like Git) to determine project versions.}
|
||
|
||
%description %{common_description}
|
||
|
||
|
||
%package -n python3-hatch-vcs
|
||
Summary: %{summary}
|
||
|
||
%description -n python3-hatch-vcs %{common_description}
|
||
|
||
|
||
%prep
|
||
%autosetup -n hatch_vcs-%{version}
|
||
|
||
|
||
%generate_buildrequires
|
||
%pyproject_buildrequires
|
||
|
||
|
||
%build
|
||
%pyproject_wheel
|
||
|
||
|
||
%install
|
||
%pyproject_install
|
||
%pyproject_save_files hatch_vcs
|
||
|
||
|
||
%check
|
||
%if %{with tests}
|
||
%pytest
|
||
%else
|
||
%pyproject_check_import
|
||
%endif
|
||
|
||
|
||
%files -n python3-hatch-vcs -f %{pyproject_files}
|
||
%doc HISTORY.md
|
||
%doc README.md
|
||
|
||
|
||
%changelog
|
||
%autochangelog
|