python-humanize/python-humanize.spec

68 lines
1.9 KiB
RPMSpec
Raw Normal View History

2019-12-20 14:21:50 +08:00
Name: python-humanize
Version: 0.5.1
2021-09-27 15:07:13 +08:00
Release: 18
2019-12-20 14:21:50 +08:00
Summary: python humanize module
License: MIT
URL: https://github.com/jmoiron/humanize
Source0: https://pypi.python.org/packages/source/h/humanize/humanize-%{version}.tar.gz
BuildArch: noarch
2020-10-29 10:39:12 +08:00
BuildRequires: python3-devel python3-setuptools python3-tools
2019-12-20 14:21:50 +08:00
%description
Python module that includes various common humanization utilities.
%package -n python3-humanize
Summary: python3 humanize module
2021-09-27 15:07:13 +08:00
%{?python_provide:%python_provide python3-humanize}
2020-10-29 10:39:12 +08:00
2019-12-20 14:21:50 +08:00
%description -n python3-humanize
Python3 module that includes various common humanization utilities.
2020-10-29 10:39:12 +08:00
2019-12-20 14:21:50 +08:00
%prep
%autosetup -p1 -n humanize-%{version}
for lib in humanize/time.py humanize/filesize.py humanize/number.py; do
sed '1{\@^#!/usr/bin/env python@d}' $lib > $lib.new &&
touch -r $lib $lib.new && mv $lib.new $lib
done
rm -rf %{py3dir}
cp -a . %{py3dir}
%build
pushd %{py3dir}
LANG=en_US.UTF-8 /usr/bin/python3 setup.py build
popd
%install
pushd %{py3dir}
LANG=en_US.UTF-8 /usr/bin/python3 setup.py install --skip-build --root %{buildroot}
%find_lang humanize
popd
2020-10-29 10:39:12 +08:00
2019-12-20 14:21:50 +08:00
%check
2020-03-22 00:18:34 +08:00
%if %{?_with_check:1}%{!?_with_check:0}
2019-12-20 14:21:50 +08:00
pushd %{py3dir}
LANG=en_US.UTF-8 /usr/bin/python3 setup.py test
popd
2020-03-22 00:18:34 +08:00
%endif
2019-12-20 14:21:50 +08:00
%files -n python3-humanize -f %{py3dir}/humanize.lang
%doc README.rst LICENCE
%dir %{python3_sitelib}/humanize
%{python3_sitelib}/humanize/*.py
%{python3_sitelib}/humanize/__pycache__
%{python3_sitelib}/humanize-%{version}-py%{python3_version}.egg-info
%exclude %{_usr}/lib/python*/site-packages/humanize/locale/*/LC_MESSAGES/*.po
%changelog
2021-09-27 15:07:13 +08:00
* Mon Sep 27 2021 caodongxia <caodongxia@huawei.com> - 0.5.1-18
- Provides python-humanize
2020-10-29 10:39:12 +08:00
* Wed Oct 21 2020 leiju <leiju4@huawei.com> - 0.5.1-17
- rename python2 subpackage
2020-03-22 00:18:34 +08:00
* Sun Mar 22 2020 Shuaishuai Song <songshuaishuai2@huawei.com> - 0.5.1-16
- disable make check
2020-10-29 10:39:12 +08:00
2020-03-22 00:18:34 +08:00
* Thu Dec 19 2019 Shuaishuai Song <songshuaishuai2@huawei.com> - 0.5.1-15
2019-12-20 14:21:50 +08:00
- package init