mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-22 06:01:26 +02:00
13 lines
437 B
Bash
13 lines
437 B
Bash
#!/bin/sh
|
|
|
|
echo "*" >&2
|
|
echo "* Certain optional features of scapy also depend on the following packages:" >&2
|
|
echo "* py3-matplotlib graphviz imagemagick py3-cryptography sox" >&2
|
|
echo "* And the following unpackaged dependencies:" >&2
|
|
echo "* pyxi vpython-jupyter nmap<v4.23" >&2
|
|
echo "* More information can be found at https://scapy.readthedocs.io/en/latest/installation.html#optional-dependencies" >&2
|
|
echo "*" >&2
|
|
|
|
exit 0
|
|
|