File python-django-rsscloud.spec of Package python-django-rsscloud
# norootforbuild
Name: python-django-rsscloud
Version: 0.1.1
Release: 1
Summary: Simple app to make rsscloud-enabled your Django app feed
License: BSD License
Group: Development/Libraries/Python
Source: django-rsscloud-%{version}.tar.bz2
URL: http://github.com/matagus/django-rsscloud
BuildRequires: python-devel, python-setuptools
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: python-django
%{py_requires}
%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
BuildArch: noarch
%endif
%description
It turns your RSS feed into a rsscloud-enabled feed and it allows you to connect post_save signal
from one or more models to a ping function that will be in charge of pinging the rsscloud server
or schedule a future ping. It also provides a management command to run periodically in order to
ping the rsscloud server if necessary. I've only implemented the REST interface for the blog side.
Author:
--------
Matias Agustin Mendez <me@matagus.com.ar>
%prep
%setup -q -n django-rsscloud
%build
%{__python} setup.py build
%install
%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} --record-rpm=INSTALLED_FILES
%files -f INSTALLED_FILES
%defattr(-,root,root)