X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/10c1e7359286edd6562c52304e9706449a9ee53f..741b677dc5e85f60bc03ef130873e49ac0b75766:/build/run-library.sh diff --git a/build/run-library.sh b/build/run-library.sh index 8ba14949d3..1971a33d05 100755 --- a/build/run-library.sh +++ b/build/run-library.sh @@ -11,7 +11,7 @@ LICENSE_PACKAGE_TS=20151208015500 if [[ -z "$ARVADOS_BUILDING_VERSION" ]]; then - RAILS_PACKAGE_ITERATION=8 + RAILS_PACKAGE_ITERATION=1 else RAILS_PACKAGE_ITERATION="$ARVADOS_BUILDING_ITERATION" fi @@ -40,27 +40,23 @@ EOF format_last_commit_here() { local format="$1"; shift - TZ=UTC git log -n1 --first-parent "--format=format:$format" . + local dir="${1:-.}"; shift + TZ=UTC git log -n1 --first-parent "--format=format:$format" "$dir" } version_from_git() { # Output the version being built, or if we're building a # dev/prerelease, output a version number based on the git log for - # the current working directory. + # the given $subdir. + local subdir="$1"; shift if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then echo "$ARVADOS_BUILDING_VERSION" return fi - local git_ts git_hash prefix - if [[ -n "$1" ]] ; then - prefix="$1" - else - prefix="0.1" - fi - - declare $(format_last_commit_here "git_ts=%ct git_hash=%h") - ARVADOS_BUILDING_VERSION="$(git describe --abbrev=0).$(date -ud "@$git_ts" +%Y%m%d%H%M%S)" + local git_ts git_hash + declare $(format_last_commit_here "git_ts=%ct git_hash=%h" "$subdir") + ARVADOS_BUILDING_VERSION="$($WORKSPACE/build/version-at-commit.sh $git_hash)" echo "$ARVADOS_BUILDING_VERSION" } @@ -69,11 +65,24 @@ nohash_version_from_git() { echo "$ARVADOS_BUILDING_VERSION" return fi - version_from_git $1 | cut -d. -f1-4 + version_from_git | cut -d. -f1-4 } timestamp_from_git() { - format_last_commit_here "%ct" + local subdir="$1"; shift + format_last_commit_here "%ct" "$subdir" +} + +calculate_python_sdk_cwl_package_versions() { + python_sdk_ts=$(cd sdk/python && timestamp_from_git) + cwl_runner_ts=$(cd sdk/cwl && timestamp_from_git) + + python_sdk_version=$(cd sdk/python && nohash_version_from_git) + cwl_runner_version=$(cd sdk/cwl && nohash_version_from_git) + + if [[ $python_sdk_ts -gt $cwl_runner_ts ]]; then + cwl_runner_version=$python_sdk_version + fi } handle_python_package () { @@ -103,53 +112,68 @@ handle_ruby_gem() { fi } -# Usage: package_go_binary services/foo arvados-foo "Compute foo to arbitrary precision" +calculate_go_package_version() { + # $__returnvar has the nameref attribute set, which means it is a reference + # to another variable that is passed in as the first argument to this function. + # see https://www.gnu.org/software/bash/manual/html_node/Shell-Parameters.html + local -n __returnvar="$1"; shift + local oldpwd="$PWD" + + cd "$WORKSPACE" + go mod download + + # Update the version number and build a new package if the vendor + # bundle has changed, or the command imports anything from the + # Arvados SDK and the SDK has changed. + declare -a checkdirs=(go.mod go.sum) + while [ -n "$1" ]; do + checkdirs+=("$1") + shift + done + if grep -qr git.arvados.org/arvados .; then + checkdirs+=(sdk/go lib) + fi + local timestamp=0 + for dir in ${checkdirs[@]}; do + cd "$WORKSPACE" + ts="$(timestamp_from_git "$dir")" + if [[ "$ts" -gt "$timestamp" ]]; then + version=$(version_from_git "$dir") + timestamp="$ts" + fi + done + cd "$oldpwd" + __returnvar="$version" +} + +# Usage: package_go_binary services/foo arvados-foo "Compute foo to arbitrary precision" [apache-2.0.txt] package_go_binary() { local src_path="$1"; shift local prog="$1"; shift local description="$1"; shift local license_file="${1:-agpl-3.0.txt}"; shift - if [[ -n "$ONLY_BUILD" ]] && [[ "$prog" != "$ONLY_BUILD" ]] ; then + if [[ -n "$ONLY_BUILD" ]] && [[ "$prog" != "$ONLY_BUILD" ]]; then + # arvados-workbench depends on arvados-server at build time, so even when + # only arvados-workbench is being built, we need to build arvados-server too + if [[ "$prog" != "arvados-server" ]] || [[ "$ONLY_BUILD" != "arvados-workbench" ]]; then return 0 + fi fi debug_echo "package_go_binary $src_path as $prog" local basename="${src_path##*/}" - - mkdir -p "$GOPATH/src/git.curoverse.com" - ln -sfn "$WORKSPACE" "$GOPATH/src/git.curoverse.com/arvados.git" - (cd "$GOPATH/src/git.curoverse.com/arvados.git" && "$GOPATH/bin/govendor" sync -v) - - cd "$GOPATH/src/git.curoverse.com/arvados.git/$src_path" - local version="$(version_from_git)" - local timestamp="$(timestamp_from_git)" - - # Update the version number and build a new package if the vendor - # bundle has changed, or the command imports anything from the - # Arvados SDK and the SDK has changed. - declare -a checkdirs=(vendor) - if grep -qr git.curoverse.com/arvados .; then - checkdirs+=(sdk/go lib) - fi - for dir in ${checkdirs[@]}; do - cd "$GOPATH/src/git.curoverse.com/arvados.git/$dir" - ts="$(timestamp_from_git)" - if [[ "$ts" -gt "$timestamp" ]]; then - version=$(version_from_git) - timestamp="$ts" - fi - done + calculate_go_package_version go_package_version $src_path cd $WORKSPACE/packages/$TARGET - test_package_presence $prog $version go + test_package_presence $prog $go_package_version go if [[ "$?" != "0" ]]; then return 1 fi - go get -ldflags "-X main.version=${version}" "git.curoverse.com/arvados.git/$src_path" + go get -ldflags "-X git.arvados.org/arvados.git/lib/cmd.version=${go_package_version} -X main.version=${go_package_version}" "git.arvados.org/arvados.git/$src_path" local -a switches=() systemd_unit="$WORKSPACE/${src_path}/${prog}.service" @@ -161,7 +185,34 @@ package_go_binary() { fi switches+=("$WORKSPACE/${license_file}=/usr/share/doc/$prog/${license_file}") - fpm_build "$GOPATH/bin/${basename}=/usr/bin/${prog}" "${prog}" 'Curoverse, Inc.' dir "${version}" "--url=https://arvados.org" "--license=GNU Affero General Public License, version 3.0" "--description=${description}" "${switches[@]}" + fpm_build "$GOPATH/bin/${basename}=/usr/bin/${prog}" "${prog}" dir "${go_package_version}" "--url=https://arvados.org" "--license=GNU Affero General Public License, version 3.0" "--description=${description}" "${switches[@]}" +} + +# Usage: package_go_so lib/foo arvados_foo.so arvados-foo "Arvados foo library" +package_go_so() { + local src_path="$1"; shift + local sofile="$1"; shift + local pkg="$1"; shift + local description="$1"; shift + + debug_echo "package_go_so $src_path as $pkg" + + calculate_go_package_version go_package_version $src_path + cd $WORKSPACE/packages/$TARGET + test_package_presence $pkg $go_package_version go || return 1 + cd $WORKSPACE/$src_path + go build -buildmode=c-shared -o ${GOPATH}/bin/${sofile} + cd $WORKSPACE/packages/$TARGET + local -a fpmargs=( + "--url=https://arvados.org" + "--license=Apache License, Version 2.0" + "--description=${description}" + "$WORKSPACE/apache-2.0.txt=/usr/share/doc/$pkg/apache-2.0.txt" + ) + if [[ -e "$WORKSPACE/$src_path/pam-configs-arvados" ]]; then + fpmargs+=("$WORKSPACE/$src_path/pam-configs-arvados=/usr/share/pam-configs/arvados-go") + fi + fpm_build "$GOPATH/bin/${sofile}=/usr/lib/${sofile}" "${pkg}" dir "${go_package_version}" "${fpmargs[@]}" } default_iteration() { @@ -194,6 +245,20 @@ _build_rails_package_scripts() { done } +rails_package_version() { + local pkgname="$1"; shift + local srcdir="$1"; shift + if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then + echo "$ARVADOS_BUILDING_VERSION" + return + fi + local version="$(version_from_git)" + if [ $pkgname = "arvados-api-server" -o $pkgname = "arvados-workbench" ] ; then + calculate_go_package_version version cmd/arvados-server "$srcdir" + fi + echo $version +} + test_rails_package_presence() { local pkgname="$1"; shift local srcdir="$1"; shift @@ -206,100 +271,126 @@ test_rails_package_presence() { cd $srcdir - local version="$(version_from_git)" + local version="$(rails_package_version "$pkgname" "$srcdir")" cd $tmppwd test_package_presence $pkgname $version rails "$RAILS_PACKAGE_ITERATION" } -test_package_presence() { - local pkgname="$1"; shift - local version="$1"; shift - local pkgtype="$1"; shift - local iteration="$1"; shift - local arch="$1"; shift +get_complete_package_name() { + # if the errexit flag is set, unset it until this function returns + # otherwise, the shift calls below will abort the program if optional arguments are not supplied + if [ -o errexit ]; then + set +e + trap 'set -e' RETURN + fi + # $__returnvar has the nameref attribute set, which means it is a reference + # to another variable that is passed in as the first argument to this function. + # see https://www.gnu.org/software/bash/manual/html_node/Shell-Parameters.html + local -n __returnvar="$1"; shift + local pkgname="$1"; shift + local version="$1"; shift + local pkgtype="$1"; shift + local iteration="$1"; shift + local arch="$1"; shift + if [[ "$iteration" == "" ]]; then + iteration="$(default_iteration "$pkgname" "$version" "$pkgtype")" + fi - if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then - return 1 - fi + if [[ "$arch" == "" ]]; then + rpm_architecture="x86_64" + deb_architecture="amd64" - if [[ "$iteration" == "" ]]; then - iteration="$(default_iteration "$pkgname" "$version" "$pkgtype")" + if [[ "$pkgtype" =~ ^(src)$ ]]; then + rpm_architecture="noarch" + deb_architecture="all" fi - if [[ "$arch" == "" ]]; then + # These python packages have binary components + if [[ "$pkgname" =~ (ruamel|ciso|pycrypto|pyyaml) ]]; then rpm_architecture="x86_64" deb_architecture="amd64" + fi + else + rpm_architecture=$arch + deb_architecture=$arch + fi - if [[ "$pkgtype" =~ ^(python|python3)$ ]]; then - rpm_architecture="noarch" - deb_architecture="all" - fi - - if [[ "$pkgtype" =~ ^(src)$ ]]; then - rpm_architecture="noarch" - deb_architecture="all" - fi + local complete_pkgname="${pkgname}_$version${iteration:+-$iteration}_$deb_architecture.deb" + if [[ "$FORMAT" == "rpm" ]]; then + # rpm packages get iteration 1 if we don't supply one + iteration=${iteration:-1} + complete_pkgname="$pkgname-$version-${iteration}.$rpm_architecture.rpm" + fi + __returnvar=${complete_pkgname} +} - # These python packages have binary components - if [[ "$pkgname" =~ (ruamel|ciso|pycrypto|pyyaml) ]]; then - rpm_architecture="x86_64" - deb_architecture="amd64" +# Test if the package already exists, if not return 0, if it does return 1 +test_package_presence() { + local pkgname="$1"; shift + local version="$1"; shift + local pkgtype="$1"; shift + local iteration="$1"; shift + local arch="$1"; shift + if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then + # arvados-workbench depends on arvados-server at build time, so even when + # only arvados-workbench is being built, we need to build arvados-server too + if [[ "$pkgname" != "arvados-server" ]] || [[ "$ONLY_BUILD" != "arvados-workbench" ]]; then + return 1 fi - else - rpm_architecture=$arch - deb_architecture=$arch fi - if [[ "$FORMAT" == "deb" ]]; then - local complete_pkgname="${pkgname}_$version${iteration:+-$iteration}_$deb_architecture.deb" - else - # rpm packages get iteration 1 if we don't supply one - iteration=${iteration:-1} - local complete_pkgname="$pkgname-$version-${iteration}.$rpm_architecture.rpm" - fi + local full_pkgname + get_complete_package_name full_pkgname $pkgname $version $pkgtype $iteration $arch # See if we can skip building the package, only if it already exists in the # processed/ directory. If so, move it back to the packages directory to make # sure it gets picked up by the test and/or upload steps. # Get the list of packages from the repos - if [[ "$FORMAT" == "deb" ]]; then - debian_distros="jessie precise stretch trusty wheezy xenial bionic" - - for D in ${debian_distros}; do - if [ ${pkgname:0:3} = "lib" ]; then - repo_subdir=${pkgname:0:4} - else - repo_subdir=${pkgname:0:1} - fi + if [[ "$FORCE_BUILD" == "1" ]]; then + echo "Package $full_pkgname build forced with --force-build, building" + elif [[ "$FORMAT" == "deb" ]]; then + declare -A dd + dd[debian9]=stretch + dd[debian10]=buster + dd[ubuntu1604]=xenial + dd[ubuntu1804]=bionic + D=${dd[$TARGET]} + if [ ${pkgname:0:3} = "lib" ]; then + repo_subdir=${pkgname:0:4} + else + repo_subdir=${pkgname:0:1} + fi - repo_pkg_list=$(curl -s -o - http://apt.arvados.org/pool/${D}/main/${repo_subdir}/) - echo ${repo_pkg_list} |grep -q ${complete_pkgname} - if [ $? -eq 0 ] ; then - echo "Package $complete_pkgname exists, not rebuilding!" - curl -o ./${complete_pkgname} http://apt.arvados.org/pool/${D}/main/${repo_subdir}/${complete_pkgname} - return 1 - elif test -f "$WORKSPACE/packages/$TARGET/processed/${complete_pkgname}" ; then - echo "Package $complete_pkgname exists, not rebuilding!" - return 1 - else - echo "Package $complete_pkgname not found, building" - return 0 - fi - done + repo_pkg_list=$(curl -s -o - http://apt.arvados.org/pool/${D}-dev/main/${repo_subdir}/${pkgname}/) + echo "${repo_pkg_list}" |grep -q ${full_pkgname} + if [ $? -eq 0 ] ; then + echo "Package $full_pkgname exists upstream, not rebuilding, downloading instead!" + curl -s -o "$WORKSPACE/packages/$TARGET/${full_pkgname}" http://apt.arvados.org/pool/${D}-dev/main/${repo_subdir}/${pkgname}/${full_pkgname} + return 1 + elif test -f "$WORKSPACE/packages/$TARGET/processed/${full_pkgname}" ; then + echo "Package $full_pkgname exists, not rebuilding!" + return 1 + else + echo "Package $full_pkgname not found, building" + return 0 + fi else centos_repo="http://rpm.arvados.org/CentOS/7/dev/x86_64/" - repo_pkg_list=$(curl -o - ${centos_repo}) - echo ${repo_pkg_list} |grep -q ${complete_pkgname} + repo_pkg_list=$(curl -s -o - ${centos_repo}) + echo ${repo_pkg_list} |grep -q ${full_pkgname} if [ $? -eq 0 ]; then - echo "Package $complete_pkgname exists, not rebuilding!" - curl -o ./${complete_pkgname} ${centos_repo}${complete_pkgname} + echo "Package $full_pkgname exists upstream, not rebuilding, downloading instead!" + curl -s -o "$WORKSPACE/packages/$TARGET/${full_pkgname}" ${centos_repo}${full_pkgname} + return 1 + elif test -f "$WORKSPACE/packages/$TARGET/processed/${full_pkgname}" ; then + echo "Package $full_pkgname exists, not rebuilding!" return 1 else - echo "Package $complete_pkgname not found, building" + echo "Package $full_pkgname not found, building" return 0 fi fi @@ -314,7 +405,7 @@ handle_rails_package() { local srcdir="$1"; shift cd "$srcdir" local license_path="$1"; shift - local version="$(version_from_git)" + local version="$(rails_package_version "$pkgname" "$srcdir")" echo "$version" >package-build.version local scripts_dir="$(mktemp --tmpdir -d "$pkgname-XXXXXXXX.scripts")" && \ ( @@ -332,7 +423,7 @@ handle_rails_package() { return 1 fi local railsdir="/var/www/${pkgname%-server}/current" - local -a pos_args=("$srcdir/=$railsdir" "$pkgname" "Curoverse, Inc." dir "$version") + local -a pos_args=("$srcdir/=$railsdir" "$pkgname" dir "$version") local license_arg="$license_path=$railsdir/$(basename "$license_path")" local -a switches=(--after-install "$scripts_dir/postinst" --before-remove "$scripts_dir/prerm" @@ -359,6 +450,317 @@ handle_rails_package() { rm -rf "$scripts_dir" } +# Build python packages with a virtualenv built-in +fpm_build_virtualenv () { + PKG=$1 + shift + PKG_DIR=$1 + shift + PACKAGE_TYPE=${1:-python} + shift + + # Set up + STDOUT_IF_DEBUG=/dev/null + STDERR_IF_DEBUG=/dev/null + DASHQ_UNLESS_DEBUG=-q + if [[ "$DEBUG" != "0" ]]; then + STDOUT_IF_DEBUG=/dev/stdout + STDERR_IF_DEBUG=/dev/stderr + DASHQ_UNLESS_DEBUG= + fi + if [[ "$ARVADOS_BUILDING_ITERATION" == "" ]]; then + ARVADOS_BUILDING_ITERATION=1 + fi + + local python="" + case "$PACKAGE_TYPE" in + python3) + python=python3 + if [[ "$FORMAT" != "rpm" ]]; then + pip=pip3 + else + # In CentOS, we use a different mechanism to get the right version of pip + pip=pip + fi + PACKAGE_PREFIX=$PYTHON3_PKG_PREFIX + ;; + python) + # All Arvados Python2 packages depend on Python 2.7. + # Make sure we build with that for consistency. + python=python2.7 + pip=pip + PACKAGE_PREFIX=$PYTHON2_PKG_PREFIX + ;; + esac + + if [[ "$PKG" != "libpam-arvados" ]] && + [[ "$PKG" != "arvados-node-manager" ]] && + [[ "$PKG" != "arvados-docker-cleaner" ]]; then + PYTHON_PKG=$PACKAGE_PREFIX-$PKG + else + # Exception to our package naming convention + PYTHON_PKG=$PKG + fi + + # arvados-python-client sdist should always be built, to be available + # for other dependent packages. + if [[ -n "$ONLY_BUILD" ]] && [[ "arvados-python-client" != "$PKG" ]] && [[ "$PYTHON_PKG" != "$ONLY_BUILD" ]] && [[ "$PKG" != "$ONLY_BUILD" ]]; then + return 0 + fi + + cd $WORKSPACE/$PKG_DIR + + rm -rf dist/* + + # Get the latest setuptools + if ! $pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U 'setuptools<45'; then + echo "Error, unable to upgrade setuptools with" + echo " $pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U 'setuptools<45'" + exit 1 + fi + # filter a useless warning (when building the cwltest package) from the stderr output + if ! $python setup.py $DASHQ_UNLESS_DEBUG sdist 2> >(grep -v 'warning: no previously-included files matching'); then + echo "Error, unable to run $python setup.py sdist for $PKG" + exit 1 + fi + + PACKAGE_PATH=`(cd dist; ls *tar.gz)` + + if [[ "arvados-python-client" == "$PKG" ]]; then + PYSDK_PATH=`pwd`/dist/ + fi + + if [[ -n "$ONLY_BUILD" ]] && [[ "$PYTHON_PKG" != "$ONLY_BUILD" ]] && [[ "$PKG" != "$ONLY_BUILD" ]]; then + return 0 + fi + + # Determine the package version from the generated sdist archive + PYTHON_VERSION=${ARVADOS_BUILDING_VERSION:-$(awk '($1 == "Version:"){print $2}' *.egg-info/PKG-INFO)} + + # See if we actually need to build this package; does it exist already? + # We can't do this earlier than here, because we need PYTHON_VERSION... + # This isn't so bad; the sdist call above is pretty quick compared to + # the invocation of virtualenv and fpm, below. + if ! test_package_presence "$PYTHON_PKG" $PYTHON_VERSION $PACKAGE_TYPE $ARVADOS_BUILDING_ITERATION; then + return 0 + fi + + echo "Building $FORMAT package for $PKG from $PKG_DIR" + + # Package the sdist in a virtualenv + echo "Creating virtualenv..." + + cd dist + + rm -rf build + rm -f $PYTHON_PKG*deb + echo "virtualenv version: `virtualenv --version`" + virtualenv_command="virtualenv --python `which $python` $DASHQ_UNLESS_DEBUG build/usr/share/$python/dist/$PYTHON_PKG" + + if ! $virtualenv_command; then + echo "Error, unable to run" + echo " $virtualenv_command" + exit 1 + fi + + if ! build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U pip; then + echo "Error, unable to upgrade pip with" + echo " build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U pip" + exit 1 + fi + echo "pip version: `build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip --version`" + + if ! build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U 'setuptools<45'; then + echo "Error, unable to upgrade setuptools with" + echo " build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U 'setuptools<45'" + exit 1 + fi + echo "setuptools version: `build/usr/share/$python/dist/$PYTHON_PKG/bin/$python -c 'import setuptools; print(setuptools.__version__)'`" + + if ! build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U wheel; then + echo "Error, unable to upgrade wheel with" + echo " build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U wheel" + exit 1 + fi + echo "wheel version: `build/usr/share/$python/dist/$PYTHON_PKG/bin/wheel version`" + + if [[ "$TARGET" != "centos7" ]] || [[ "$PYTHON_PKG" != "python-arvados-fuse" ]]; then + build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -f $PYSDK_PATH $PACKAGE_PATH + else + # centos7 needs these special tweaks to install python-arvados-fuse + build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG docutils + PYCURL_SSL_LIBRARY=nss build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -f $PYSDK_PATH $PACKAGE_PATH + fi + + if [[ "$?" != "0" ]]; then + echo "Error, unable to run" + echo " build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -f $PYSDK_PATH $PACKAGE_PATH" + exit 1 + fi + + cd build/usr/share/$python/dist/$PYTHON_PKG/ + + # Replace the shebang lines in all python scripts, and handle the activate + # scripts too. This is a functional replacement of the 237 line + # virtualenv_tools.py script that doesn't work in python3 without serious + # patching, minus the parts we don't need (modifying pyc files, etc). + for binfile in `ls bin/`; do + if ! file --mime bin/$binfile |grep -q binary; then + # Not a binary file + if [[ "$binfile" =~ ^activate(.csh|.fish|)$ ]]; then + # these 'activate' scripts need special treatment + sed -i "s/VIRTUAL_ENV=\".*\"/VIRTUAL_ENV=\"\/usr\/share\/$python\/dist\/$PYTHON_PKG\"/" bin/$binfile + sed -i "s/VIRTUAL_ENV \".*\"/VIRTUAL_ENV \"\/usr\/share\/$python\/dist\/$PYTHON_PKG\"/" bin/$binfile + else + if grep -q -E '^#!.*/bin/python\d?' bin/$binfile; then + # Replace shebang line + sed -i "1 s/^.*$/#!\/usr\/share\/$python\/dist\/$PYTHON_PKG\/bin\/python/" bin/$binfile + fi + fi + fi + done + + cd - >$STDOUT_IF_DEBUG + + find build -iname '*.pyc' -exec rm {} \; + find build -iname '*.pyo' -exec rm {} \; + + # Finally, generate the package + echo "Creating package..." + + declare -a COMMAND_ARR=("fpm" "-s" "dir" "-t" "$FORMAT") + + if [[ "$MAINTAINER" != "" ]]; then + COMMAND_ARR+=('--maintainer' "$MAINTAINER") + fi + + if [[ "$VENDOR" != "" ]]; then + COMMAND_ARR+=('--vendor' "$VENDOR") + fi + + COMMAND_ARR+=('--url' 'https://arvados.org') + + # Get description + DESCRIPTION=`grep '\sdescription' $WORKSPACE/$PKG_DIR/setup.py|cut -f2 -d=|sed -e "s/[',\\"]//g"` + COMMAND_ARR+=('--description' "$DESCRIPTION") + + # Get license string + LICENSE_STRING=`grep license $WORKSPACE/$PKG_DIR/setup.py|cut -f2 -d=|sed -e "s/[',\\"]//g"` + COMMAND_ARR+=('--license' "$LICENSE_STRING") + + # 12271 - As FPM-generated packages don't include scripts by default, the + # packages cleanup on upgrade depends on files being listed on the %files + # section in the generated SPEC files. To remove DIRECTORIES, they need to + # be listed in that section too, so we need to add this parameter to properly + # remove lingering dirs. But this only works for python2: if used on + # python33, it includes dirs like /opt/rh/python33 that belong to + # other packages. + if [[ "$FORMAT" == "rpm" ]] && [[ "$python" == "python2.7" ]]; then + COMMAND_ARR+=('--rpm-auto-add-directories') + fi + + if [[ "$PKG" == "arvados-python-client" ]] || [[ "$PKG" == "arvados-fuse" ]]; then + if [[ "$python" == "python2.7" ]]; then + COMMAND_ARR+=('--conflicts' "$PYTHON3_PKG_PREFIX-$PKG") + else + COMMAND_ARR+=('--conflicts' "$PYTHON2_PKG_PREFIX-$PKG") + fi + fi + + if [[ "$DEBUG" != "0" ]]; then + COMMAND_ARR+=('--verbose' '--log' 'info') + fi + + COMMAND_ARR+=('-v' "$PYTHON_VERSION") + COMMAND_ARR+=('--iteration' "$ARVADOS_BUILDING_ITERATION") + COMMAND_ARR+=('-n' "$PYTHON_PKG") + COMMAND_ARR+=('-C' "build") + + systemd_unit="$WORKSPACE/$PKG_DIR/$PKG.service" + if [[ -e "${systemd_unit}" ]]; then + COMMAND_ARR+=('--after-install' "${WORKSPACE}/build/go-python-package-scripts/postinst") + COMMAND_ARR+=('--before-remove' "${WORKSPACE}/build/go-python-package-scripts/prerm") + fi + + if [[ "$python" == "python2.7" ]]; then + COMMAND_ARR+=('--depends' "$PYTHON2_PACKAGE") + else + COMMAND_ARR+=('--depends' "$PYTHON3_PACKAGE") + fi + + # avoid warning + COMMAND_ARR+=('--deb-no-default-config-files') + + # Append --depends X and other arguments specified by fpm-info.sh in + # the package source dir. These are added last so they can override + # the arguments added by this script. + declare -a fpm_args=() + declare -a fpm_depends=() + + fpminfo="$WORKSPACE/$PKG_DIR/fpm-info.sh" + if [[ -e "$fpminfo" ]]; then + echo "Loading fpm overrides from $fpminfo" + if ! source "$fpminfo"; then + echo "Error, unable to source $WORKSPACE/$PKG_DIR/fpm-info.sh for $PKG" + exit 1 + fi + fi + + for i in "${fpm_depends[@]}"; do + COMMAND_ARR+=('--depends' "$i") + done + + # make sure the systemd service file ends up in the right place + # used by arvados-docker-cleaner and arvados-node-manager + if [[ -e "${systemd_unit}" ]]; then + COMMAND_ARR+=("usr/share/$python/dist/$PKG/share/doc/$PKG/$PKG.service=/lib/systemd/system/$PKG.service") + fi + + COMMAND_ARR+=("${fpm_args[@]}") + + # Make sure to install all our package binaries in /usr/bin. + # We have to walk $WORKSPACE/$PKG_DIR/bin rather than + # $WORKSPACE/build/usr/share/$python/dist/$PYTHON_PKG/bin/ to get the list + # because the latter also includes all the python binaries for the virtualenv. + # We have to take the copies of our binaries from the latter directory, though, + # because those are the ones we rewrote the shebang line of, above. + if [[ -e "$WORKSPACE/$PKG_DIR/bin" ]]; then + for binary in `ls $WORKSPACE/$PKG_DIR/bin`; do + COMMAND_ARR+=("usr/share/$python/dist/$PYTHON_PKG/bin/$binary=/usr/bin/") + done + fi + + # the libpam module should place a few files in the correct place for the pam + # subsystem + if [[ -e "$WORKSPACE/$PKG_DIR/dist/build/usr/share/$python/dist/$PYTHON_PKG/lib/security/libpam_arvados.py" ]]; then + COMMAND_ARR+=("usr/share/$python/dist/$PYTHON_PKG/lib/security/libpam_arvados.py=/usr/lib/security/") + fi + if [[ -e "$WORKSPACE/$PKG_DIR/dist/build/usr/share/$python/dist/$PYTHON_PKG/share/pam-configs/arvados" ]]; then + COMMAND_ARR+=("usr/share/$python/dist/$PYTHON_PKG/share/pam-configs/arvados=/usr/share/pam-configs/") + fi + + # the python-arvados-cwl-runner package comes with cwltool, expose that version + if [[ -e "$WORKSPACE/$PKG_DIR/dist/build/usr/share/python2.7/dist/python-arvados-cwl-runner/bin/cwltool" ]]; then + COMMAND_ARR+=("usr/share/python2.7/dist/python-arvados-cwl-runner/bin/cwltool=/usr/bin/") + fi + + COMMAND_ARR+=(".") + + FPM_RESULTS=$("${COMMAND_ARR[@]}") + FPM_EXIT_CODE=$? + + # if something went wrong and debug is off, print out the fpm command that errored + if ! fpm_verify $FPM_EXIT_CODE $FPM_RESULTS && [[ "$STDOUT_IF_DEBUG" == "/dev/null" ]]; then + echo "fpm returned an error executing the command:" + echo + echo -e "\n${COMMAND_ARR[@]}\n" + else + echo `ls *$FORMAT` + mv $WORKSPACE/$PKG_DIR/dist/*$FORMAT $WORKSPACE/packages/$TARGET/ + fi + echo +} + # Build packages for everything fpm_build () { # The package source. Depending on the source type, this can be a @@ -369,57 +771,24 @@ fpm_build () { # The name of the package to build. PACKAGE_NAME=$1 shift - # Optional: the vendor of the package. Should be "Curoverse, Inc." for - # packages of our own software. Passed to fpm --vendor. - VENDOR=$1 - shift - # The type of source package. Passed to fpm -s. Default "python". - PACKAGE_TYPE=${1:-python} + # The type of source package. Passed to fpm -s. Default "dir". + PACKAGE_TYPE=${1:-dir} shift # Optional: the package version number. Passed to fpm -v. VERSION=$1 shift if [[ -n "$ONLY_BUILD" ]] && [[ "$PACKAGE_NAME" != "$ONLY_BUILD" ]] && [[ "$PACKAGE" != "$ONLY_BUILD" ]] ; then + # arvados-workbench depends on arvados-server at build time, so even when + # only arvados-workbench is being built, we need to build arvados-server too + if [[ "$PACKAGE_NAME" != "arvados-server" ]] || [[ "$ONLY_BUILD" != "arvados-workbench" ]]; then return 0 + fi fi local default_iteration_value="$(default_iteration "$PACKAGE" "$VERSION" "$PACKAGE_TYPE")" - local python="" - case "$PACKAGE_TYPE" in - python) - # All Arvados Python2 packages depend on Python 2.7. - # Make sure we build with that for consistency. - python=python2.7 - set -- "$@" --python-bin python2.7 \ - "${PYTHON_FPM_INSTALLER[@]}" \ - --python-package-name-prefix "$PYTHON2_PKG_PREFIX" \ - --prefix "$PYTHON2_PREFIX" \ - --python-install-lib "$PYTHON2_INSTALL_LIB" \ - --python-install-data . \ - --exclude "${PYTHON2_INSTALL_LIB#/}/tests" \ - --depends "$PYTHON2_PACKAGE" - ;; - python3) - # fpm does not actually support a python3 package type. Instead - # we recognize it as a convenience shortcut to add several - # necessary arguments to fpm's command line later, after we're - # done handling positional arguments. - PACKAGE_TYPE=python - python=python3 - set -- "$@" --python-bin python3 \ - "${PYTHON3_FPM_INSTALLER[@]}" \ - --python-package-name-prefix "$PYTHON3_PKG_PREFIX" \ - --prefix "$PYTHON3_PREFIX" \ - --python-install-lib "$PYTHON3_INSTALL_LIB" \ - --python-install-data . \ - --exclude "${PYTHON3_INSTALL_LIB#/}/tests" \ - --depends "$PYTHON3_PACKAGE" - ;; - esac - - declare -a COMMAND_ARR=("fpm" "--maintainer=Ward Vandewege " "-s" "$PACKAGE_TYPE" "-t" "$FORMAT") + declare -a COMMAND_ARR=("fpm" "-s" "$PACKAGE_TYPE" "-t" "$FORMAT") if [ python = "$PACKAGE_TYPE" ] && [ deb = "$FORMAT" ]; then # Dependencies are built from setup.py. Since setup.py will never # refer to Debian package iterations, it doesn't make sense to @@ -430,7 +799,7 @@ fpm_build () { # 12271 - As FPM-generated packages don't include scripts by default, the # packages cleanup on upgrade depends on files being listed on the %files # section in the generated SPEC files. To remove DIRECTORIES, they need to - # be listed in that sectiontoo, so we need to add this parameter to properly + # be listed in that section too, so we need to add this parameter to properly # remove lingering dirs. But this only works for python2: if used on # python33, it includes dirs like /opt/rh/python33 that belong to # other packages. @@ -438,7 +807,7 @@ fpm_build () { COMMAND_ARR+=('--rpm-auto-add-directories') fi - if [[ "${DEBUG:-0}" != "0" ]]; then + if [[ "$DEBUG" != "0" ]]; then COMMAND_ARR+=('--verbose' '--log' 'info') fi @@ -446,6 +815,10 @@ fpm_build () { COMMAND_ARR+=('-n' "$PACKAGE_NAME") fi + if [[ "$MAINTAINER" != "" ]]; then + COMMAND_ARR+=('--maintainer' "$MAINTAINER") + fi + if [[ "$VENDOR" != "" ]]; then COMMAND_ARR+=('--vendor' "$VENDOR") fi @@ -459,14 +832,6 @@ fpm_build () { COMMAND_ARR+=(--iteration "$default_iteration_value") fi - if [[ python = "$PACKAGE_TYPE" ]] && [[ -e "${PACKAGE}/${PACKAGE_NAME}.service" ]] - then - COMMAND_ARR+=( - --after-install "${WORKSPACE}/build/go-python-package-scripts/postinst" - --before-remove "${WORKSPACE}/build/go-python-package-scripts/prerm" - ) - fi - # Append --depends X and other arguments specified by fpm-info.sh in # the package source dir. These are added last so they can override # the arguments added by this script. @@ -476,12 +841,7 @@ fpm_build () { declare -a fpm_exclude=() declare -a fpm_dirs=( # source dir part of 'dir' package ("/source=/dest" => "/source"): - "${PACKAGE%%=/*}" - # backports ("llfuse>=1.0" => "backports/python-llfuse") - "${WORKSPACE}/backports/${PACKAGE_TYPE}-${PACKAGE%%[<=>]*}") - if [[ -n "$PACKAGE_NAME" ]]; then - fpm_dirs+=("${WORKSPACE}/backports/${PACKAGE_NAME}") - fi + "${PACKAGE%%=/*}") for pkgdir in "${fpm_dirs[@]}"; do fpminfo="$pkgdir/fpm-info.sh" if [[ -e "$fpminfo" ]]; then @@ -579,14 +939,13 @@ install_package() { fi } -title () { - txt="********** $1 **********" - printf "\n%*s%s\n\n" $((($COLUMNS-${#txt})/2)) "" "$txt" +title() { + printf '%s %s\n' "=======" "$1" } checkexit() { if [[ "$1" != "0" ]]; then - title "!!!!!! $2 FAILED !!!!!!" + title "$2 -- FAILED" failures+=("$2 (`timer`)") else successes+=("$2 (`timer`)") @@ -598,7 +957,9 @@ timer_reset() { } timer() { - echo -n "$(($SECONDS - $t0))s" + if [[ -n "$t0" ]]; then + echo -n "$(($SECONDS - $t0))s" + fi } report_outcomes() { @@ -609,7 +970,9 @@ report_outcomes() { if [[ ${#failures[@]} == 0 ]] then - echo "All test suites passed." + if [[ ${#successes[@]} != 0 ]]; then + echo "All test suites passed." + fi else echo "Failures (${#failures[@]}):" for x in "${failures[@]}"