92 lines
2.9 KiB
RPMSpec
92 lines
2.9 KiB
RPMSpec
|
#
|
|||
|
# spec file for package python-versioneer
|
|||
|
#
|
|||
|
# Copyright (c) 2023 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/
|
|||
|
#
|
|||
|
|
|||
|
|
|||
|
%{?sle15_python_module_pythons}
|
|||
|
Name: python-versioneer
|
|||
|
Version: 0.29
|
|||
|
Release: 0
|
|||
|
Summary: VCS-based management of project version strings
|
|||
|
License: Unlicense
|
|||
|
Group: Development/Languages/Python
|
|||
|
URL: https://github.com/warner/python-versioneer
|
|||
|
Source: https://files.pythonhosted.org/packages/source/v/versioneer/versioneer-%{version}.tar.gz
|
|||
|
BuildRequires: %{python_module pip}
|
|||
|
BuildRequires: %{python_module setuptools}
|
|||
|
BuildRequires: %{python_module testsuite}
|
|||
|
BuildRequires: %{python_module tomli if %python-base < 3.11}
|
|||
|
BuildRequires: %{python_module wheel}
|
|||
|
BuildRequires: fdupes
|
|||
|
BuildRequires: python-rpm-macros
|
|||
|
Requires(post): update-alternatives
|
|||
|
Requires(postun):update-alternatives
|
|||
|
BuildArch: noarch
|
|||
|
%python_subpackages
|
|||
|
|
|||
|
%description
|
|||
|
Versioneer is a tool to automatically update version strings (in
|
|||
|
setup.py and the conventional ‘from PROJECT import _version’ pattern)
|
|||
|
by asking the version control system about the current tree.
|
|||
|
|
|||
|
%package toml
|
|||
|
Summary: VCS-based management of project version strings [toml] extra
|
|||
|
Requires: python-versioneer = %{version}
|
|||
|
Requires: (python-tomli if python-base < 3.11)
|
|||
|
|
|||
|
%description toml
|
|||
|
Versioneer is a tool to automatically update version strings (in
|
|||
|
setup.py and the conventional ‘from PROJECT import _version’ pattern)
|
|||
|
by asking the version control system about the current tree.
|
|||
|
|
|||
|
This package provides the [toml] extra
|
|||
|
|
|||
|
%prep
|
|||
|
%setup -q -n versioneer-%{version}
|
|||
|
|
|||
|
%build
|
|||
|
%pyproject_wheel
|
|||
|
|
|||
|
%install
|
|||
|
%pyproject_install
|
|||
|
%python_expand sed -i '1{/^#!/d}' %{buildroot}%{$python_sitelib}/versioneer.py
|
|||
|
%python_compileall
|
|||
|
%python_clone -a %{buildroot}%{_bindir}/versioneer
|
|||
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|||
|
|
|||
|
%check
|
|||
|
%pyunittest -v test/test_file.py
|
|||
|
|
|||
|
%post
|
|||
|
%python_install_alternative versioneer
|
|||
|
|
|||
|
%postun
|
|||
|
%python_uninstall_alternative versioneer
|
|||
|
|
|||
|
%files %{python_files}
|
|||
|
%doc README.md
|
|||
|
%license LICENSE
|
|||
|
%{python_sitelib}/versioneer.py*
|
|||
|
%pycache_only %{python_sitelib}/__pycache__/versioneer*.pyc
|
|||
|
%{python_sitelib}/versioneer-%{version}.dist-info
|
|||
|
%python_alternative %{_bindir}/versioneer
|
|||
|
|
|||
|
%files %{python_files toml}
|
|||
|
%doc README.md
|
|||
|
%license LICENSE
|
|||
|
|
|||
|
%changelog
|