File python-httplib2.spec of Package python-httplib2.openSUSE_12.1_Update
#
# spec file for package python-httplib2
#
# Copyright (c) 2013 SUSE LINUX Products 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-httplib2
BuildRequires: python-devel
Summary: A Python HTTP library
License: MIT
Group: Development/Libraries/Python
Version: 0.7.1
Release: 0
Source0: httplib2-%{version}.tar.gz
# PATCH-FIX-OPENSUSE: Don't ship private copy of Mozilla NSS certs, use system certs instead (bnc#761162)
Patch0: httplib2-use-system-certs.patch
# PATCH-FIX-UPSTREAM: speilicke@suse.com -- SSL certificate hostname mismatch is checked only once
Patch1: httplib2-bnc-818100.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Url: http://bitworking.org/projects/httplib2/
Requires: ca-certificates
%define prefix /usr
%py_requires
%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
BuildArch: noarch
%endif
%description
A comprehensive python HTTP client library, which supports many
features left out of other HTTP libraries.
%prep
%setup -q -n httplib2-%{version}
%patch0 -p1
%patch1 -p1
%build
CFLAGS="$RPM_OPT_FLAGS" python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=$RPM_BUILD_ROOT --record-rpm=INSTALLED_FILES
%clean
rm -rf $RPM_BUILD_ROOT
%files -f INSTALLED_FILES
%defattr(-,root,root)
%doc CHANGELOG README
%changelog