Compare commits
No commits in common. "9ffb5927ef58de692270d7aea1b5cbd81b007f48" and "da640b498101531ac312d06487e2b9b759dfbd09" have entirely different histories.
9ffb5927ef
...
da640b4981
@ -1,96 +1,78 @@
|
|||||||
%global _empty_manifest_terminate_build 0
|
%global with_tests 0%{?_with_tests:0}
|
||||||
Name: python-semantic_version
|
Name: python-semantic_version
|
||||||
Version: 2.10.0
|
Version: 2.6.0
|
||||||
Release: 1
|
Release: 9
|
||||||
Summary: Plugin for implementing the semantic version
|
Summary: Plugin for implementing the semantic version
|
||||||
License: BSD-2-Clause
|
License: BSD
|
||||||
URL: https://github.com/rbarrois/python-semanticversion
|
URL: https://github.com/rbarrois/python-semanticversion
|
||||||
Source0: https://files.pythonhosted.org/packages/7d/31/f2289ce78b9b473d582568c234e104d2a342fd658cc288a7553d83bb8595/semantic_version-2.10.0.tar.gz
|
Source0: https://github.com/rbarrois/python-semanticversion/archive/v%{version}/semantic_version-%{version}.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This small python library provides a few tools to handle semantic versioning in Python.
|
This small python library provides a few tools to handle semantic versioning in Python.
|
||||||
|
|
||||||
%package -n python3-semantic_version
|
%package -n python2-semantic_version
|
||||||
Summary: Plugin for implementing the semantic version
|
Summary: Plugin for implementing the semantic version
|
||||||
Provides: python-semantic_version
|
BuildRequires: python2-devel python2-setuptools
|
||||||
# Base build requires
|
Provides: python-semantic-version
|
||||||
BuildRequires: python3-devel python3-pytest
|
%{?python_provide:%python_provide python2-semantic_version}
|
||||||
BuildRequires: python3-setuptools
|
|
||||||
BuildRequires: python3-pbr
|
%description -n python2-semantic_version
|
||||||
BuildRequires: python3-pip
|
This small python library provides a few tools to handle semantic versioning in Python.
|
||||||
BuildRequires: python3-wheel
|
|
||||||
|
%package -n python3-semantic_version
|
||||||
|
Summary: Plugin for implementing the semantic version
|
||||||
|
BuildRequires: python3-devel python3-setuptools
|
||||||
|
%{?python_provide:%python_provide python3-semantic_version}
|
||||||
|
|
||||||
%description -n python3-semantic_version
|
%description -n python3-semantic_version
|
||||||
This small python library provides a few tools to handle semantic versioning in Python.
|
This small python library provides a few tools to handle semantic versioning in Python.
|
||||||
|
|
||||||
%package help
|
%package help
|
||||||
Summary: Documentation for python-semantic_version
|
Summary: Documentation for python-semantic_version
|
||||||
BuildRequires: python3-sphinx
|
BuildRequires: python-sphinx
|
||||||
Provides: python3-semantic_version-doc
|
Provides: python-semantic_version-doc = %{version}-%{release}
|
||||||
|
Obsoletes: python-semantic_version-doc < %{version}-%{release}
|
||||||
|
|
||||||
%description help
|
%description help
|
||||||
This small python library provides a few tools to handle semantic versioning in Python.
|
Plugin for implementing the semantic version.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n semantic_version-%{version}
|
%autosetup -n python-semanticversion-%{version}
|
||||||
|
rm -rf semantic_version.egg-info
|
||||||
|
rm docs/credits.rst
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
%py2_build
|
||||||
%py3_build
|
%py3_build
|
||||||
|
sphinx-build docs html
|
||||||
|
rm -rf html/.{doctrees,buildinfo}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
|
%py2_install
|
||||||
%py3_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
|
%check
|
||||||
/usr/bin/pytest
|
%if %{with_tests}
|
||||||
|
%{__python2} setup.py test
|
||||||
|
%{__python3} setup.py test
|
||||||
|
%endif
|
||||||
|
|
||||||
%files -n python3-semantic_version -f filelist.lst
|
%files -n python2-semantic_version
|
||||||
%dir %{python3_sitelib}/*
|
%license LICENSE
|
||||||
|
%{python2_sitelib}/semantic_version*/
|
||||||
|
|
||||||
%files help -f doclist.lst
|
%files -n python3-semantic_version
|
||||||
%{_docdir}/*
|
%license LICENSE
|
||||||
|
%{python3_sitelib}/semantic_version*/
|
||||||
|
|
||||||
|
%files help
|
||||||
|
%license LICENSE
|
||||||
|
%doc html
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon Apr 10 2023 liyanan <thistleslyn@163.com> - 2.10.0-1
|
|
||||||
- Upgrade package to version 2.10.0
|
|
||||||
|
|
||||||
* Fri Jun 17 2022 liukuo <liukuo@kylinos.cn> - 2.8.5-2
|
|
||||||
- License compliance rectification
|
|
||||||
|
|
||||||
* 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
|
* Mon Jan 13 2020 Lei Zhang <ricky.z@huawei.com> - 2.6.0-9
|
||||||
- remove django build depend
|
- remove django build depend
|
||||||
|
|
||||||
* Thu Jan 09 2020 openEuler Buildteam <buildteam@openeuler.org> - 2.6.0-8
|
* Tue Jan 09 2020 openEuler Buildteam <buildteam@openeuler.org> - 2.6.0-8
|
||||||
- Package init
|
- Package init
|
||||||
|
|||||||
Binary file not shown.
BIN
semantic_version-2.6.0.tar.gz
Normal file
BIN
semantic_version-2.6.0.tar.gz
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user