From 32606e849be62f082446e89bf25d207ac34a9acd Mon Sep 17 00:00:00 2001 From: basebuilder_pel7ppc64bebuilder0 Date: Thu, 19 Apr 2018 16:27:01 +0200 Subject: [PATCH] add package python-unidecode Signed-off-by: basebuilder_pel7ppc64bebuilder0 --- SPECS/python-unidecode.spec | 117 ++++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100755 SPECS/python-unidecode.spec diff --git a/SPECS/python-unidecode.spec b/SPECS/python-unidecode.spec new file mode 100755 index 00000000..cdace96f --- /dev/null +++ b/SPECS/python-unidecode.spec @@ -0,0 +1,117 @@ +%global srcname Unidecode + +Name: python-unidecode +Version: 0.04.16 +Release: 2%{?dist} +Summary: US-ASCII transliterations of Unicode text + +Group: Development/Libraries +License: GPL+ or Artistic +URL: http://pypi.python.org/pypi/%{srcname}/%{version} +Source0: http://pypi.python.org/packages/source/U/%{srcname}/%{srcname}-%{version}.tar.gz + +BuildArch: noarch +BuildRequires: python2-devel +%if 0%{?fedora} || 0%{?rhel} > 7 +BuildRequires: python3-devel +%endif + + +%description +This is a python port of Text::Unidecode Perl module. It provides a function, +'unidecode(...)' that takes Unicode data and tries to represent it in ASCII +characters. + +%if 0%{?fedora} || 0%{?rhel} > 7 +%package -n python3-unidecode +Summary: US-ASCII transliterations of Unicode text + +%description -n python3-unidecode +This is a python port of Text::Unidecode Perl module. It provides a function, +'unidecode(...)' that takes Unicode data and tries to represent it in ASCII +characters. +%endif + + +%prep +%setup -q -n %{srcname}-%{version} + +%build +%{__python} setup.py build + +%if 0%{?fedora} || 0%{?rhel} > 7 +rm -rf %{py3dir} +cp -a . %{py3dir} +pushd %{py3dir} +%{__python3} setup.py build +popd +%endif + +%install +%{__python} setup.py install --skip-build --root=%{buildroot} + +%if 0%{?fedora} || 0%{?rhel} > 7 +pushd %{py3dir} +%{__python3} setup.py install --skip-build --root %{buildroot} +popd +%endif + +%files +%doc README ChangeLog +%{python_sitelib}/unidecode/ +%{python_sitelib}/*.egg-info + +%if 0%{?fedora} || 0%{?rhel} > 7 +%files -n python3-unidecode +%doc README ChangeLog +%{python3_sitelib}/unidecode/ +%{python3_sitelib}/*.egg-info +%endif + + +%changelog +* Sun Sep 07 2014 P J P - 0.04.16-2 +- Fixed python3-unidecode build to make it conditional on epel. + +* Tue Sep 02 2014 P J P - 0.04.16-1 +- New release + +* Sun Jun 08 2014 Fedora Release Engineering - 0.04.13-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Wed May 28 2014 Kalev Lember - 0.04.13-3 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 + +* Sun Aug 04 2013 Fedora Release Engineering - 0.04.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Wed Jun 19 2013 Rahul Sundaram - 0.04.13-1 +- new upstream release +- python 3 build. resolves rhbz#975711 + +* Thu Feb 14 2013 Fedora Release Engineering - 0.04.7-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sun Jul 22 2012 Toshio Kuratomi - 0.04.7-7 +- This package does not use setuptools. Remove the BR for that. Also correct the + %%files list -- The egg-info is a file, not a directory (b/c it is created by + distutils, not by setuptools.) Older rpms fixed up the entry behind the + scenes. Newer ones fail so we need to correct it explicitly. + +* Sat Jul 21 2012 Fedora Release Engineering - 0.04.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Sat Jan 14 2012 Fedora Release Engineering - 0.04.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Mon Jul 18 2011 Rahul Sundaram - 0.04.7-4 +- mark it noarch. Pointed out Ville Skyttä + +* Fri Jul 15 2011 P J P - 0.04.7-3 +- changed to use srcname and version macros in URL & Source0 variables. + +* Tue Jul 12 2011 P J P - 0.04.7-2 +- added BuildRequires, and changed description to be more concise. + +* Mon Jul 11 2011 P J P - 0.04.7-1 +- Initial RPM for python-unidecode.