91 lines
2.7 KiB
RPMSpec
91 lines
2.7 KiB
RPMSpec
%global _empty_manifest_terminate_build 0
|
|
Name: python-semantic_version
|
|
Version: 2.8.5
|
|
Release: 1
|
|
Summary: Plugin for implementing the semantic version
|
|
License: BSD
|
|
URL: https://github.com/rbarrois/python-semanticversion
|
|
Source0: https://files.pythonhosted.org/packages/d4/52/3be868c7ed1f408cb822bc92ce17ffe4e97d11c42caafce0589f05844dd0/semantic_version-2.8.5.tar.gz
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
This small python library provides a few tools to handle semantic versioning in Python.
|
|
|
|
%package -n python3-semantic_version
|
|
Summary: Plugin for implementing the semantic version
|
|
Provides: python-semantic_version
|
|
# Base build requires
|
|
BuildRequires: python3-devel
|
|
BuildRequires: python3-setuptools
|
|
BuildRequires: python3-pbr
|
|
BuildRequires: python3-pip
|
|
BuildRequires: python3-wheel
|
|
|
|
%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
|
|
Provides: python3-semantic_version-doc
|
|
|
|
%description help
|
|
This small python library provides a few tools to handle semantic versioning in Python.
|
|
|
|
%prep
|
|
%autosetup -n semantic_version-%{version}
|
|
|
|
%build
|
|
%py3_build
|
|
|
|
%install
|
|
%py3_install
|
|
|
|
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 .
|
|
|
|
%check
|
|
%{__python3} setup.py test
|
|
|
|
%files -n python3-semantic_version -f filelist.lst
|
|
%dir %{python3_sitelib}/*
|
|
|
|
%files help -f doclist.lst
|
|
%{_docdir}/*
|
|
|
|
%changelog
|
|
* 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
|
|
|
|
* Mon Jan 13 2020 Lei Zhang <ricky.z@huawei.com> - 2.6.0-9
|
|
- remove django build depend
|
|
|
|
* Tue Jan 09 2020 openEuler Buildteam <buildteam@openeuler.org> - 2.6.0-8
|
|
- Package init
|