#!/usr/bin/env bash # -*- mode:sh; tab-width:8; indent-tabs-mode:t -*- # # Ceph distributed storage system # # Copyright (C) 2014, 2015 Red Hat # # Author: Loic Dachary # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # set -e DIR=/tmp/install-deps.$$ trap "rm -fr $DIR" EXIT mkdir -p $DIR if test $(id -u) != 0 ; then SUDO=sudo fi export LC_ALL=C # the following is vulnerable to i18n ARCH=$(uname -m) function munge_ceph_spec_in { local with_seastar=$1 shift local for_make_check=$1 shift local OUTFILE=$1 sed -e 's/@//g' < ceph.spec.in > $OUTFILE # http://rpm.org/user_doc/conditional_builds.html if $with_seastar; then sed -i -e 's/%bcond_with seastar/%bcond_without seastar/g' $OUTFILE fi if $for_make_check; then sed -i -e 's/%bcond_with make_check/%bcond_without make_check/g' $OUTFILE fi } function munge_debian_control { local version=$1 shift local with_seastar=$1 shift local for_make_check=$1 shift local control=$1 case "$version" in *squeeze*|*wheezy*) control="/tmp/control.$$" grep -v babeltrace debian/control > $control ;; esac if $with_seastar; then sed -i -e 's/^# Crimson[[:space:]]//g' $control fi if $for_make_check; then sed -i 's/^# Make-Check[[:space:]]/ /g' $control fi echo $control } function ensure_decent_gcc_on_ubuntu { # point gcc to the one offered by g++-7 if the used one is not # new enough local old=$(gcc -dumpfullversion -dumpversion) local new=$1 local codename=$2 if dpkg --compare-versions $old ge ${new}.0; then return fi if [ ! -f /usr/bin/g++-${new} ]; then $SUDO tee /etc/apt/sources.list.d/ubuntu-toolchain-r.list < /dev/null; then local old=$(cmake --version | grep -Po 'version \K[0-9].*') if dpkg --compare-versions $old ge $new; then return fi fi install_pkg_on_ubuntu \ ceph-cmake \ d278b9d28de0f6b88f56dfe1e8bf684a41577210 \ xenial \ force \ cmake } function install_pkg_on_ubuntu { local project=$1 shift local sha1=$1 shift local codename=$1 shift local force=$1 shift local pkgs=$@ local missing_pkgs if [ $force = "force" ]; then missing_pkgs="$@" else for pkg in $pkgs; do if ! dpkg -s $pkg &> /dev/null; then missing_pkgs+=" $pkg" fi done fi if test -n "$missing_pkgs"; then local shaman_url="https://shaman.ceph.com/api/repos/${project}/master/${sha1}/ubuntu/${codename}/repo" $SUDO curl --silent --location $shaman_url --output /etc/apt/sources.list.d/$project.list $SUDO env DEBIAN_FRONTEND=noninteractive apt-get update -y -o Acquire::Languages=none -o Acquire::Translation=none || true $SUDO env DEBIAN_FRONTEND=noninteractive apt-get install --allow-unauthenticated -y $missing_pkgs fi } function install_boost_on_ubuntu { local codename=$1 install_pkg_on_ubuntu \ ceph-libboost1.67 \ dd38c27740c1f9a9e6719a07eef84a1369dc168b \ $codename \ check \ ceph-libboost-atomic1.67-dev \ ceph-libboost-chrono1.67-dev \ ceph-libboost-container1.67-dev \ ceph-libboost-context1.67-dev \ ceph-libboost-coroutine1.67-dev \ ceph-libboost-date-time1.67-dev \ ceph-libboost-filesystem1.67-dev \ ceph-libboost-iostreams1.67-dev \ ceph-libboost-program-options1.67-dev \ ceph-libboost-python1.67-dev \ ceph-libboost-random1.67-dev \ ceph-libboost-regex1.67-dev \ ceph-libboost-system1.67-dev \ ceph-libboost-test1.67-dev \ ceph-libboost-thread1.67-dev \ ceph-libboost-timer1.67-dev } function version_lt { test $1 != $(echo -e "$1\n$2" | sort -rV | head -n 1) } function ensure_decent_gcc_on_rh { local old=$(gcc -dumpversion) local expected=5.1 local dts_ver=$1 if version_lt $old $expected; then if test -t 1; then # interactive shell cat <= 22" | bc)" -ne 0; then yumdnf="dnf" builddepcmd="dnf -y builddep --allowerasing" fi echo "Using $yumdnf to install dependencies" if [ "$ID" = "centos" -a "$ARCH" = "aarch64" ]; then $SUDO yum-config-manager --disable centos-sclo-sclo || true $SUDO yum-config-manager --disable centos-sclo-rh || true $SUDO yum remove centos-release-scl || true fi case "$ID" in fedora) if test $yumdnf = yum; then $SUDO $yumdnf install -y yum-utils fi ;; centos|rhel|ol|virtuozzo) MAJOR_VERSION="$(echo $VERSION_ID | cut -d. -f1)" $SUDO yum install -y yum-utils if test $ID = rhel ; then $SUDO yum-config-manager --enable rhel-$MAJOR_VERSION-server-optional-rpms fi rpm --quiet --query epel-release || \ $SUDO yum -y install --nogpgcheck https://dl.fedoraproject.org/pub/epel/epel-release-latest-$MAJOR_VERSION.noarch.rpm $SUDO rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-$MAJOR_VERSION $SUDO rm -f /etc/yum.repos.d/dl.fedoraproject.org* if test $ID = centos -a $MAJOR_VERSION = 7 ; then case "$ARCH" in x86_64) $SUDO yum -y install centos-release-scl dts_ver=8 ;; aarch64) $SUDO yum -y install centos-release-scl-rh $SUDO yum-config-manager --disable centos-sclo-rh $SUDO yum-config-manager --enable centos-sclo-rh-testing dts_ver=8 ;; esac elif test $ID = rhel -a $MAJOR_VERSION = 7 ; then $SUDO yum-config-manager \ --enable rhel-server-rhscl-7-rpms \ --enable rhel-7-server-devtools-rpms dts_ver=8 elif test $ID = centos -a $MAJOR_VERSION = 8 ; then $SUDO dnf config-manager --set-enabled PowerTools elif test $ID = rhel -a $MAJOR_VERSION = 8 ; then $SUDO subscription-manager repos --enable "codeready-builder-for-rhel-8-*-rpms" fi ;; esac munge_ceph_spec_in $with_seastar $for_make_check $DIR/ceph.spec # for python3_pkgversion macro defined by python-srpm-macros, which is required by python3-devel $SUDO $yumdnf install -y python3-devel $SUDO $builddepcmd $DIR/ceph.spec 2>&1 | tee $DIR/yum-builddep.out [ ${PIPESTATUS[0]} -ne 0 ] && exit 1 if [ -n "$dts_ver" ]; then ensure_decent_gcc_on_rh $dts_ver fi IGNORE_YUM_BUILDEP_ERRORS="ValueError: SELinux policy is not managed or store cannot be accessed." sed "/$IGNORE_YUM_BUILDEP_ERRORS/d" $DIR/yum-builddep.out | grep -qi "error:" && exit 1 ;; opensuse*|suse|sles) echo "Using zypper to install dependencies" zypp_install="zypper --gpg-auto-import-keys --non-interactive install --no-recommends" $SUDO $zypp_install systemd-rpm-macros munge_ceph_spec_in $with_seastar $for_make_check $DIR/ceph.spec $SUDO $zypp_install $(rpmspec -q --buildrequires $DIR/ceph.spec) || exit 1 ;; alpine) # for now we need the testing repo for leveldb TESTREPO="http://nl.alpinelinux.org/alpine/edge/testing" if ! grep -qF "$TESTREPO" /etc/apk/repositories ; then $SUDO echo "$TESTREPO" | sudo tee -a /etc/apk/repositories > /dev/null fi source alpine/APKBUILD.in $SUDO apk --update add abuild build-base ccache $makedepends if id -u build >/dev/null 2>&1 ; then $SUDO addgroup build abuild fi ;; *) echo "$ID is unknown, dependencies will have to be installed manually." exit 1 ;; esac fi function populate_wheelhouse() { local install=$1 shift # although pip comes with virtualenv, having a recent version # of pip matters when it comes to using wheel packages PIP_OPTS="--timeout 300 --exists-action i" pip $PIP_OPTS $install \ 'setuptools >= 0.8' 'pip >= 7.0' 'wheel >= 0.24' 'tox >= 2.9.1' || return 1 if test $# != 0 ; then pip $PIP_OPTS $install $@ || return 1 fi } function activate_virtualenv() { local top_srcdir=$1 local interpreter=$2 local env_dir=$top_srcdir/install-deps-$interpreter if ! test -d $env_dir ; then # Make a temporary virtualenv to get a fresh version of virtualenv # because CentOS 7 has a buggy old version (v1.10.1) # https://github.com/pypa/virtualenv/issues/463 virtualenv ${env_dir}_tmp # install setuptools before upgrading virtualenv, as the latter needs # a recent setuptools for setup commands like `extras_require`. ${env_dir}_tmp/bin/pip install --upgrade setuptools ${env_dir}_tmp/bin/pip install --upgrade virtualenv ${env_dir}_tmp/bin/virtualenv --python $interpreter $env_dir rm -rf ${env_dir}_tmp . $env_dir/bin/activate if ! populate_wheelhouse install ; then rm -rf $env_dir return 1 fi fi . $env_dir/bin/activate } function preload_wheels_for_tox() { local ini=$1 shift pushd . cd $(dirname $ini) local require_files=$(ls *requirements*.txt 2>/dev/null) || true local constraint_files=$(ls *constraints*.txt 2>/dev/null) || true local require=$(echo -n "$require_files" | sed -e 's/^/-r /') local constraint=$(echo -n "$constraint_files" | sed -e 's/^/-c /') local md5=wheelhouse/md5 if test "$require"; then if ! test -f $md5 || ! md5sum -c $md5 > /dev/null; then rm -rf wheelhouse fi fi if test "$require" && ! test -d wheelhouse ; then for interpreter in python2.7 python3 ; do type $interpreter > /dev/null 2>&1 || continue activate_virtualenv $top_srcdir $interpreter || exit 1 populate_wheelhouse "wheel -w $wip_wheelhouse" $require $constraint || exit 1 done mv $wip_wheelhouse wheelhouse md5sum $require_files $constraint_files > $md5 fi popd } # use pip cache if possible but do not store it outside of the source # tree # see https://pip.pypa.io/en/stable/reference/pip_install.html#caching if $for_make_check; then mkdir -p install-deps-cache top_srcdir=$(pwd) export XDG_CACHE_HOME=$top_srcdir/install-deps-cache wip_wheelhouse=wheelhouse-wip # # preload python modules so that tox can run without network access # find . -name tox.ini | while read ini ; do preload_wheels_for_tox $ini done for interpreter in python2.7 python3 ; do rm -rf $top_srcdir/install-deps-$interpreter done rm -rf $XDG_CACHE_HOME git --version || (echo "Dashboard uses git to pull dependencies." ; false) fi