[django-celery/el6] initial spec

Rahul Sundaram sundaram at fedoraproject.org
Sat Jul 16 21:30:31 UTC 2011


commit 9eea01647b2ebe7ec882cfe98df95bc7efdaa12e
Author: Rahul Sundaram <sundaram at fedoraproject.org>
Date:   Sun Jul 17 02:56:24 2011 +0530

    initial spec

 .gitignore         |    1 +
 django-celery.spec |   44 ++++++++++++++++++++++++++++++++++++++++++++
 sources            |    1 +
 3 files changed, 46 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..1a8b100 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/django-celery-2.2.3.tar.gz
diff --git a/django-celery.spec b/django-celery.spec
new file mode 100644
index 0000000..5efb67f
--- /dev/null
+++ b/django-celery.spec
@@ -0,0 +1,44 @@
+Name:           django-celery
+Version:        2.2.3
+Release:        1%{?dist}
+Summary:        Django Celery Integration
+Group:          Development/Languages
+License:        BSD
+URL:            http://pypi.python.org/pypi/%{name}
+Source0:        http://pypi.python.org/packages/source/d/%{name}/%{name}-%{version}.tar.gz
+
+BuildArch:      noarch
+BuildRequires:  python-setuptools python-devel
+Requires:       Django python-celery
+
+%description
+django-celery provides Celery integration for Django; Using the Django ORM and 
+cache backend for storing results, autodiscovery of task modules for 
+applications listed in INSTALLED_APPS, and more.
+
+Celery is a task queue/job queue based on distributed message passing. It is 
+focused on real-time operation, but supports scheduling as well.
+
+The execution units, called tasks, are executed concurrently on a single or more
+worker servers. Tasks can execute asynchronously (in the background) or 
+synchronously (wait until ready).
+
+%prep
+%setup -q 
+rm -rf docs/.templates
+rm -rf docs/.static*
+%build
+%{__python} setup.py build
+
+%install
+%{__python} setup.py install -O1 --skip-build --root %{buildroot}
+
+%files 
+%doc LICENSE FAQ README AUTHORS THANKS TODO Changelog docs/
+%{_bindir}/djcelerymon
+%{python_sitelib}/djcelery/
+%{python_sitelib}/django_celery*.egg-info
+
+%changelog
+* Thu Apr 18 2011 Rahul Sundaram <sundaram at fedoraproject.org> - 2.2.3-1
+- initial spec
diff --git a/sources b/sources
index e69de29..ce77eaa 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+5f84c04a7535fcd67715548b0c7e9dc5  django-celery-2.2.3.tar.gz


More information about the scm-commits mailing list