3 . `dirname "$(readlink -f "$0")"`/run-library.sh
4 . `dirname "$(readlink -f "$0")"`/libcloud-pin
6 read -rd "\000" helpmessage <<EOF
7 $(basename $0): Build Arvados packages
10 WORKSPACE=/path/to/arvados $(basename $0) [options]
14 --build-bundle-packages (default: false)
15 Build api server and workbench packages with vendor/bundle included
17 Output debug information (default: false)
19 Distribution to build packages for (default: debian7)
21 Build command to execute (defaults to the run command defined in the
24 WORKSPACE=path Path to the Arvados source tree to build packages from
29 DEBUG=${ARVADOS_DEBUG:-0}
33 PARSEDOPTS=$(getopt --name "$0" --longoptions \
34 help,build-bundle-packages,debug,target: \
40 eval set -- "$PARSEDOPTS"
41 while [ $# -gt 0 ]; do
44 echo >&2 "$helpmessage"
59 echo >&2 "$0: unrecognized argument '$2'. Try: $0 --help"
67 if [[ "$COMMAND" != "" ]]; then
68 COMMAND="/usr/local/rvm/bin/rvm-exec default bash /jenkins/$COMMAND --target $TARGET"
71 STDOUT_IF_DEBUG=/dev/null
72 STDERR_IF_DEBUG=/dev/null
74 if [[ "$DEBUG" != 0 ]]; then
75 STDOUT_IF_DEBUG=/dev/stdout
76 STDERR_IF_DEBUG=/dev/stderr
80 declare -a PYTHON_BACKPORTS PYTHON3_BACKPORTS
83 PYTHON3_VERSION=$(python3 -c 'import sys; print("{v.major}.{v.minor}".format(v=sys.version_info))')
85 ## These defaults are suitable for any Debian-based distribution.
86 # You can customize them as needed in distro sections below.
87 PYTHON2_PACKAGE=python$PYTHON2_VERSION
88 PYTHON2_PKG_PREFIX=python
90 PYTHON2_INSTALL_LIB=lib/python$PYTHON2_VERSION/dist-packages
92 PYTHON3_PACKAGE=python$PYTHON3_VERSION
93 PYTHON3_PKG_PREFIX=python3
95 PYTHON3_INSTALL_LIB=lib/python$PYTHON3_VERSION/dist-packages
96 ## End Debian Python defaults.
101 PYTHON_BACKPORTS=(python-gflags==2.0 google-api-python-client==1.4.2 \
102 oauth2client==1.5.2 pyasn1==0.1.7 pyasn1-modules==0.0.5 \
103 rsa uritemplate httplib2 ws4py pykka six \
104 ciso8601 pycrypto backports.ssl_match_hostname llfuse==0.41.1 \
105 'pycurl<7.21.5' contextlib2 pyyaml 'rdflib>=4.2.0' \
106 shellescape mistune typing avro ruamel.ordereddict
107 cachecontrol requests)
108 PYTHON3_BACKPORTS=(docker-py==1.7.2 six requests websocket-client)
112 PYTHON_BACKPORTS=(python-gflags==2.0 google-api-python-client==1.4.2 \
113 oauth2client==1.5.2 pyasn1==0.1.7 pyasn1-modules==0.0.5 \
114 rsa uritemplate httplib2 ws4py pykka six \
115 ciso8601 pycrypto backports.ssl_match_hostname llfuse==0.41.1 \
116 'pycurl<7.21.5' pyyaml 'rdflib>=4.2.0' \
117 shellescape mistune typing avro ruamel.ordereddict
119 PYTHON3_BACKPORTS=(docker-py==1.7.2 six requests websocket-client)
123 PYTHON_BACKPORTS=(python-gflags==2.0 google-api-python-client==1.4.2 \
124 oauth2client==1.5.2 pyasn1==0.1.7 pyasn1-modules==0.0.5 \
125 rsa uritemplate httplib2 ws4py pykka six \
126 ciso8601 pycrypto backports.ssl_match_hostname llfuse==0.41.1 \
127 contextlib2 'pycurl<7.21.5' pyyaml 'rdflib>=4.2.0' \
128 shellescape mistune typing avro isodate ruamel.ordereddict
129 cachecontrol requests)
130 PYTHON3_BACKPORTS=(docker-py==1.7.2 six requests websocket-client)
134 PYTHON_BACKPORTS=(pyasn1==0.1.7 pyasn1-modules==0.0.5 llfuse==0.41.1 ciso8601 \
135 google-api-python-client==1.4.2 six uritemplate oauth2client==1.5.2 httplib2 \
136 rsa 'pycurl<7.21.5' backports.ssl_match_hostname pyyaml 'rdflib>=4.2.0' \
137 shellescape mistune typing avro ruamel.ordereddict
139 PYTHON3_BACKPORTS=(docker-py==1.7.2 requests websocket-client)
143 PYTHON2_PACKAGE=$(rpm -qf "$(which python$PYTHON2_VERSION)" --queryformat '%{NAME}\n')
144 PYTHON2_PKG_PREFIX=$PYTHON2_PACKAGE
145 PYTHON2_PREFIX=/opt/rh/python27/root/usr
146 PYTHON2_INSTALL_LIB=lib/python$PYTHON2_VERSION/site-packages
147 PYTHON3_PACKAGE=$(rpm -qf "$(which python$PYTHON3_VERSION)" --queryformat '%{NAME}\n')
148 PYTHON3_PKG_PREFIX=$PYTHON3_PACKAGE
149 PYTHON3_PREFIX=/opt/rh/python33/root/usr
150 PYTHON3_INSTALL_LIB=lib/python$PYTHON3_VERSION/site-packages
151 PYTHON_BACKPORTS=(python-gflags==2.0 google-api-python-client==1.4.2 \
152 oauth2client==1.5.2 pyasn1==0.1.7 pyasn1-modules==0.0.5 \
153 rsa uritemplate httplib2 ws4py pykka six \
154 ciso8601 pycrypto backports.ssl_match_hostname 'pycurl<7.21.5' \
155 python-daemon llfuse==0.41.1 'pbr<1.0' pyyaml \
156 'rdflib>=4.2.0' shellescape mistune typing avro requests \
157 isodate pyparsing sparqlwrapper html5lib==0.9999999 keepalive \
158 ruamel.ordereddict cachecontrol)
159 PYTHON3_BACKPORTS=(docker-py==1.7.2 six requests websocket-client)
160 export PYCURL_SSL_LIBRARY=nss
164 PYTHON2_PACKAGE=$(rpm -qf "$(which python$PYTHON2_VERSION)" --queryformat '%{NAME}\n')
165 PYTHON2_PKG_PREFIX=$PYTHON2_PACKAGE
166 PYTHON2_INSTALL_LIB=lib/python$PYTHON2_VERSION/site-packages
167 PYTHON3_PACKAGE=$(rpm -qf "$(which python$PYTHON3_VERSION)" --queryformat '%{NAME}\n')
168 PYTHON3_PKG_PREFIX=$PYTHON3_PACKAGE
169 PYTHON3_PREFIX=/opt/rh/python33/root/usr
170 PYTHON3_INSTALL_LIB=lib/python$PYTHON3_VERSION/site-packages
171 PYTHON_BACKPORTS=(python-gflags==2.0 google-api-python-client==1.4.2 \
172 oauth2client==1.5.2 pyasn1==0.1.7 pyasn1-modules==0.0.5 \
173 rsa uritemplate httplib2 ws4py pykka \
174 ciso8601 pycrypto 'pycurl<7.21.5' \
175 python-daemon==2.1.1 llfuse==0.41.1 'pbr<1.0' pyyaml \
176 'rdflib>=4.2.0' shellescape mistune typing avro \
177 isodate pyparsing sparqlwrapper html5lib==0.9999999 keepalive \
178 ruamel.ordereddict cachecontrol)
179 PYTHON3_BACKPORTS=(docker-py==1.7.2 six requests websocket-client)
180 export PYCURL_SSL_LIBRARY=nss
183 echo -e "$0: Unknown target '$TARGET'.\n" >&2
189 if ! [[ -n "$WORKSPACE" ]]; then
190 echo >&2 "$helpmessage"
192 echo >&2 "Error: WORKSPACE environment variable not set"
198 fpm --version >/dev/null 2>&1
200 if [[ "$?" != 0 ]]; then
201 echo >&2 "$helpmessage"
203 echo >&2 "Error: fpm not found"
208 EASY_INSTALL2=$(find_easy_install -$PYTHON2_VERSION "")
209 EASY_INSTALL3=$(find_easy_install -$PYTHON3_VERSION 3)
211 RUN_BUILD_PACKAGES_PATH="`dirname \"$0\"`"
212 RUN_BUILD_PACKAGES_PATH="`( cd \"$RUN_BUILD_PACKAGES_PATH\" && pwd )`" # absolutized and normalized
213 if [ -z "$RUN_BUILD_PACKAGES_PATH" ] ; then
214 # error; for some reason, the path is not accessible
215 # to the script (e.g. permissions re-evaled after suid)
219 debug_echo "$0 is running from $RUN_BUILD_PACKAGES_PATH"
220 debug_echo "Workspace is $WORKSPACE"
222 if [[ -f /etc/profile.d/rvm.sh ]]; then
223 source /etc/profile.d/rvm.sh
224 GEM="rvm-exec default gem"
229 # Make all files world-readable -- jenkins runs with umask 027, and has checked
230 # out our git tree here
231 chmod o+r "$WORKSPACE" -R
233 # More cleanup - make sure all executables that we'll package are 755
235 find -type d -name 'bin' |xargs -I {} find {} -type f |xargs -I {} chmod 755 {}
237 # Now fix our umask to something better suited to building and publishing
241 debug_echo "umask is" `umask`
243 if [[ ! -d "$WORKSPACE/packages/$TARGET" ]]; then
244 mkdir -p $WORKSPACE/packages/$TARGET
245 chown --reference="$WORKSPACE" "$WORKSPACE/packages/$TARGET"
249 debug_echo -e "\nPerl packages\n"
251 cd "$WORKSPACE/sdk/perl"
253 if [[ -e Makefile ]]; then
254 make realclean >"$STDOUT_IF_DEBUG"
256 find -maxdepth 1 \( -name 'MANIFEST*' -or -name "libarvados-perl*.$FORMAT" \) \
260 perl Makefile.PL INSTALL_BASE=install >"$STDOUT_IF_DEBUG" && \
261 make install INSTALLDIRS=perl >"$STDOUT_IF_DEBUG" && \
262 fpm_build install/lib/=/usr/share libarvados-perl \
263 "Curoverse, Inc." dir "$(version_from_git)" install/man/=/usr/share/man \
264 "$WORKSPACE/LICENSE-2.0.txt=/usr/share/doc/libarvados-perl/LICENSE-2.0.txt" && \
265 mv --no-clobber libarvados-perl*.$FORMAT "$WORKSPACE/packages/$TARGET/"
268 debug_echo -e "\nRuby gems\n"
270 FPM_GEM_PREFIX=$($GEM environment gemdir)
272 cd "$WORKSPACE/sdk/ruby"
273 handle_ruby_gem arvados
275 cd "$WORKSPACE/sdk/cli"
276 handle_ruby_gem arvados-cli
278 cd "$WORKSPACE/services/login-sync"
279 handle_ruby_gem arvados-login-sync
282 debug_echo -e "\nPython packages\n"
284 cd "$WORKSPACE/sdk/pam"
285 handle_python_package
287 cd "$WORKSPACE/sdk/python"
288 handle_python_package
290 cd "$WORKSPACE/sdk/cwl"
291 handle_python_package
293 cd "$WORKSPACE/services/fuse"
294 handle_python_package
296 cd "$WORKSPACE/services/nodemanager"
297 handle_python_package
304 COMMIT_HASH=$(format_last_commit_here "%H")
306 SRC_BUILD_DIR=$(mktemp -d)
307 # mktemp creates the directory with 0700 permissions by default
308 chmod 755 $SRC_BUILD_DIR
309 git clone $DASHQ_UNLESS_DEBUG "$WORKSPACE/.git" "$SRC_BUILD_DIR"
312 # go into detached-head state
313 git checkout $DASHQ_UNLESS_DEBUG "$COMMIT_HASH"
314 echo "$COMMIT_HASH" >git-commit.version
317 PKG_VERSION=$(version_from_git)
318 cd $WORKSPACE/packages/$TARGET
319 fpm_build $SRC_BUILD_DIR/=/usr/local/arvados/src arvados-src 'Curoverse, Inc.' 'dir' "$PKG_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"
321 rm -rf "$SRC_BUILD_DIR"
324 # On older platforms we need to publish a backport of libfuse >=2.9.2,
325 # and we need to build and install it here in order to even build an
327 cd $WORKSPACE/packages/$TARGET
328 if [[ $TARGET =~ ubuntu1204 ]]; then
329 # port libfuse 2.9.2 to Ubuntu 12.04
330 LIBFUSE_DIR=$(mktemp -d)
333 # download fuse 2.9.2 ubuntu 14.04 source package
334 file="fuse_2.9.2.orig.tar.xz" && curl -L -o "${file}" "http://archive.ubuntu.com/ubuntu/pool/main/f/fuse/${file}"
335 file="fuse_2.9.2-4ubuntu4.14.04.1.debian.tar.xz" && curl -L -o "${file}" "http://archive.ubuntu.com/ubuntu/pool/main/f/fuse/${file}"
336 file="fuse_2.9.2-4ubuntu4.14.04.1.dsc" && curl -L -o "${file}" "http://archive.ubuntu.com/ubuntu/pool/main/f/fuse/${file}"
338 # install dpkg-source and dpkg-buildpackage commands
339 apt-get install -y --no-install-recommends dpkg-dev
341 # extract source and apply patches
342 dpkg-source -x fuse_2.9.2-4ubuntu4.14.04.1.dsc
343 rm -f fuse_2.9.2.orig.tar.xz fuse_2.9.2-4ubuntu4.14.04.1.debian.tar.xz fuse_2.9.2-4ubuntu4.14.04.1.dsc
345 # add new version to changelog
348 echo "fuse (2.9.2-5) precise; urgency=low"
350 echo " * Backported from trusty-security to precise"
352 echo " -- Joshua Randall <jcrandall@alum.mit.edu> Thu, 4 Feb 2016 11:31:00 -0000"
355 ) > debian/changelog.new
356 mv debian/changelog.new debian/changelog
358 # install build-deps and build
359 apt-get install -y --no-install-recommends debhelper dh-autoreconf libselinux-dev
360 dpkg-buildpackage -rfakeroot -b
362 fpm_build "$LIBFUSE_DIR/fuse_2.9.2-5_amd64.deb" fuse "Ubuntu Developers" deb "2.9.2" --iteration 5
363 fpm_build "$LIBFUSE_DIR/libfuse2_2.9.2-5_amd64.deb" libfuse2 "Ubuntu Developers" deb "2.9.2" --iteration 5
364 fpm_build "$LIBFUSE_DIR/libfuse-dev_2.9.2-5_amd64.deb" libfuse-dev "Ubuntu Developers" deb "2.9.2" --iteration 5
366 "$WORKSPACE/packages/$TARGET/fuse_2.9.2-5_amd64.deb" \
367 "$WORKSPACE/packages/$TARGET/libfuse2_2.9.2-5_amd64.deb" \
368 "$WORKSPACE/packages/$TARGET/libfuse-dev_2.9.2-5_amd64.deb"
369 apt-get -y --no-install-recommends -f install
371 elif [[ $TARGET =~ centos6 ]]; then
372 # port fuse 2.9.2 to centos 6
373 # install tools to build rpm from source
374 yum install -y rpm-build redhat-rpm-config
375 LIBFUSE_DIR=$(mktemp -d)
378 # download fuse 2.9.2 centos 7 source rpm
379 file="fuse-2.9.2-6.el7.src.rpm" && curl -L -o "${file}" "http://vault.centos.org/7.2.1511/os/Source/SPackages/${file}"
381 # modify source rpm spec to remove conflict on filesystem version
382 mkdir -p /root/rpmbuild/SOURCES
383 cd /root/rpmbuild/SOURCES
384 rpm2cpio ${LIBFUSE_DIR}/fuse-2.9.2-6.el7.src.rpm | cpio -i
385 perl -pi -e 's/Conflicts:\s*filesystem.*//g' fuse.spec
387 # build rpms from source
388 rpmbuild -bb /root/rpmbuild/SOURCES/fuse.spec
389 rm -f fuse-2.9.2-6.el7.src.rpm
390 # move built RPMs to LIBFUSE_DIR
391 mv "/root/rpmbuild/RPMS/x86_64/fuse-2.9.2-6.el6.x86_64.rpm" ${LIBFUSE_DIR}/
392 mv "/root/rpmbuild/RPMS/x86_64/fuse-libs-2.9.2-6.el6.x86_64.rpm" ${LIBFUSE_DIR}/
393 mv "/root/rpmbuild/RPMS/x86_64/fuse-devel-2.9.2-6.el6.x86_64.rpm" ${LIBFUSE_DIR}/
394 rm -rf /root/rpmbuild
396 fpm_build "$LIBFUSE_DIR/fuse-libs-2.9.2-6.el6.x86_64.rpm" fuse-libs "Centos Developers" rpm "2.9.2" --iteration 5
397 fpm_build "$LIBFUSE_DIR/fuse-2.9.2-6.el6.x86_64.rpm" fuse "Centos Developers" rpm "2.9.2" --iteration 5 --no-auto-depends
398 fpm_build "$LIBFUSE_DIR/fuse-devel-2.9.2-6.el6.x86_64.rpm" fuse-devel "Centos Developers" rpm "2.9.2" --iteration 5 --no-auto-depends
400 "$WORKSPACE/packages/$TARGET/fuse-libs-2.9.2-5.x86_64.rpm" \
401 "$WORKSPACE/packages/$TARGET/fuse-2.9.2-5.x86_64.rpm" \
402 "$WORKSPACE/packages/$TARGET/fuse-devel-2.9.2-5.x86_64.rpm"
406 cd $WORKSPACE/packages/$TARGET
407 export GOPATH=$(mktemp -d)
408 package_go_binary sdk/go/crunchrunner crunchrunner \
409 "Crunchrunner executes a command inside a container and uploads the output"
410 package_go_binary services/arv-git-httpd arvados-git-httpd \
411 "Provide authenticated http access to Arvados-hosted git repositories"
412 package_go_binary services/crunch-dispatch-local crunch-dispatch-local \
413 "Dispatch Crunch containers on the local system"
414 package_go_binary services/crunch-dispatch-slurm crunch-dispatch-slurm \
415 "Dispatch Crunch containers to a SLURM cluster"
416 package_go_binary services/crunch-run crunch-run \
417 "Supervise a single Crunch container"
418 package_go_binary services/crunchstat crunchstat \
419 "Gather cpu/memory/network statistics of running Crunch jobs"
420 package_go_binary services/datamanager arvados-data-manager \
421 "Ensure block replication levels, report disk usage, and determine which blocks should be deleted when space is needed"
422 package_go_binary services/keep-balance keep-balance \
423 "Rebalance and garbage-collect data blocks stored in Arvados Keep"
424 package_go_binary services/keepproxy keepproxy \
425 "Make a Keep cluster accessible to clients that are not on the LAN"
426 package_go_binary services/keepstore keepstore \
427 "Keep storage daemon, accessible to clients on the LAN"
428 package_go_binary services/keep-web keep-web \
429 "Static web hosting service for user data stored in Arvados Keep"
430 package_go_binary tools/keep-block-check keep-block-check \
431 "Verify that all data from one set of Keep servers to another was copied"
432 package_go_binary tools/keep-rsync keep-rsync \
433 "Copy all data from one set of Keep servers to another"
434 package_go_binary tools/keep-exercise keep-exercise \
435 "Performance testing tool for Arvados Keep"
438 # Please resist the temptation to add --no-python-fix-name to the fpm call here
439 # (which would remove the python- prefix from the package name), because this
440 # package is a dependency of arvados-fuse, and fpm can not omit the python-
441 # prefix from only one of the dependencies of a package... Maybe I could
442 # whip up a patch and send it upstream, but that will be for another day. Ward,
444 cd $WORKSPACE/packages/$TARGET
445 rm -rf "$WORKSPACE/sdk/python/build"
446 fpm_build $WORKSPACE/sdk/python "${PYTHON2_PKG_PREFIX}-arvados-python-client" 'Curoverse, Inc.' 'python' "$(awk '($1 == "Version:"){print $2}' $WORKSPACE/sdk/python/arvados_python_client.egg-info/PKG-INFO)" "--url=https://arvados.org" "--description=The Arvados Python SDK" --deb-recommends=git
449 cd $WORKSPACE/packages/$TARGET
450 rm -rf "$WORKSPACE/sdk/cwl/build"
451 fpm_build $WORKSPACE/sdk/cwl "${PYTHON2_PKG_PREFIX}-arvados-cwl-runner" 'Curoverse, Inc.' 'python' "$(awk '($1 == "Version:"){print $2}' $WORKSPACE/sdk/cwl/arvados_cwl_runner.egg-info/PKG-INFO)" "--url=https://arvados.org" "--description=The Arvados CWL runner" --depends "${PYTHON2_PKG_PREFIX}-setuptools" --iteration 3
453 fpm_build lockfile "" "" python 0.12.2 --epoch 1
455 # schema_salad. This is a python dependency of arvados-cwl-runner,
456 # but we can't use the usual PYTHONPACKAGES way to build this package due to the
457 # intricacies of how version numbers get generated in setup.py: we need a specific version,
458 # e.g. 1.7.20160316203940. If we don't explicitly list that version with the -v
459 # argument to fpm, and instead specify it as schema_salad==1.7.20160316203940, we get
460 # a package with version 1.7. That's because our gittagger hack is not being
461 # picked up by self.distribution.get_version(), which is called from
462 # https://github.com/jordansissel/fpm/blob/master/lib/fpm/package/pyfpm/get_metadata.py
463 # by means of this command:
465 # python2.7 setup.py --command-packages=pyfpm get_metadata --output=metadata.json
467 # So we build this thing separately.
470 fpm_build schema_salad "" "" python 1.20.20161122192122 --depends "${PYTHON2_PKG_PREFIX}-lockfile >= 1:0.12.2-2"
472 # And schema_salad now depends on ruamel-yaml, which apparently has a braindead setup.py that requires special arguments to build (otherwise, it aborts with 'error: you have to install with "pip install ."'). Sigh.
474 fpm_build ruamel.yaml "" "" python 0.12.4 --python-setup-py-arguments "--single-version-externally-managed"
476 # Dependency of cwltool. Fpm doesn't produce a package with the correct version
477 # number unless we build it explicitly
478 fpm_build cwltest "" "" python 1.0.20160907111242
480 # And for cwltool we have the same problem as for schema_salad. Ward, 2016-03-17
481 fpm_build cwltool "" "" python 1.0.20161122201220
483 # FPM eats the trailing .0 in the python-rdflib-jsonld package when built with 'rdflib-jsonld>=0.3.0'. Force the version. Ward, 2016-03-25
484 fpm_build rdflib-jsonld "" "" python 0.3.0
487 if [[ $TARGET =~ debian|ubuntu ]]; then
488 cd $WORKSPACE/packages/$TARGET
489 rm -rf "$WORKSPACE/sdk/pam/build"
490 fpm_build $WORKSPACE/sdk/pam libpam-arvados 'Curoverse, Inc.' 'python' "$(awk '($1 == "Version:"){print $2}' $WORKSPACE/sdk/pam/arvados_pam.egg-info/PKG-INFO)" "--url=https://arvados.org" "--description=PAM module for authenticating shell logins using Arvados API tokens" --depends libpam-python
494 # Please see comment about --no-python-fix-name above; we stay consistent and do
495 # not omit the python- prefix first.
496 cd $WORKSPACE/packages/$TARGET
497 rm -rf "$WORKSPACE/services/fuse/build"
498 fpm_build $WORKSPACE/services/fuse "${PYTHON2_PKG_PREFIX}-arvados-fuse" 'Curoverse, Inc.' 'python' "$(awk '($1 == "Version:"){print $2}' $WORKSPACE/services/fuse/arvados_fuse.egg-info/PKG-INFO)" "--url=https://arvados.org" "--description=The Keep FUSE driver"
501 cd $WORKSPACE/packages/$TARGET
502 rm -rf "$WORKSPACE/services/nodemanager/build"
503 fpm_build $WORKSPACE/services/nodemanager arvados-node-manager 'Curoverse, Inc.' 'python' "$(awk '($1 == "Version:"){print $2}' $WORKSPACE/services/nodemanager/arvados_node_manager.egg-info/PKG-INFO)" "--url=https://arvados.org" "--description=The Arvados node manager"
505 # The Docker image cleaner
506 cd $WORKSPACE/packages/$TARGET
507 rm -rf "$WORKSPACE/services/dockercleaner/build"
508 fpm_build $WORKSPACE/services/dockercleaner arvados-docker-cleaner 'Curoverse, Inc.' 'python3' "$(awk '($1 == "Version:"){print $2}' $WORKSPACE/services/dockercleaner/arvados_docker_cleaner.egg-info/PKG-INFO)" "--url=https://arvados.org" "--description=The Arvados Docker image cleaner"
510 # The Arvados crunchstat-summary tool
511 cd $WORKSPACE/packages/$TARGET
512 rm -rf "$WORKSPACE/tools/crunchstat-summary/build"
513 fpm_build $WORKSPACE/tools/crunchstat-summary ${PYTHON2_PKG_PREFIX}-crunchstat-summary 'Curoverse, Inc.' 'python' "$(awk '($1 == "Version:"){print $2}' $WORKSPACE/tools/crunchstat-summary/crunchstat_summary.egg-info/PKG-INFO)" "--url=https://arvados.org" "--description=Crunchstat-summary reads Arvados Crunch log files and summarize resource usage"
516 LIBCLOUD_DIR=$(mktemp -d)
519 git clone $DASHQ_UNLESS_DEBUG https://github.com/curoverse/libcloud.git .
520 git checkout apache-libcloud-$LIBCLOUD_PIN
521 # libcloud is absurdly noisy without -q, so force -q here
522 OLD_DASHQ_UNLESS_DEBUG=$DASHQ_UNLESS_DEBUG
523 DASHQ_UNLESS_DEBUG=-q
524 handle_python_package
525 DASHQ_UNLESS_DEBUG=$OLD_DASHQ_UNLESS_DEBUG
527 fpm_build $LIBCLOUD_DIR "$PYTHON2_PKG_PREFIX"-apache-libcloud
530 # Python 2 dependencies
531 declare -a PIP_DOWNLOAD_SWITCHES=(--no-deps)
532 # Add --no-use-wheel if this pip knows it.
533 pip wheel --help >/dev/null 2>&1
535 0) PIP_DOWNLOAD_SWITCHES+=(--no-use-wheel) ;;
537 *) echo "WARNING: `pip wheel` test returned unknown exit code $?" ;;
540 for deppkg in "${PYTHON_BACKPORTS[@]}"; do
541 outname=$(echo "$deppkg" | sed -e 's/^python-//' -e 's/[<=>].*//' -e 's/_/-/g' -e "s/^/${PYTHON2_PKG_PREFIX}-/")
543 httplib2|google-api-python-client)
544 # Work around 0640 permissions on some package files.
545 # See #7591 and #7991.
546 pyfpm_workdir=$(mktemp --tmpdir -d pyfpm-XXXXXX) && (
549 pip install "${PIP_DOWNLOAD_SWITCHES[@]}" --download . "$deppkg"
550 # Sometimes pip gives us a tarball, sometimes a zip file...
551 DOWNLOADED=`ls $deppkg-*`
552 [[ "$DOWNLOADED" =~ ".tar" ]] && tar -xf $DOWNLOADED
553 [[ "$DOWNLOADED" =~ ".zip" ]] && unzip $DOWNLOADED
555 "python$PYTHON2_VERSION" setup.py $DASHQ_UNLESS_DEBUG egg_info build
558 fpm_build . "$outname" "" python "" --iteration 3
559 # The upload step uses the package timestamp to determine
560 # whether it's new. --no-clobber plays nice with that.
561 mv --no-clobber "$outname"*.$FORMAT "$WORKSPACE/packages/$TARGET"
563 if [ 0 != "$?" ]; then
564 echo "ERROR: $deppkg build process failed"
567 if [ -n "$pyfpm_workdir" ]; then
568 rm -rf "$pyfpm_workdir"
572 fpm_build "$deppkg" "$outname"
577 # Python 3 dependencies
578 for deppkg in "${PYTHON3_BACKPORTS[@]}"; do
579 outname=$(echo "$deppkg" | sed -e 's/^python-//' -e 's/[<=>].*//' -e 's/_/-/g' -e "s/^/${PYTHON3_PKG_PREFIX}-/")
580 # The empty string is the vendor argument: these aren't Curoverse software.
581 fpm_build "$deppkg" "$outname" "" python3
584 # Build the API server package
585 handle_rails_package arvados-api-server "$WORKSPACE/services/api" \
586 "$WORKSPACE/agpl-3.0.txt" --url="https://arvados.org" \
587 --description="Arvados API server - Arvados is a free and open source platform for big data science." \
588 --license="GNU Affero General Public License, version 3.0"
590 # Build the workbench server package
593 cd "$WORKSPACE/apps/workbench"
595 # We need to bundle to be ready even when we build a package without vendor directory
596 # because asset compilation requires it.
597 bundle install --path vendor/bundle >"$STDOUT_IF_DEBUG"
599 # clear the tmp directory; the asset generation step will recreate tmp/cache/assets,
600 # and we want that in the package, so it's easier to not exclude the tmp directory
601 # from the package - empty it instead.
605 # Set up application.yml and production.rb so that asset precompilation works
606 \cp config/application.yml.example config/application.yml -f
607 \cp config/environments/production.rb.example config/environments/production.rb -f
608 sed -i 's/secret_token: ~/secret_token: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/' config/application.yml
610 RAILS_ENV=production RAILS_GROUPS=assets bundle exec rake assets:precompile >/dev/null
612 # Remove generated configuration files so they don't go in the package.
613 rm config/application.yml config/environments/production.rb
616 if [[ "$?" != "0" ]]; then
617 echo "ERROR: Asset precompilation failed"
620 handle_rails_package arvados-workbench "$WORKSPACE/apps/workbench" \
621 "$WORKSPACE/agpl-3.0.txt" --url="https://arvados.org" \
622 --description="Arvados Workbench - Arvados is a free and open source platform for big data science." \
623 --license="GNU Affero General Public License, version 3.0"
626 # clean up temporary GOPATH