commit 5c307a89c22cfd2d3b38d8215539324213fafcfb Author: Georg Koppen gk@torproject.org Date: Fri Jul 18 21:13:05 2014 +0000
Bug 12381: Make PTs + proxy working on Windows.
py2exe does not cope with zipped .egg files and raises an import error if it encounters a respective module. We work around this bug by using not the 'install' but the 'install_lib' target when building and installing txsocksx. --- gitian/descriptors/windows/gitian-pluggable-transports.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gitian/descriptors/windows/gitian-pluggable-transports.yml b/gitian/descriptors/windows/gitian-pluggable-transports.yml index 341c6aa..fb79422 100644 --- a/gitian/descriptors/windows/gitian-pluggable-transports.yml +++ b/gitian/descriptors/windows/gitian-pluggable-transports.yml @@ -231,7 +231,7 @@ script: | # dependency should be fine here as txsocksx catches the exception due to # missing __version__ and __sha__ . mkdir vcversioner-1.14.1.1-py2.7.egg - LD_PRELOAD= $INSTPYTHON setup.py install + LD_PRELOAD= $INSTPYTHON setup.py install_lib cd ..
# Building obfsproxy
tbb-commits@lists.torproject.org