# Tests are available in head version but not in release 0.5 # enable them at next release. %global with_checks 0 Name: python-humanize Version: 0.5.1 Release: 8%{?dist} Summary: Turns dates in to human readable format, e.g '3 minutes ago' License: MIT URL: https://github.com/jmoiron/humanize Source0: https://pypi.python.org/packages/source/h/humanize/humanize-%{version}.tar.gz %{?python_provide:%python_provide python2-humanize} BuildArch: noarch BuildRequires: python2-setuptools BuildRequires: python2-devel BuildRequires: python%{python3_pkgversion}-devel BuildRequires: python%{python3_pkgversion}-setuptools %description This modest package contains various common humanization utilities, like turning a number into a fuzzy human readable duration ('3 minutes ago') or into a human readable size or throughput. %package -n python%{python3_pkgversion}-humanize Summary: Turns dates in to human readable format, e.g '3 minutes ago' %{?python_provide:%python_provide python%{python3_pkgversion}-humanize} %description -n python%{python3_pkgversion}-humanize This modest package contains various common humanization utilities, like turning a number into a fuzzy human readable duration ('3 minutes ago') or into a human readable size or throughput. %prep %setup -q -n humanize-%{version} # Remove shebangs from libs. 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 required so README.rst can be parsed. LANG=en_US.UTF-8 %{__python3} setup.py build popd %{__python2} setup.py build %install pushd %{py3dir} LANG=en_US.UTF-8 %{__python3} setup.py install --skip-build --root %{buildroot} %find_lang humanize popd %{__python2} setup.py install --skip-build --root %{buildroot} %if ! 0%{?el6} %find_lang humanize %else touch humanize.lang %endif # Remove python3 lang files sed -i 's|^.*%{python3_sitelib}.*||' humanize.lang %check %if 0%{?with_checks} %{__python2} setup.py test %if 0%{?with_python3} pushd %{py3dir} LANG=en_US.UTF-8 %{__python3} setup.py test popd %endif %endif %files -f humanize.lang %doc README.rst LICENCE %dir %{python2_sitelib}/humanize %{python2_sitelib}/humanize/*.py* %{python2_sitelib}/humanize-%{version}-py%{python2_version}.egg-info %if ! 0%{?el6} %exclude %{_usr}/lib/python*/site-packages/humanize/locale/*/LC_MESSAGES/*.po %else %{python2_sitelib}/humanize/locale %endif %files -n python%{python3_pkgversion}-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 * Thu Nov 14 2019 Steve Traylen - 0.5.1-8 - Add python3 packages to epel7 * Sat Feb 11 2017 Fedora Release Engineering - 0.5.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Mon Dec 12 2016 Charalampos Stratakis - 0.5.1-6 - Rebuild for Python 3.6 * Tue Jul 19 2016 Fedora Release Engineering - 0.5.1-5 - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages * Thu Feb 04 2016 Fedora Release Engineering - 0.5.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Fri Nov 06 2015 Robert Kuska - 0.5.1-3 - Rebuilt for Python3.5 rebuild * Thu Jun 18 2015 Fedora Release Engineering - 0.5.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Mon Jun 1 2015 Steve Traylen 0.5.1-1 - New 0.5.1 * Sat Jun 07 2014 Fedora Release Engineering - 0.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild * Wed May 28 2014 Kalev Lember - 0.5-5 - Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 * Wed May 14 2014 Steve Traylen 0.5-4 - lang fixes for .el6 target. * Wed Apr 23 2014 Steve Traylen 0.5-3 - Use __python2 rather than __python throughout. - rhbz#1088882 * Tue Apr 22 2014 Steve Traylen 0.5-2 - Add python3 package - rhbz#1088882. * Thu Apr 17 2014 Steve Traylen 0.5-1 - First release