1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
#!/bin/bash -xe
if [ -z "$VIRTUAL_ENV" ]; then
echo "Expected VIRTUAL_ENV to be set!"
exit 1
fi
if [ -n "$ISAL_DIR" ]; then
if [ ! -d "$ISAL_DIR" ]; then
git clone https://github.com/intel/isa-l.git -b v2.30.0 "$ISAL_DIR"
fi
pushd "$ISAL_DIR"
./autogen.sh
./configure --prefix "$VIRTUAL_ENV"
make
make install
popd
fi
if [ -n "$GFCOMPLETE_DIR" ]; then
if [ ! -d "$GFCOMPLETE_DIR" ]; then
git clone https://github.com/ceph/gf-complete.git "$GFCOMPLETE_DIR"
fi
pushd "$GFCOMPLETE_DIR"
./autogen.sh
./configure --prefix "$VIRTUAL_ENV"
make
make install
popd
fi
if [ -n "$JERASURE_DIR" ]; then
if [ -z "$GFCOMPLETE_DIR" ]; then
echo "JERASURE_DIR requires that GFCOMPLETE_DIR be set!"
exit 1
fi
if [ ! -d "$JERASURE_DIR" ]; then
git clone https://github.com/ceph/jerasure.git "$JERASURE_DIR"
fi
pushd "$JERASURE_DIR"
autoreconf --force --install
LD_LIBRARY_PATH="$VIRTUAL_ENV"/lib ./configure --prefix "$VIRTUAL_ENV" LDFLAGS="-L$VIRTUAL_ENV/lib" CPPFLAGS="-I$VIRTUAL_ENV/include"
make
make install
popd
fi
if [ -z "$LIBERASURECODE_DIR" ]; then
echo "Expected LIBERASURECODE_DIR to be set!"
exit 1
fi
if [ ! -d "$LIBERASURECODE_DIR" ]; then
git clone https://opendev.org/openstack/liberasurecode.git "$LIBERASURECODE_DIR"
fi
pushd "$LIBERASURECODE_DIR"
if [ -n "$LIBERASURECODE_REF" ]; then
git fetch origin "$LIBERASURECODE_REF"
git checkout FETCH_HEAD
fi
./autogen.sh
./configure --prefix "$VIRTUAL_ENV"
make
make install
popd
pip install "$@"
|