File python-django-messages.spec of Package python-django-messages
# norootforbuild
Name: python-django-messages
Version: 0.4.3
Release: 1
Summary: User-to-user messaging system for Django
License: BSD License
Group: Development/Libraries/Python
Source: django-messages-%{version}.tar.gz
URL: http://code.google.com/p/django-messages
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
Django-messages enables your users to send private messages to each other.
It provides a basic set of functionality your would expect from such a system.
Every user has an Inbox, an Outbox and a Trash. Messages can be composed and there
is an easy url-based approach to preloading the compose-form with the recipient-user,
which makes it extremly easy to put "send xyz a message" links on a profile-page.
Author:
--------
Arne Brodowski <mail@arnebrodowski.de>
%prep
%setup -q -n django-messages-%{version}
%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)