3 # A library of functions shared by the various scripts in this directory.
5 # This is the timestamp about when we merged changed to include licenses
6 # with Arvados packages. We use it as a heuristic to add revisions for
8 LICENSE_PACKAGE_TS=20151208015500
10 RAILS_PACKAGE_ITERATION=7
13 echo "$@" >"$STDOUT_IF_DEBUG"
17 for version_suffix in "$@"; do
18 if "easy_install$version_suffix" --version >/dev/null 2>&1; then
19 echo "easy_install$version_suffix"
26 Error: easy_install$1 (from Python setuptools module) not found
32 format_last_commit_here() {
33 local format="$1"; shift
34 TZ=UTC git log -n1 --first-parent "--format=format:$format" .
38 # Generates a version number from the git log for the current working
39 # directory, and writes it to stdout.
40 local git_ts git_hash prefix
41 if [[ -n "$1" ]] ; then
47 declare $(format_last_commit_here "git_ts=%ct git_hash=%h")
48 echo "${prefix}.$(date -ud "@$git_ts" +%Y%m%d%H%M%S).$git_hash"
51 nohash_version_from_git() {
52 version_from_git $1 | cut -d. -f1-3
55 timestamp_from_git() {
56 format_last_commit_here "%ct"
59 handle_python_package () {
60 # This function assumes the current working directory is the python package directory
61 if [ -n "$(find dist -name "*-$(nohash_version_from_git).tar.gz" -print -quit)" ]; then
62 # This package doesn't need rebuilding.
65 # Make sure only to use sdist - that's the only format pip can deal with (sigh)
66 python setup.py $DASHQ_UNLESS_DEBUG sdist
70 local gem_name="$1"; shift
71 local gem_version="$(nohash_version_from_git)"
72 local gem_src_dir="$(pwd)"
74 if [[ -n "$ONLY_BUILD" ]] && [[ "$gem_name" != "$ONLY_BUILD" ]] ; then
78 if ! [[ -e "${gem_name}-${gem_version}.gem" ]]; then
79 find -maxdepth 1 -name "${gem_name}-*.gem" -delete
81 # -q appears to be broken in gem version 2.2.2
82 $GEM build "$gem_name.gemspec" $DASHQ_UNLESS_DEBUG >"$STDOUT_IF_DEBUG" 2>"$STDERR_IF_DEBUG"
86 # Usage: package_go_binary services/foo arvados-foo "Compute foo to arbitrary precision"
88 local src_path="$1"; shift
89 local prog="$1"; shift
90 local description="$1"; shift
91 local license_file="${1:-agpl-3.0.txt}"; shift
93 if [[ -n "$ONLY_BUILD" ]] && [[ "$prog" != "$ONLY_BUILD" ]] ; then
97 debug_echo "package_go_binary $src_path as $prog"
99 local basename="${src_path##*/}"
101 mkdir -p "$GOPATH/src/git.curoverse.com"
102 ln -sfn "$WORKSPACE" "$GOPATH/src/git.curoverse.com/arvados.git"
104 cd "$GOPATH/src/git.curoverse.com/arvados.git/$src_path"
105 local version="$(version_from_git)"
106 local timestamp="$(timestamp_from_git)"
108 # If the command imports anything from the Arvados SDK, bump the
109 # version number and build a new package whenever the SDK changes.
110 if grep -qr git.curoverse.com/arvados .; then
111 cd "$GOPATH/src/git.curoverse.com/arvados.git/sdk/go"
112 if [[ $(timestamp_from_git) -gt "$timestamp" ]]; then
113 version=$(version_from_git)
117 cd $WORKSPACE/packages/$TARGET
118 test_package_presence $prog $version go
120 if [[ "$?" != "0" ]]; then
124 go get "git.curoverse.com/arvados.git/$src_path"
126 declare -a switches=()
127 systemd_unit="$WORKSPACE/${src_path}/${prog}.service"
128 if [[ -e "${systemd_unit}" ]]; then
130 --after-install "${WORKSPACE}/build/go-python-package-scripts/postinst"
131 --before-remove "${WORKSPACE}/build/go-python-package-scripts/prerm"
132 "${systemd_unit}=/lib/systemd/system/${prog}.service")
134 switches+=("$WORKSPACE/${license_file}=/usr/share/doc/$prog/${license_file}")
136 fpm_build "$GOPATH/bin/${basename}=/usr/bin/${prog}" "${prog}" 'Curoverse, Inc.' dir "${version}" "--url=https://arvados.org" "--license=GNU Affero General Public License, version 3.0" "--description=${description}" "${switches[@]}"
139 default_iteration() {
140 local package_name="$1"; shift
141 local package_version="$1"; shift
142 local package_type="$1"; shift
144 if [[ $package_version =~ ^0\.1\.([0-9]{14})(\.|$) ]] && \
145 [[ ${BASH_REMATCH[1]} -le $LICENSE_PACKAGE_TS ]]; then
148 if [[ $package_type =~ ^python ]]; then
149 # Fix --iteration for #9242.
155 _build_rails_package_scripts() {
156 local pkgname="$1"; shift
157 local destdir="$1"; shift
158 local srcdir="$RUN_BUILD_PACKAGES_PATH/rails-package-scripts"
159 for scriptname in postinst prerm postrm; do
160 cat "$srcdir/$pkgname.sh" "$srcdir/step2.sh" "$srcdir/$scriptname.sh" \
161 >"$destdir/$scriptname" || return $?
165 test_rails_package_presence() {
166 local pkgname="$1"; shift
167 local srcdir="$1"; shift
169 if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
177 local version="$(version_from_git)"
181 test_package_presence $pkgname $version rails $RAILS_PACKAGE_ITERATION
184 test_package_presence() {
185 local pkgname="$1"; shift
186 local version="$1"; shift
187 local pkgtype="$1"; shift
188 local iteration="$1"; shift
189 local arch="$1"; shift
191 if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
195 if [[ "$iteration" == "" ]]; then
196 iteration="$(default_iteration "$pkgname" "$version" "$pkgtype")"
199 if [[ "$arch" == "" ]]; then
200 rpm_architecture="x86_64"
201 deb_architecture="amd64"
203 if [[ "$pkgtype" =~ ^(python|python3)$ ]]; then
204 rpm_architecture="noarch"
205 deb_architecture="all"
208 if [[ "$pkgtype" =~ ^(src)$ ]]; then
209 rpm_architecture="noarch"
210 deb_architecture="all"
213 # These python packages have binary components
214 if [[ "$pkgname" =~ (ruamel|ciso|pycrypto|pyyaml) ]]; then
215 rpm_architecture="x86_64"
216 deb_architecture="amd64"
219 rpm_architecture=$arch
220 deb_architecture=$arch
223 if [[ "$FORMAT" == "deb" ]]; then
224 local complete_pkgname=$pkgname"_"$version"-"$iteration"_"$deb_architecture".deb"
226 local complete_pkgname="$pkgname-$version-$iteration.$rpm_architecture.rpm"
229 if [[ -e "$complete_pkgname" ]]; then
230 echo "Package $complete_pkgname exists, not rebuilding!"
233 echo "Package $complete_pkgname not found, building"
238 handle_rails_package() {
239 local pkgname="$1"; shift
241 if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
244 local srcdir="$1"; shift
245 local license_path="$1"; shift
246 local scripts_dir="$(mktemp --tmpdir -d "$pkgname-XXXXXXXX.scripts")" && \
247 local version_file="$(mktemp --tmpdir "$pkgname-XXXXXXXX.version")" && (
249 _build_rails_package_scripts "$pkgname" "$scripts_dir"
252 version_from_git >"$version_file"
253 git rev-parse HEAD >git-commit.version
256 if [[ 0 != "$?" ]] || ! cd "$WORKSPACE/packages/$TARGET"; then
257 echo "ERROR: $pkgname package prep failed" >&2
258 rm -rf "$scripts_dir" "$version_file"
262 local railsdir="/var/www/${pkgname%-server}/current"
263 local -a pos_args=("$srcdir/=$railsdir" "$pkgname" "Curoverse, Inc." dir
264 "$(cat "$version_file")")
265 local license_arg="$license_path=$railsdir/$(basename "$license_path")"
266 local -a switches=(--iteration=$RAILS_PACKAGE_ITERATION
267 --after-install "$scripts_dir/postinst"
268 --before-remove "$scripts_dir/prerm"
269 --after-remove "$scripts_dir/postrm")
270 # For some reason fpm excludes need to not start with /.
271 local exclude_root="${railsdir#/}"
272 # .git and packages are for the SSO server, which is built from its
274 local -a exclude_list=(.git packages tmp log coverage Capfile\* \
275 config/deploy\* config/application.yml)
276 # for arvados-workbench, we need to have the (dummy) config/database.yml in the package
277 if [[ "$pkgname" != "arvados-workbench" ]]; then
278 exclude_list+=('config/database.yml')
280 for exclude in ${exclude_list[@]}; do
281 switches+=(-x "$exclude_root/$exclude")
283 fpm_build "${pos_args[@]}" "${switches[@]}" \
284 -x "$exclude_root/vendor/bundle" "$@" "$license_arg"
285 rm -rf "$scripts_dir" "$version_file"
288 # Build packages for everything
290 # The package source. Depending on the source type, this can be a
291 # path, or the name of the package in an upstream repository (e.g.,
295 # The name of the package to build.
298 # Optional: the vendor of the package. Should be "Curoverse, Inc." for
299 # packages of our own software. Passed to fpm --vendor.
302 # The type of source package. Passed to fpm -s. Default "python".
303 PACKAGE_TYPE=${1:-python}
305 # Optional: the package version number. Passed to fpm -v.
309 if [[ -n "$ONLY_BUILD" ]] && [[ "$PACKAGE_NAME" != "$ONLY_BUILD" ]] && [[ "$PACKAGE" != "$ONLY_BUILD" ]] ; then
313 local default_iteration_value="$(default_iteration "$PACKAGE" "$VERSION" "$PACKAGE_TYPE")"
315 case "$PACKAGE_TYPE" in
317 # All Arvados Python2 packages depend on Python 2.7.
318 # Make sure we build with that for consistency.
319 set -- "$@" --python-bin python2.7 \
320 --python-easyinstall "$EASY_INSTALL2" \
321 --python-package-name-prefix "$PYTHON2_PKG_PREFIX" \
322 --prefix "$PYTHON2_PREFIX" \
323 --python-install-lib "$PYTHON2_INSTALL_LIB" \
324 --python-install-data . \
325 --exclude "${PYTHON2_INSTALL_LIB#/}/tests" \
326 --depends "$PYTHON2_PACKAGE"
329 # fpm does not actually support a python3 package type. Instead
330 # we recognize it as a convenience shortcut to add several
331 # necessary arguments to fpm's command line later, after we're
332 # done handling positional arguments.
334 set -- "$@" --python-bin python3 \
335 --python-easyinstall "$EASY_INSTALL3" \
336 --python-package-name-prefix "$PYTHON3_PKG_PREFIX" \
337 --prefix "$PYTHON3_PREFIX" \
338 --python-install-lib "$PYTHON3_INSTALL_LIB" \
339 --python-install-data . \
340 --exclude "${PYTHON3_INSTALL_LIB#/}/tests" \
341 --depends "$PYTHON3_PACKAGE"
345 declare -a COMMAND_ARR=("fpm" "--maintainer=Ward Vandewege <ward@curoverse.com>" "-s" "$PACKAGE_TYPE" "-t" "$FORMAT")
346 if [ python = "$PACKAGE_TYPE" ] && [ deb = "$FORMAT" ]; then
347 # Dependencies are built from setup.py. Since setup.py will never
348 # refer to Debian package iterations, it doesn't make sense to
349 # enforce those in the .deb dependencies.
350 COMMAND_ARR+=(--deb-ignore-iteration-in-dependencies)
353 if [[ "${DEBUG:-0}" != "0" ]]; then
354 COMMAND_ARR+=('--verbose' '--log' 'info')
357 if [[ -n "$PACKAGE_NAME" ]]; then
358 COMMAND_ARR+=('-n' "$PACKAGE_NAME")
361 if [[ "$VENDOR" != "" ]]; then
362 COMMAND_ARR+=('--vendor' "$VENDOR")
365 if [[ "$VERSION" != "" ]]; then
366 COMMAND_ARR+=('-v' "$VERSION")
368 # We can always add an --iteration here. If another one is specified in $@,
369 # that will take precedence, as desired.
370 COMMAND_ARR+=(--iteration "$default_iteration_value")
372 if [[ python = "$PACKAGE_TYPE" ]] && [[ -e "${PACKAGE}/${PACKAGE_NAME}.service" ]]
375 --after-install "${WORKSPACE}/build/go-python-package-scripts/postinst"
376 --before-remove "${WORKSPACE}/build/go-python-package-scripts/prerm"
380 # Append --depends X and other arguments specified by fpm-info.sh in
381 # the package source dir. These are added last so they can override
382 # the arguments added by this script.
383 declare -a fpm_args=()
384 declare -a build_depends=()
385 declare -a fpm_depends=()
386 declare -a fpm_exclude=()
387 declare -a fpm_dirs=(
388 # source dir part of 'dir' package ("/source=/dest" => "/source"):
390 # backports ("llfuse>=1.0" => "backports/python-llfuse")
391 "${WORKSPACE}/backports/${PACKAGE_TYPE}-${PACKAGE%%[<=>]*}")
392 if [[ -n "$PACKAGE_NAME" ]]; then
393 fpm_dirs+=("${WORKSPACE}/backports/${PACKAGE_NAME}")
395 for pkgdir in "${fpm_dirs[@]}"; do
396 fpminfo="$pkgdir/fpm-info.sh"
397 if [[ -e "$fpminfo" ]]; then
398 debug_echo "Loading fpm overrides from $fpminfo"
403 for pkg in "${build_depends[@]}"; do
404 if [[ $TARGET =~ debian|ubuntu ]]; then
405 pkg_deb=$(ls "$WORKSPACE/packages/$TARGET/$pkg_"*.deb | sort -rg | awk 'NR==1')
406 if [[ -e $pkg_deb ]]; then
407 echo "Installing build_dep $pkg from $pkg_deb"
410 echo "Attemping to install build_dep $pkg using apt-get"
411 apt-get install -y "$pkg"
413 apt-get -y -f install
415 pkg_rpm=$(ls "$WORKSPACE/packages/$TARGET/$pkg"-[0-9]*.rpm | sort -rg | awk 'NR==1')
416 if [[ -e $pkg_rpm ]]; then
417 echo "Installing build_dep $pkg from $pkg_rpm"
420 echo "Attemping to install build_dep $pkg"
425 for i in "${fpm_depends[@]}"; do
426 COMMAND_ARR+=('--depends' "$i")
428 for i in "${fpm_exclude[@]}"; do
429 COMMAND_ARR+=('--exclude' "$i")
432 # Append remaining function arguments directly to fpm's command line.
437 COMMAND_ARR+=("${fpm_args[@]}")
439 COMMAND_ARR+=("$PACKAGE")
441 debug_echo -e "\n${COMMAND_ARR[@]}\n"
443 FPM_RESULTS=$("${COMMAND_ARR[@]}")
446 fpm_verify $FPM_EXIT_CODE $FPM_RESULTS
448 # if something went wrong and debug is off, print out the fpm command that errored
449 if [[ 0 -ne $? ]] && [[ "$STDOUT_IF_DEBUG" == "/dev/null" ]]; then
450 echo -e "\n${COMMAND_ARR[@]}\n"
454 # verify build results
461 if [[ $FPM_RESULTS =~ ([A-Za-z0-9_\.-]*\.)(deb|rpm) ]]; then
462 FPM_PACKAGE_NAME=${BASH_REMATCH[1]}${BASH_REMATCH[2]}
465 if [[ "$FPM_PACKAGE_NAME" == "" ]]; then
468 echo "Error: $PACKAGE: Unable to figure out package name from fpm results:"
473 elif [[ "$FPM_RESULTS" =~ "File already exists" ]]; then
474 echo "Package $FPM_PACKAGE_NAME exists, not rebuilding"
476 elif [[ 0 -ne "$FPM_EXIT_CODE" ]]; then
478 echo "Error building package for $1:\n $FPM_RESULTS"
485 if [[ "$FORMAT" == "deb" ]]; then
486 $SUDO apt-get install $PACKAGES --yes
487 elif [[ "$FORMAT" == "rpm" ]]; then
488 $SUDO yum -q -y install $PACKAGES
493 txt="********** $1 **********"
494 printf "\n%*s%s\n\n" $((($COLUMNS-${#txt})/2)) "" "$txt"
498 if [[ "$1" != "0" ]]; then
499 title "!!!!!! $2 FAILED !!!!!!"
500 failures+=("$2 (`timer`)")
502 successes+=("$2 (`timer`)")
511 echo -n "$(($SECONDS - $t0))s"
515 for x in "${successes[@]}"
520 if [[ ${#failures[@]} == 0 ]]
522 echo "All test suites passed."
524 echo "Failures (${#failures[@]}):"
525 for x in "${failures[@]}"