20878: Parameterize URL for RPM package builds
[arvados.git] / build / run-library.sh
1 #!/bin/bash -xe
2 # Copyright (C) The Arvados Authors. All rights reserved.
3 #
4 # SPDX-License-Identifier: AGPL-3.0
5
6 # A library of functions shared by the various scripts in this directory.
7
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
10 # older packages.
11 LICENSE_PACKAGE_TS=20151208015500
12
13 if [[ -z "$ARVADOS_BUILDING_VERSION" ]]; then
14     RAILS_PACKAGE_ITERATION=1
15 else
16     RAILS_PACKAGE_ITERATION="$ARVADOS_BUILDING_ITERATION"
17 fi
18
19 debug_echo () {
20     echo "$@" >"$STDOUT_IF_DEBUG"
21 }
22
23 find_python_program() {
24     prog="$1"
25     shift
26     for prog in "$@"; do
27         if "$prog" --version >/dev/null 2>&1; then
28             echo "$prog"
29             return 0
30         fi
31     done
32     cat >&2 <<EOF
33 $helpmessage
34
35 Error: $prog (from Python setuptools module) not found
36
37 EOF
38     exit 1
39 }
40
41 format_last_commit_here() {
42     local format="$1"; shift
43     local dir="${1:-.}"; shift
44     TZ=UTC git log -n1 --first-parent "--format=format:$format" "$dir"
45 }
46
47 version_from_git() {
48     # Output the version being built, or if we're building a
49     # dev/prerelease, output a version number based on the git log for
50     # the given $subdir.
51     local subdir="$1"; shift
52     if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then
53         echo "$ARVADOS_BUILDING_VERSION"
54         return
55     fi
56
57     local git_ts git_hash
58     declare $(format_last_commit_here "git_ts=%ct git_hash=%h" "$subdir")
59     ARVADOS_BUILDING_VERSION="$($WORKSPACE/build/version-at-commit.sh $git_hash)"
60     echo "$ARVADOS_BUILDING_VERSION"
61 }
62
63 nohash_version_from_git() {
64     local subdir="$1"; shift
65     if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then
66         echo "$ARVADOS_BUILDING_VERSION"
67         return
68     fi
69     version_from_git $subdir | cut -d. -f1-4
70 }
71
72 timestamp_from_git() {
73     local subdir="$1"; shift
74     format_last_commit_here "%ct" "$subdir"
75 }
76
77 calculate_python_sdk_cwl_package_versions() {
78   python_sdk_version=$(cd sdk/python && python3 arvados_version.py)
79   cwl_runner_version=$(cd sdk/cwl && python3 arvados_version.py)
80 }
81
82 # Usage: get_native_arch
83 get_native_arch() {
84   # Only amd64 and aarch64 are supported at the moment
85   local native_arch=""
86   case "$HOSTTYPE" in
87     x86_64)
88       native_arch="amd64"
89       ;;
90     aarch64)
91       native_arch="arm64"
92       ;;
93     *)
94       echo "Error: architecture not supported"
95       exit 1
96       ;;
97   esac
98   echo $native_arch
99 }
100
101 handle_ruby_gem() {
102     local gem_name="$1"; shift
103     local gem_version="$(nohash_version_from_git)"
104     local gem_src_dir="$(pwd)"
105
106     if [[ -n "$ONLY_BUILD" ]] && [[ "$gem_name" != "$ONLY_BUILD" ]] ; then
107         return 0
108     fi
109
110     if ! [[ -e "${gem_name}-${gem_version}.gem" ]]; then
111         find -maxdepth 1 -name "${gem_name}-*.gem" -delete
112
113         # -q appears to be broken in gem version 2.2.2
114         $GEM build "$gem_name.gemspec" $DASHQ_UNLESS_DEBUG >"$STDOUT_IF_DEBUG" 2>"$STDERR_IF_DEBUG"
115     fi
116 }
117
118 calculate_go_package_version() {
119   # $__returnvar has the nameref attribute set, which means it is a reference
120   # to another variable that is passed in as the first argument to this function.
121   # see https://www.gnu.org/software/bash/manual/html_node/Shell-Parameters.html
122   local -n __returnvar="$1"; shift
123   local oldpwd="$PWD"
124
125   cd "$WORKSPACE"
126   go mod download
127
128   # Update the version number and build a new package if the vendor
129   # bundle has changed, or the command imports anything from the
130   # Arvados SDK and the SDK has changed.
131   declare -a checkdirs=(go.mod go.sum)
132   while [ -n "$1" ]; do
133       checkdirs+=("$1")
134       shift
135   done
136   # Even our rails packages (version calculation happens here!) depend on a go component (arvados-server)
137   # Everything depends on the build directory.
138   checkdirs+=(sdk/go lib build)
139   local timestamp=0
140   for dir in ${checkdirs[@]}; do
141       cd "$WORKSPACE"
142       ts="$(timestamp_from_git "$dir")"
143       if [[ "$ts" -gt "$timestamp" ]]; then
144           version=$(version_from_git "$dir")
145           timestamp="$ts"
146       fi
147   done
148   cd "$oldpwd"
149   __returnvar="$version"
150 }
151
152 # Usage: package_go_binary services/foo arvados-foo [deb|rpm] [amd64|arm64] "Compute foo to arbitrary precision" [apache-2.0.txt]
153 package_go_binary() {
154   local src_path="$1"; shift
155   local prog="$1"; shift
156   local package_format="$1"; shift
157   local target_arch="$1"; shift
158   local description="$1"; shift
159   local license_file="${1:-agpl-3.0.txt}"; shift
160
161   if [[ -n "$ONLY_BUILD" ]] && [[ "$prog" != "$ONLY_BUILD" ]]; then
162     # arvados-workbench depends on arvados-server at build time, so even when
163     # only arvados-workbench is being built, we need to build arvados-server too
164     if [[ "$prog" != "arvados-server" ]] || [[ "$ONLY_BUILD" != "arvados-workbench" ]]; then
165       debug_echo -e "Skipping build of $prog package."
166       return 0
167     fi
168   fi
169
170   native_arch=$(get_native_arch)
171
172   if [[ "$native_arch" != "amd64" ]] && [[ -n "$target_arch" ]] && [[ "$native_arch" != "$target_arch" ]]; then
173     echo "Error: no cross compilation support for Go on $native_arch, can not build $prog for $target_arch"
174     return 1
175   fi
176
177   case "$package_format-$TARGET" in
178     # Older Debian/Ubuntu do not support cross compilation because the
179     # libfuse package does not support multiarch. See
180     # <https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=983477>.
181     # Red Hat-based distributions do not support native cross compilation at
182     # all (they use a qemu-based solution we haven't implemented yet).
183     deb-debian10|deb-ubuntu1804|deb-ubuntu2004|rpm-*)
184       cross_compilation=0
185       if [[ "$native_arch" == "amd64" ]] && [[ -n "$target_arch" ]] && [[ "$native_arch" != "$target_arch" ]]; then
186         echo "Error: no cross compilation support for Go on $native_arch for $TARGET, can not build $prog for $target_arch"
187         return 1
188       fi
189       ;;
190     *)
191       cross_compilation=1
192       ;;
193   esac
194
195   if [[ -n "$target_arch" ]]; then
196     archs=($target_arch)
197   else
198     # No target architecture specified, default to native target. When on amd64
199     # also crosscompile arm64 (when supported).
200     archs=($native_arch)
201     if [[ $cross_compilation -ne 0 ]]; then
202       archs+=("arm64")
203     fi
204   fi
205
206   for ta in ${archs[@]}; do
207     package_go_binary_worker "$src_path" "$prog" "$package_format" "$description" "$native_arch" "$ta" "$license_file"
208     retval=$?
209     if [[ $retval -ne 0 ]]; then
210       return $retval
211     fi
212   done
213 }
214
215 # Usage: package_go_binary services/foo arvados-foo deb "Compute foo to arbitrary precision" [amd64/arm64] [amd64/arm64] [apache-2.0.txt]
216 package_go_binary_worker() {
217     local src_path="$1"; shift
218     local prog="$1"; shift
219     local package_format="$1"; shift
220     local description="$1"; shift
221     local native_arch="${1:-amd64}"; shift
222     local target_arch="${1:-amd64}"; shift
223     local license_file="${1:-agpl-3.0.txt}"; shift
224
225     debug_echo "package_go_binary $src_path as $prog (native arch: $native_arch, target arch: $target_arch)"
226     local basename="${src_path##*/}"
227     calculate_go_package_version go_package_version $src_path
228
229     cd $WORKSPACE/packages/$TARGET
230     test_package_presence "$prog" "$go_package_version" "go" "" "$target_arch"
231     if [[ $? -ne 0 ]]; then
232       return 0
233     fi
234
235     echo "Building $package_format ($target_arch) package for $prog from $src_path"
236     if [[ "$native_arch" == "amd64" ]] && [[ "$target_arch" == "arm64" ]]; then
237       CGO_ENABLED=1 CC=aarch64-linux-gnu-gcc GOARCH=${target_arch} go install -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"
238     else
239       GOARCH=${arch} go install -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"
240     fi
241
242     local -a switches=()
243
244     binpath=$GOPATH/bin/${basename}
245     if [[ "${target_arch}" != "${native_arch}" ]]; then
246       switches+=("-a${target_arch}")
247       binpath="$GOPATH/bin/linux_${target_arch}/${basename}"
248     fi
249
250     systemd_unit="$WORKSPACE/${src_path}/${prog}.service"
251     if [[ -e "${systemd_unit}" ]]; then
252         switches+=(
253             --after-install "${WORKSPACE}/build/go-python-package-scripts/postinst"
254             --before-remove "${WORKSPACE}/build/go-python-package-scripts/prerm"
255             "${systemd_unit}=/lib/systemd/system/${prog}.service")
256     fi
257     switches+=("$WORKSPACE/${license_file}=/usr/share/doc/$prog/${license_file}")
258
259     fpm_build "${WORKSPACE}/${src_path}" "$binpath=/usr/bin/${prog}" "${prog}" dir "${go_package_version}" "--url=https://arvados.org" "--license=GNU Affero General Public License, version 3.0" "--description=${description}" "${switches[@]}"
260 }
261
262 # Usage: package_go_so lib/foo arvados_foo.so arvados-foo deb amd64 "Arvados foo library"
263 package_go_so() {
264     local src_path="$1"; shift
265     local sofile="$1"; shift
266     local pkg="$1"; shift
267     local package_format="$1"; shift
268     local target_arch="$1"; shift # supported: amd64, arm64
269     local description="$1"; shift
270
271     if [[ -n "$ONLY_BUILD" ]] && [[ "$pkg" != "$ONLY_BUILD" ]]; then
272       debug_echo -e "Skipping build of $pkg package."
273       return 0
274     fi
275
276     debug_echo "package_go_so $src_path as $pkg"
277
278     calculate_go_package_version go_package_version $src_path
279     cd $WORKSPACE/packages/$TARGET
280     test_package_presence $pkg $go_package_version go || return 1
281     cd $WORKSPACE/$src_path
282     go build -buildmode=c-shared -o ${GOPATH}/bin/${sofile}
283     cd $WORKSPACE/packages/$TARGET
284     local -a fpmargs=(
285         "--url=https://arvados.org"
286         "--license=Apache License, Version 2.0"
287         "--description=${description}"
288         "$WORKSPACE/apache-2.0.txt=/usr/share/doc/$pkg/apache-2.0.txt"
289     )
290     if [[ -e "$WORKSPACE/$src_path/pam-configs-arvados" ]]; then
291         fpmargs+=("$WORKSPACE/$src_path/pam-configs-arvados=/usr/share/doc/$pkg/pam-configs-arvados-go")
292     fi
293     if [[ -e "$WORKSPACE/$src_path/README" ]]; then
294         fpmargs+=("$WORKSPACE/$src_path/README=/usr/share/doc/$pkg/README")
295     fi
296     fpm_build "${WORKSPACE}/${src_path}" "$GOPATH/bin/${sofile}=/usr/lib/${sofile}" "${pkg}" dir "${go_package_version}" "${fpmargs[@]}"
297 }
298
299 default_iteration() {
300     if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then
301         echo "$ARVADOS_BUILDING_ITERATION"
302         return
303     fi
304     local package_name="$1"; shift
305     local package_version="$1"; shift
306     local package_type="$1"; shift
307     local iteration=1
308     if [[ $package_version =~ ^0\.1\.([0-9]{14})(\.|$) ]] && \
309            [[ ${BASH_REMATCH[1]} -le $LICENSE_PACKAGE_TS ]]; then
310         iteration=2
311     fi
312     echo $iteration
313 }
314
315 _build_rails_package_scripts() {
316     local pkgname="$1"; shift
317     local destdir="$1"; shift
318     local srcdir="$RUN_BUILD_PACKAGES_PATH/rails-package-scripts"
319     for scriptname in postinst prerm postrm; do
320         cat "$srcdir/$pkgname.sh" "$srcdir/step2.sh" "$srcdir/$scriptname.sh" \
321             >"$destdir/$scriptname" || return $?
322     done
323 }
324
325 rails_package_version() {
326     local pkgname="$1"; shift
327     local srcdir="$1"; shift
328     if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then
329         echo "$ARVADOS_BUILDING_VERSION"
330         return
331     fi
332     local version="$(version_from_git)"
333     if [ $pkgname = "arvados-api-server" -o $pkgname = "arvados-workbench" ] ; then
334         calculate_go_package_version version cmd/arvados-server "$srcdir"
335     fi
336     echo $version
337 }
338
339 test_rails_package_presence() {
340   local pkgname="$1"; shift
341   local srcdir="$1"; shift
342
343   if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
344     return 1
345   fi
346
347   tmppwd=`pwd`
348
349   cd $srcdir
350
351   local version="$(rails_package_version "$pkgname" "$srcdir")"
352
353   cd $tmppwd
354
355   test_package_presence $pkgname $version rails "$RAILS_PACKAGE_ITERATION"
356 }
357
358 get_complete_package_name() {
359   # if the errexit flag is set, unset it until this function returns
360   # otherwise, the shift calls below will abort the program if optional arguments are not supplied
361   if [ -o errexit ]; then
362     set +e
363     trap 'set -e' RETURN
364   fi
365   # $__returnvar has the nameref attribute set, which means it is a reference
366   # to another variable that is passed in as the first argument to this function.
367   # see https://www.gnu.org/software/bash/manual/html_node/Shell-Parameters.html
368   local -n __returnvar="$1"; shift
369   local pkgname="$1"; shift
370   local version="$1"; shift
371   local pkgtype="$1"; shift
372   local iteration="$1"; shift
373   local arch="$1"; shift
374   if [[ "$iteration" == "" ]]; then
375       iteration="$(default_iteration "$pkgname" "$version" "$pkgtype")"
376   fi
377
378   if [[ "$arch" == "" ]]; then
379     native_arch=$(get_native_arch)
380     rpm_native_arch="x86_64"
381     if [[ "$HOSTTYPE" == "aarch64" ]]; then
382       rpm_native_arch="arm64"
383     fi
384     rpm_architecture="$rpm_native_arch"
385     deb_architecture="$native_arch"
386
387     if [[ "$pkgtype" =~ ^(src)$ ]]; then
388       rpm_architecture="noarch"
389       deb_architecture="all"
390     fi
391   else
392     rpm_architecture=$arch
393     deb_architecture=$arch
394   fi
395
396   local complete_pkgname="${pkgname}_$version${iteration:+-$iteration}_$deb_architecture.deb"
397   if [[ "$FORMAT" == "rpm" ]]; then
398       # rpm packages get iteration 1 if we don't supply one
399       iteration=${iteration:-1}
400       complete_pkgname="$pkgname-$version-${iteration}.$rpm_architecture.rpm"
401   fi
402   __returnvar=${complete_pkgname}
403 }
404
405 # Test if the package already exists, if not return 0, if it does return 1
406 test_package_presence() {
407     local pkgname="$1"; shift
408     local version="$1"; shift
409     local pkgtype="$1"; shift
410     local iteration="$1"; shift
411     local arch="$1"; shift
412     if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
413       # arvados-workbench depends on arvados-server at build time, so even when
414       # only arvados-workbench is being built, we need to build arvados-server too
415       if [[ "$pkgname" != "arvados-server" ]] || [[ "$ONLY_BUILD" != "arvados-workbench" ]]; then
416         return 1
417       fi
418     fi
419
420     local full_pkgname
421     get_complete_package_name full_pkgname "$pkgname" "$version" "$pkgtype" "$iteration" "$arch"
422
423     # See if we can skip building the package, only if it already exists in the
424     # processed/ directory. If so, move it back to the packages directory to make
425     # sure it gets picked up by the test and/or upload steps.
426     # Get the list of packages from the repos
427
428     if [[ "$FORCE_BUILD" == "1" ]]; then
429       echo "Package $full_pkgname build forced with --force-build, building"
430     elif [[ "$FORMAT" == "deb" ]]; then
431       declare -A dd
432       dd[debian10]=buster
433       dd[debian11]=bullseye
434       dd[ubuntu1804]=bionic
435       dd[ubuntu2004]=focal
436       D=${dd[$TARGET]}
437       if [ ${pkgname:0:3} = "lib" ]; then
438         repo_subdir=${pkgname:0:4}
439       else
440         repo_subdir=${pkgname:0:1}
441       fi
442
443       repo_pkg_list=$(curl -s -o - http://apt.arvados.org/${D}/pool/main/${repo_subdir}/${pkgname}/)
444       echo "${repo_pkg_list}" |grep -q ${full_pkgname}
445       if [ $? -eq 0 ] ; then
446         echo "Package $full_pkgname exists upstream, not rebuilding, downloading instead!"
447         curl -s -o "$WORKSPACE/packages/$TARGET/${full_pkgname}" http://apt.arvados.org/${D}/pool/main/${repo_subdir}/${pkgname}/${full_pkgname}
448         return 1
449       elif test -f "$WORKSPACE/packages/$TARGET/processed/${full_pkgname}" ; then
450         echo "Package $full_pkgname exists, not rebuilding!"
451         return 1
452       else
453         echo "Package $full_pkgname not found, building"
454         return 0
455       fi
456     else
457       local rpm_root
458       case "TARGET" in
459         centos7) rpm_root="CentOS/7/dev" ;;
460         rocky8) rpm_root="CentOS/8/dev" ;;
461         *)
462           echo "FIXME: Don't know RPM URL path for $TARGET, building"
463           return 0
464           ;;
465       esac
466       local centos_repo="http://rpm.arvados.org/$rpm_root/$arch/"
467
468       repo_pkg_list=$(curl -s -o - ${centos_repo})
469       echo ${repo_pkg_list} |grep -q ${full_pkgname}
470       if [ $? -eq 0 ]; then
471         echo "Package $full_pkgname exists upstream, not rebuilding, downloading instead!"
472         curl -s -o "$WORKSPACE/packages/$TARGET/${full_pkgname}" ${centos_repo}${full_pkgname}
473         return 1
474       elif test -f "$WORKSPACE/packages/$TARGET/processed/${full_pkgname}" ; then
475         echo "Package $full_pkgname exists, not rebuilding!"
476         return 1
477       else
478         echo "Package $full_pkgname not found, building"
479         return 0
480       fi
481     fi
482 }
483
484 handle_rails_package() {
485     local pkgname="$1"; shift
486
487     if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
488         return 0
489     fi
490     local srcdir="$1"; shift
491     cd "$srcdir"
492     local license_path="$1"; shift
493     local version="$(rails_package_version "$pkgname" "$srcdir")"
494     echo "$version" >package-build.version
495     local scripts_dir="$(mktemp --tmpdir -d "$pkgname-XXXXXXXX.scripts")" && \
496     (
497         set -e
498         _build_rails_package_scripts "$pkgname" "$scripts_dir"
499         cd "$srcdir"
500         mkdir -p tmp
501         git rev-parse HEAD >git-commit.version
502         bundle config set cache_all true
503         bundle package
504     )
505     if [[ 0 != "$?" ]] || ! cd "$WORKSPACE/packages/$TARGET"; then
506         echo "ERROR: $pkgname package prep failed" >&2
507         rm -rf "$scripts_dir"
508         EXITCODE=1
509         return 1
510     fi
511     local railsdir="/var/www/${pkgname%-server}/current"
512     local -a pos_args=("$srcdir/=$railsdir" "$pkgname" dir "$version")
513     local license_arg="$license_path=$railsdir/$(basename "$license_path")"
514     local -a switches=(--after-install "$scripts_dir/postinst"
515                        --before-remove "$scripts_dir/prerm"
516                        --after-remove "$scripts_dir/postrm")
517     if [[ -z "$ARVADOS_BUILDING_VERSION" ]]; then
518         switches+=(--iteration $RAILS_PACKAGE_ITERATION)
519     fi
520     # For some reason fpm excludes need to not start with /.
521     local exclude_root="${railsdir#/}"
522     local -a exclude_list=(tmp log coverage Capfile\* \
523                            config/deploy\* config/application.yml)
524     # for arvados-workbench, we need to have the (dummy) config/database.yml in the package
525     if  [[ "$pkgname" != "arvados-workbench" ]]; then
526       exclude_list+=('config/database.yml')
527     fi
528     for exclude in ${exclude_list[@]}; do
529         switches+=(-x "$exclude_root/$exclude")
530     done
531     fpm_build "${srcdir}" "${pos_args[@]}" "${switches[@]}" \
532               -x "$exclude_root/vendor/cache-*" \
533               -x "$exclude_root/vendor/bundle" "$@" "$license_arg"
534     rm -rf "$scripts_dir"
535 }
536
537 # Usage: handle_api_server [amd64|arm64]
538 handle_api_server () {
539   local target_arch="${1:-amd64}"; shift
540
541   if [[ -n "$ONLY_BUILD" ]] && [[ "$ONLY_BUILD" != "arvados-api-server" ]] ; then
542     debug_echo -e "Skipping build of arvados-api-server package."
543     return 0
544   fi
545
546   native_arch=$(get_native_arch)
547   if [[ "$target_arch" != "$native_arch" ]]; then
548     echo "Error: no cross compilation support for Rails yet, can not build arvados-api-server for $ARCH"
549     echo
550     exit 1
551   fi
552
553   # Build the API server package
554   test_rails_package_presence arvados-api-server "$WORKSPACE/services/api"
555   if [[ "$?" == "0" ]]; then
556     calculate_go_package_version arvados_server_version cmd/arvados-server
557     arvados_server_iteration=$(default_iteration "arvados-server" "$arvados_server_version" "go")
558     handle_rails_package arvados-api-server "$WORKSPACE/services/api" \
559         "$WORKSPACE/agpl-3.0.txt" --url="https://arvados.org" \
560         --description="Arvados API server - Arvados is a free and open source platform for big data science." \
561         --license="GNU Affero General Public License, version 3.0" --depends "arvados-server = ${arvados_server_version}-${arvados_server_iteration}"
562   fi
563 }
564
565 # Usage: handle_workbench [amd64|arm64]
566 handle_workbench () {
567   local target_arch="${1:-amd64}"; shift
568   if [[ -n "$ONLY_BUILD" ]] && [[ "$ONLY_BUILD" != "arvados-workbench" ]] ; then
569     debug_echo -e "Skipping build of arvados-workbench package."
570     return 0
571   fi
572
573   native_arch=$(get_native_arch)
574   if [[ "$target_arch" != "$native_arch" ]]; then
575     echo "Error: no cross compilation support for Rails yet, can not build arvados-workbench for $native_arch"
576     echo
577     exit 1
578   fi
579
580   if [[ "$native_arch" != "amd64" ]]; then
581     echo "Error: building the arvados-workbench package is not yet supported on this architecture ($native_arch)."
582     echo
583     exit 1
584   fi
585
586   # Build the workbench server package
587   test_rails_package_presence arvados-workbench "$WORKSPACE/apps/workbench"
588   if [[ "$?" == "0" ]] ; then
589     calculate_go_package_version arvados_server_version cmd/arvados-server
590     arvados_server_iteration=$(default_iteration "arvados-server" "$arvados_server_version" "go")
591
592     (
593         set -e
594
595         # The workbench package has a build-time dependency on the arvados-server
596         # package for config manipulation, so install it first.
597         cd $WORKSPACE/cmd/arvados-server
598         get_complete_package_name arvados_server_pkgname arvados-server ${arvados_server_version} go
599
600         arvados_server_pkg_path="$WORKSPACE/packages/$TARGET/${arvados_server_pkgname}"
601         if [[ ! -e ${arvados_server_pkg_path} ]]; then
602           arvados_server_pkg_path="$WORKSPACE/packages/$TARGET/processed/${arvados_server_pkgname}"
603         fi
604         if [[ "$FORMAT" == "deb" ]]; then
605           dpkg -i ${arvados_server_pkg_path}
606         else
607           rpm -i ${arvados_server_pkg_path}
608         fi
609
610         cd "$WORKSPACE/apps/workbench"
611
612         # We need to bundle to be ready even when we build a package without vendor directory
613         # because asset compilation requires it.
614         bundle config set --local system 'true' >"$STDOUT_IF_DEBUG"
615         bundle install >"$STDOUT_IF_DEBUG"
616
617         # clear the tmp directory; the asset generation step will recreate tmp/cache/assets,
618         # and we want that in the package, so it's easier to not exclude the tmp directory
619         # from the package - empty it instead.
620         rm -rf tmp
621         mkdir tmp
622
623         # Set up an appropriate config.yml
624         arvados-server config-dump -config <(cat /etc/arvados/config.yml 2>/dev/null || echo  "Clusters: {zzzzz: {}}") > /tmp/x
625         mkdir -p /etc/arvados/
626         mv /tmp/x /etc/arvados/config.yml
627         perl -p -i -e 'BEGIN{undef $/;} s/WebDAV(.*?):\n( *)ExternalURL: ""/WebDAV$1:\n$2ExternalURL: "example.com"/g' /etc/arvados/config.yml
628
629         ARVADOS_CONFIG=none RAILS_ENV=production RAILS_GROUPS=assets bin/rake npm:install >"$STDOUT_IF_DEBUG"
630         ARVADOS_CONFIG=none RAILS_ENV=production RAILS_GROUPS=assets bin/rake assets:precompile >"$STDOUT_IF_DEBUG"
631
632         # Remove generated configuration files so they don't go in the package.
633         rm -rf /etc/arvados/
634     )
635
636     if [[ "$?" != "0" ]]; then
637       echo "ERROR: Asset precompilation failed"
638       EXITCODE=1
639     else
640       handle_rails_package arvados-workbench "$WORKSPACE/apps/workbench" \
641           "$WORKSPACE/agpl-3.0.txt" --url="https://arvados.org" \
642           --description="Arvados Workbench - Arvados is a free and open source platform for big data science." \
643           --license="GNU Affero General Public License, version 3.0" --depends "arvados-server = ${arvados_server_version}-${arvados_server_iteration}"
644     fi
645   fi
646 }
647
648 # Usage: handle_cwltest [deb|rpm] [amd64|arm64]
649 handle_cwltest () {
650   local package_format="$1"; shift
651   local target_arch="${1:-amd64}"; shift
652
653   if [[ -n "$ONLY_BUILD" ]] && [[ "$ONLY_BUILD" != "python3-cwltest" ]] ; then
654     debug_echo -e "Skipping build of cwltest package."
655     return 0
656   fi
657   cd "$WORKSPACE"
658   if [[ -e "$WORKSPACE/cwltest" ]]; then
659     rm -rf "$WORKSPACE/cwltest"
660   fi
661   git clone https://github.com/common-workflow-language/cwltest.git
662   # signal to our build script that we want a cwltest executable installed in /usr/bin/
663   mkdir cwltest/bin && touch cwltest/bin/cwltest
664   fpm_build_virtualenv "cwltest" "cwltest" "$package_format" "$target_arch"
665   # The python->python3 metapackage
666   build_metapackage "cwltest" "cwltest"
667   cd "$WORKSPACE"
668   rm -rf "$WORKSPACE/cwltest"
669 }
670
671 # Usage: handle_arvados_src
672 handle_arvados_src () {
673   if [[ -n "$ONLY_BUILD" ]] && [[ "$ONLY_BUILD" != "arvados-src" ]] ; then
674     debug_echo -e "Skipping build of arvados-src package."
675     return 0
676   fi
677   # arvados-src
678   (
679       cd "$WORKSPACE"
680       COMMIT_HASH=$(format_last_commit_here "%H")
681       arvados_src_version="$(version_from_git)"
682
683       cd $WORKSPACE/packages/$TARGET
684       test_package_presence arvados-src "$arvados_src_version" src ""
685
686       if [[ "$?" == "0" ]]; then
687         cd "$WORKSPACE"
688         SRC_BUILD_DIR=$(mktemp -d)
689         # mktemp creates the directory with 0700 permissions by default
690         chmod 755 $SRC_BUILD_DIR
691         git clone $DASHQ_UNLESS_DEBUG "$WORKSPACE/.git" "$SRC_BUILD_DIR"
692         cd "$SRC_BUILD_DIR"
693
694         # go into detached-head state
695         git checkout $DASHQ_UNLESS_DEBUG "$COMMIT_HASH"
696         echo "$COMMIT_HASH" >git-commit.version
697
698         cd $WORKSPACE/packages/$TARGET
699         fpm_build "$WORKSPACE" $SRC_BUILD_DIR/=/usr/local/arvados/src arvados-src 'dir' "$arvados_src_version" "--exclude=usr/local/arvados/src/.git" "--url=https://arvados.org" "--license=GNU Affero General Public License, version 3.0" "--description=The Arvados source code" "--architecture=all"
700
701         rm -rf "$SRC_BUILD_DIR"
702       fi
703   )
704 }
705
706 # Build python packages with a virtualenv built-in
707 # Usage: fpm_build_virtualenv arvados-python-client sdk/python [deb|rpm] [amd64|arm64]
708 fpm_build_virtualenv () {
709   local pkg=$1; shift
710   local pkg_dir=$1; shift
711   local package_format="$1"; shift
712   local target_arch="${1:-amd64}"; shift
713
714   native_arch=$(get_native_arch)
715
716   if [[ "$pkg" != "arvados-docker-cleaner" ]]; then
717     PYTHON_PKG=$PYTHON3_PKG_PREFIX-$pkg
718   else
719     # Exception to our package naming convention
720     PYTHON_PKG=$pkg
721   fi
722
723   if [[ -n "$ONLY_BUILD" ]] && [[ "$PYTHON_PKG" != "$ONLY_BUILD" ]]; then
724     # arvados-python-client sdist should always be built if we are building a
725     # python package.
726     if [[ "$ONLY_BUILD" != "python3-arvados-cwl-runner" ]] &&
727        [[ "$ONLY_BUILD" != "python3-arvados-fuse" ]] &&
728        [[ "$ONLY_BUILD" != "python3-crunchstat-summary" ]] &&
729        [[ "$ONLY_BUILD" != "arvados-docker-cleaner" ]] &&
730        [[ "$ONLY_BUILD" != "python3-arvados-user-activity" ]]; then
731       debug_echo -e "Skipping build of $pkg package."
732       return 0
733     fi
734   fi
735
736   if [[ -n "$target_arch" ]] && [[ "$native_arch" == "$target_arch" ]]; then
737       fpm_build_virtualenv_worker "$pkg" "$pkg_dir" "$package_format" "$native_arch" "$target_arch"
738   elif [[ -z "$target_arch" ]]; then
739     fpm_build_virtualenv_worker "$pkg" "$pkg_dir" "$package_format" "$native_arch" "$native_arch"
740   else
741     echo "Error: no cross compilation support for Python yet, can not build $pkg for $target_arch"
742     return 1
743   fi
744 }
745
746 # Build python packages with a virtualenv built-in
747 # Usage: fpm_build_virtualenv_worker arvados-python-client sdk/python python3 [deb|rpm] [amd64|arm64] [amd64|arm64]
748 fpm_build_virtualenv_worker () {
749   PKG=$1; shift
750   PKG_DIR=$1; shift
751   local package_format="$1"; shift
752   local native_arch="${1:-amd64}"; shift
753   local target_arch=${1:-amd64}; shift
754
755   # Set up
756   STDOUT_IF_DEBUG=/dev/null
757   STDERR_IF_DEBUG=/dev/null
758   DASHQ_UNLESS_DEBUG=-q
759   if [[ "$DEBUG" != "0" ]]; then
760       STDOUT_IF_DEBUG=/dev/stdout
761       STDERR_IF_DEBUG=/dev/stderr
762       DASHQ_UNLESS_DEBUG=
763   fi
764   if [[ "$ARVADOS_BUILDING_ITERATION" == "" ]]; then
765     ARVADOS_BUILDING_ITERATION=1
766   fi
767
768   local python=$PYTHON3_EXECUTABLE
769   pip=pip3
770   PACKAGE_PREFIX=$PYTHON3_PKG_PREFIX
771
772   if [[ "$PKG" != "arvados-docker-cleaner" ]]; then
773     PYTHON_PKG=$PACKAGE_PREFIX-$PKG
774   else
775     # Exception to our package naming convention
776     PYTHON_PKG=$PKG
777   fi
778
779   cd $WORKSPACE/$PKG_DIR
780
781   rm -rf dist/*
782
783   # Get the latest setuptools
784   if ! $pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U 'setuptools<45'; then
785     echo "Error, unable to upgrade setuptools with"
786     echo "  $pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U 'setuptools<45'"
787     exit 1
788   fi
789   # filter a useless warning (when building the cwltest package) from the stderr output
790   if ! $python setup.py $DASHQ_UNLESS_DEBUG sdist 2> >(grep -v 'warning: no previously-included files matching'); then
791     echo "Error, unable to run $python setup.py sdist for $PKG"
792     exit 1
793   fi
794
795   PACKAGE_PATH=`(cd dist; ls *tar.gz)`
796
797   if [[ "arvados-python-client" == "$PKG" ]]; then
798     PYSDK_PATH=`pwd`/dist/
799   fi
800
801   if [[ -n "$ONLY_BUILD" ]] && [[ "$PYTHON_PKG" != "$ONLY_BUILD" ]] && [[ "$PKG" != "$ONLY_BUILD" ]]; then
802     return 0
803   fi
804
805   # Determine the package version from the generated sdist archive
806   if [[ -n "$ARVADOS_BUILDING_VERSION" ]] ; then
807       UNFILTERED_PYTHON_VERSION=$ARVADOS_BUILDING_VERSION
808       PYTHON_VERSION=$(echo -n $ARVADOS_BUILDING_VERSION | sed s/~dev/.dev/g | sed s/~rc/rc/g)
809   else
810       PYTHON_VERSION=$(awk '($1 == "Version:"){print $2}' *.egg-info/PKG-INFO)
811       UNFILTERED_PYTHON_VERSION=$(echo -n $PYTHON_VERSION | sed s/\.dev/~dev/g |sed 's/\([0-9]\)rc/\1~rc/g')
812   fi
813
814   # See if we actually need to build this package; does it exist already?
815   # We can't do this earlier than here, because we need PYTHON_VERSION...
816   # This isn't so bad; the sdist call above is pretty quick compared to
817   # the invocation of virtualenv and fpm, below.
818   if ! test_package_presence "$PYTHON_PKG" "$UNFILTERED_PYTHON_VERSION" "$python" "$ARVADOS_BUILDING_ITERATION" "$target_arch"; then
819     return 0
820   fi
821
822   echo "Building $package_format ($target_arch) package for $PKG from $PKG_DIR"
823
824   # Package the sdist in a virtualenv
825   echo "Creating virtualenv..."
826
827   cd dist
828
829   rm -rf build
830   rm -f $PYTHON_PKG*deb
831   echo "virtualenv version: `virtualenv --version`"
832   virtualenv_command="virtualenv --python `which $python` $DASHQ_UNLESS_DEBUG build/usr/share/$python/dist/$PYTHON_PKG"
833
834   if ! $virtualenv_command; then
835     echo "Error, unable to run"
836     echo "  $virtualenv_command"
837     exit 1
838   fi
839
840   if ! build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U pip; then
841     echo "Error, unable to upgrade pip with"
842     echo "  build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U pip"
843     exit 1
844   fi
845   echo "pip version:        `build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip --version`"
846
847   if ! build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U 'setuptools<45'; then
848     echo "Error, unable to upgrade setuptools with"
849     echo "  build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U 'setuptools<45'"
850     exit 1
851   fi
852   echo "setuptools version: `build/usr/share/$python/dist/$PYTHON_PKG/bin/$python -c 'import setuptools; print(setuptools.__version__)'`"
853
854   if ! build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U wheel; then
855     echo "Error, unable to upgrade wheel with"
856     echo "  build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U wheel"
857     exit 1
858   fi
859   echo "wheel version:      `build/usr/share/$python/dist/$PYTHON_PKG/bin/wheel version`"
860
861   if [[ "$TARGET" != "centos7" ]] || [[ "$PYTHON_PKG" != "python-arvados-fuse" ]]; then
862     build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -f $PYSDK_PATH $PACKAGE_PATH
863   else
864     # centos7 needs these special tweaks to install python-arvados-fuse
865     build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG docutils
866     PYCURL_SSL_LIBRARY=nss build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -f $PYSDK_PATH $PACKAGE_PATH
867   fi
868
869   if [[ "$?" != "0" ]]; then
870     echo "Error, unable to run"
871     echo "  build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -f $PYSDK_PATH $PACKAGE_PATH"
872     exit 1
873   fi
874
875   cd build/usr/share/$python/dist/$PYTHON_PKG/
876
877   # Replace the shebang lines in all python scripts, and handle the activate
878   # scripts too. This is a functional replacement of the 237 line
879   # virtualenv_tools.py script that doesn't work in python3 without serious
880   # patching, minus the parts we don't need (modifying pyc files, etc).
881   for binfile in `ls bin/`; do
882     if ! file --mime bin/$binfile |grep -q binary; then
883       # Not a binary file
884       if [[ "$binfile" =~ ^activate(.csh|.fish|)$ ]]; then
885         # these 'activate' scripts need special treatment
886         sed -i "s/VIRTUAL_ENV=\".*\"/VIRTUAL_ENV=\"\/usr\/share\/$python\/dist\/$PYTHON_PKG\"/" bin/$binfile
887         sed -i "s/VIRTUAL_ENV \".*\"/VIRTUAL_ENV \"\/usr\/share\/$python\/dist\/$PYTHON_PKG\"/" bin/$binfile
888       else
889         if grep -q -E '^#!.*/bin/python\d?' bin/$binfile; then
890           # Replace shebang line
891           sed -i "1 s/^.*$/#!\/usr\/share\/$python\/dist\/$PYTHON_PKG\/bin\/python/" bin/$binfile
892         fi
893       fi
894     fi
895   done
896
897   cd - >$STDOUT_IF_DEBUG
898
899   find build -iname '*.pyc' -exec rm {} \;
900   find build -iname '*.pyo' -exec rm {} \;
901
902   # Finally, generate the package
903   echo "Creating package..."
904
905   declare -a COMMAND_ARR=("fpm" "-s" "dir" "-t" "$package_format")
906
907   if [[ -n "$target_arch" ]] && [[ "$target_arch" != "amd64" ]]; then
908     COMMAND_ARR+=("-a$target_arch")
909   fi
910
911   if [[ "$MAINTAINER" != "" ]]; then
912     COMMAND_ARR+=('--maintainer' "$MAINTAINER")
913   fi
914
915   if [[ "$VENDOR" != "" ]]; then
916     COMMAND_ARR+=('--vendor' "$VENDOR")
917   fi
918
919   COMMAND_ARR+=('--url' 'https://arvados.org')
920
921   # Get description
922   DESCRIPTION=`grep '\sdescription' $WORKSPACE/$PKG_DIR/setup.py|cut -f2 -d=|sed -e "s/[',\\"]//g"`
923   COMMAND_ARR+=('--description' "$DESCRIPTION")
924
925   # Get license string
926   LICENSE_STRING=`grep license $WORKSPACE/$PKG_DIR/setup.py|cut -f2 -d=|sed -e "s/[',\\"]//g"`
927   COMMAND_ARR+=('--license' "$LICENSE_STRING")
928
929   if [[ "$DEBUG" != "0" ]]; then
930     COMMAND_ARR+=('--verbose' '--log' 'info')
931   fi
932
933   COMMAND_ARR+=('-v' $(echo -n "$PYTHON_VERSION" | sed s/.dev/~dev/g | sed s/rc/~rc/g))
934   COMMAND_ARR+=('--iteration' "$ARVADOS_BUILDING_ITERATION")
935   COMMAND_ARR+=('-n' "$PYTHON_PKG")
936   COMMAND_ARR+=('-C' "build")
937
938   systemd_unit="$WORKSPACE/$PKG_DIR/$PKG.service"
939   if [[ -e "${systemd_unit}" ]]; then
940     COMMAND_ARR+=('--after-install' "${WORKSPACE}/build/go-python-package-scripts/postinst")
941     COMMAND_ARR+=('--before-remove' "${WORKSPACE}/build/go-python-package-scripts/prerm")
942   fi
943
944   COMMAND_ARR+=('--depends' "$PYTHON3_PACKAGE")
945   case "$package_format" in
946       deb)
947           COMMAND_ARR+=(
948               # Avoid warning
949               --deb-no-default-config-files
950           ) ;;
951       rpm)
952           COMMAND_ARR+=(
953               # Conflict with older packages we used to publish
954               --conflicts "rh-python36-python-$PKG"
955               # Do not generate /usr/lib/.build-id links on RH8+
956               # (otherwise our packages conflict with platform-python)
957               --rpm-rpmbuild-define "_build_id_links none"
958           ) ;;
959   esac
960
961   # Append --depends X and other arguments specified by fpm-info.sh in
962   # the package source dir. These are added last so they can override
963   # the arguments added by this script.
964   declare -a fpm_args=()
965   declare -a fpm_depends=()
966
967   fpminfo="$WORKSPACE/$PKG_DIR/fpm-info.sh"
968   if [[ -e "$fpminfo" ]]; then
969     echo "Loading fpm overrides from $fpminfo"
970     if ! source "$fpminfo"; then
971       echo "Error, unable to source $WORKSPACE/$PKG_DIR/fpm-info.sh for $PKG"
972       exit 1
973     fi
974   fi
975
976   for i in "${fpm_depends[@]}"; do
977     COMMAND_ARR+=('--depends' "$i")
978   done
979
980   for i in "${fpm_depends[@]}"; do
981     COMMAND_ARR+=('--replaces' "python-$PKG")
982   done
983
984   # make sure the systemd service file ends up in the right place
985   # used by arvados-docker-cleaner
986   if [[ -e "${systemd_unit}" ]]; then
987     COMMAND_ARR+=("usr/share/$python/dist/$PKG/share/doc/$PKG/$PKG.service=/lib/systemd/system/$PKG.service")
988   fi
989
990   COMMAND_ARR+=("${fpm_args[@]}")
991
992   # Make sure to install all our package binaries in /usr/bin.
993   # We have to walk $WORKSPACE/$PKG_DIR/bin rather than
994   # $WORKSPACE/build/usr/share/$python/dist/$PYTHON_PKG/bin/ to get the list
995   # because the latter also includes all the python binaries for the virtualenv.
996   # We have to take the copies of our binaries from the latter directory, though,
997   # because those are the ones we rewrote the shebang line of, above.
998   if [[ -e "$WORKSPACE/$PKG_DIR/bin" ]]; then
999     for binary in `ls $WORKSPACE/$PKG_DIR/bin`; do
1000       COMMAND_ARR+=("usr/share/$python/dist/$PYTHON_PKG/bin/$binary=/usr/bin/")
1001     done
1002   fi
1003
1004   # the python3-arvados-cwl-runner package comes with cwltool, expose that version
1005   if [[ -e "$WORKSPACE/$PKG_DIR/dist/build/usr/share/$python/dist/$PYTHON_PKG/bin/cwltool" ]]; then
1006     COMMAND_ARR+=("usr/share/$python/dist/$PYTHON_PKG/bin/cwltool=/usr/bin/")
1007   fi
1008
1009   COMMAND_ARR+=(".")
1010
1011   debug_echo -e "\n${COMMAND_ARR[@]}\n"
1012
1013   FPM_RESULTS=$("${COMMAND_ARR[@]}")
1014   FPM_EXIT_CODE=$?
1015
1016   # if something went wrong and debug is off, print out the fpm command that errored
1017   if ! fpm_verify $FPM_EXIT_CODE $FPM_RESULTS && [[ "$STDOUT_IF_DEBUG" == "/dev/null" ]]; then
1018     echo "fpm returned an error executing the command:"
1019     echo
1020     echo -e "\n${COMMAND_ARR[@]}\n"
1021   else
1022     echo `ls *$package_format`
1023     mv $WORKSPACE/$PKG_DIR/dist/*$package_format $WORKSPACE/packages/$TARGET/
1024   fi
1025   echo
1026 }
1027
1028 # build_metapackage builds meta packages that help with the python to python 3 package migration
1029 build_metapackage() {
1030   # base package name (e.g. arvados-python-client)
1031   BASE_NAME=$1
1032   shift
1033   PKG_DIR=$1
1034   shift
1035
1036   if [[ -n "$ONLY_BUILD" ]] && [[ "python-$BASE_NAME" != "$ONLY_BUILD" ]]; then
1037     return 0
1038   fi
1039
1040   if [[ "$ARVADOS_BUILDING_ITERATION" == "" ]]; then
1041     ARVADOS_BUILDING_ITERATION=1
1042   fi
1043
1044   if [[ -z "$ARVADOS_BUILDING_VERSION" ]]; then
1045     cd $WORKSPACE/$PKG_DIR
1046     pwd
1047     rm -rf dist/*
1048
1049     # Get the latest setuptools
1050     if ! pip3 install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U 'setuptools<45'; then
1051       echo "Error, unable to upgrade setuptools with XY"
1052       echo "  pip3 install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U 'setuptools<45'"
1053       exit 1
1054     fi
1055     # filter a useless warning (when building the cwltest package) from the stderr output
1056     if ! python3 setup.py $DASHQ_UNLESS_DEBUG sdist 2> >(grep -v 'warning: no previously-included files matching'); then
1057       echo "Error, unable to run python3 setup.py sdist for $PKG"
1058       exit 1
1059     fi
1060
1061     PYTHON_VERSION=$(awk '($1 == "Version:"){print $2}' *.egg-info/PKG-INFO)
1062     UNFILTERED_PYTHON_VERSION=$(echo -n $PYTHON_VERSION | sed s/\.dev/~dev/g |sed 's/\([0-9]\)rc/\1~rc/g')
1063
1064   else
1065     UNFILTERED_PYTHON_VERSION=$ARVADOS_BUILDING_VERSION
1066     PYTHON_VERSION=$(echo -n $ARVADOS_BUILDING_VERSION | sed s/~dev/.dev/g | sed s/~rc/rc/g)
1067   fi
1068
1069   cd - >$STDOUT_IF_DEBUG
1070   if [[ -d "$BASE_NAME" ]]; then
1071     rm -rf $BASE_NAME
1072   fi
1073   mkdir $BASE_NAME
1074   cd $BASE_NAME
1075
1076   if [[ "$FORMAT" == "deb" ]]; then
1077     cat >ns-control <<EOF
1078 Section: misc
1079 Priority: optional
1080 Standards-Version: 3.9.2
1081
1082 Package: python-${BASE_NAME}
1083 Version: ${PYTHON_VERSION}-${ARVADOS_BUILDING_ITERATION}
1084 Maintainer: Arvados Package Maintainers <packaging@arvados.org>
1085 Depends: python3-${BASE_NAME}
1086 Description: metapackage to ease the upgrade to the Pyhon 3 version of ${BASE_NAME}
1087  This package is a metapackage that will automatically install the new version of
1088  ${BASE_NAME} which is Python 3 based and has a different name.
1089 EOF
1090
1091     /usr/bin/equivs-build ns-control
1092     if [[ $? -ne 0 ]]; then
1093       echo "Error running 'equivs-build ns-control', is the 'equivs' package installed?"
1094       return 1
1095     fi
1096   elif [[ "$FORMAT" == "rpm" ]]; then
1097     cat >meta.spec <<EOF
1098 Summary: metapackage to ease the upgrade to the Python 3 version of ${BASE_NAME}
1099 Name: python-${BASE_NAME}
1100 Version: ${PYTHON_VERSION}
1101 Release: ${ARVADOS_BUILDING_ITERATION}
1102 License: distributable
1103
1104 Requires: python3-${BASE_NAME}
1105
1106 %description
1107 This package is a metapackage that will automatically install the new version of
1108 python-${BASE_NAME} which is Python 3 based and has a different name.
1109
1110 %prep
1111
1112 %build
1113
1114 %clean
1115
1116 %install
1117
1118 %post
1119
1120 %files
1121
1122
1123 %changelog
1124 * Mon Apr 12 2021 Arvados Package Maintainers <packaging@arvados.org>
1125 - initial release
1126 EOF
1127
1128     /usr/bin/rpmbuild -ba meta.spec
1129     if [[ $? -ne 0 ]]; then
1130       echo "Error running 'rpmbuild -ba meta.spec', is the 'rpm-build' package installed?"
1131       return 1
1132     else
1133       mv /root/rpmbuild/RPMS/x86_64/python-${BASE_NAME}*.${FORMAT} .
1134       if [[ $? -ne 0 ]]; then
1135         echo "Error finding rpm file output of 'rpmbuild -ba meta.spec'"
1136         return 1
1137       fi
1138     fi
1139   else
1140     echo "Unknown format"
1141     return 1
1142   fi
1143
1144   if [[ $EXITCODE -ne 0 ]]; then
1145     return 1
1146   else
1147     echo `ls *$FORMAT`
1148     mv *$FORMAT $WORKSPACE/packages/$TARGET/
1149   fi
1150
1151   # clean up
1152   cd - >$STDOUT_IF_DEBUG
1153   if [[ -d "$BASE_NAME" ]]; then
1154     rm -rf $BASE_NAME
1155   fi
1156 }
1157
1158 # Build packages for everything
1159 fpm_build () {
1160   # Source dir where fpm-info.sh (if any) will be found.
1161   SRC_DIR=$1
1162   shift
1163   # The package source.  Depending on the source type, this can be a
1164   # path, or the name of the package in an upstream repository (e.g.,
1165   # pip).
1166   PACKAGE=$1
1167   shift
1168   # The name of the package to build.
1169   PACKAGE_NAME=$1
1170   shift
1171   # The type of source package.  Passed to fpm -s.  Default "dir".
1172   PACKAGE_TYPE=${1:-dir}
1173   shift
1174   # Optional: the package version number.  Passed to fpm -v.
1175   VERSION=$1
1176   shift
1177
1178   if [[ -n "$ONLY_BUILD" ]] && [[ "$PACKAGE_NAME" != "$ONLY_BUILD" ]] && [[ "$PACKAGE" != "$ONLY_BUILD" ]] ; then
1179     # arvados-workbench depends on arvados-server at build time, so even when
1180     # only arvados-workbench is being built, we need to build arvados-server too
1181     if [[ "$PACKAGE_NAME" != "arvados-server" ]] || [[ "$ONLY_BUILD" != "arvados-workbench" ]]; then
1182       return 0
1183     fi
1184   fi
1185
1186   local default_iteration_value="$(default_iteration "$PACKAGE" "$VERSION" "$PACKAGE_TYPE")"
1187
1188   declare -a COMMAND_ARR=("fpm" "-s" "$PACKAGE_TYPE" "-t" "$FORMAT")
1189   if [ python = "$PACKAGE_TYPE" ] && [ deb = "$FORMAT" ]; then
1190       # Dependencies are built from setup.py.  Since setup.py will never
1191       # refer to Debian package iterations, it doesn't make sense to
1192       # enforce those in the .deb dependencies.
1193       COMMAND_ARR+=(--deb-ignore-iteration-in-dependencies)
1194   fi
1195
1196   if [[ "$DEBUG" != "0" ]]; then
1197     COMMAND_ARR+=('--verbose' '--log' 'info')
1198   fi
1199
1200   if [[ -n "$PACKAGE_NAME" ]]; then
1201     COMMAND_ARR+=('-n' "$PACKAGE_NAME")
1202   fi
1203
1204   if [[ "$MAINTAINER" != "" ]]; then
1205     COMMAND_ARR+=('--maintainer' "$MAINTAINER")
1206   fi
1207
1208   if [[ "$VENDOR" != "" ]]; then
1209     COMMAND_ARR+=('--vendor' "$VENDOR")
1210   fi
1211
1212   if [[ "$VERSION" != "" ]]; then
1213     COMMAND_ARR+=('-v' "$VERSION")
1214   fi
1215   if [[ -n "$default_iteration_value" ]]; then
1216       # We can always add an --iteration here.  If another one is specified in $@,
1217       # that will take precedence, as desired.
1218       COMMAND_ARR+=(--iteration "$default_iteration_value")
1219   fi
1220
1221   # Append --depends X and other arguments specified by fpm-info.sh in
1222   # the package source dir. These are added last so they can override
1223   # the arguments added by this script.
1224   declare -a fpm_args=()
1225   declare -a build_depends=()
1226   declare -a fpm_depends=()
1227   declare -a fpm_conflicts=()
1228   declare -a fpm_exclude=()
1229   if [[ ! -d "$SRC_DIR" ]]; then
1230       echo >&2 "BUG: looking in wrong dir for fpm-info.sh: $pkgdir"
1231       exit 1
1232   fi
1233   fpminfo="${SRC_DIR}/fpm-info.sh"
1234   if [[ -e "$fpminfo" ]]; then
1235       debug_echo "Loading fpm overrides from $fpminfo"
1236       source "$fpminfo"
1237   fi
1238   for pkg in "${build_depends[@]}"; do
1239       if [[ $TARGET =~ debian|ubuntu ]]; then
1240           pkg_deb=$(ls "$WORKSPACE/packages/$TARGET/$pkg_"*.deb | sort -rg | awk 'NR==1')
1241           if [[ -e $pkg_deb ]]; then
1242               echo "Installing build_dep $pkg from $pkg_deb"
1243               dpkg -i "$pkg_deb"
1244           else
1245               echo "Attemping to install build_dep $pkg using apt-get"
1246               apt-get install -y "$pkg"
1247           fi
1248           apt-get -y -f install
1249       else
1250           pkg_rpm=$(ls "$WORKSPACE/packages/$TARGET/$pkg"-[0-9]*.rpm | sort -rg | awk 'NR==1')
1251           if [[ -e $pkg_rpm ]]; then
1252               echo "Installing build_dep $pkg from $pkg_rpm"
1253               rpm -i "$pkg_rpm"
1254           else
1255               echo "Attemping to install build_dep $pkg"
1256               rpm -i "$pkg"
1257           fi
1258       fi
1259   done
1260   for i in "${fpm_depends[@]}"; do
1261     COMMAND_ARR+=('--depends' "$i")
1262   done
1263   for i in "${fpm_conflicts[@]}"; do
1264     COMMAND_ARR+=('--conflicts' "$i")
1265   done
1266   for i in "${fpm_exclude[@]}"; do
1267     COMMAND_ARR+=('--exclude' "$i")
1268   done
1269
1270   COMMAND_ARR+=("${fpm_args[@]}")
1271
1272   # Append remaining function arguments directly to fpm's command line.
1273   for i; do
1274     COMMAND_ARR+=("$i")
1275   done
1276
1277   COMMAND_ARR+=("$PACKAGE")
1278
1279   debug_echo -e "\n${COMMAND_ARR[@]}\n"
1280
1281   FPM_RESULTS=$("${COMMAND_ARR[@]}")
1282   FPM_EXIT_CODE=$?
1283
1284   fpm_verify $FPM_EXIT_CODE $FPM_RESULTS
1285
1286   # if something went wrong and debug is off, print out the fpm command that errored
1287   if [[ 0 -ne $? ]] && [[ "$STDOUT_IF_DEBUG" == "/dev/null" ]]; then
1288     echo -e "\n${COMMAND_ARR[@]}\n"
1289   fi
1290 }
1291
1292 # verify build results
1293 fpm_verify () {
1294   FPM_EXIT_CODE=$1
1295   shift
1296   FPM_RESULTS=$@
1297
1298   FPM_PACKAGE_NAME=''
1299   if [[ $FPM_RESULTS =~ ([A-Za-z0-9_\.-]*\.)(deb|rpm) ]]; then
1300     FPM_PACKAGE_NAME=${BASH_REMATCH[1]}${BASH_REMATCH[2]}
1301   fi
1302
1303   if [[ "$FPM_PACKAGE_NAME" == "" ]]; then
1304     EXITCODE=1
1305     echo
1306     echo "Error: $PACKAGE: Unable to figure out package name from fpm results:"
1307     echo
1308     echo $FPM_RESULTS
1309     echo
1310     return 1
1311   elif [[ "$FPM_RESULTS" =~ "File already exists" ]]; then
1312     echo "Package $FPM_PACKAGE_NAME exists, not rebuilding"
1313     return 0
1314   elif [[ 0 -ne "$FPM_EXIT_CODE" ]]; then
1315     EXITCODE=1
1316     echo "Error building package for $1:\n $FPM_RESULTS"
1317     return 1
1318   fi
1319 }
1320
1321 install_package() {
1322   PACKAGES=$@
1323   if [[ "$FORMAT" == "deb" ]]; then
1324     $SUDO apt-get install $PACKAGES --yes
1325   elif [[ "$FORMAT" == "rpm" ]]; then
1326     $SUDO yum -q -y install $PACKAGES
1327   fi
1328 }
1329
1330 title() {
1331     printf '%s %s\n' "=======" "$1"
1332 }
1333
1334 checkexit() {
1335     if [[ "$1" != "0" ]]; then
1336         title "$2 -- FAILED"
1337         failures+=("$2 (`timer`)")
1338     else
1339         successes+=("$2 (`timer`)")
1340     fi
1341 }
1342
1343 timer_reset() {
1344     t0=$SECONDS
1345 }
1346
1347 timer() {
1348     if [[ -n "$t0" ]]; then
1349         echo -n "$(($SECONDS - $t0))s"
1350     fi
1351 }
1352
1353 report_outcomes() {
1354     for x in "${successes[@]}"
1355     do
1356         echo "Pass: $x"
1357     done
1358
1359     if [[ ${#failures[@]} == 0 ]]
1360     then
1361         if [[ ${#successes[@]} != 0 ]]; then
1362            echo "All test suites passed."
1363         fi
1364     else
1365         echo "Failures (${#failures[@]}):"
1366         for x in "${failures[@]}"
1367         do
1368             echo "Fail: $x"
1369         done
1370     fi
1371 }