Mercurial > hgweb > health
changeset 1032:ec7d201bef88
GNU Health Installer : Fix bug #40171: Unmet dependency error of package "six"
removed from qrcode.
https://savannah.gnu.org/bugs/index.php?40171
| author | Bruno M. Villasanti <bvillasanti@thymbra.com> |
|---|---|
| date | Fri, 04 Oct 2013 01:44:47 -0300 |
| parents | cba1aa443bbc |
| children | cfe7cc8ea722 |
| files | tryton/gnuhealth_install.sh |
| diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/tryton/gnuhealth_install.sh +++ b/tryton/gnuhealth_install.sh @@ -111,11 +111,12 @@ local PIP_VOBJECT="vobject" local PIP_PYWEBDAV="pywebdav" local PIP_QRCODE="qrcode" + local PIP_SIX="six" local PIP_PIL="PIL" local PIP_CALDAV="caldav" local PIP_POLIB="polib" - local PIP_PKGS="$PIP_LXML $PIP_RELATORIO $PIP_DATEUTIL $PIP_PSYCOPG2 $PIP_LDAP $PIP_VOBJECT $PIP_PYWEBDAV $PIP_QRCODE $PIP_PIL $PIP_CALDAV $PIP_POLIB" + local PIP_PKGS="$PIP_LXML $PIP_RELATORIO $PIP_DATEUTIL $PIP_PSYCOPG2 $PIP_LDAP $PIP_VOBJECT $PIP_PYWEBDAV $PIP_QRCODE $PIP_SIX $PIP_PIL $PIP_CALDAV $PIP_POLIB" message "[INFO] Installing python dependencies with pip-${PIP_VERSION} ..." ${YELLOW}
