- base image changed from Fedora 31 to Fedora 32 - disambiguate base image to use docker.io registry - pystache and python-casasndra-driver are no longer availble, so use pip3 to install them. Add pip3 to packages. - since pip3 installs commands to /usr/local/bin, update checks in build_deb to check for those too Fedora 32 packages gcc 10, which has support for coroutines. Message-Id: <20200521063138.1426400-1-avi@scylladb.com>
37 lines
1.2 KiB
Bash
Executable File
37 lines
1.2 KiB
Bash
Executable File
#!/bin/bash -e
|
|
#
|
|
# Copyright (C) 2019 ScyllaDB
|
|
#
|
|
|
|
#
|
|
# This file is part of Scylla.
|
|
#
|
|
# Scylla is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Scylla is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Scylla. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
TARGET=build/release/scylla-python3-package.tar.gz
|
|
|
|
if [ -f "$TARGET" ]; then
|
|
rm "$TARGET"
|
|
fi
|
|
|
|
./SCYLLA-VERSION-GEN
|
|
mkdir -p build/python3
|
|
PYVER=$(python3 -V | cut -d' ' -f2)
|
|
echo "$PYVER" > build/python3/SCYLLA-VERSION-FILE
|
|
ln -fv build/SCYLLA-RELEASE-FILE build/python3/SCYLLA-RELEASE-FILE
|
|
|
|
PACKAGES="python3-pyyaml python3-urwid python3-pyparsing python3-requests python3-pyudev python3-setuptools python3-psutil"
|
|
./scripts/create-relocatable-package-python3.py --output "$TARGET" $PACKAGES
|