2 # Copyright (C) The Arvados Authors. All rights reserved.
4 # SPDX-License-Identifier: AGPL-3.0
6 # A library of functions shared by the various scripts in this directory.
8 # This is the timestamp about when we merged changed to include licenses
9 # with Arvados packages. We use it as a heuristic to add revisions for
11 LICENSE_PACKAGE_TS=20151208015500
13 if [[ -z "$ARVADOS_BUILDING_VERSION" ]]; then
14 RAILS_PACKAGE_ITERATION=1
16 RAILS_PACKAGE_ITERATION="$ARVADOS_BUILDING_ITERATION"
20 echo "$@" >"$STDOUT_IF_DEBUG"
23 find_python_program() {
27 if "$prog" --version >/dev/null 2>&1; then
35 Error: $prog (from Python setuptools module) not found
41 format_last_commit_here() {
42 local format="$1"; shift
43 TZ=UTC git log -n1 --first-parent "--format=format:$format" .
47 # Output the version being built, or if we're building a
48 # dev/prerelease, output a version number based on the git log for
49 # the current working directory.
50 if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then
51 echo "$ARVADOS_BUILDING_VERSION"
55 local git_ts git_hash prefix
56 if [[ -n "$1" ]] ; then
62 declare $(format_last_commit_here "git_ts=%ct git_hash=%h")
63 ARVADOS_BUILDING_VERSION="$(git tag -l |sort -V -r |head -n1).$(date -ud "@$git_ts" +%Y%m%d%H%M%S)"
64 echo "$ARVADOS_BUILDING_VERSION"
67 nohash_version_from_git() {
68 if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then
69 echo "$ARVADOS_BUILDING_VERSION"
72 version_from_git $1 | cut -d. -f1-4
75 timestamp_from_git() {
76 format_last_commit_here "%ct"
79 handle_python_package () {
80 # This function assumes the current working directory is the python package directory
81 if [ -n "$(find dist -name "*-$(nohash_version_from_git).tar.gz" -print -quit)" ]; then
82 # This package doesn't need rebuilding.
85 # Make sure only to use sdist - that's the only format pip can deal with (sigh)
86 python setup.py $DASHQ_UNLESS_DEBUG sdist
90 local gem_name="$1"; shift
91 local gem_version="$(nohash_version_from_git)"
92 local gem_src_dir="$(pwd)"
94 if [[ -n "$ONLY_BUILD" ]] && [[ "$gem_name" != "$ONLY_BUILD" ]] ; then
98 if ! [[ -e "${gem_name}-${gem_version}.gem" ]]; then
99 find -maxdepth 1 -name "${gem_name}-*.gem" -delete
101 # -q appears to be broken in gem version 2.2.2
102 $GEM build "$gem_name.gemspec" $DASHQ_UNLESS_DEBUG >"$STDOUT_IF_DEBUG" 2>"$STDERR_IF_DEBUG"
106 calculate_go_package_version() {
107 # $__returnvar has the nameref attribute set, which means it is a reference
108 # to another variable that is passed in as the first argument to this function.
109 # see https://www.gnu.org/software/bash/manual/html_node/Shell-Parameters.html
110 local -n __returnvar="$1"; shift
111 local src_path="$1"; shift
113 mkdir -p "$GOPATH/src/git.curoverse.com"
114 ln -sfn "$WORKSPACE" "$GOPATH/src/git.curoverse.com/arvados.git"
115 (cd "$GOPATH/src/git.curoverse.com/arvados.git" && "$GOPATH/bin/govendor" sync -v)
117 cd "$GOPATH/src/git.curoverse.com/arvados.git/$src_path"
118 local version="$(version_from_git)"
119 local timestamp="$(timestamp_from_git)"
121 # Update the version number and build a new package if the vendor
122 # bundle has changed, or the command imports anything from the
123 # Arvados SDK and the SDK has changed.
124 declare -a checkdirs=(vendor)
125 if grep -qr git.curoverse.com/arvados .; then
126 checkdirs+=(sdk/go lib)
128 for dir in ${checkdirs[@]}; do
129 cd "$GOPATH/src/git.curoverse.com/arvados.git/$dir"
130 ts="$(timestamp_from_git)"
131 if [[ "$ts" -gt "$timestamp" ]]; then
132 version=$(version_from_git)
137 __returnvar="$version"
140 # Usage: package_go_binary services/foo arvados-foo "Compute foo to arbitrary precision"
141 package_go_binary() {
142 local src_path="$1"; shift
143 local prog="$1"; shift
144 local description="$1"; shift
145 local license_file="${1:-agpl-3.0.txt}"; shift
147 if [[ -n "$ONLY_BUILD" ]] && [[ "$prog" != "$ONLY_BUILD" ]]; then
148 # arvados-workbench depends on arvados-server at build time, so even when
149 # only arvados-workbench is being built, we need to build arvados-server too
150 if [[ "$prog" != "arvados-server" ]] || [[ "$ONLY_BUILD" != "arvados-workbench" ]]; then
155 debug_echo "package_go_binary $src_path as $prog"
157 local basename="${src_path##*/}"
158 calculate_go_package_version go_package_version $src_path
160 cd $WORKSPACE/packages/$TARGET
161 test_package_presence $prog $go_package_version go
163 if [[ "$?" != "0" ]]; then
167 go get -ldflags "-X git.curoverse.com/arvados.git/lib/cmd.version=${go_package_version} -X main.version=${go_package_version}" "git.curoverse.com/arvados.git/$src_path"
170 systemd_unit="$WORKSPACE/${src_path}/${prog}.service"
171 if [[ -e "${systemd_unit}" ]]; then
173 --after-install "${WORKSPACE}/build/go-python-package-scripts/postinst"
174 --before-remove "${WORKSPACE}/build/go-python-package-scripts/prerm"
175 "${systemd_unit}=/lib/systemd/system/${prog}.service")
177 switches+=("$WORKSPACE/${license_file}=/usr/share/doc/$prog/${license_file}")
179 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[@]}"
182 default_iteration() {
183 if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then
184 echo "$ARVADOS_BUILDING_ITERATION"
187 local package_name="$1"; shift
188 local package_version="$1"; shift
189 local package_type="$1"; shift
191 if [[ $package_version =~ ^0\.1\.([0-9]{14})(\.|$) ]] && \
192 [[ ${BASH_REMATCH[1]} -le $LICENSE_PACKAGE_TS ]]; then
195 if [[ $package_type =~ ^python ]]; then
196 # Fix --iteration for #9242.
202 _build_rails_package_scripts() {
203 local pkgname="$1"; shift
204 local destdir="$1"; shift
205 local srcdir="$RUN_BUILD_PACKAGES_PATH/rails-package-scripts"
206 for scriptname in postinst prerm postrm; do
207 cat "$srcdir/$pkgname.sh" "$srcdir/step2.sh" "$srcdir/$scriptname.sh" \
208 >"$destdir/$scriptname" || return $?
212 rails_package_version() {
213 local pkgname="$1"; shift
214 if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then
215 echo "$ARVADOS_BUILDING_VERSION"
218 local version="$(version_from_git)"
219 if [ $pkgname = "arvados-api-server" -o $pkgname = "arvados-workbench" ] ; then
222 local arvados_server_version
223 calculate_go_package_version arvados_server_version cmd/arvados-server
225 if [ $arvados_server_version > $version ] ; then
226 version=$arvados_server_version
232 test_rails_package_presence() {
233 local pkgname="$1"; shift
234 local srcdir="$1"; shift
236 if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
244 local version="$(rails_package_version $pkgname)"
248 test_package_presence $pkgname $version rails "$RAILS_PACKAGE_ITERATION"
251 get_complete_package_name() {
252 # if the errexit flag is set, unset it until this function returns
253 # otherwise, the shift calls below will abort the program if optional arguments are not supplied
254 if [ -o errexit ]; then
258 # $__returnvar has the nameref attribute set, which means it is a reference
259 # to another variable that is passed in as the first argument to this function.
260 # see https://www.gnu.org/software/bash/manual/html_node/Shell-Parameters.html
261 local -n __returnvar="$1"; shift
262 local pkgname="$1"; shift
263 local version="$1"; shift
264 local pkgtype="$1"; shift
265 local iteration="$1"; shift
266 local arch="$1"; shift
267 if [[ "$iteration" == "" ]]; then
268 iteration="$(default_iteration "$pkgname" "$version" "$pkgtype")"
271 if [[ "$arch" == "" ]]; then
272 rpm_architecture="x86_64"
273 deb_architecture="amd64"
275 if [[ "$pkgtype" =~ ^(src)$ ]]; then
276 rpm_architecture="noarch"
277 deb_architecture="all"
280 # These python packages have binary components
281 if [[ "$pkgname" =~ (ruamel|ciso|pycrypto|pyyaml) ]]; then
282 rpm_architecture="x86_64"
283 deb_architecture="amd64"
286 rpm_architecture=$arch
287 deb_architecture=$arch
290 local complete_pkgname="${pkgname}_$version${iteration:+-$iteration}_$deb_architecture.deb"
291 if [[ "$FORMAT" == "rpm" ]]; then
292 # rpm packages get iteration 1 if we don't supply one
293 iteration=${iteration:-1}
294 complete_pkgname="$pkgname-$version-${iteration}.$rpm_architecture.rpm"
296 __returnvar=${complete_pkgname}
299 # Test if the package already exists, if not return 0, if it does return 1
300 test_package_presence() {
301 local pkgname="$1"; shift
302 local version="$1"; shift
303 local pkgtype="$1"; shift
304 local iteration="$1"; shift
305 local arch="$1"; shift
306 if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
307 # arvados-workbench depends on arvados-server at build time, so even when
308 # only arvados-workbench is being built, we need to build arvados-server too
309 if [[ "$pkgname" != "arvados-server" ]] || [[ "$ONLY_BUILD" != "arvados-workbench" ]]; then
315 get_complete_package_name full_pkgname $pkgname $version $pkgtype $iteration $arch
317 # See if we can skip building the package, only if it already exists in the
318 # processed/ directory. If so, move it back to the packages directory to make
319 # sure it gets picked up by the test and/or upload steps.
320 # Get the list of packages from the repos
322 if [[ "$FORMAT" == "deb" ]]; then
326 dd[ubuntu1604]=xenial
327 dd[ubuntu1804]=bionic
329 if [ ${pkgname:0:3} = "lib" ]; then
330 repo_subdir=${pkgname:0:4}
332 repo_subdir=${pkgname:0:1}
335 repo_pkg_list=$(curl -s -o - http://apt.arvados.org/pool/${D}-dev/main/${repo_subdir}/${pkgname}/)
336 echo "${repo_pkg_list}" |grep -q ${full_pkgname}
337 if [ $? -eq 0 ] ; then
338 echo "Package $full_pkgname exists upstream, not rebuilding, downloading instead!"
339 curl -s -o "$WORKSPACE/packages/$TARGET/${full_pkgname}" http://apt.arvados.org/pool/${D}-dev/main/${repo_subdir}/${pkgname}/${full_pkgname}
341 elif test -f "$WORKSPACE/packages/$TARGET/processed/${full_pkgname}" ; then
342 echo "Package $full_pkgname exists, not rebuilding!"
345 echo "Package $full_pkgname not found, building"
349 centos_repo="http://rpm.arvados.org/CentOS/7/dev/x86_64/"
351 repo_pkg_list=$(curl -s -o - ${centos_repo})
352 echo ${repo_pkg_list} |grep -q ${full_pkgname}
353 if [ $? -eq 0 ]; then
354 echo "Package $full_pkgname exists upstream, not rebuilding, downloading instead!"
355 curl -s -o "$WORKSPACE/packages/$TARGET/${full_pkgname}" ${centos_repo}${full_pkgname}
357 elif test -f "$WORKSPACE/packages/$TARGET/processed/${full_pkgname}" ; then
358 echo "Package $full_pkgname exists, not rebuilding!"
361 echo "Package $full_pkgname not found, building"
367 handle_rails_package() {
368 local pkgname="$1"; shift
370 if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
373 local srcdir="$1"; shift
375 local license_path="$1"; shift
376 local version="$(rails_package_version $pkgname)"
377 echo "$version" >package-build.version
378 local scripts_dir="$(mktemp --tmpdir -d "$pkgname-XXXXXXXX.scripts")" && \
381 _build_rails_package_scripts "$pkgname" "$scripts_dir"
384 git rev-parse HEAD >git-commit.version
387 if [[ 0 != "$?" ]] || ! cd "$WORKSPACE/packages/$TARGET"; then
388 echo "ERROR: $pkgname package prep failed" >&2
389 rm -rf "$scripts_dir"
393 local railsdir="/var/www/${pkgname%-server}/current"
394 local -a pos_args=("$srcdir/=$railsdir" "$pkgname" dir "$version")
395 local license_arg="$license_path=$railsdir/$(basename "$license_path")"
396 local -a switches=(--after-install "$scripts_dir/postinst"
397 --before-remove "$scripts_dir/prerm"
398 --after-remove "$scripts_dir/postrm")
399 if [[ -z "$ARVADOS_BUILDING_VERSION" ]]; then
400 switches+=(--iteration $RAILS_PACKAGE_ITERATION)
402 # For some reason fpm excludes need to not start with /.
403 local exclude_root="${railsdir#/}"
404 # .git and packages are for the SSO server, which is built from its
406 local -a exclude_list=(.git packages tmp log coverage Capfile\* \
407 config/deploy\* config/application.yml)
408 # for arvados-workbench, we need to have the (dummy) config/database.yml in the package
409 if [[ "$pkgname" != "arvados-workbench" ]]; then
410 exclude_list+=('config/database.yml')
412 for exclude in ${exclude_list[@]}; do
413 switches+=(-x "$exclude_root/$exclude")
415 fpm_build "${pos_args[@]}" "${switches[@]}" \
416 -x "$exclude_root/vendor/cache-*" \
417 -x "$exclude_root/vendor/bundle" "$@" "$license_arg"
418 rm -rf "$scripts_dir"
421 # Build python packages with a virtualenv built-in
422 fpm_build_virtualenv () {
427 PACKAGE_TYPE=${1:-python}
431 STDOUT_IF_DEBUG=/dev/null
432 STDERR_IF_DEBUG=/dev/null
433 DASHQ_UNLESS_DEBUG=-q
434 if [[ "$DEBUG" != "0" ]]; then
435 STDOUT_IF_DEBUG=/dev/stdout
436 STDERR_IF_DEBUG=/dev/stderr
439 if [[ "$ARVADOS_BUILDING_ITERATION" == "" ]]; then
440 ARVADOS_BUILDING_ITERATION=1
444 case "$PACKAGE_TYPE" in
447 if [[ "$FORMAT" != "rpm" ]]; then
450 # In CentOS, we use a different mechanism to get the right version of pip
453 PACKAGE_PREFIX=$PYTHON3_PKG_PREFIX
456 # All Arvados Python2 packages depend on Python 2.7.
457 # Make sure we build with that for consistency.
460 PACKAGE_PREFIX=$PYTHON2_PKG_PREFIX
464 if [[ "$PKG" != "libpam-arvados" ]] &&
465 [[ "$PKG" != "arvados-node-manager" ]] &&
466 [[ "$PKG" != "arvados-docker-cleaner" ]]; then
467 PYTHON_PKG=$PACKAGE_PREFIX-$PKG
469 # Exception to our package naming convention
473 # arvados-python-client sdist should always be built, to be available
474 # for other dependant packages.
475 if [[ -n "$ONLY_BUILD" ]] && [[ "arvados-python-client" != "$PKG" ]] && [[ "$PYTHON_PKG" != "$ONLY_BUILD" ]] && [[ "$PKG" != "$ONLY_BUILD" ]]; then
479 cd $WORKSPACE/$PKG_DIR
483 # Get the latest setuptools
484 if ! $pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U setuptools; then
485 echo "Error, unable to upgrade setuptools with"
486 echo " $pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U setuptools"
489 # filter a useless warning (when building the cwltest package) from the stderr output
490 if ! $python setup.py $DASHQ_UNLESS_DEBUG sdist 2> >(grep -v 'warning: no previously-included files matching'); then
491 echo "Error, unable to run $python setup.py sdist for $PKG"
495 PACKAGE_PATH=`(cd dist; ls *tar.gz)`
497 if [[ "arvados-python-client" == "$PKG" ]]; then
498 PYSDK_PATH=`pwd`/dist/
501 if [[ -n "$ONLY_BUILD" ]] && [[ "$PYTHON_PKG" != "$ONLY_BUILD" ]] && [[ "$PKG" != "$ONLY_BUILD" ]]; then
505 # Determine the package version from the generated sdist archive
506 PYTHON_VERSION=${ARVADOS_BUILDING_VERSION:-$(awk '($1 == "Version:"){print $2}' *.egg-info/PKG-INFO)}
508 # See if we actually need to build this package; does it exist already?
509 # We can't do this earlier than here, because we need PYTHON_VERSION...
510 # This isn't so bad; the sdist call above is pretty quick compared to
511 # the invocation of virtualenv and fpm, below.
512 if ! test_package_presence "$PYTHON_PKG" $PYTHON_VERSION $PACKAGE_TYPE $ARVADOS_BUILDING_ITERATION; then
516 echo "Building $FORMAT package for $PKG from $PKG_DIR"
518 # Package the sdist in a virtualenv
519 echo "Creating virtualenv..."
524 rm -f $PYTHON_PKG*deb
525 echo "virtualenv version: `virtualenv --version`"
526 virtualenv_command="virtualenv --python `which $python` $DASHQ_UNLESS_DEBUG build/usr/share/$python/dist/$PYTHON_PKG"
528 if ! $virtualenv_command; then
529 echo "Error, unable to run"
530 echo " $virtualenv_command"
534 if ! build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U pip; then
535 echo "Error, unable to upgrade pip with"
536 echo " build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U pip"
539 echo "pip version: `build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip --version`"
541 if ! build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U setuptools; then
542 echo "Error, unable to upgrade setuptools with"
543 echo " build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U setuptools"
546 echo "setuptools version: `build/usr/share/$python/dist/$PYTHON_PKG/bin/$python -c 'import setuptools; print(setuptools.__version__)'`"
548 if ! build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U wheel; then
549 echo "Error, unable to upgrade wheel with"
550 echo " build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U wheel"
553 echo "wheel version: `build/usr/share/$python/dist/$PYTHON_PKG/bin/wheel version`"
555 if [[ "$TARGET" != "centos7" ]] || [[ "$PYTHON_PKG" != "python-arvados-fuse" ]]; then
556 build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -f $PYSDK_PATH $PACKAGE_PATH
558 # centos7 needs these special tweaks to install python-arvados-fuse
559 build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG docutils
560 PYCURL_SSL_LIBRARY=nss build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -f $PYSDK_PATH $PACKAGE_PATH
563 if [[ "$?" != "0" ]]; then
564 echo "Error, unable to run"
565 echo " build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -f $PYSDK_PATH $PACKAGE_PATH"
569 cd build/usr/share/$python/dist/$PYTHON_PKG/
571 # Replace the shebang lines in all python scripts, and handle the activate
572 # scripts too This is a functional replacement of the 237 line
573 # virtualenv_tools.py script that doesn't work in python3 without serious
574 # patching, minus the parts we don't need (modifying pyc files, etc).
575 for binfile in `ls bin/`; do
576 if ! file --mime bin/$binfile |grep -q binary; then
578 if [[ "$binfile" =~ ^activate(.csh|.fish|)$ ]]; then
579 # these 'activate' scripts need special treatment
580 sed -i "s/VIRTUAL_ENV=\".*\"/VIRTUAL_ENV=\"\/usr\/share\/$python\/dist\/$PYTHON_PKG\"/" bin/$binfile
581 sed -i "s/VIRTUAL_ENV \".*\"/VIRTUAL_ENV \"\/usr\/share\/$python\/dist\/$PYTHON_PKG\"/" bin/$binfile
583 if grep -q -E '^#!.*/bin/python\d?' bin/$binfile; then
584 # Replace shebang line
585 sed -i "1 s/^.*$/#!\/usr\/share\/$python\/dist\/$PYTHON_PKG\/bin\/python/" bin/$binfile
591 cd - >$STDOUT_IF_DEBUG
593 find build -iname '*.pyc' -exec rm {} \;
594 find build -iname '*.pyo' -exec rm {} \;
596 # Finally, generate the package
597 echo "Creating package..."
599 declare -a COMMAND_ARR=("fpm" "-s" "dir" "-t" "$FORMAT")
601 if [[ "$MAINTAINER" != "" ]]; then
602 COMMAND_ARR+=('--maintainer' "$MAINTAINER")
605 if [[ "$VENDOR" != "" ]]; then
606 COMMAND_ARR+=('--vendor' "$VENDOR")
609 COMMAND_ARR+=('--url' 'https://arvados.org')
612 DESCRIPTION=`grep '\sdescription' $WORKSPACE/$PKG_DIR/setup.py|cut -f2 -d=|sed -e "s/[',\\"]//g"`
613 COMMAND_ARR+=('--description' "$DESCRIPTION")
616 LICENSE_STRING=`grep license $WORKSPACE/$PKG_DIR/setup.py|cut -f2 -d=|sed -e "s/[',\\"]//g"`
617 COMMAND_ARR+=('--license' "$LICENSE_STRING")
619 # 12271 - As FPM-generated packages don't include scripts by default, the
620 # packages cleanup on upgrade depends on files being listed on the %files
621 # section in the generated SPEC files. To remove DIRECTORIES, they need to
622 # be listed in that sectiontoo, so we need to add this parameter to properly
623 # remove lingering dirs. But this only works for python2: if used on
624 # python33, it includes dirs like /opt/rh/python33 that belong to
626 if [[ "$FORMAT" == "rpm" ]] && [[ "$python" == "python2.7" ]]; then
627 COMMAND_ARR+=('--rpm-auto-add-directories')
630 if [[ "$PKG" == "arvados-python-client" ]]; then
631 if [[ "$python" == "python2.7" ]]; then
632 COMMAND_ARR+=('--conflicts' "$PYTHON3_PKG_PREFIX-$PKG")
634 COMMAND_ARR+=('--conflicts' "$PYTHON2_PKG_PREFIX-$PKG")
638 if [[ "$DEBUG" != "0" ]]; then
639 COMMAND_ARR+=('--verbose' '--log' 'info')
642 COMMAND_ARR+=('-v' "$PYTHON_VERSION")
643 COMMAND_ARR+=('--iteration' "$ARVADOS_BUILDING_ITERATION")
644 COMMAND_ARR+=('-n' "$PYTHON_PKG")
645 COMMAND_ARR+=('-C' "build")
647 if [[ -e "$WORKSPACE/$PKG_DIR/$PKG.service" ]]; then
648 COMMAND_ARR+=('--after-install' "${WORKSPACE}/build/go-python-package-scripts/postinst")
649 COMMAND_ARR+=('--before-remove' "${WORKSPACE}/build/go-python-package-scripts/prerm")
652 if [[ "$python" == "python2.7" ]]; then
653 COMMAND_ARR+=('--depends' "$PYTHON2_PACKAGE")
655 COMMAND_ARR+=('--depends' "$PYTHON3_PACKAGE")
659 COMMAND_ARR+=('--deb-no-default-config-files')
661 # Append --depends X and other arguments specified by fpm-info.sh in
662 # the package source dir. These are added last so they can override
663 # the arguments added by this script.
664 declare -a fpm_args=()
665 declare -a fpm_depends=()
667 fpminfo="$WORKSPACE/$PKG_DIR/fpm-info.sh"
668 if [[ -e "$fpminfo" ]]; then
669 echo "Loading fpm overrides from $fpminfo"
670 if ! source "$fpminfo"; then
671 echo "Error, unable to source $WORKSPACE/$PKG_DIR/fpm-info.sh for $PKG"
676 for i in "${fpm_depends[@]}"; do
677 COMMAND_ARR+=('--depends' "$i")
680 COMMAND_ARR+=("${fpm_args[@]}")
682 # Make sure to install all our package binaries in /usr/bin.
683 # We have to walk $WORKSPACE/$PKG_DIR/bin rather than
684 # $WORKSPACE/build/usr/share/$python/dist/$PYTHON_PKG/bin/ to get the list
685 # because the latter also includes all the python binaries for the virtualenv.
686 # We have to take the copies of our binaries from the latter directory, though,
687 # because those are the ones we rewrote the shebang line of, above.
688 if [[ -e "$WORKSPACE/$PKG_DIR/bin" ]]; then
689 for binary in `ls $WORKSPACE/$PKG_DIR/bin`; do
690 COMMAND_ARR+=("usr/share/$python/dist/$PYTHON_PKG/bin/$binary=/usr/bin/")
694 # the libpam module should place a few files in the correct place for the pam
696 if [[ -e "$WORKSPACE/$PKG_DIR/dist/build/usr/share/$python/dist/$PYTHON_PKG/lib/security/libpam_arvados.py" ]]; then
697 COMMAND_ARR+=("usr/share/$python/dist/$PYTHON_PKG/lib/security/libpam_arvados.py=/usr/lib/security/")
699 if [[ -e "$WORKSPACE/$PKG_DIR/dist/build/usr/share/$python/dist/$PYTHON_PKG/share/pam-configs/arvados" ]]; then
700 COMMAND_ARR+=("usr/share/$python/dist/$PYTHON_PKG/share/pam-configs/arvados=/usr/share/pam-configs/")
703 # the python-arvados-cwl-runner package comes with cwltool, expose that version
704 if [[ -e "$WORKSPACE/$PKG_DIR/dist/build/usr/share/python2.7/dist/python-arvados-cwl-runner/bin/cwltool" ]]; then
705 COMMAND_ARR+=("usr/share/python2.7/dist/python-arvados-cwl-runner/bin/cwltool=/usr/bin/")
710 FPM_RESULTS=$("${COMMAND_ARR[@]}")
713 # if something went wrong and debug is off, print out the fpm command that errored
714 if ! fpm_verify $FPM_EXIT_CODE $FPM_RESULTS && [[ "$STDOUT_IF_DEBUG" == "/dev/null" ]]; then
715 echo "fpm returned an error executing the command:"
717 echo -e "\n${COMMAND_ARR[@]}\n"
720 mv $WORKSPACE/$PKG_DIR/dist/*$FORMAT $WORKSPACE/packages/$TARGET/
725 # Build packages for everything
727 # The package source. Depending on the source type, this can be a
728 # path, or the name of the package in an upstream repository (e.g.,
732 # The name of the package to build.
735 # The type of source package. Passed to fpm -s. Default "dir".
736 PACKAGE_TYPE=${1:-dir}
738 # Optional: the package version number. Passed to fpm -v.
742 if [[ -n "$ONLY_BUILD" ]] && [[ "$PACKAGE_NAME" != "$ONLY_BUILD" ]] && [[ "$PACKAGE" != "$ONLY_BUILD" ]] ; then
743 # arvados-workbench depends on arvados-server at build time, so even when
744 # only arvados-workbench is being built, we need to build arvados-server too
745 if [[ "$PACKAGE_NAME" != "arvados-server" ]] || [[ "$ONLY_BUILD" != "arvados-workbench" ]]; then
750 local default_iteration_value="$(default_iteration "$PACKAGE" "$VERSION" "$PACKAGE_TYPE")"
752 declare -a COMMAND_ARR=("fpm" "-s" "$PACKAGE_TYPE" "-t" "$FORMAT")
753 if [ python = "$PACKAGE_TYPE" ] && [ deb = "$FORMAT" ]; then
754 # Dependencies are built from setup.py. Since setup.py will never
755 # refer to Debian package iterations, it doesn't make sense to
756 # enforce those in the .deb dependencies.
757 COMMAND_ARR+=(--deb-ignore-iteration-in-dependencies)
760 # 12271 - As FPM-generated packages don't include scripts by default, the
761 # packages cleanup on upgrade depends on files being listed on the %files
762 # section in the generated SPEC files. To remove DIRECTORIES, they need to
763 # be listed in that section too, so we need to add this parameter to properly
764 # remove lingering dirs. But this only works for python2: if used on
765 # python33, it includes dirs like /opt/rh/python33 that belong to
767 if [[ "$FORMAT" = rpm ]] && [[ "$python" = python2.7 ]]; then
768 COMMAND_ARR+=('--rpm-auto-add-directories')
771 if [[ "$DEBUG" != "0" ]]; then
772 COMMAND_ARR+=('--verbose' '--log' 'info')
775 if [[ -n "$PACKAGE_NAME" ]]; then
776 COMMAND_ARR+=('-n' "$PACKAGE_NAME")
779 if [[ "$MAINTAINER" != "" ]]; then
780 COMMAND_ARR+=('--maintainer' "$MAINTAINER")
783 if [[ "$VENDOR" != "" ]]; then
784 COMMAND_ARR+=('--vendor' "$VENDOR")
787 if [[ "$VERSION" != "" ]]; then
788 COMMAND_ARR+=('-v' "$VERSION")
790 if [[ -n "$default_iteration_value" ]]; then
791 # We can always add an --iteration here. If another one is specified in $@,
792 # that will take precedence, as desired.
793 COMMAND_ARR+=(--iteration "$default_iteration_value")
796 # Append --depends X and other arguments specified by fpm-info.sh in
797 # the package source dir. These are added last so they can override
798 # the arguments added by this script.
799 declare -a fpm_args=()
800 declare -a build_depends=()
801 declare -a fpm_depends=()
802 declare -a fpm_exclude=()
803 declare -a fpm_dirs=(
804 # source dir part of 'dir' package ("/source=/dest" => "/source"):
806 for pkgdir in "${fpm_dirs[@]}"; do
807 fpminfo="$pkgdir/fpm-info.sh"
808 if [[ -e "$fpminfo" ]]; then
809 debug_echo "Loading fpm overrides from $fpminfo"
814 for pkg in "${build_depends[@]}"; do
815 if [[ $TARGET =~ debian|ubuntu ]]; then
816 pkg_deb=$(ls "$WORKSPACE/packages/$TARGET/$pkg_"*.deb | sort -rg | awk 'NR==1')
817 if [[ -e $pkg_deb ]]; then
818 echo "Installing build_dep $pkg from $pkg_deb"
821 echo "Attemping to install build_dep $pkg using apt-get"
822 apt-get install -y "$pkg"
824 apt-get -y -f install
826 pkg_rpm=$(ls "$WORKSPACE/packages/$TARGET/$pkg"-[0-9]*.rpm | sort -rg | awk 'NR==1')
827 if [[ -e $pkg_rpm ]]; then
828 echo "Installing build_dep $pkg from $pkg_rpm"
831 echo "Attemping to install build_dep $pkg"
836 for i in "${fpm_depends[@]}"; do
837 COMMAND_ARR+=('--depends' "$i")
839 for i in "${fpm_exclude[@]}"; do
840 COMMAND_ARR+=('--exclude' "$i")
843 # Append remaining function arguments directly to fpm's command line.
848 COMMAND_ARR+=("${fpm_args[@]}")
850 COMMAND_ARR+=("$PACKAGE")
852 debug_echo -e "\n${COMMAND_ARR[@]}\n"
854 FPM_RESULTS=$("${COMMAND_ARR[@]}")
857 fpm_verify $FPM_EXIT_CODE $FPM_RESULTS
859 # if something went wrong and debug is off, print out the fpm command that errored
860 if [[ 0 -ne $? ]] && [[ "$STDOUT_IF_DEBUG" == "/dev/null" ]]; then
861 echo -e "\n${COMMAND_ARR[@]}\n"
865 # verify build results
872 if [[ $FPM_RESULTS =~ ([A-Za-z0-9_\.-]*\.)(deb|rpm) ]]; then
873 FPM_PACKAGE_NAME=${BASH_REMATCH[1]}${BASH_REMATCH[2]}
876 if [[ "$FPM_PACKAGE_NAME" == "" ]]; then
879 echo "Error: $PACKAGE: Unable to figure out package name from fpm results:"
884 elif [[ "$FPM_RESULTS" =~ "File already exists" ]]; then
885 echo "Package $FPM_PACKAGE_NAME exists, not rebuilding"
887 elif [[ 0 -ne "$FPM_EXIT_CODE" ]]; then
889 echo "Error building package for $1:\n $FPM_RESULTS"
896 if [[ "$FORMAT" == "deb" ]]; then
897 $SUDO apt-get install $PACKAGES --yes
898 elif [[ "$FORMAT" == "rpm" ]]; then
899 $SUDO yum -q -y install $PACKAGES
904 printf '%s %s\n' "=======" "$1"
908 if [[ "$1" != "0" ]]; then
910 failures+=("$2 (`timer`)")
912 successes+=("$2 (`timer`)")
921 echo -n "$(($SECONDS - $t0))s"
925 for x in "${successes[@]}"
930 if [[ ${#failures[@]} == 0 ]]
932 if [[ ${#successes[@]} != 0 ]]; then
933 echo "All test suites passed."
936 echo "Failures (${#failures[@]}):"
937 for x in "${failures[@]}"