summary refs log tree commit diff
path: root/util/install
diff options
context:
space:
mode:
authorZach White <skullydazed@gmail.com>2021-02-13 10:26:45 -0800
committerGitHub <noreply@github.com>2021-02-13 10:26:45 -0800
commitcd336b2b545798269405e8ffef0fe8958d4d27d4 (patch)
treed463b119356c8b9c4af9674a23d128cf3a957163 /util/install
parent57d2409c081c2fd546036a6b15dfbd9481fddc1d (diff)
bump to python 3.7 (#11408)
Diffstat (limited to 'util/install')
-rwxr-xr-xutil/install/gentoo.sh2
-rwxr-xr-xutil/install/opensuse.sh31
-rwxr-xr-xutil/install/sabayon.sh15
3 files changed, 1 insertions, 47 deletions
diff --git a/util/install/gentoo.sh b/util/install/gentoo.sh
index d4284e9a93..97eb5df07f 100755
--- a/util/install/gentoo.sh
+++ b/util/install/gentoo.sh
@@ -23,7 +23,7 @@ _qmk_install() {
     sudo emerge -auN sys-devel/gcc
     sudo emerge -au --noreplace \
         app-arch/unzip app-arch/zip net-misc/wget sys-devel/clang sys-devel/crossdev \
-        \>=dev-lang/python-3.6 \
+        \>=dev-lang/python-3.7 \
         dev-embedded/avrdude dev-embedded/dfu-programmer app-mobilephone/dfu-util
 
     sudo crossdev -s4 --stable --g \<9 --portage --verbose --target avr
diff --git a/util/install/opensuse.sh b/util/install/opensuse.sh
deleted file mode 100755
index 47b44ae364..0000000000
--- a/util/install/opensuse.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/bash
-
-_qmk_install_prepare() {
-    case $(grep ID /etc/os-release) in
-        *15.1*)
-            REPO_RELEASE=Leap_15.1;;
-        *15.2*)
-            REPO_RELEASE=Leap_15.2;;
-        *)
-            #REPO_RELEASE=Tumbleweed;;
-            echo "ERROR: Tumbleweed is currently not supported."
-            exit 1
-    esac
-
-    sudo zypper addrepo https://download.opensuse.org/repositories/devel:gcc/openSUSE_$REPO_RELEASE/devel:gcc.repo
-    sudo zypper addrepo https://download.opensuse.org/repositories/hardware/openSUSE_$REPO_RELEASE/hardware.repo
-    sudo zypper --gpg-auto-import-keys refresh
-}
-
-_qmk_install() {
-    echo "Installing dependencies"
-
-    sudo zypper install -y \
-        make clang gcc unzip wget zip \
-        python3-pip \
-        cross-avr-binutils cross-avr-gcc8 avr-libc \
-        cross-arm-binutils cross-arm-none-gcc8 cross-arm-none-newlib-devel \
-        avrdude dfu-programmer dfu-util
-
-    python3 -m pip install --user -r $QMK_FIRMWARE_DIR/requirements.txt
-}
diff --git a/util/install/sabayon.sh b/util/install/sabayon.sh
deleted file mode 100755
index fd4f4d8dfd..0000000000
--- a/util/install/sabayon.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-_qmk_install() {
-    echo "Installing dependencies"
-
-    sudo equo install \
-        app-arch/unzip app-arch/zip net-misc/wget dev-vcs/git sys-devel/clang sys-devel/gcc sys-devel/crossdev \
-        dev-python/pip \
-        dev-embedded/avrdude dev-embedded/dfu-programmer app-mobilephone/dfu-util
-
-    sudo crossdev -s4 --stable --g \<9 --portage --verbose --target avr
-    sudo crossdev -s4 --stable --g \<9 --portage --verbose --target arm-none-eabi
-
-    python3 -m pip install --user -r $QMK_FIRMWARE_DIR/requirements.txt
-}