Sophie

Sophie

distrib > Fedora > 13 > i386 > media > updates-src > by-pkgid > 2b2efa3ed3bb4c69549b68d6f3cb5b24 > files > 2

python-simplemediawiki-1.1-1.fc13.src.rpm

%if ! (0%{?fedora} > 12 || 0%{?rhel} > 5)
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
%endif

%global tarball_name simplemediawiki

Name:           python-%{tarball_name}
Version:        1.1
Release:        1%{?dist}
Summary:        Extremely low-level wrapper to the MediaWiki API

Group:          Development/Libraries
License:        LGPLv2+
URL:            https://github.com/ianweller/python-simplemediawiki
Source0:        http://pypi.python.org/packages/source/s/%{tarball_name}/%{tarball_name}-%{version}.tar.gz
Patch0:         %{name}-sphinx10.patch
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)

BuildArch:      noarch
BuildRequires:  python-devel python-iso8601 python-simplejson

%if 0%{?fedora} < 14 || 0%{?rhel} >= 5
BuildRequires:  python-sphinx10
%else
BuildRequires:  python-sphinx
%endif

Requires:       python-iso8601
Requires:       python-simplejson

%description
The module simplemediawiki is an extremely low-level wrapper to the MediaWiki 
API. It automatically handles cookies and g zip compression so that you can 
make basic calls to the API in the easiest way possible. It also provides a 
few functions to make day-to-day API access easier.

%prep
%setup -qn %{tarball_name}-%{version}
%patch0 -b .sphinx10

%build
%{__python} setup.py build build_sphinx

%install
rm -rf %{buildroot}
%{__python} setup.py install -O1 --root=%{buildroot} --record=INSTALLED_FILES

%clean
rm -rf %{buildroot}

%files
%defattr(-,root,root)
%doc COPYING PKG-INFO README build/sphinx/html
%{python_sitelib}/*

%changelog
* Mon Feb 28 2011 Luke Macken <lmacken@redhat.com> - 1.1-1
- Update to 1.1 (#678398)
- Require python-simplejson
- Include the README
- Build the HTML documentation
- Apply a patch to use Sphinx 1.0 on RHEL5/6 and F13

* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild

* Sat Nov 20 2010 Abdel Martínez <potty@fedoraproject.org> - 1.0-3
- Requires (python-iso8601) added.

* Fri Nov 12 2010 Abdel Martínez <potty@fedoraproject.org> - 1.0-2
- Correcting license.
- Remove/adding variables.
- Modifying description length.
- Adding documentation.

* Wed Nov 10 2010 Abdel Martínez <potty@fedoraproject.org> - 1.0-1
- First package build.