Added add-django.contrib.sites-to-installed-apps.patch.

This commit is contained in:
Thomas Goirand
2015-12-28 14:38:38 +00:00
parent e6d8831c23
commit 20b930c831
3 changed files with 17 additions and 0 deletions

1
debian/changelog vendored
View File

@@ -5,6 +5,7 @@ python-jingo (0.8-1) unstable; urgency=medium
* Added fix-removed-TemplateDoesNotExist-from-django-1.9.patch
(Closes: #806365).
* Added fix-django.utils.importlib-removed-from-django-1.9.patch.
* Added add-django.contrib.sites-to-installed-apps.patch.
-- Thomas Goirand <zigo@debian.org> Mon, 28 Dec 2015 10:04:05 +0000

View File

@@ -0,0 +1,15 @@
Description: Add django.contrib.sites to INSATLLED_APPS
Author: Thomas Goirand <zigo@debian.org>
Forwarded: no
Last-Update: 2015-12-28
--- python-jingo-0.8.orig/fake_settings.py
+++ python-jingo-0.8/fake_settings.py
@@ -7,6 +7,7 @@ INSTALLED_APPS = (
'django.contrib.admin.apps.SimpleAdminConfig',
'jingo.tests.jinja_app',
'jingo.tests.django_app',
+ 'django.contrib.sites',
)
TEMPLATE_LOADERS = (
'jingo.Loader',

View File

@@ -2,3 +2,4 @@ removed-problematic-functions-with-python3.patch
fix-run_tests.py-with-django-1.7.patch
fix-removed-TemplateDoesNotExist-from-django-1.9.patch
fix-django.utils.importlib-removed-from-django-1.9.patch
add-django.contrib.sites-to-installed-apps.patch