* Added commit_prefix option to Version.serialize() to insert a prefix when
serializing commit IDs.
* Added escape_with option to Version.serialize() to customize how branch
names are escaped.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-dunamai?expand=0&rev=23
77 lines
2.3 KiB
RPMSpec
77 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package python-dunamai
|
|
#
|
|
# Copyright (c) 2025 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-dunamai
|
|
Version: 1.25.0
|
|
Release: 0
|
|
Summary: Dynamic version generation
|
|
License: MIT
|
|
Group: Development/Libraries/Python
|
|
URL: https://github.com/mtkennerly/dunamai
|
|
Source0: https://files.pythonhosted.org/packages/source/d/dunamai/dunamai-%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module poetry-core >= 1.0.0}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires(post): update-alternatives
|
|
Requires(postun): update-alternatives
|
|
BuildArch: noarch
|
|
## needed for tests
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: git
|
|
%python_subpackages
|
|
|
|
%description
|
|
Dunamai is a Python 3.5+ library and command line tool for producing dynamic,
|
|
standards-compliant version strings, derived from tags in your version
|
|
control system. This facilitates uniquely identifying nightly or per-commit
|
|
builds in continuous integration and releasing new versions of your software
|
|
simply by creating a tag.
|
|
|
|
%prep
|
|
%autosetup -p1 -n dunamai-%{version}
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_clone -a %{buildroot}%{_bindir}/dunamai
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
%prepare_alternative dunamai
|
|
|
|
%post
|
|
%python_install_alternative dunamai
|
|
|
|
%postun
|
|
%python_uninstall_alternative dunamai
|
|
|
|
%check
|
|
donttest="git"
|
|
%pytest -k "not $donttest"
|
|
|
|
%files %{python_files}
|
|
%doc CHANGELOG.md README.md
|
|
%license LICENSE
|
|
%python_alternative %{_bindir}/dunamai
|
|
%{python_sitelib}/dunamai
|
|
%{python_sitelib}/dunamai-%{version}.dist-info
|
|
|
|
%changelog
|