summaryrefslogtreecommitdiff
path: root/util/linux_install.sh
diff options
context:
space:
mode:
authorskullydazed <skullydazed@users.noreply.github.com>2019-05-06 10:56:34 -0700
committerGitHub <noreply@github.com>2019-05-06 10:56:34 -0700
commit99500243e10c12c0a5005da49aa1986947b27153 (patch)
tree7b33f10fcc52f6578f84830c823e518557168ccf /util/linux_install.sh
parentcb1935aaff0fed118954996fc7afb722b6ed21be (diff)
Make python a required build dependency (#5784)
* Make python a required build dependency * Add missing color * fixup sabayon linux per @BlitzKraft
Diffstat (limited to 'util/linux_install.sh')
-rwxr-xr-xutil/linux_install.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/util/linux_install.sh b/util/linux_install.sh
index 608975a915..5e2afe9998 100755
--- a/util/linux_install.sh
+++ b/util/linux_install.sh
@@ -25,6 +25,7 @@ if grep ID /etc/os-release | grep -qE "fedora"; then
kernel-headers \
make \
perl \
+ python3 \
unzip \
wget \
zip
@@ -47,6 +48,7 @@ elif grep ID /etc/os-release | grep -qE 'debian|ubuntu'; then
gcc-avr \
git \
libnewlib-arm-none-eabi \
+ python3 \
unzip \
wget \
zip
@@ -66,6 +68,7 @@ elif grep ID /etc/os-release | grep -q 'arch\|manjaro'; then
diffutils \
gcc \
git \
+ python \
unzip \
wget \
zip
@@ -87,6 +90,7 @@ elif grep ID /etc/os-release | grep -q gentoo; then
app-arch/zip \
app-mobilephone/dfu-util \
dev-embedded/avrdude \
+ dev-lang/python:3.5 \
net-misc/wget \
sys-devel/gcc \
sys-devel/crossdev
@@ -102,6 +106,7 @@ elif grep ID /etc/os-release | grep -q sabayon; then
app-arch/zip \
app-mobilephone/dfu-util \
dev-embedded/avrdude \
+ dev-lang/python \
net-misc/wget \
sys-devel/gcc \
sys-devel/crossdev
@@ -125,6 +130,7 @@ elif grep ID /etc/os-release | grep -qE "opensuse|tumbleweed"; then
dfu-tool \
dfu-programmer \
gcc \
+ python3 \
unzip \
wget \
zip
@@ -143,7 +149,8 @@ elif grep ID /etc/os-release | grep -q slackware; then
dfu-util \
arm-binutils \
arm-gcc \
- newlib
+ newlib \
+ python3
echo "Done!"
else
echo "Quitting..."