[Python-modules-commits] r26233 - in packages/django-celery-transactions/trunk (11 files)

fladi-guest at users.alioth.debian.org fladi-guest at users.alioth.debian.org
Mon Oct 21 10:21:05 UTC 2013


    Date: Monday, October 21, 2013 @ 10:21:03
  Author: fladi-guest
Revision: 26233

Initial release (Closes: #726990).

Added:
  packages/django-celery-transactions/trunk/debian/
  packages/django-celery-transactions/trunk/debian/changelog
  packages/django-celery-transactions/trunk/debian/clean
  packages/django-celery-transactions/trunk/debian/compat
  packages/django-celery-transactions/trunk/debian/control
  packages/django-celery-transactions/trunk/debian/copyright
  packages/django-celery-transactions/trunk/debian/docs
  packages/django-celery-transactions/trunk/debian/rules
  packages/django-celery-transactions/trunk/debian/source/
  packages/django-celery-transactions/trunk/debian/source/format
  packages/django-celery-transactions/trunk/debian/watch


Property changes on: packages/django-celery-transactions/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/django-celery-transactions/trunk/debian/changelog
===================================================================
--- packages/django-celery-transactions/trunk/debian/changelog	                        (rev 0)
+++ packages/django-celery-transactions/trunk/debian/changelog	2013-10-21 10:21:03 UTC (rev 26233)
@@ -0,0 +1,5 @@
+django-celery-transactions (0.1.3-1) unstable; urgency=low
+
+  * Initial release (Closes: #726990).
+
+ -- Michael Fladischer <FladischerMichael at fladi.at>  Mon, 21 Oct 2013 11:32:47 +0200

Added: packages/django-celery-transactions/trunk/debian/clean
===================================================================
--- packages/django-celery-transactions/trunk/debian/clean	                        (rev 0)
+++ packages/django-celery-transactions/trunk/debian/clean	2013-10-21 10:21:03 UTC (rev 26233)
@@ -0,0 +1 @@
+django_celery_transactions.egg-info/SOURCES.txt

Added: packages/django-celery-transactions/trunk/debian/compat
===================================================================
--- packages/django-celery-transactions/trunk/debian/compat	                        (rev 0)
+++ packages/django-celery-transactions/trunk/debian/compat	2013-10-21 10:21:03 UTC (rev 26233)
@@ -0,0 +1 @@
+9

Added: packages/django-celery-transactions/trunk/debian/control
===================================================================
--- packages/django-celery-transactions/trunk/debian/control	                        (rev 0)
+++ packages/django-celery-transactions/trunk/debian/control	2013-10-21 10:21:03 UTC (rev 26233)
@@ -0,0 +1,36 @@
+Source: django-celery-transactions
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Michael Fladischer <FladischerMichael at fladi.at>
+Build-Depends: debhelper (>= 9),
+               python-all,
+               python-celery,
+               python-django (>= 1.2.4),
+               python-django-celery,
+               python-setuptools
+Standards-Version: 3.9.4
+X-Python-Version: >= 2.6
+Homepage: https://github.com/chrisdoble/django-celery-transactions
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/django-celery-transactions/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/django-celery-transactions/trunk/
+
+Package: python-django-celery-transactions
+Architecture: all
+Depends: python-celery,
+         python-django (>= 1.2.4),
+         python-django-celery,
+         ${misc:Depends},
+         ${python:Depends}
+Description: Django transaction support for Celery tasks
+ django-celery-transactions holds on to Celery tasks until the current database
+ transaction is committed, avoiding potential race conditions where the task is
+ executed before the transaction is committed in the database.
+ .
+ Features:
+  * If the transaction is rolled back, the tasks are discarded. Django's
+    transaction middleware does this if an exception is raised.
+  * If transactions aren't being managed, tasks are sent as normal. This means
+    that sending tasks from within Django's shell will work as expected, as
+    will the various transaction decorators commit_manually, commit_on_success,
+    etc.

Added: packages/django-celery-transactions/trunk/debian/copyright
===================================================================
--- packages/django-celery-transactions/trunk/debian/copyright	                        (rev 0)
+++ packages/django-celery-transactions/trunk/debian/copyright	2013-10-21 10:21:03 UTC (rev 26233)
@@ -0,0 +1,37 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: django-celery-transactions
+Upstream-Contact: Chris Doble <chris at chrisdoble.com>
+Source: https://github.com/chrisdoble/django-celery-transactions
+
+Files: *
+Copyright: 2012, Chris Doble
+License: BSD-2-clause
+
+Files: debian/*
+Copyright: 2013, Fladischer Michael <FladischerMichael at fladi.at>
+License: BSD-2-clause
+
+License: BSD-2-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ .
+ 1. Redistributions of source code must retain the above copyright notice, this
+    list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright notice,
+    this list of conditions and the following disclaimer in the documentation
+    and/or other materials provided with the distribution.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ The views and conclusions contained in the software and documentation are those
+ of the authors and should not be interpreted as representing official policies,
+ either expressed or implied, of the FreeBSD Project.

Added: packages/django-celery-transactions/trunk/debian/docs
===================================================================
--- packages/django-celery-transactions/trunk/debian/docs	                        (rev 0)
+++ packages/django-celery-transactions/trunk/debian/docs	2013-10-21 10:21:03 UTC (rev 26233)
@@ -0,0 +1 @@
+README.md

Added: packages/django-celery-transactions/trunk/debian/rules
===================================================================
--- packages/django-celery-transactions/trunk/debian/rules	                        (rev 0)
+++ packages/django-celery-transactions/trunk/debian/rules	2013-10-21 10:21:03 UTC (rev 26233)
@@ -0,0 +1,14 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@ --with python2
+
+.PHONY: override_dh_auto_test
+override_dh_auto_test:
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+	set -e; \
+	for python in $(shell pyversions -r); do \
+		PYTHONPATH="." $$python setup.py test; \
+	done
+endif
+


Property changes on: packages/django-celery-transactions/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/django-celery-transactions/trunk/debian/source/format
===================================================================
--- packages/django-celery-transactions/trunk/debian/source/format	                        (rev 0)
+++ packages/django-celery-transactions/trunk/debian/source/format	2013-10-21 10:21:03 UTC (rev 26233)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/django-celery-transactions/trunk/debian/watch
===================================================================
--- packages/django-celery-transactions/trunk/debian/watch	                        (rev 0)
+++ packages/django-celery-transactions/trunk/debian/watch	2013-10-21 10:21:03 UTC (rev 26233)
@@ -0,0 +1,2 @@
+version=3
+https://pypi.python.org/packages/source/d/django-celery-transactions/django-celery-transactions-([\d\.]+)\.tar\.gz




More information about the Python-modules-commits mailing list