python-semantic_version/python-semantic_version.spec

97 lines
2.9 KiB
RPMSpec
Raw Permalink Normal View History

2021-08-06 11:05:31 +08:00
%global _empty_manifest_terminate_build 0
2020-01-12 21:09:36 -05:00
Name: python-semantic_version
2023-04-10 11:10:38 +08:00
Version: 2.10.0
Release: 1
2020-01-12 21:09:36 -05:00
Summary: Plugin for implementing the semantic version
2022-06-17 14:45:06 +08:00
License: BSD-2-Clause
2020-01-12 21:09:36 -05:00
URL: https://github.com/rbarrois/python-semanticversion
2023-04-10 11:10:38 +08:00
Source0: https://files.pythonhosted.org/packages/7d/31/f2289ce78b9b473d582568c234e104d2a342fd658cc288a7553d83bb8595/semantic_version-2.10.0.tar.gz
2020-01-12 21:09:36 -05:00
BuildArch: noarch
%description
This small python library provides a few tools to handle semantic versioning in Python.
2021-08-06 11:05:31 +08:00
%package -n python3-semantic_version
2020-01-12 21:09:36 -05:00
Summary: Plugin for implementing the semantic version
2021-08-06 11:05:31 +08:00
Provides: python-semantic_version
# Base build requires
2023-04-10 11:10:38 +08:00
BuildRequires: python3-devel python3-pytest
2021-08-06 11:05:31 +08:00
BuildRequires: python3-setuptools
BuildRequires: python3-pbr
BuildRequires: python3-pip
BuildRequires: python3-wheel
2020-01-12 21:09:36 -05:00
%description -n python3-semantic_version
This small python library provides a few tools to handle semantic versioning in Python.
%package help
Summary: Documentation for python-semantic_version
BuildRequires: python3-sphinx
2021-08-06 11:05:31 +08:00
Provides: python3-semantic_version-doc
2020-01-12 21:09:36 -05:00
%description help
2021-08-06 11:05:31 +08:00
This small python library provides a few tools to handle semantic versioning in Python.
2020-01-12 21:09:36 -05:00
%prep
2021-08-06 11:05:31 +08:00
%autosetup -n semantic_version-%{version}
2020-01-12 21:09:36 -05:00
%build
%py3_build
%install
%py3_install
2021-08-06 11:05:31 +08:00
install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot}
if [ -d usr/lib ]; then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/bin ]; then
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
fi
touch doclist.lst
if [ -d usr/share/man ]; then
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
fi
popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .
2020-01-12 21:09:36 -05:00
%check
2023-04-10 11:10:38 +08:00
/usr/bin/pytest
2020-01-12 21:09:36 -05:00
2021-08-06 11:05:31 +08:00
%files -n python3-semantic_version -f filelist.lst
%dir %{python3_sitelib}/*
2020-01-12 21:09:36 -05:00
2021-08-06 11:05:31 +08:00
%files help -f doclist.lst
%{_docdir}/*
2020-01-12 21:09:36 -05:00
%changelog
2023-04-10 11:10:38 +08:00
* Mon Apr 10 2023 liyanan <thistleslyn@163.com> - 2.10.0-1
- Upgrade package to version 2.10.0
2022-06-17 14:45:06 +08:00
* Fri Jun 17 2022 liukuo <liukuo@kylinos.cn> - 2.8.5-2
- License compliance rectification
2021-08-06 11:05:31 +08:00
* Fri Aug 06 2021 OpenStack_SIG <openstack@openeuler.org> - 2.8.5-1
- Upgrade version to 2.8.5
* Wed Oct 21 2020 zhanghua <zhanghua40@huawei.com> - 2.6.0-10
- remove python2 subpackage
2020-01-13 09:28:43 -05:00
* Mon Jan 13 2020 Lei Zhang <ricky.z@huawei.com> - 2.6.0-9
- remove django build depend
2020-01-12 21:09:36 -05:00
2022-06-20 10:35:11 +08:00
* Thu Jan 09 2020 openEuler Buildteam <buildteam@openeuler.org> - 2.6.0-8
2020-01-13 09:28:43 -05:00
- Package init