[Python-modules-commits] r30147 - in packages/django-celery/trunk/debian (5 files)
bam at users.alioth.debian.org
bam at users.alioth.debian.org
Wed Aug 13 04:10:50 UTC 2014
Date: Wednesday, August 13, 2014 @ 04:10:49
Author: bam
Revision: 30147
Python3 package and fix for Django1.7
Modified:
packages/django-celery/trunk/debian/changelog
packages/django-celery/trunk/debian/control
packages/django-celery/trunk/debian/patches/series
packages/django-celery/trunk/debian/rules
Deleted:
packages/django-celery/trunk/debian/python-django-celery.install
Modified: packages/django-celery/trunk/debian/changelog
===================================================================
--- packages/django-celery/trunk/debian/changelog 2014-08-13 03:38:54 UTC (rev 30146)
+++ packages/django-celery/trunk/debian/changelog 2014-08-13 04:10:49 UTC (rev 30147)
@@ -1,8 +1,9 @@
django-celery (3.1.10-1) unstable; urgency=low
* New upstream release (Closes: #742762).
- * Remove python-billiard from build-depends. Appears to build ok without it.
+ * Remove python-billiard from build-depends.
* Refresh patches.
+ * Fix django1.7 compatibility issue (Closes: #755596).
-- Brian May <bam at debian.org> Fri, 02 May 2014 11:57:34 +1000
Modified: packages/django-celery/trunk/debian/control
===================================================================
--- packages/django-celery/trunk/debian/control 2014-08-13 03:38:54 UTC (rev 30146)
+++ packages/django-celery/trunk/debian/control 2014-08-13 04:10:49 UTC (rev 30147)
@@ -3,19 +3,14 @@
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
Uploaders: Michael Fladischer <FladischerMichael at fladi.at>, Brian May <bam at debian.org>
-Build-Depends: debhelper (>= 8.1.0~),
- docbook-to-man,
- python-all (>= 2.7),
- python-anyjson,
- python-celery (>= 3.1.1),
- python-django,
- python-django-nose,
- python-mock,
- python-setuptools,
- python-sphinx (>= 1.0.7+dfsg),
- python-sphinxcontrib.issuetracker,
- python-tz,
- python-unittest2
+Build-Depends: debhelper (>= 8.1.0~), dh-python, docbook-to-man,
+ python-sphinx (>= 1.0.7+dfsg), python-sphinxcontrib.issuetracker,
+ python-all (>= 2.7), python-anyjson, python-celery (>= 3.1.1),
+ python-django, python-django-nose, python-mock, python-setuptools,
+ python-tz, python-unittest2,
+ python3-all (>= 2.7), python3-anyjson, python3-celery (>= 3.1.1),
+ python3-django, python3-django-nose, python3-mock, python3-setuptools,
+ python3-tz
Standards-Version: 3.9.5
X-Python-Version: >= 2.7
Homepage: http://celeryproject.org/
@@ -45,6 +40,30 @@
like sending emails or batch-processing larger datasets to one or more
separate worker nodes.
+Package: python3-django-celery
+Architecture: all
+Depends: python3-anyjson,
+ python3-celery (>= 3.1.1),
+ python3-django,
+ python3-pkg-resources,
+ python3-tz,
+ ${misc:Depends},
+ ${python3:Depends}
+Description: Celery integration for Django
+ Celery is an open source asynchronous task queue/job queue based on
+ distributed message passing. It is focused on real-time operation,
+ but supports scheduling as well.
+ .
+ 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 integration of task monitoring
+ through the Django admin interface.
+ .
+ Using it in a Django project provides a way to distribute asynchronous tasks
+ like sending emails or batch-processing larger datasets to one or more
+ separate worker nodes.
+
+
Package: python-django-celery-doc
Section: doc
Architecture: all
Modified: packages/django-celery/trunk/debian/patches/series
===================================================================
--- packages/django-celery/trunk/debian/patches/series 2014-08-13 03:38:54 UTC (rev 30146)
+++ packages/django-celery/trunk/debian/patches/series 2014-08-13 04:10:49 UTC (rev 30147)
@@ -1,2 +1,3 @@
+remove_validate
fix_dependencies.patch
no-issues.patch
Deleted: packages/django-celery/trunk/debian/python-django-celery.install
===================================================================
--- packages/django-celery/trunk/debian/python-django-celery.install 2014-08-13 03:38:54 UTC (rev 30146)
+++ packages/django-celery/trunk/debian/python-django-celery.install 2014-08-13 04:10:49 UTC (rev 30147)
@@ -1 +0,0 @@
-usr/
Modified: packages/django-celery/trunk/debian/rules
===================================================================
--- packages/django-celery/trunk/debian/rules 2014-08-13 03:38:54 UTC (rev 30146)
+++ packages/django-celery/trunk/debian/rules 2014-08-13 04:10:49 UTC (rev 30147)
@@ -1,6 +1,9 @@
#!/usr/bin/make -f
+
+export PYBUILD_NAME=django-celery
+
%:
- dh $@ --with python2,sphinxdoc
+ dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild
.PHONY: override_dh_installman
override_dh_installman:
More information about the Python-modules-commits
mailing list