abhilekhsingh / gc3pie

Automatically exported from code.google.com/p/gc3pie
0 stars 0 forks source link

install script not working with recent 'setuptools' package distribution #426

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
setuptools version 3.1 is now distributed in both .tar.gz and .zip format from 
PIP

the installation script 'install.sh' line 317
filters the available package using:
grep "source/./$pkg.*z" |sed 's:.*href="\([^#"]*\)["#].*:\1:g' | sort | tail -1 

this produces the link to the .zip package (while it should be the .tar.gz)

install.sh expects a .tar.gz for the setuptools, thus failing the installation.

Proposal: replace grep "source/./$pkg.*z" with grep "source/./$pkg.*gz"

Original issue reported on code.google.com by sergio.m...@gmail.com on 14 Mar 2014 at 1:14

GoogleCodeExporter commented 9 years ago
Fixed in revision 3838

Original comment by sergio.m...@gmail.com on 14 Mar 2014 at 10:07