File python-PyICU.spec of Package python-PyICU
#
# spec file for package python-PyICU
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: python-PyICU
Version: 1.9.2
Release: 0
License: MIT
Summary: Python Extension Wrapping the ICU C++ API
Url: http://pyicu.osafoundation.org/
Group: Development/Libraries/Python
Source0: http://pypi.python.org/packages/source/P/PyICU/PyICU-%{version}.tar.gz
Patch0: python-PyICU-%{version}-quote_Version.patch
BuildRequires: gcc-c++
BuildRequires: python-devel
BuildRequires: python-setuptools
%if 0%{?suse_version} >= 1210
BuildRequires: pkgconfig(icu-i18n)
BuildRequires: pkgconfig(icu-le)
BuildRequires: pkgconfig(icu-uc)
%else
BuildRequires: libicu-devel
Requires: python = %{py_ver}
%endif
Provides: PyICU = %{version}
Provides: python-ICU = %{version}
Obsoletes: python-ICU < 1.2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Python extension wrapping IBM's International Components for Unicode C++
library (ICU).
%prep
%setup -qn PyICU-%{version}
%patch0
%build
export CXXFLAGS="%{optflags} -fno-strict-aliasing"
export CFLAGS="%{optflags} -fno-strict-aliasing"
python setup.py build
%install
python setup.py install \
--root=%{buildroot} \
--prefix=%{_prefix}
%check
python setup.py test
%files
%defattr(-,root,root,-)
%if 0%{?suse_version} >= 1310
%doc CHANGES CREDITS LICENSE README.md
%else
%doc CHANGES CREDITS LICENSE README
%endif
%{python_sitearch}/*
%changelog