* Added do-not-use-django.utils.unittest.patch.
* Added fixed-removed-TemplateDoesNotExist.patch.
* Added handle-django.forms.util-rename.patch.
+ * Added explicitly-declare-app_label.patch.
-- Thomas Goirand <zigo@debian.org> Mon, 11 Jan 2016 02:54:28 +0000
--- /dev/null
+Description: Explicitly declares app_label
+Author: Thomas Goirand <zigo@debian.org>
+Forwarded: no
+Last-Update: 2016-01-11
+
+--- horizon-8.0.0.orig/horizon/test/settings.py
++++ horizon-8.0.0/horizon/test/settings.py
+@@ -183,3 +183,6 @@ LOGGING = {
+ }
+ }
+ }
++
++app_label = 'horizon'
++APP_LABEL = 'horizon'
+--- horizon-8.0.0.orig/openstack_dashboard/local/local_settings.py.example
++++ horizon-8.0.0/openstack_dashboard/local/local_settings.py.example
+@@ -664,3 +664,6 @@ REST_API_REQUIRED_SETTINGS = ['OPENSTACK
+ # For more information see:
+ # http://tinyurl.com/anticlickjack
+ #DISALLOW_IFRAME_EMBED = True
++
++app_label = 'horizon'
++APP_LABEL = 'horizon'
+--- horizon-8.0.0.orig/openstack_dashboard/test/settings.py
++++ horizon-8.0.0/openstack_dashboard/test/settings.py
+@@ -227,3 +227,6 @@ REST_API_SETTING_2 = 'bar'
+ REST_API_SECURITY = 'SECURITY'
+ REST_API_REQUIRED_SETTINGS = ['REST_API_SETTING_1']
+ REST_API_ADDITIONAL_SETTINGS = ['REST_API_SETTING_2']
++
++app_label = 'horizon'
++APP_LABEL = 'horizon'
do-not-use-django.utils.unittest.patch
fixed-removed-TemplateDoesNotExist.patch
handle-django.forms.util-rename.patch
+explicitly-declare-app_label.patch