From: Julien Danjou Date: Wed, 30 Nov 2011 13:38:23 +0000 (+0100) Subject: Fix templates installation X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=699ebf1e3904a32ee4ed2ec39e31a065f5ac44dd;p=openstack-build%2Fhorizon-build.git Fix templates installation Signed-off-by: Julien Danjou Rewritten-From: 51ef67edf9ca4cfff5d7b7fd24904b2838a3ff9b --- diff --git a/xenial/debian/patches/fix_templates_installation b/xenial/debian/patches/fix_templates_installation new file mode 100644 index 0000000..35a5be5 --- /dev/null +++ b/xenial/debian/patches/fix_templates_installation @@ -0,0 +1,21 @@ +Description: Add missing templates install in setup.py +Author: Julien Danjou + +--- +Origin: other +Forwarded: https://review.openstack.org/#change,1965 +Last-Update: 2011-11-30 + +--- horizon-2012.1~e1.orig/horizon/setup.py ++++ horizon-2012.1~e1/horizon/setup.py +@@ -37,7 +37,9 @@ setup( + packages = find_packages(), + package_data = {'horizon': + [s[len('horizon/'):] for s in +- findall('horizon/templates')]}, ++ findall('horizon/templates') \ ++ + findall('horizon/dashboards/nova/templates') \ ++ + findall('horizon/dashboards/settings/templates')]}, + install_requires = ['setuptools', 'mox>=0.5.3', 'django_nose'], + classifiers = [ + 'Development Status :: 4 - Beta', diff --git a/xenial/debian/patches/series b/xenial/debian/patches/series index 490ead5..36a49cc 100644 --- a/xenial/debian/patches/series +++ b/xenial/debian/patches/series @@ -1,3 +1,4 @@ 3e8413be302d8c75da8996a6e3b73d619b2e7b34 fix_django.wsgi_sys.path remove_django_mailer +fix_templates_installation