mirror of https://github.com/secdev/scapy.git
40 lines
1.1 KiB
Bash
40 lines
1.1 KiB
Bash
# Install dependencies using pip
|
||
if [ -z "$SCAPY_SUDO" -o "$SCAPY_SUDO" = "false" ]
|
||
then
|
||
SCAPY_SUDO=""
|
||
if [ "$TRAVIS_OS_NAME" = "osx" ]
|
||
then
|
||
PIP_INSTALL_FLAGS="--user"
|
||
fi
|
||
fi
|
||
|
||
if python --version 2>&1 | grep -q PyPy; then
|
||
# cryptography requires PyPy >= 2.6, Travis CI uses 2.5.0
|
||
$SCAPY_SUDO pip install $PIP_INSTALL_FLAGS ecdsa mock
|
||
else
|
||
$SCAPY_SUDO pip install $PIP_INSTALL_FLAGS cryptography ecdsa mock
|
||
fi
|
||
|
||
# Install coverage
|
||
if [ "$SCAPY_COVERAGE" = "yes" ]
|
||
then
|
||
$SCAPY_SUDO pip install $PIP_INSTALL_FLAGS coverage
|
||
fi
|
||
|
||
# Install pcap & dnet
|
||
if [ ! -z $SCAPY_USE_PCAPDNET ]
|
||
then
|
||
if [ "$TRAVIS_OS_NAME" = "linux" ]
|
||
then
|
||
$SCAPY_SUDO apt-get install python-libpcap python-dumbnet
|
||
elif [ "$TRAVIS_OS_NAME" = "osx" ]
|
||
then
|
||
mkdir -p /Users/travis/Library/Python/2.7/lib/python/site-packages
|
||
echo 'import site; site.addsitedir("/usr/local/lib/python2.7/site-packages")' >> /Users/travis/Library/Python/2.7/lib/python/site-packages/homebrew.pth
|
||
|
||
brew update
|
||
brew install --with-python libdnet
|
||
brew install .travis/pylibpcap.rb
|
||
fi
|
||
fi
|