diff options
Diffstat (limited to 'install/ishtar-install')
-rwxr-xr-x | install/ishtar-install | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/install/ishtar-install b/install/ishtar-install index 2a9d6fc5b..a34b1984c 100755 --- a/install/ishtar-install +++ b/install/ishtar-install @@ -377,9 +377,9 @@ EOF cecho y "Installing Ishtar dependencies" echo ""; ( set -x; $sh_c 'sleep 3; apt-get install -t jessie-backports -y -q python python-django\ - python-django-registration' ) + python-django-registration python-cffi' ) ( set -x; $sh_c 'sleep 3; apt-get install -y -q \ - python-pisa python-bs4 python-django-formtools\ + python-bs4 python-django-formtools libpangocairo-1.0-0 \ python-tidylib python-lxml python-imaging python-html5lib \ python-psycopg2 python-gdal gettext python-unicodecsv memcached \ python-django-extra-views python-memcache python-dbf python-markdown' ) @@ -394,6 +394,9 @@ EOF cecho y "Installing python-ajax-select (available version in Debian is not compatible with backported Django)" echo ""; ( set -x; $sh_c 'pip install django-ajax-selects==1.4.3' ) + cecho y "Installing weasyprint" + echo ""; + ( set -x; $sh_c 'pip install WeasyPrint==0.41' ) fi @@ -421,8 +424,8 @@ EOF echo ""; ( set -x; $sh_c 'sleep 3; apt-get install -t stretch-backports -y -q python-django' ) ( set -x; $sh_c 'sleep 3; apt-get install -y -q \ - python-django-registration \ - python-bs4 python-django-formtools \ + python-django-registration libpangocairo-1.0-0 \ + python-bs4 python-django-formtools python-cffi \ python-tidylib python-lxml python-imaging python-html5lib \ python-psycopg2 python-gdal gettext python-unicodecsv memcached \ python-django-extra-views python-memcache python-dbf python-markdown \ @@ -435,10 +438,9 @@ EOF cecho y "Installing python-secretary" echo ""; ( set -x; $sh_c 'pip install secretary==0.2.14' ) - - cecho y "Installing python-pisa (not available anymore as a debian package)" + cecho y "Installing weasyprint" echo ""; - ( set -x; $sh_c 'pip install pisa==3.0.33' ) + ( set -x; $sh_c 'pip install WeasyPrint==0.41' ) fi ;; |