python-kitchen/python-kitchen.spec
2020-08-06 10:47:43 +08:00

133 lines
3.7 KiB
RPMSpec

%global with_python3 1
%global python3_pkgversion 3
Name: python-kitchen
Version: 1.2.6
Release: 3
Summary: Small, useful pieces of code to make python coding easier
License: LGPLv2+
URL: https://pypi.python.org/pypi/kitchen/
Source0: https://files.pythonhosted.org/packages/d9/ca/3365cb1160533be8c8b57dbfd6502f367d35e30935ee89a003c664740714/kitchen-1.2.6.tar.gz
BuildArch: noarch
BuildRequires: python-sphinx
BuildRequires: python%{python3_pkgversion}-devel
BuildRequires: python%{python3_pkgversion}-nose
BuildRequires: python%{python3_pkgversion}-test
BuildRequires: python%{python3_pkgversion}-chardet
Patch0: 0001-replace-obsolete-pngmath-with-imgmath.patch
%description
kitchen includes functions to make gettext easier to use, handling unicode
text easier (conversion with bytes, outputting xml, and calculating how many
columns a string takes), and compatibility modules for writing code that uses
python-2.7 modules but needs to run on python-2.3.
%if 0%{?with_python3}
%package -n python%{python3_pkgversion}-kitchen
Summary: Small, useful pieces of code to make python 3 coding easier
%{?python_provide:%python_provide python%{python3_pkgversion}-kitchen}
Requires: python%{python3_pkgversion}
Requires: python%{python3_pkgversion}-chardet
%description -n python%{python3_pkgversion}-kitchen
kitchen includes functions to make gettext easier to use, handling unicode
text easier (conversion with bytes, outputting xml, and calculating how many
columns a string takes).
This is the python3 version of the kitchen module.
%package -n python%{python3_pkgversion}-kitchen-doc
Summary: API documentation for the Kitchen python3 module
#Requires: python2-kitchen = %{version}-%{release}
%description -n python%{python3_pkgversion}-kitchen-doc
kitchen includes functions to make gettext easier to use, handling unicode
text easier (conversion with bytes, outputting xml, and calculating how many
columns a string takes).
This package contains the API documenation for programming with the
python-3 version of the kitchen library.
%endif
%prep
%autosetup -p1 -n kitchen-%{version}
# Remove bundled egg info, if any.
rm -rf *.egg*
%if 0%{?with_python3}
rm -rf %{py3dir}
cp -a . %{py3dir}
%endif
%build
%if 0%{?with_python3}
pushd %{py3dir}
%{py3_build}
popd
%endif
# Build docs
pushd %{py3dir}
sphinx-build-3 kitchen3/docs/ build/sphinx/html
cp -pr build/sphinx/html .
find . -name html
ls ./html
rm -rf html/.buildinfo
popd
%install
%if 0%{?with_python3}
pushd %{py3dir}
%{py3_install}
popd
%endif
# %check
# # In current mock, the PATH isn't being reset. This causes failures in some
# # subprocess tests as a check tests /root/bin/PROGRAM and fails with Permission
# # Denied instead of File Not Found. reseting the PATH works around this.
# PATH=/bin:/usr/bin
# %if 0%{?fedora}
# PYTHONPATH=.:kitchen2/ nosetests-%{python2_version} kitchen2/tests/
# %else
# PYTHONPATH=.:kitchen2/ nosetests kitchen2/tests/
# %endif
#
# %if 0%{?with_python3}
# pushd %{py3dir}
# PYTHONPATH=.:kitchen3/ nosetests-%{python3_version} kitchen3/tests/
# popd
# %endif
%if 0%{?with_python3}
%files -n python%{python3_pkgversion}-kitchen
%doc README.rst NEWS.rst
%license COPYING COPYING.LESSER
%{python3_sitelib}/kitchen*
%files -n python%{python3_pkgversion}-kitchen-doc
%doc kitchen3/docs/*
%license COPYING COPYING.LESSER
%endif
%changelog
* Thu Aug 06 2020 zhangjiapeng <zhangjiapeng9@huawei.com> - 1.2.6-3
- replace obsolete pngmath with imgmath
* Wed Aug 05 2020 Guoshuai Sun <sunguoshuai@huawei.com> - 1.2.6-2
- Del the python2 and fix build error
* Sat Feb 15 2020 openEuler Buildteam <buildteam@openeuler.org> - 1.2.6-1
- Update to 1.2.6 and enable python3 test
* Sat Dec 21 2019 duyeyu <duyeyu@huawei.com> - 1.2.5-6
- initial package