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 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 test_rails_package_presence() {
213 local pkgname="$1"; shift
214 local srcdir="$1"; shift
216 if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
224 local version="$(version_from_git)"
228 test_package_presence $pkgname $version rails "$RAILS_PACKAGE_ITERATION"
231 get_complete_package_name() {
232 # if the errexit flag is set, unset it until this function returns
233 # otherwise, the shift calls below will abort the program if optional arguments are not supplied
234 if [ -o errexit ]; then
238 # $__returnvar has the nameref attribute set, which means it is a reference
239 # to another variable that is passed in as the first argument to this function.
240 # see https://www.gnu.org/software/bash/manual/html_node/Shell-Parameters.html
241 local -n __returnvar="$1"; shift
242 local pkgname="$1"; shift
243 local version="$1"; shift
244 local pkgtype="$1"; shift
245 local iteration="$1"; shift
246 local arch="$1"; shift
247 if [[ "$iteration" == "" ]]; then
248 iteration="$(default_iteration "$pkgname" "$version" "$pkgtype")"
251 if [[ "$arch" == "" ]]; then
252 rpm_architecture="x86_64"
253 deb_architecture="amd64"
255 if [[ "$pkgtype" =~ ^(src)$ ]]; then
256 rpm_architecture="noarch"
257 deb_architecture="all"
260 # These python packages have binary components
261 if [[ "$pkgname" =~ (ruamel|ciso|pycrypto|pyyaml) ]]; then
262 rpm_architecture="x86_64"
263 deb_architecture="amd64"
266 rpm_architecture=$arch
267 deb_architecture=$arch
270 local complete_pkgname="${pkgname}_$version${iteration:+-$iteration}_$deb_architecture.deb"
271 if [[ "$FORMAT" == "rpm" ]]; then
272 # rpm packages get iteration 1 if we don't supply one
273 iteration=${iteration:-1}
274 complete_pkgname="$pkgname-$version-${iteration}.$rpm_architecture.rpm"
276 __returnvar=${complete_pkgname}
279 # Test if the package already exists, if not return 0, if it does return 1
280 test_package_presence() {
281 local pkgname="$1"; shift
282 local version="$1"; shift
283 local pkgtype="$1"; shift
284 local iteration="$1"; shift
285 local arch="$1"; shift
286 if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
287 # arvados-workbench depends on arvados-server at build time, so even when
288 # only arvados-workbench is being built, we need to build arvados-server too
289 if [[ "$pkgname" != "arvados-server" ]] || [[ "$ONLY_BUILD" != "arvados-workbench" ]]; then
295 get_complete_package_name full_pkgname $pkgname $version $pkgtype $iteration $arch
297 # See if we can skip building the package, only if it already exists in the
298 # processed/ directory. If so, move it back to the packages directory to make
299 # sure it gets picked up by the test and/or upload steps.
300 # Get the list of packages from the repos
302 if [[ "$FORMAT" == "deb" ]]; then
306 dd[ubuntu1604]=xenial
307 dd[ubuntu1804]=bionic
309 if [ ${pkgname:0:3} = "lib" ]; then
310 repo_subdir=${pkgname:0:4}
312 repo_subdir=${pkgname:0:1}
315 repo_pkg_list=$(curl -s -o - http://apt.arvados.org/pool/${D}/main/${repo_subdir}/)
316 echo ${repo_pkg_list} |grep -q ${full_pkgname}
317 if [ $? -eq 0 ] ; then
318 echo "Package $full_pkgname exists upstream, not rebuilding, downloading instead!"
319 curl -s -o "$WORKSPACE/packages/$TARGET/${full_pkgname}" http://apt.arvados.org/pool/${D}/main/${repo_subdir}/${full_pkgname}
321 elif test -f "$WORKSPACE/packages/$TARGET/processed/${full_pkgname}" ; then
322 echo "Package $full_pkgname exists, not rebuilding!"
325 echo "Package $full_pkgname not found, building"
329 centos_repo="http://rpm.arvados.org/CentOS/7/dev/x86_64/"
331 repo_pkg_list=$(curl -s -o - ${centos_repo})
332 echo ${repo_pkg_list} |grep -q ${full_pkgname}
333 if [ $? -eq 0 ]; then
334 echo "Package $full_pkgname exists upstream, not rebuilding, downloading instead!"
335 curl -s -o "$WORKSPACE/packages/$TARGET/${full_pkgname}" ${centos_repo}${full_pkgname}
337 elif test -f "$WORKSPACE/packages/$TARGET/processed/${full_pkgname}" ; then
338 echo "Package $full_pkgname exists, not rebuilding!"
341 echo "Package $full_pkgname not found, building"
347 handle_rails_package() {
348 local pkgname="$1"; shift
350 if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
353 local srcdir="$1"; shift
355 local license_path="$1"; shift
356 local version="$(version_from_git)"
357 echo "$version" >package-build.version
358 local scripts_dir="$(mktemp --tmpdir -d "$pkgname-XXXXXXXX.scripts")" && \
361 _build_rails_package_scripts "$pkgname" "$scripts_dir"
364 git rev-parse HEAD >git-commit.version
367 if [[ 0 != "$?" ]] || ! cd "$WORKSPACE/packages/$TARGET"; then
368 echo "ERROR: $pkgname package prep failed" >&2
369 rm -rf "$scripts_dir"
373 local railsdir="/var/www/${pkgname%-server}/current"
374 local -a pos_args=("$srcdir/=$railsdir" "$pkgname" dir "$version")
375 local license_arg="$license_path=$railsdir/$(basename "$license_path")"
376 local -a switches=(--after-install "$scripts_dir/postinst"
377 --before-remove "$scripts_dir/prerm"
378 --after-remove "$scripts_dir/postrm")
379 if [[ -z "$ARVADOS_BUILDING_VERSION" ]]; then
380 switches+=(--iteration $RAILS_PACKAGE_ITERATION)
382 # For some reason fpm excludes need to not start with /.
383 local exclude_root="${railsdir#/}"
384 # .git and packages are for the SSO server, which is built from its
386 local -a exclude_list=(.git packages tmp log coverage Capfile\* \
387 config/deploy\* config/application.yml)
388 # for arvados-workbench, we need to have the (dummy) config/database.yml in the package
389 if [[ "$pkgname" != "arvados-workbench" ]]; then
390 exclude_list+=('config/database.yml')
392 for exclude in ${exclude_list[@]}; do
393 switches+=(-x "$exclude_root/$exclude")
395 fpm_build "${pos_args[@]}" "${switches[@]}" \
396 -x "$exclude_root/vendor/cache-*" \
397 -x "$exclude_root/vendor/bundle" "$@" "$license_arg"
398 rm -rf "$scripts_dir"
401 # Build python packages with a virtualenv built-in
402 fpm_build_virtualenv () {
407 PACKAGE_TYPE=${1:-python}
411 STDOUT_IF_DEBUG=/dev/null
412 STDERR_IF_DEBUG=/dev/null
413 DASHQ_UNLESS_DEBUG=-q
414 if [[ "$DEBUG" != "0" ]]; then
415 STDOUT_IF_DEBUG=/dev/stdout
416 STDERR_IF_DEBUG=/dev/stderr
419 if [[ "$ARVADOS_BUILDING_ITERATION" == "" ]]; then
420 ARVADOS_BUILDING_ITERATION=1
424 case "$PACKAGE_TYPE" in
427 if [[ "$FORMAT" != "rpm" ]]; then
430 # In CentOS, we use a different mechanism to get the right version of pip
433 PACKAGE_PREFIX=$PYTHON3_PKG_PREFIX
436 # All Arvados Python2 packages depend on Python 2.7.
437 # Make sure we build with that for consistency.
440 PACKAGE_PREFIX=$PYTHON2_PKG_PREFIX
444 if [[ "$PKG" != "libpam-arvados" ]] &&
445 [[ "$PKG" != "arvados-node-manager" ]] &&
446 [[ "$PKG" != "arvados-docker-cleaner" ]]; then
447 PYTHON_PKG=$PACKAGE_PREFIX-$PKG
449 # Exception to our package naming convention
453 # arvados-python-client sdist should always be built, to be available
454 # for other dependant packages.
455 if [[ -n "$ONLY_BUILD" ]] && [[ "arvados-python-client" != "$PKG" ]] && [[ "$PYTHON_PKG" != "$ONLY_BUILD" ]] && [[ "$PKG" != "$ONLY_BUILD" ]]; then
459 cd $WORKSPACE/$PKG_DIR
463 # Get the latest setuptools
464 if ! $pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U setuptools; then
465 echo "Error, unable to upgrade setuptools with"
466 echo " $pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U setuptools"
469 # filter a useless warning (when building the cwltest package) from the stderr output
470 if ! $python setup.py $DASHQ_UNLESS_DEBUG sdist 2> >(grep -v 'warning: no previously-included files matching'); then
471 echo "Error, unable to run $python setup.py sdist for $PKG"
475 PACKAGE_PATH=`(cd dist; ls *tar.gz)`
477 if [[ "arvados-python-client" == "$PKG" ]]; then
478 PYSDK_PATH=`pwd`/dist/
481 if [[ -n "$ONLY_BUILD" ]] && [[ "$PYTHON_PKG" != "$ONLY_BUILD" ]] && [[ "$PKG" != "$ONLY_BUILD" ]]; then
485 # Determine the package version from the generated sdist archive
486 PYTHON_VERSION=${ARVADOS_BUILDING_VERSION:-$(awk '($1 == "Version:"){print $2}' *.egg-info/PKG-INFO)}
488 # See if we actually need to build this package; does it exist already?
489 # We can't do this earlier than here, because we need PYTHON_VERSION...
490 # This isn't so bad; the sdist call above is pretty quick compared to
491 # the invocation of virtualenv and fpm, below.
492 if ! test_package_presence "$PYTHON_PKG" $PYTHON_VERSION $PACKAGE_TYPE $ARVADOS_BUILDING_ITERATION; then
496 echo "Building $FORMAT package for $PKG from $PKG_DIR"
498 # Package the sdist in a virtualenv
499 echo "Creating virtualenv..."
504 rm -f $PYTHON_PKG*deb
505 echo "virtualenv version: `virtualenv --version`"
506 virtualenv_command="virtualenv --python `which $python` $DASHQ_UNLESS_DEBUG build/usr/share/$python/dist/$PYTHON_PKG"
508 if ! $virtualenv_command; then
509 echo "Error, unable to run"
510 echo " $virtualenv_command"
514 if ! build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U pip; then
515 echo "Error, unable to upgrade pip with"
516 echo " build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U pip"
519 echo "pip version: `build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip --version`"
521 if ! build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U setuptools; then
522 echo "Error, unable to upgrade setuptools with"
523 echo " build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U setuptools"
526 echo "setuptools version: `build/usr/share/$python/dist/$PYTHON_PKG/bin/$python -c 'import setuptools; print(setuptools.__version__)'`"
528 if ! build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U wheel; then
529 echo "Error, unable to upgrade wheel with"
530 echo " build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U wheel"
533 echo "wheel version: `build/usr/share/$python/dist/$PYTHON_PKG/bin/wheel version`"
535 if [[ "$TARGET" != "centos7" ]] || [[ "$PYTHON_PKG" != "python-arvados-fuse" ]]; then
536 build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -f $PYSDK_PATH $PACKAGE_PATH
538 # centos7 needs these special tweaks to install python-arvados-fuse
539 build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG docutils
540 PYCURL_SSL_LIBRARY=nss build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -f $PYSDK_PATH $PACKAGE_PATH
543 if [[ "$?" != "0" ]]; then
544 echo "Error, unable to run"
545 echo " build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -f $PYSDK_PATH $PACKAGE_PATH"
549 cd build/usr/share/$python/dist/$PYTHON_PKG/
551 # Replace the shebang lines in all python scripts, and handle the activate
552 # scripts too This is a functional replacement of the 237 line
553 # virtualenv_tools.py script that doesn't work in python3 without serious
554 # patching, minus the parts we don't need (modifying pyc files, etc).
555 for binfile in `ls bin/`; do
556 if ! file --mime bin/$binfile |grep -q binary; then
558 if [[ "$binfile" =~ ^activate(.csh|.fish|)$ ]]; then
559 # these 'activate' scripts need special treatment
560 sed -i "s/VIRTUAL_ENV=\".*\"/VIRTUAL_ENV=\"\/usr\/share\/$python\/dist\/$PYTHON_PKG\"/" bin/$binfile
561 sed -i "s/VIRTUAL_ENV \".*\"/VIRTUAL_ENV \"\/usr\/share\/$python\/dist\/$PYTHON_PKG\"/" bin/$binfile
563 if grep -q -E '^#!.*/bin/python\d?' bin/$binfile; then
564 # Replace shebang line
565 sed -i "1 s/^.*$/#!\/usr\/share\/$python\/dist\/$PYTHON_PKG\/bin\/python/" bin/$binfile
571 cd - >$STDOUT_IF_DEBUG
573 find build -iname '*.pyc' -exec rm {} \;
574 find build -iname '*.pyo' -exec rm {} \;
576 # Finally, generate the package
577 echo "Creating package..."
579 declare -a COMMAND_ARR=("fpm" "-s" "dir" "-t" "$FORMAT")
581 if [[ "$MAINTAINER" != "" ]]; then
582 COMMAND_ARR+=('--maintainer' "$MAINTAINER")
585 if [[ "$VENDOR" != "" ]]; then
586 COMMAND_ARR+=('--vendor' "$VENDOR")
589 COMMAND_ARR+=('--url' 'https://arvados.org')
592 DESCRIPTION=`grep '\sdescription' $WORKSPACE/$PKG_DIR/setup.py|cut -f2 -d=|sed -e "s/[',\\"]//g"`
593 COMMAND_ARR+=('--description' "$DESCRIPTION")
596 LICENSE_STRING=`grep license $WORKSPACE/$PKG_DIR/setup.py|cut -f2 -d=|sed -e "s/[',\\"]//g"`
597 COMMAND_ARR+=('--license' "$LICENSE_STRING")
599 # 12271 - As FPM-generated packages don't include scripts by default, the
600 # packages cleanup on upgrade depends on files being listed on the %files
601 # section in the generated SPEC files. To remove DIRECTORIES, they need to
602 # be listed in that sectiontoo, so we need to add this parameter to properly
603 # remove lingering dirs. But this only works for python2: if used on
604 # python33, it includes dirs like /opt/rh/python33 that belong to
606 if [[ "$FORMAT" == "rpm" ]] && [[ "$python" == "python2.7" ]]; then
607 COMMAND_ARR+=('--rpm-auto-add-directories')
610 if [[ "$PKG" == "arvados-python-client" ]]; then
611 if [[ "$python" == "python2.7" ]]; then
612 COMMAND_ARR+=('--conflicts' "$PYTHON3_PKG_PREFIX-$PKG")
614 COMMAND_ARR+=('--conflicts' "$PYTHON2_PKG_PREFIX-$PKG")
618 if [[ "$DEBUG" != "0" ]]; then
619 COMMAND_ARR+=('--verbose' '--log' 'info')
622 COMMAND_ARR+=('-v' "$PYTHON_VERSION")
623 COMMAND_ARR+=('--iteration' "$ARVADOS_BUILDING_ITERATION")
624 COMMAND_ARR+=('-n' "$PYTHON_PKG")
625 COMMAND_ARR+=('-C' "build")
627 if [[ -e "$WORKSPACE/$PKG_DIR/$PKG.service" ]]; then
628 COMMAND_ARR+=('--after-install' "${WORKSPACE}/build/go-python-package-scripts/postinst")
629 COMMAND_ARR+=('--before-remove' "${WORKSPACE}/build/go-python-package-scripts/prerm")
632 if [[ "$python" == "python2.7" ]]; then
633 COMMAND_ARR+=('--depends' "$PYTHON2_PACKAGE")
635 COMMAND_ARR+=('--depends' "$PYTHON3_PACKAGE")
639 COMMAND_ARR+=('--deb-no-default-config-files')
641 # Append --depends X and other arguments specified by fpm-info.sh in
642 # the package source dir. These are added last so they can override
643 # the arguments added by this script.
644 declare -a fpm_args=()
645 declare -a fpm_depends=()
647 fpminfo="$WORKSPACE/$PKG_DIR/fpm-info.sh"
648 if [[ -e "$fpminfo" ]]; then
649 echo "Loading fpm overrides from $fpminfo"
650 if ! source "$fpminfo"; then
651 echo "Error, unable to source $WORKSPACE/$PKG_DIR/fpm-info.sh for $PKG"
656 for i in "${fpm_depends[@]}"; do
657 COMMAND_ARR+=('--depends' "$i")
660 COMMAND_ARR+=("${fpm_args[@]}")
662 # Make sure to install all our package binaries in /usr/bin.
663 # We have to walk $WORKSPACE/$PKG_DIR/bin rather than
664 # $WORKSPACE/build/usr/share/$python/dist/$PYTHON_PKG/bin/ to get the list
665 # because the latter also includes all the python binaries for the virtualenv.
666 # We have to take the copies of our binaries from the latter directory, though,
667 # because those are the ones we rewrote the shebang line of, above.
668 if [[ -e "$WORKSPACE/$PKG_DIR/bin" ]]; then
669 for binary in `ls $WORKSPACE/$PKG_DIR/bin`; do
670 COMMAND_ARR+=("usr/share/$python/dist/$PYTHON_PKG/bin/$binary=/usr/bin/")
674 # the libpam module should place a few files in the correct place for the pam
676 if [[ -e "$WORKSPACE/$PKG_DIR/dist/build/usr/share/$python/dist/$PYTHON_PKG/lib/security/libpam_arvados.py" ]]; then
677 COMMAND_ARR+=("usr/share/$python/dist/$PYTHON_PKG/lib/security/libpam_arvados.py=/usr/lib/security/")
679 if [[ -e "$WORKSPACE/$PKG_DIR/dist/build/usr/share/$python/dist/$PYTHON_PKG/share/pam-configs/arvados" ]]; then
680 COMMAND_ARR+=("usr/share/$python/dist/$PYTHON_PKG/share/pam-configs/arvados=/usr/share/pam-configs/")
683 # the python-arvados-cwl-runner package comes with cwltool, expose that version
684 if [[ -e "$WORKSPACE/$PKG_DIR/dist/build/usr/share/python2.7/dist/python-arvados-cwl-runner/bin/cwltool" ]]; then
685 COMMAND_ARR+=("usr/share/python2.7/dist/python-arvados-cwl-runner/bin/cwltool=/usr/bin/")
690 FPM_RESULTS=$("${COMMAND_ARR[@]}")
693 # if something went wrong and debug is off, print out the fpm command that errored
694 if ! fpm_verify $FPM_EXIT_CODE $FPM_RESULTS && [[ "$STDOUT_IF_DEBUG" == "/dev/null" ]]; then
695 echo "fpm returned an error executing the command:"
697 echo -e "\n${COMMAND_ARR[@]}\n"
700 mv $WORKSPACE/$PKG_DIR/dist/*$FORMAT $WORKSPACE/packages/$TARGET/
705 # Build packages for everything
707 # The package source. Depending on the source type, this can be a
708 # path, or the name of the package in an upstream repository (e.g.,
712 # The name of the package to build.
715 # The type of source package. Passed to fpm -s. Default "dir".
716 PACKAGE_TYPE=${1:-dir}
718 # Optional: the package version number. Passed to fpm -v.
722 if [[ -n "$ONLY_BUILD" ]] && [[ "$PACKAGE_NAME" != "$ONLY_BUILD" ]] && [[ "$PACKAGE" != "$ONLY_BUILD" ]] ; then
723 # arvados-workbench depends on arvados-server at build time, so even when
724 # only arvados-workbench is being built, we need to build arvados-server too
725 if [[ "$PACKAGE_NAME" != "arvados-server" ]] || [[ "$ONLY_BUILD" != "arvados-workbench" ]]; then
730 local default_iteration_value="$(default_iteration "$PACKAGE" "$VERSION" "$PACKAGE_TYPE")"
732 declare -a COMMAND_ARR=("fpm" "-s" "$PACKAGE_TYPE" "-t" "$FORMAT")
733 if [ python = "$PACKAGE_TYPE" ] && [ deb = "$FORMAT" ]; then
734 # Dependencies are built from setup.py. Since setup.py will never
735 # refer to Debian package iterations, it doesn't make sense to
736 # enforce those in the .deb dependencies.
737 COMMAND_ARR+=(--deb-ignore-iteration-in-dependencies)
740 # 12271 - As FPM-generated packages don't include scripts by default, the
741 # packages cleanup on upgrade depends on files being listed on the %files
742 # section in the generated SPEC files. To remove DIRECTORIES, they need to
743 # be listed in that section too, so we need to add this parameter to properly
744 # remove lingering dirs. But this only works for python2: if used on
745 # python33, it includes dirs like /opt/rh/python33 that belong to
747 if [[ "$FORMAT" = rpm ]] && [[ "$python" = python2.7 ]]; then
748 COMMAND_ARR+=('--rpm-auto-add-directories')
751 if [[ "$DEBUG" != "0" ]]; then
752 COMMAND_ARR+=('--verbose' '--log' 'info')
755 if [[ -n "$PACKAGE_NAME" ]]; then
756 COMMAND_ARR+=('-n' "$PACKAGE_NAME")
759 if [[ "$MAINTAINER" != "" ]]; then
760 COMMAND_ARR+=('--maintainer' "$MAINTAINER")
763 if [[ "$VENDOR" != "" ]]; then
764 COMMAND_ARR+=('--vendor' "$VENDOR")
767 if [[ "$VERSION" != "" ]]; then
768 COMMAND_ARR+=('-v' "$VERSION")
770 if [[ -n "$default_iteration_value" ]]; then
771 # We can always add an --iteration here. If another one is specified in $@,
772 # that will take precedence, as desired.
773 COMMAND_ARR+=(--iteration "$default_iteration_value")
776 # Append --depends X and other arguments specified by fpm-info.sh in
777 # the package source dir. These are added last so they can override
778 # the arguments added by this script.
779 declare -a fpm_args=()
780 declare -a build_depends=()
781 declare -a fpm_depends=()
782 declare -a fpm_exclude=()
783 declare -a fpm_dirs=(
784 # source dir part of 'dir' package ("/source=/dest" => "/source"):
786 for pkgdir in "${fpm_dirs[@]}"; do
787 fpminfo="$pkgdir/fpm-info.sh"
788 if [[ -e "$fpminfo" ]]; then
789 debug_echo "Loading fpm overrides from $fpminfo"
794 for pkg in "${build_depends[@]}"; do
795 if [[ $TARGET =~ debian|ubuntu ]]; then
796 pkg_deb=$(ls "$WORKSPACE/packages/$TARGET/$pkg_"*.deb | sort -rg | awk 'NR==1')
797 if [[ -e $pkg_deb ]]; then
798 echo "Installing build_dep $pkg from $pkg_deb"
801 echo "Attemping to install build_dep $pkg using apt-get"
802 apt-get install -y "$pkg"
804 apt-get -y -f install
806 pkg_rpm=$(ls "$WORKSPACE/packages/$TARGET/$pkg"-[0-9]*.rpm | sort -rg | awk 'NR==1')
807 if [[ -e $pkg_rpm ]]; then
808 echo "Installing build_dep $pkg from $pkg_rpm"
811 echo "Attemping to install build_dep $pkg"
816 for i in "${fpm_depends[@]}"; do
817 COMMAND_ARR+=('--depends' "$i")
819 for i in "${fpm_exclude[@]}"; do
820 COMMAND_ARR+=('--exclude' "$i")
823 # Append remaining function arguments directly to fpm's command line.
828 COMMAND_ARR+=("${fpm_args[@]}")
830 COMMAND_ARR+=("$PACKAGE")
832 debug_echo -e "\n${COMMAND_ARR[@]}\n"
834 FPM_RESULTS=$("${COMMAND_ARR[@]}")
837 fpm_verify $FPM_EXIT_CODE $FPM_RESULTS
839 # if something went wrong and debug is off, print out the fpm command that errored
840 if [[ 0 -ne $? ]] && [[ "$STDOUT_IF_DEBUG" == "/dev/null" ]]; then
841 echo -e "\n${COMMAND_ARR[@]}\n"
845 # verify build results
852 if [[ $FPM_RESULTS =~ ([A-Za-z0-9_\.-]*\.)(deb|rpm) ]]; then
853 FPM_PACKAGE_NAME=${BASH_REMATCH[1]}${BASH_REMATCH[2]}
856 if [[ "$FPM_PACKAGE_NAME" == "" ]]; then
859 echo "Error: $PACKAGE: Unable to figure out package name from fpm results:"
864 elif [[ "$FPM_RESULTS" =~ "File already exists" ]]; then
865 echo "Package $FPM_PACKAGE_NAME exists, not rebuilding"
867 elif [[ 0 -ne "$FPM_EXIT_CODE" ]]; then
869 echo "Error building package for $1:\n $FPM_RESULTS"
876 if [[ "$FORMAT" == "deb" ]]; then
877 $SUDO apt-get install $PACKAGES --yes
878 elif [[ "$FORMAT" == "rpm" ]]; then
879 $SUDO yum -q -y install $PACKAGES
884 printf '%s %s\n' "=======" "$1"
888 if [[ "$1" != "0" ]]; then
890 failures+=("$2 (`timer`)")
892 successes+=("$2 (`timer`)")
901 echo -n "$(($SECONDS - $t0))s"
905 for x in "${successes[@]}"
910 if [[ ${#failures[@]} == 0 ]]
912 if [[ ${#successes[@]} != 0 ]]; then
913 echo "All test suites passed."
916 echo "Failures (${#failures[@]}):"
917 for x in "${failures[@]}"