File python-managesieve.spec of Package python-managesieve
#
# spec file for package python-managesieve
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2009 Guido Berhoerster.
#
# 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/
#
%define oname managesieve
Name: python-managesieve
Version: 0.5
Release: 0
Summary: Python Module Implementing the ManageSieve Protocol
License: GPL-3.0+ and Python-2.0
Group: Development/Libraries/Python
Url: https://pythonhosted.org/managesieve/
Source: https://pypi.python.org/packages/source/m/managesieve/managesieve-%{version}.tar.bz2
# PATCH-FIX-OPENSUSE python-managesieve-remove-ez_setup.patch gber@opensuse.org -- Remove unnecessary ez_setup usage
Patch0: python-managesieve-remove-ez_setup.patch
BuildRequires: python-devel
BuildRequires: python-setuptools
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%else
BuildArch: noarch
%endif
%description
python-managesieve is a Python module implementing the ManageSieve client
protocol. It also includes an user application (the interactive sieveshell).
%prep
%setup -q -n %{oname}-%{version}
%patch0 -p1
# Fix URL
sed -i 's|http://packages.python.org/managesieve|%{url}|' setup.py
%build
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%files
%defattr(-,root,root,-)
%doc README.txt
%{_bindir}/sieveshell
%{python_sitelib}/%{oname}.*
%{python_sitelib}/%{oname}-%{version}-py%{py_ver}.egg-info
%changelog