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=8
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 # Usage: package_go_binary services/foo arvados-foo "Compute foo to arbitrary precision"
107 package_go_binary() {
108 local src_path="$1"; shift
109 local prog="$1"; shift
110 local description="$1"; shift
111 local license_file="${1:-agpl-3.0.txt}"; shift
113 if [[ -n "$ONLY_BUILD" ]] && [[ "$prog" != "$ONLY_BUILD" ]] ; then
117 debug_echo "package_go_binary $src_path as $prog"
119 local basename="${src_path##*/}"
121 mkdir -p "$GOPATH/src/git.curoverse.com"
122 ln -sfn "$WORKSPACE" "$GOPATH/src/git.curoverse.com/arvados.git"
123 (cd "$GOPATH/src/git.curoverse.com/arvados.git" && "$GOPATH/bin/govendor" sync -v)
125 cd "$GOPATH/src/git.curoverse.com/arvados.git/$src_path"
126 local version="$(version_from_git)"
127 local timestamp="$(timestamp_from_git)"
129 # Update the version number and build a new package if the vendor
130 # bundle has changed, or the command imports anything from the
131 # Arvados SDK and the SDK has changed.
132 declare -a checkdirs=(vendor)
133 if grep -qr git.curoverse.com/arvados .; then
134 checkdirs+=(sdk/go lib)
136 for dir in ${checkdirs[@]}; do
137 cd "$GOPATH/src/git.curoverse.com/arvados.git/$dir"
138 ts="$(timestamp_from_git)"
139 if [[ "$ts" -gt "$timestamp" ]]; then
140 version=$(version_from_git)
145 cd $WORKSPACE/packages/$TARGET
146 test_package_presence $prog $version go
148 if [[ "$?" != "0" ]]; then
152 go get -ldflags "-X main.version=${version}" "git.curoverse.com/arvados.git/$src_path"
155 systemd_unit="$WORKSPACE/${src_path}/${prog}.service"
156 if [[ -e "${systemd_unit}" ]]; then
158 --after-install "${WORKSPACE}/build/go-python-package-scripts/postinst"
159 --before-remove "${WORKSPACE}/build/go-python-package-scripts/prerm"
160 "${systemd_unit}=/lib/systemd/system/${prog}.service")
162 switches+=("$WORKSPACE/${license_file}=/usr/share/doc/$prog/${license_file}")
164 fpm_build "$GOPATH/bin/${basename}=/usr/bin/${prog}" "${prog}" dir "${version}" "--url=https://arvados.org" "--license=GNU Affero General Public License, version 3.0" "--description=${description}" "${switches[@]}"
167 default_iteration() {
168 if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then
169 echo "$ARVADOS_BUILDING_ITERATION"
172 local package_name="$1"; shift
173 local package_version="$1"; shift
174 local package_type="$1"; shift
176 if [[ $package_version =~ ^0\.1\.([0-9]{14})(\.|$) ]] && \
177 [[ ${BASH_REMATCH[1]} -le $LICENSE_PACKAGE_TS ]]; then
180 if [[ $package_type =~ ^python ]]; then
181 # Fix --iteration for #9242.
187 _build_rails_package_scripts() {
188 local pkgname="$1"; shift
189 local destdir="$1"; shift
190 local srcdir="$RUN_BUILD_PACKAGES_PATH/rails-package-scripts"
191 for scriptname in postinst prerm postrm; do
192 cat "$srcdir/$pkgname.sh" "$srcdir/step2.sh" "$srcdir/$scriptname.sh" \
193 >"$destdir/$scriptname" || return $?
197 test_rails_package_presence() {
198 local pkgname="$1"; shift
199 local srcdir="$1"; shift
201 if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
209 local version="$(version_from_git)"
213 test_package_presence $pkgname $version rails "$RAILS_PACKAGE_ITERATION"
216 test_package_presence() {
217 local pkgname="$1"; shift
218 local version="$1"; shift
219 local pkgtype="$1"; shift
220 local iteration="$1"; shift
221 local arch="$1"; shift
223 if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
227 if [[ "$iteration" == "" ]]; then
228 iteration="$(default_iteration "$pkgname" "$version" "$pkgtype")"
231 if [[ "$arch" == "" ]]; then
232 rpm_architecture="x86_64"
233 deb_architecture="amd64"
235 if [[ "$pkgtype" =~ ^(src)$ ]]; then
236 rpm_architecture="noarch"
237 deb_architecture="all"
240 # These python packages have binary components
241 if [[ "$pkgname" =~ (ruamel|ciso|pycrypto|pyyaml) ]]; then
242 rpm_architecture="x86_64"
243 deb_architecture="amd64"
246 rpm_architecture=$arch
247 deb_architecture=$arch
250 if [[ "$FORMAT" == "deb" ]]; then
251 local complete_pkgname="${pkgname}_$version${iteration:+-$iteration}_$deb_architecture.deb"
253 # rpm packages get iteration 1 if we don't supply one
254 iteration=${iteration:-1}
255 local complete_pkgname="$pkgname-$version-${iteration}.$rpm_architecture.rpm"
258 # See if we can skip building the package, only if it already exists in the
259 # processed/ directory. If so, move it back to the packages directory to make
260 # sure it gets picked up by the test and/or upload steps.
261 # Get the list of packages from the repos
263 if [[ "$FORMAT" == "deb" ]]; then
268 dd[ubuntu1404]=trusty
269 dd[ubuntu1604]=xenial
270 dd[ubuntu1804]=bionic
272 if [ ${pkgname:0:3} = "lib" ]; then
273 repo_subdir=${pkgname:0:4}
275 repo_subdir=${pkgname:0:1}
278 repo_pkg_list=$(curl -s -o - http://apt.arvados.org/pool/${D}/main/${repo_subdir}/)
279 echo ${repo_pkg_list} |grep -q ${complete_pkgname}
280 if [ $? -eq 0 ] ; then
281 echo "Package $complete_pkgname exists, not rebuilding!"
282 curl -s -o ./${complete_pkgname} http://apt.arvados.org/pool/${D}/main/${repo_subdir}/${complete_pkgname}
284 elif test -f "$WORKSPACE/packages/$TARGET/processed/${complete_pkgname}" ; then
285 echo "Package $complete_pkgname exists, not rebuilding!"
288 echo "Package $complete_pkgname not found, building"
292 centos_repo="http://rpm.arvados.org/CentOS/7/dev/x86_64/"
294 repo_pkg_list=$(curl -s -o - ${centos_repo})
295 echo ${repo_pkg_list} |grep -q ${complete_pkgname}
296 if [ $? -eq 0 ]; then
297 echo "Package $complete_pkgname exists, not rebuilding!"
298 curl -s -o ./${complete_pkgname} ${centos_repo}${complete_pkgname}
300 elif test -f "$WORKSPACE/packages/$TARGET/processed/${complete_pkgname}" ; then
301 echo "Package $complete_pkgname exists, not rebuilding!"
304 echo "Package $complete_pkgname not found, building"
310 handle_rails_package() {
311 local pkgname="$1"; shift
313 if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
316 local srcdir="$1"; shift
318 local license_path="$1"; shift
319 local version="$(version_from_git)"
320 echo "$version" >package-build.version
321 local scripts_dir="$(mktemp --tmpdir -d "$pkgname-XXXXXXXX.scripts")" && \
324 _build_rails_package_scripts "$pkgname" "$scripts_dir"
327 git rev-parse HEAD >git-commit.version
330 if [[ 0 != "$?" ]] || ! cd "$WORKSPACE/packages/$TARGET"; then
331 echo "ERROR: $pkgname package prep failed" >&2
332 rm -rf "$scripts_dir"
336 local railsdir="/var/www/${pkgname%-server}/current"
337 local -a pos_args=("$srcdir/=$railsdir" "$pkgname" dir "$version")
338 local license_arg="$license_path=$railsdir/$(basename "$license_path")"
339 local -a switches=(--after-install "$scripts_dir/postinst"
340 --before-remove "$scripts_dir/prerm"
341 --after-remove "$scripts_dir/postrm")
342 if [[ -z "$ARVADOS_BUILDING_VERSION" ]]; then
343 switches+=(--iteration $RAILS_PACKAGE_ITERATION)
345 # For some reason fpm excludes need to not start with /.
346 local exclude_root="${railsdir#/}"
347 # .git and packages are for the SSO server, which is built from its
349 local -a exclude_list=(.git packages tmp log coverage Capfile\* \
350 config/deploy\* config/application.yml)
351 # for arvados-workbench, we need to have the (dummy) config/database.yml in the package
352 if [[ "$pkgname" != "arvados-workbench" ]]; then
353 exclude_list+=('config/database.yml')
355 for exclude in ${exclude_list[@]}; do
356 switches+=(-x "$exclude_root/$exclude")
358 fpm_build "${pos_args[@]}" "${switches[@]}" \
359 -x "$exclude_root/vendor/cache-*" \
360 -x "$exclude_root/vendor/bundle" "$@" "$license_arg"
361 rm -rf "$scripts_dir"
364 # Build python packages with a virtualenv built-in
365 fpm_build_virtualenv () {
370 PACKAGE_TYPE=${1:-python}
374 STDOUT_IF_DEBUG=/dev/null
375 STDERR_IF_DEBUG=/dev/null
376 DASHQ_UNLESS_DEBUG=-q
377 if [[ "$DEBUG" != "0" ]]; then
378 STDOUT_IF_DEBUG=/dev/stdout
379 STDERR_IF_DEBUG=/dev/stderr
382 if [[ "$ARVADOS_BUILDING_ITERATION" == "" ]]; then
383 ARVADOS_BUILDING_ITERATION=1
387 case "$PACKAGE_TYPE" in
390 if [[ "$FORMAT" != "rpm" ]]; then
393 # In CentOS, we use a different mechanism to get the right version of pip
396 PACKAGE_PREFIX=$PYTHON3_PKG_PREFIX
399 # All Arvados Python2 packages depend on Python 2.7.
400 # Make sure we build with that for consistency.
403 PACKAGE_PREFIX=$PYTHON2_PKG_PREFIX
407 if [[ "$PKG" != "libpam-arvados" ]] &&
408 [[ "$PKG" != "arvados-node-manager" ]] &&
409 [[ "$PKG" != "arvados-docker-cleaner" ]]; then
410 PYTHON_PKG=$PACKAGE_PREFIX-$PKG
412 # Exception to our package naming convention
416 if [[ -n "$ONLY_BUILD" ]] && [[ "$PYTHON_PKG" != "$ONLY_BUILD" ]] && [[ "$PKG" != "$ONLY_BUILD" ]]; then
420 cd $WORKSPACE/$PKG_DIR
424 # Get the latest setuptools
425 if ! $pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U setuptools; then
426 echo "Error, unable to upgrade setuptools with"
427 echo " $pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U setuptools"
430 # filter a useless warning (when building the cwltest package) from the stderr output
431 if ! $python setup.py $DASHQ_UNLESS_DEBUG sdist 2> >(grep -v 'warning: no previously-included files matching'); then
432 echo "Error, unable to run $python setup.py sdist for $PKG"
436 PACKAGE_PATH=`(cd dist; ls *tar.gz)`
438 # Determine the package version from the generated sdist archive
439 PYTHON_VERSION=${ARVADOS_BUILDING_VERSION:-$(awk '($1 == "Version:"){print $2}' *.egg-info/PKG-INFO)}
441 # See if we actually need to build this package; does it exist already?
442 # We can't do this earlier than here, because we need PYTHON_VERSION...
443 # This isn't so bad; the sdist call above is pretty quick compared to
444 # the invocation of virtualenv and fpm, below.
445 if ! test_package_presence "$PYTHON_PKG" $PYTHON_VERSION $PACKAGE_TYPE $ARVADOS_BUILDING_ITERATION; then
449 echo "Building $FORMAT package for $PKG from $PKG_DIR"
451 # Package the sdist in a virtualenv
452 echo "Creating virtualenv..."
457 rm -f $PYTHON_PKG*deb
458 echo "virtualenv version: `virtualenv --version`"
459 virtualenv_command="virtualenv --python `which $python` $DASHQ_UNLESS_DEBUG build/usr/share/$python/dist/$PYTHON_PKG"
461 if ! $virtualenv_command; then
462 echo "Error, unable to run"
463 echo " $virtualenv_command"
467 if ! build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U pip; then
468 echo "Error, unable to upgrade pip with"
469 echo " build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U pip"
472 echo "pip version: `build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip --version`"
474 if ! build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U setuptools; then
475 echo "Error, unable to upgrade setuptools with"
476 echo " build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U setuptools"
479 echo "setuptools version: `build/usr/share/$python/dist/$PYTHON_PKG/bin/$python -c 'import setuptools; print(setuptools.__version__)'`"
481 if ! build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U wheel; then
482 echo "Error, unable to upgrade wheel with"
483 echo " build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U wheel"
486 echo "wheel version: `build/usr/share/$python/dist/$PYTHON_PKG/bin/wheel version`"
488 if [[ "$TARGET" != "centos7" ]] || [[ "$PYTHON_PKG" != "python-arvados-fuse" ]]; then
489 build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG $PACKAGE_PATH
491 # centos7 needs these special tweaks to install python-arvados-fuse
492 build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG docutils
493 PYCURL_SSL_LIBRARY=nss build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG $PACKAGE_PATH
496 if [[ "$?" != "0" ]]; then
497 echo "Error, unable to run"
498 echo " build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG $PACKAGE_PATH"
502 cd build/usr/share/$python/dist/$PYTHON_PKG/
504 # Replace the shebang lines in all python scripts, and handle the activate
505 # scripts too This is a functional replacement of the 237 line
506 # virtualenv_tools.py script that doesn't work in python3 without serious
507 # patching, minus the parts we don't need (modifying pyc files, etc).
508 for binfile in `ls bin/`; do
509 if ! file --mime bin/$binfile |grep -q binary; then
511 if [[ "$binfile" =~ ^activate(.csh|.fish|)$ ]]; then
512 # these 'activate' scripts need special treatment
513 sed -i "s/VIRTUAL_ENV=\".*\"/VIRTUAL_ENV=\"\/usr\/share\/$python\/dist\/$PYTHON_PKG\"/" bin/$binfile
514 sed -i "s/VIRTUAL_ENV \".*\"/VIRTUAL_ENV \"\/usr\/share\/$python\/dist\/$PYTHON_PKG\"/" bin/$binfile
516 if grep -q -E '^#!.*/bin/python\d?' bin/$binfile; then
517 # Replace shebang line
518 sed -i "1 s/^.*$/#!\/usr\/share\/$python\/dist\/$PYTHON_PKG\/bin\/python/" bin/$binfile
524 cd - >$STDOUT_IF_DEBUG
526 find build -iname '*.pyc' -exec rm {} \;
527 find build -iname '*.pyo' -exec rm {} \;
529 # Finally, generate the package
530 echo "Creating package..."
532 declare -a COMMAND_ARR=("fpm" "-s" "dir" "-t" "$FORMAT")
534 if [[ "$MAINTAINER" != "" ]]; then
535 COMMAND_ARR+=('--maintainer' "$MAINTAINER")
538 if [[ "$VENDOR" != "" ]]; then
539 COMMAND_ARR+=('--vendor' "$VENDOR")
542 COMMAND_ARR+=('--url' 'https://arvados.org')
545 DESCRIPTION=`grep '\sdescription' $WORKSPACE/$PKG_DIR/setup.py|cut -f2 -d=|sed -e "s/[',\\"]//g"`
546 COMMAND_ARR+=('--description' "$DESCRIPTION")
549 LICENSE_STRING=`grep license $WORKSPACE/$PKG_DIR/setup.py|cut -f2 -d=|sed -e "s/[',\\"]//g"`
550 COMMAND_ARR+=('--license' "$LICENSE_STRING")
552 # 12271 - As FPM-generated packages don't include scripts by default, the
553 # packages cleanup on upgrade depends on files being listed on the %files
554 # section in the generated SPEC files. To remove DIRECTORIES, they need to
555 # be listed in that sectiontoo, so we need to add this parameter to properly
556 # remove lingering dirs. But this only works for python2: if used on
557 # python33, it includes dirs like /opt/rh/python33 that belong to
559 if [[ "$FORMAT" == "rpm" ]] && [[ "$python" == "python2.7" ]]; then
560 COMMAND_ARR+=('--rpm-auto-add-directories')
563 if [[ "$PKG" == "arvados-python-client" ]]; then
564 if [[ "$python" == "python2.7" ]]; then
565 COMMAND_ARR+=('--conflicts' "$PYTHON3_PKG_PREFIX-$PKG")
567 COMMAND_ARR+=('--conflicts' "$PYTHON2_PKG_PREFIX-$PKG")
571 if [[ "$DEBUG" != "0" ]]; then
572 COMMAND_ARR+=('--verbose' '--log' 'info')
575 COMMAND_ARR+=('-v' "$PYTHON_VERSION")
576 COMMAND_ARR+=('--iteration' "$ARVADOS_BUILDING_ITERATION")
577 COMMAND_ARR+=('-n' "$PYTHON_PKG")
578 COMMAND_ARR+=('-C' "build")
580 if [[ -e "$WORKSPACE/$PKG_DIR/$PKG.service" ]]; then
581 COMMAND_ARR+=('--after-install' "${WORKSPACE}/build/go-python-package-scripts/postinst")
582 COMMAND_ARR+=('--before-remove' "${WORKSPACE}/build/go-python-package-scripts/prerm")
585 if [[ "$python" == "python2.7" ]]; then
586 COMMAND_ARR+=('--depends' "$PYTHON2_PACKAGE")
588 COMMAND_ARR+=('--depends' "$PYTHON3_PACKAGE")
592 COMMAND_ARR+=('--deb-no-default-config-files')
594 # Append --depends X and other arguments specified by fpm-info.sh in
595 # the package source dir. These are added last so they can override
596 # the arguments added by this script.
597 declare -a fpm_args=()
598 declare -a fpm_depends=()
600 fpminfo="$WORKSPACE/$PKG_DIR/fpm-info.sh"
601 if [[ -e "$fpminfo" ]]; then
602 echo "Loading fpm overrides from $fpminfo"
603 if ! source "$fpminfo"; then
604 echo "Error, unable to source $WORKSPACE/$PKG_DIR/fpm-info.sh for $PKG"
609 for i in "${fpm_depends[@]}"; do
610 COMMAND_ARR+=('--depends' "$i")
613 COMMAND_ARR+=("${fpm_args[@]}")
615 # Make sure to install all our package binaries in /usr/bin.
616 # We have to walk $WORKSPACE/$PKG_DIR/bin rather than
617 # $WORKSPACE/build/usr/share/$python/dist/$PYTHON_PKG/bin/ to get the list
618 # because the latter also includes all the python binaries for the virtualenv.
619 # We have to take the copies of our binaries from the latter directory, though,
620 # because those are the ones we rewrote the shebang line of, above.
621 if [[ -e "$WORKSPACE/$PKG_DIR/bin" ]]; then
622 for binary in `ls $WORKSPACE/$PKG_DIR/bin`; do
623 COMMAND_ARR+=("usr/share/$python/dist/$PYTHON_PKG/bin/$binary=/usr/bin/")
627 # the libpam module should place this file in the historically correct place
628 # so as not to break backwards compatibility
629 if [[ -e "$WORKSPACE/$PKG_DIR/dist/build/usr/share/python2.7/dist/libpam-arvados/lib/security/libpam_arvados.py" ]]; then
630 COMMAND_ARR+=("usr/share/$python/dist/$PYTHON_PKG/data/lib/security/libpam_arvados.py=/usr/data/lib/security/")
633 # the python-arvados-cwl-runner package comes with cwltool, expose that version
634 if [[ -e "$WORKSPACE/$PKG_DIR/dist/build/usr/share/python2.7/dist/python-arvados-cwl-runner/bin/cwltool" ]]; then
635 COMMAND_ARR+=("usr/share/python2.7/dist/python-arvados-cwl-runner/bin/cwltool=/usr/bin/")
640 FPM_RESULTS=$("${COMMAND_ARR[@]}")
643 # if something went wrong and debug is off, print out the fpm command that errored
644 if ! fpm_verify $FPM_EXIT_CODE $FPM_RESULTS && [[ "$STDOUT_IF_DEBUG" == "/dev/null" ]]; then
645 echo "fpm returned an error executing the command:"
647 echo -e "\n${COMMAND_ARR[@]}\n"
650 mv $WORKSPACE/$PKG_DIR/dist/*$FORMAT $WORKSPACE/packages/$TARGET/
655 # Build packages for everything
657 # The package source. Depending on the source type, this can be a
658 # path, or the name of the package in an upstream repository (e.g.,
662 # The name of the package to build.
665 # The type of source package. Passed to fpm -s. Default "dir".
666 PACKAGE_TYPE=${1:-dir}
668 # Optional: the package version number. Passed to fpm -v.
672 if [[ -n "$ONLY_BUILD" ]] && [[ "$PACKAGE_NAME" != "$ONLY_BUILD" ]] && [[ "$PACKAGE" != "$ONLY_BUILD" ]] ; then
676 local default_iteration_value="$(default_iteration "$PACKAGE" "$VERSION" "$PACKAGE_TYPE")"
678 declare -a COMMAND_ARR=("fpm" "-s" "$PACKAGE_TYPE" "-t" "$FORMAT")
679 if [ python = "$PACKAGE_TYPE" ] && [ deb = "$FORMAT" ]; then
680 # Dependencies are built from setup.py. Since setup.py will never
681 # refer to Debian package iterations, it doesn't make sense to
682 # enforce those in the .deb dependencies.
683 COMMAND_ARR+=(--deb-ignore-iteration-in-dependencies)
686 # 12271 - As FPM-generated packages don't include scripts by default, the
687 # packages cleanup on upgrade depends on files being listed on the %files
688 # section in the generated SPEC files. To remove DIRECTORIES, they need to
689 # be listed in that section too, so we need to add this parameter to properly
690 # remove lingering dirs. But this only works for python2: if used on
691 # python33, it includes dirs like /opt/rh/python33 that belong to
693 if [[ "$FORMAT" = rpm ]] && [[ "$python" = python2.7 ]]; then
694 COMMAND_ARR+=('--rpm-auto-add-directories')
697 if [[ "$DEBUG" != "0" ]]; then
698 COMMAND_ARR+=('--verbose' '--log' 'info')
701 if [[ -n "$PACKAGE_NAME" ]]; then
702 COMMAND_ARR+=('-n' "$PACKAGE_NAME")
705 if [[ "$MAINTAINER" != "" ]]; then
706 COMMAND_ARR+=('--maintainer' "$MAINTAINER")
709 if [[ "$VENDOR" != "" ]]; then
710 COMMAND_ARR+=('--vendor' "$VENDOR")
713 if [[ "$VERSION" != "" ]]; then
714 COMMAND_ARR+=('-v' "$VERSION")
716 if [[ -n "$default_iteration_value" ]]; then
717 # We can always add an --iteration here. If another one is specified in $@,
718 # that will take precedence, as desired.
719 COMMAND_ARR+=(--iteration "$default_iteration_value")
722 # Append --depends X and other arguments specified by fpm-info.sh in
723 # the package source dir. These are added last so they can override
724 # the arguments added by this script.
725 declare -a fpm_args=()
726 declare -a build_depends=()
727 declare -a fpm_depends=()
728 declare -a fpm_exclude=()
729 declare -a fpm_dirs=(
730 # source dir part of 'dir' package ("/source=/dest" => "/source"):
732 for pkgdir in "${fpm_dirs[@]}"; do
733 fpminfo="$pkgdir/fpm-info.sh"
734 if [[ -e "$fpminfo" ]]; then
735 debug_echo "Loading fpm overrides from $fpminfo"
740 for pkg in "${build_depends[@]}"; do
741 if [[ $TARGET =~ debian|ubuntu ]]; then
742 pkg_deb=$(ls "$WORKSPACE/packages/$TARGET/$pkg_"*.deb | sort -rg | awk 'NR==1')
743 if [[ -e $pkg_deb ]]; then
744 echo "Installing build_dep $pkg from $pkg_deb"
747 echo "Attemping to install build_dep $pkg using apt-get"
748 apt-get install -y "$pkg"
750 apt-get -y -f install
752 pkg_rpm=$(ls "$WORKSPACE/packages/$TARGET/$pkg"-[0-9]*.rpm | sort -rg | awk 'NR==1')
753 if [[ -e $pkg_rpm ]]; then
754 echo "Installing build_dep $pkg from $pkg_rpm"
757 echo "Attemping to install build_dep $pkg"
762 for i in "${fpm_depends[@]}"; do
763 COMMAND_ARR+=('--depends' "$i")
765 for i in "${fpm_exclude[@]}"; do
766 COMMAND_ARR+=('--exclude' "$i")
769 # Append remaining function arguments directly to fpm's command line.
774 COMMAND_ARR+=("${fpm_args[@]}")
776 COMMAND_ARR+=("$PACKAGE")
778 debug_echo -e "\n${COMMAND_ARR[@]}\n"
780 FPM_RESULTS=$("${COMMAND_ARR[@]}")
783 fpm_verify $FPM_EXIT_CODE $FPM_RESULTS
785 # if something went wrong and debug is off, print out the fpm command that errored
786 if [[ 0 -ne $? ]] && [[ "$STDOUT_IF_DEBUG" == "/dev/null" ]]; then
787 echo -e "\n${COMMAND_ARR[@]}\n"
791 # verify build results
798 if [[ $FPM_RESULTS =~ ([A-Za-z0-9_\.-]*\.)(deb|rpm) ]]; then
799 FPM_PACKAGE_NAME=${BASH_REMATCH[1]}${BASH_REMATCH[2]}
802 if [[ "$FPM_PACKAGE_NAME" == "" ]]; then
805 echo "Error: $PACKAGE: Unable to figure out package name from fpm results:"
810 elif [[ "$FPM_RESULTS" =~ "File already exists" ]]; then
811 echo "Package $FPM_PACKAGE_NAME exists, not rebuilding"
813 elif [[ 0 -ne "$FPM_EXIT_CODE" ]]; then
815 echo "Error building package for $1:\n $FPM_RESULTS"
822 if [[ "$FORMAT" == "deb" ]]; then
823 $SUDO apt-get install $PACKAGES --yes
824 elif [[ "$FORMAT" == "rpm" ]]; then
825 $SUDO yum -q -y install $PACKAGES
830 printf '%s %s\n' "=======" "$1"
834 if [[ "$1" != "0" ]]; then
836 failures+=("$2 (`timer`)")
838 successes+=("$2 (`timer`)")
847 echo -n "$(($SECONDS - $t0))s"
851 for x in "${successes[@]}"
856 if [[ ${#failures[@]} == 0 ]]
858 if [[ ${#successes[@]} != 0 ]]; then
859 echo "All test suites passed."
862 echo "Failures (${#failures[@]}):"
863 for x in "${failures[@]}"