opensuse: fix python 2.x install
openSUSE Tumbleweed is dropping python2-* packages so we need to stop intalling them. We can also stop installing those for Leap 15. which avoids a pip uninstall issue (as python2-six was still built with distribute). Change-Id: Ie93c8addb26aab3d0154c4b5b52423799abede91
This commit is contained in:
parent
ac250e5ab0
commit
68bb43535e
@ -6,4 +6,6 @@ fi
|
|||||||
set -eu
|
set -eu
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
install -m 0755 -o root -g root $(dirname $0)/../bin/* /usr/local/bin
|
for f in $(find $(dirname $0)/../bin/ -type f -executable -print); do
|
||||||
|
install -m 0755 -o root -g root $f /usr/local/bin
|
||||||
|
done
|
||||||
|
@ -59,9 +59,15 @@ if [[ $DISTRO_NAME =~ (opensuse|fedora|centos|centos7|rhel|rhel7) ]]; then
|
|||||||
packages="python-virtualenv python-pip python-setuptools"
|
packages="python-virtualenv python-pip python-setuptools"
|
||||||
_clear_old_files=1
|
_clear_old_files=1
|
||||||
;;
|
;;
|
||||||
tumbleweed|15*)
|
15*)
|
||||||
# XXX: python3?
|
# XXX: python3?
|
||||||
packages="python2-virtualenv python2-pip python2-setuptools"
|
packages="python-xml python"
|
||||||
|
packages+=" python3-virtualenv python3-pip python3-setuptools"
|
||||||
|
;;
|
||||||
|
tumbleweed)
|
||||||
|
### _do_py3=1
|
||||||
|
packages="python-xml python"
|
||||||
|
packages+=" python3-virtualenv python3-pip python3-setuptools"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
Loading…
Reference in New Issue
Block a user