mirror of https://github.com/n1nj4sec/pupy.git
client/windows: New version of wheel breaks fs in wine
This commit is contained in:
parent
d82ebd4354
commit
d19ca43f96
|
@ -18,7 +18,7 @@ set -e
|
|||
echo "[+] Install python packages"
|
||||
|
||||
$PIP_INSTALL pip
|
||||
$PIP_INSTALL setuptools cython
|
||||
$PIP_INSTALL setuptools cython wheel
|
||||
$PIP_INSTALL -q six packaging appdirs
|
||||
|
||||
CC=/gccwrap CFLAGS_ABORT="-D_FORTIFY_SOURCE=2 -fstack-protector" \
|
||||
|
@ -46,8 +46,8 @@ $PIP_INSTALL \
|
|||
https://github.com/warner/python-ed25519/archive/master.zip \
|
||||
https://github.com/alxchk/urllib-auth/archive/master.zip \
|
||||
https://github.com/alxchk/pykcp/archive/master.zip \
|
||||
zeroconf==0.19.1 pyodbc \
|
||||
watchdog pulsectl pycryptodomex==3.7.0 --no-binary :all:
|
||||
zeroconf==0.19.1 pyodbc watchdog pulsectl pycryptodomex==3.7.0 \
|
||||
--no-binary :all: --only-binary wheel
|
||||
|
||||
LDFLAGS="$LDFLAGS -lm -lasound" CFLAGS="$CFLAGS -std=gnu99" \
|
||||
$PIP_INSTALL pyalsaaudio --no-binary :all:
|
||||
|
|
|
@ -29,12 +29,13 @@ PYOPUS=$EXTERNAL/pyopus/src
|
|||
echo "[+] Install python packages"
|
||||
for PYTHON in $PYTHON32 $PYTHON64; do
|
||||
$PYTHON -m pip install -q --upgrade pip
|
||||
$PYTHON -m pip install -q --upgrade setuptools cython
|
||||
$PYTHON -m pip install -q --upgrade setuptools cython wheel
|
||||
|
||||
# Still problems here
|
||||
$PYTHON -m pip install -q --upgrade pynacl
|
||||
|
||||
$PYTHON -m pip install --upgrade --no-binary :all: $PACKAGES_BUILD
|
||||
$PYTHON -m pip install --upgrade --no-binary :all: \
|
||||
--only-binary wheel $PACKAGES_BUILD
|
||||
|
||||
NO_JAVA=1 \
|
||||
$PYTHON -m pip install --upgrade --force-reinstall \
|
||||
|
|
Loading…
Reference in New Issue