[Python-modules-commits] r30815 - in packages/python-django-jsonfield/tags (5 files)
bam at users.alioth.debian.org
bam at users.alioth.debian.org
Mon Sep 29 05:55:04 UTC 2014
Date: Monday, September 29, 2014 @ 05:55:03
Author: bam
Revision: 30815
[svn-buildpackage] Tagging python-django-jsonfield 0.9.13-2
Added:
packages/python-django-jsonfield/tags/0.9.13-2/
packages/python-django-jsonfield/tags/0.9.13-2/debian/changelog
(from rev 30811, packages/python-django-jsonfield/trunk/debian/changelog)
packages/python-django-jsonfield/tags/0.9.13-2/debian/run_tests.py
(from rev 30811, packages/python-django-jsonfield/trunk/debian/run_tests.py)
Deleted:
packages/python-django-jsonfield/tags/0.9.13-2/debian/changelog
packages/python-django-jsonfield/tags/0.9.13-2/debian/run_tests.py
Deleted: packages/python-django-jsonfield/tags/0.9.13-2/debian/changelog
===================================================================
--- packages/python-django-jsonfield/trunk/debian/changelog 2014-09-29 01:53:31 UTC (rev 30810)
+++ packages/python-django-jsonfield/tags/0.9.13-2/debian/changelog 2014-09-29 05:55:03 UTC (rev 30815)
@@ -1,33 +0,0 @@
-python-django-jsonfield (0.9.13-1) unstable; urgency=low
-
- * New upstream release.
- * Python3 patch no longer required; deleted.
-
- -- Brian May <bam at debian.org> Mon, 07 Jul 2014 08:58:49 +1000
-
-python-django-jsonfield (0.9.12-3) unstable; urgency=low
-
- * Python3 package. Closes: #753462.
-
- -- Brian May <bam at debian.org> Wed, 02 Jul 2014 16:15:14 +1000
-
-python-django-jsonfield (0.9.12-2) unstable; urgency=medium
-
- * Add python-django to Build-Depends to fix test suite run.
-
- -- Raphaël Hertzog <hertzog at debian.org> Fri, 24 Jan 2014 21:02:27 +0100
-
-python-django-jsonfield (0.9.12-1) unstable; urgency=high
-
- * New upstream version.
- * Compatible with Django 1.6 (which is already in testing, hence the
- severity).
- * Switch to pybuild in anticipation of Python 3 support.
-
- -- Raphaël Hertzog <hertzog at debian.org> Tue, 21 Jan 2014 08:43:20 +0100
-
-python-django-jsonfield (0.9.10-1) unstable; urgency=low
-
- * Initial release. Closes: #717830
-
- -- Raphaël Hertzog <hertzog at debian.org> Thu, 25 Jul 2013 14:51:15 +0200
Copied: packages/python-django-jsonfield/tags/0.9.13-2/debian/changelog (from rev 30811, packages/python-django-jsonfield/trunk/debian/changelog)
===================================================================
--- packages/python-django-jsonfield/tags/0.9.13-2/debian/changelog (rev 0)
+++ packages/python-django-jsonfield/tags/0.9.13-2/debian/changelog 2014-09-29 05:55:03 UTC (rev 30815)
@@ -0,0 +1,40 @@
+python-django-jsonfield (0.9.13-2) unstable; urgency=low
+
+ * Fix Django 1.7 AppRegistryNotReady error, by calling django.setup() in
+ tests. Closes: #763240.
+
+ -- Brian May <bam at debian.org> Mon, 29 Sep 2014 12:04:08 +1000
+
+python-django-jsonfield (0.9.13-1) unstable; urgency=low
+
+ * New upstream release.
+ * Python3 patch no longer required; deleted.
+
+ -- Brian May <bam at debian.org> Mon, 07 Jul 2014 08:58:49 +1000
+
+python-django-jsonfield (0.9.12-3) unstable; urgency=low
+
+ * Python3 package. Closes: #753462.
+
+ -- Brian May <bam at debian.org> Wed, 02 Jul 2014 16:15:14 +1000
+
+python-django-jsonfield (0.9.12-2) unstable; urgency=medium
+
+ * Add python-django to Build-Depends to fix test suite run.
+
+ -- Raphaël Hertzog <hertzog at debian.org> Fri, 24 Jan 2014 21:02:27 +0100
+
+python-django-jsonfield (0.9.12-1) unstable; urgency=high
+
+ * New upstream version.
+ * Compatible with Django 1.6 (which is already in testing, hence the
+ severity).
+ * Switch to pybuild in anticipation of Python 3 support.
+
+ -- Raphaël Hertzog <hertzog at debian.org> Tue, 21 Jan 2014 08:43:20 +0100
+
+python-django-jsonfield (0.9.10-1) unstable; urgency=low
+
+ * Initial release. Closes: #717830
+
+ -- Raphaël Hertzog <hertzog at debian.org> Thu, 25 Jul 2013 14:51:15 +0200
Deleted: packages/python-django-jsonfield/tags/0.9.13-2/debian/run_tests.py
===================================================================
--- packages/python-django-jsonfield/trunk/debian/run_tests.py 2014-09-29 01:53:31 UTC (rev 30810)
+++ packages/python-django-jsonfield/tags/0.9.13-2/debian/run_tests.py 2014-09-29 05:55:03 UTC (rev 30815)
@@ -1,23 +0,0 @@
-#!/usr/bin/python
-
-import os
-import sys
-sys.path.insert(0, os.getcwd())
-
-from django.conf import settings
-settings.configure(
- INSTALLED_APPS=['jsonfield'],
- DATABASES={
- 'default': {
- 'ENGINE': 'django.db.backends.sqlite3',
- 'NAME': 'tests.db',
- 'USER': '',
- 'PASSWORD': '',
- 'HOST': '',
- 'PORT': '',
- }
- }
-)
-
-from django.core import management
-management.call_command('test')
Copied: packages/python-django-jsonfield/tags/0.9.13-2/debian/run_tests.py (from rev 30811, packages/python-django-jsonfield/trunk/debian/run_tests.py)
===================================================================
--- packages/python-django-jsonfield/tags/0.9.13-2/debian/run_tests.py (rev 0)
+++ packages/python-django-jsonfield/tags/0.9.13-2/debian/run_tests.py 2014-09-29 05:55:03 UTC (rev 30815)
@@ -0,0 +1,26 @@
+#!/usr/bin/python
+
+import os
+import sys
+sys.path.insert(0, os.getcwd())
+
+from django.conf import settings
+settings.configure(
+ INSTALLED_APPS=['jsonfield'],
+ DATABASES={
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': 'tests.db',
+ 'USER': '',
+ 'PASSWORD': '',
+ 'HOST': '',
+ 'PORT': '',
+ }
+ }
+)
+
+import django
+django.setup()
+
+from django.core import management
+management.call_command('test')
More information about the Python-modules-commits
mailing list