Merge branch 'master' into 8876-work-unit
[arvados.git] / build / run-build-packages.sh
1 #!/bin/bash
2
3 . `dirname "$(readlink -f "$0")"`/run-library.sh
4 . `dirname "$(readlink -f "$0")"`/libcloud-pin
5
6 read -rd "\000" helpmessage <<EOF
7 $(basename $0): Build Arvados packages
8
9 Syntax:
10         WORKSPACE=/path/to/arvados $(basename $0) [options]
11
12 Options:
13
14 --build-bundle-packages  (default: false)
15     Build api server and workbench packages with vendor/bundle included
16 --debug
17     Output debug information (default: false)
18 --target
19     Distribution to build packages for (default: debian7)
20 --command
21     Build command to execute (defaults to the run command defined in the
22     Docker image)
23
24 WORKSPACE=path         Path to the Arvados source tree to build packages from
25
26 EOF
27
28 EXITCODE=0
29 DEBUG=${ARVADOS_DEBUG:-0}
30 TARGET=debian7
31 COMMAND=
32
33 PARSEDOPTS=$(getopt --name "$0" --longoptions \
34     help,build-bundle-packages,debug,target: \
35     -- "" "$@")
36 if [ $? -ne 0 ]; then
37     exit 1
38 fi
39
40 eval set -- "$PARSEDOPTS"
41 while [ $# -gt 0 ]; do
42     case "$1" in
43         --help)
44             echo >&2 "$helpmessage"
45             echo >&2
46             exit 1
47             ;;
48         --target)
49             TARGET="$2"; shift
50             ;;
51         --debug)
52             DEBUG=1
53             ;;
54         --command)
55             COMMAND="$2"; shift
56             ;;
57         --)
58             if [ $# -gt 1 ]; then
59                 echo >&2 "$0: unrecognized argument '$2'. Try: $0 --help"
60                 exit 1
61             fi
62             ;;
63     esac
64     shift
65 done
66
67 if [[ "$COMMAND" != "" ]]; then
68   COMMAND="/usr/local/rvm/bin/rvm-exec default bash /jenkins/$COMMAND --target $TARGET"
69 fi
70
71 STDOUT_IF_DEBUG=/dev/null
72 STDERR_IF_DEBUG=/dev/null
73 DASHQ_UNLESS_DEBUG=-q
74 if [[ "$DEBUG" != 0 ]]; then
75     STDOUT_IF_DEBUG=/dev/stdout
76     STDERR_IF_DEBUG=/dev/stderr
77     DASHQ_UNLESS_DEBUG=
78 fi
79
80 declare -a PYTHON_BACKPORTS PYTHON3_BACKPORTS
81
82 PYTHON2_VERSION=2.7
83 PYTHON3_VERSION=$(python3 -c 'import sys; print("{v.major}.{v.minor}".format(v=sys.version_info))')
84
85 case "$TARGET" in
86     debian7)
87         FORMAT=deb
88         PYTHON2_PACKAGE=python$PYTHON2_VERSION
89         PYTHON2_PKG_PREFIX=python
90         PYTHON3_PACKAGE=python$PYTHON3_VERSION
91         PYTHON3_PKG_PREFIX=python3
92         PYTHON_BACKPORTS=(python-gflags==2.0 google-api-python-client==1.4.2 \
93             oauth2client==1.5.2 pyasn1==0.1.7 pyasn1-modules==0.0.5 \
94             rsa uritemplate httplib2 ws4py pykka six pyexecjs jsonschema \
95             ciso8601 pycrypto backports.ssl_match_hostname llfuse==0.41.1 \
96             'pycurl<7.21.5' contextlib2 pyyaml 'rdflib>=4.2.0' \
97             shellescape mistune typing avro ruamel.ordereddict)
98         PYTHON3_BACKPORTS=(docker-py==1.7.2 six requests websocket-client)
99         ;;
100     debian8)
101         FORMAT=deb
102         PYTHON2_PACKAGE=python$PYTHON2_VERSION
103         PYTHON2_PKG_PREFIX=python
104         PYTHON3_PACKAGE=python$PYTHON3_VERSION
105         PYTHON3_PKG_PREFIX=python3
106         PYTHON_BACKPORTS=(python-gflags==2.0 google-api-python-client==1.4.2 \
107             oauth2client==1.5.2 pyasn1==0.1.7 pyasn1-modules==0.0.5 \
108             rsa uritemplate httplib2 ws4py pykka six pyexecjs jsonschema \
109             ciso8601 pycrypto backports.ssl_match_hostname llfuse==0.41.1 \
110             'pycurl<7.21.5' pyyaml 'rdflib>=4.2.0' \
111             shellescape mistune typing avro ruamel.ordereddict)
112         PYTHON3_BACKPORTS=(docker-py==1.7.2 six requests websocket-client)
113         ;;
114     ubuntu1204)
115         FORMAT=deb
116         PYTHON2_PACKAGE=python$PYTHON2_VERSION
117         PYTHON2_PKG_PREFIX=python
118         PYTHON3_PACKAGE=python$PYTHON3_VERSION
119         PYTHON3_PKG_PREFIX=python3
120         PYTHON_BACKPORTS=(python-gflags==2.0 google-api-python-client==1.4.2 \
121             oauth2client==1.5.2 pyasn1==0.1.7 pyasn1-modules==0.0.5 \
122             rsa uritemplate httplib2 ws4py pykka six pyexecjs jsonschema \
123             ciso8601 pycrypto backports.ssl_match_hostname llfuse==0.41.1 \
124             contextlib2 'pycurl<7.21.5' pyyaml 'rdflib>=4.2.0' \
125             shellescape mistune typing avro isodate ruamel.ordereddict)
126         PYTHON3_BACKPORTS=(docker-py==1.7.2 six requests websocket-client)
127         ;;
128     ubuntu1404)
129         FORMAT=deb
130         PYTHON2_PACKAGE=python$PYTHON2_VERSION
131         PYTHON2_PKG_PREFIX=python
132         PYTHON3_PACKAGE=python$PYTHON3_VERSION
133         PYTHON3_PKG_PREFIX=python3
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)
138         PYTHON3_BACKPORTS=(docker-py==1.7.2 requests websocket-client)
139         ;;
140     centos6)
141         FORMAT=rpm
142         PYTHON2_PACKAGE=$(rpm -qf "$(which python$PYTHON2_VERSION)" --queryformat '%{NAME}\n')
143         PYTHON2_PKG_PREFIX=$PYTHON2_PACKAGE
144         PYTHON3_PACKAGE=$(rpm -qf "$(which python$PYTHON3_VERSION)" --queryformat '%{NAME}\n')
145         PYTHON3_PKG_PREFIX=$PYTHON3_PACKAGE
146         PYTHON_BACKPORTS=(python-gflags==2.0 google-api-python-client==1.4.2 \
147             oauth2client==1.5.2 pyasn1==0.1.7 pyasn1-modules==0.0.5 \
148             rsa uritemplate httplib2 ws4py pykka six pyexecjs jsonschema \
149             ciso8601 pycrypto backports.ssl_match_hostname 'pycurl<7.21.5' \
150             python-daemon lockfile llfuse==0.41.1 'pbr<1.0' pyyaml \
151             'rdflib>=4.2.0' shellescape mistune typing avro requests \
152             isodate pyparsing sparqlwrapper html5lib keepalive \
153             ruamel.ordereddict)
154         PYTHON3_BACKPORTS=(docker-py==1.7.2 six requests websocket-client)
155         export PYCURL_SSL_LIBRARY=nss
156         ;;
157     *)
158         echo -e "$0: Unknown target '$TARGET'.\n" >&2
159         exit 1
160         ;;
161 esac
162
163
164 if ! [[ -n "$WORKSPACE" ]]; then
165   echo >&2 "$helpmessage"
166   echo >&2
167   echo >&2 "Error: WORKSPACE environment variable not set"
168   echo >&2
169   exit 1
170 fi
171
172 # Test for fpm
173 fpm --version >/dev/null 2>&1
174
175 if [[ "$?" != 0 ]]; then
176   echo >&2 "$helpmessage"
177   echo >&2
178   echo >&2 "Error: fpm not found"
179   echo >&2
180   exit 1
181 fi
182
183 EASY_INSTALL2=$(find_easy_install -$PYTHON2_VERSION "")
184 EASY_INSTALL3=$(find_easy_install -$PYTHON3_VERSION 3)
185
186 RUN_BUILD_PACKAGES_PATH="`dirname \"$0\"`"
187 RUN_BUILD_PACKAGES_PATH="`( cd \"$RUN_BUILD_PACKAGES_PATH\" && pwd )`"  # absolutized and normalized
188 if [ -z "$RUN_BUILD_PACKAGES_PATH" ] ; then
189   # error; for some reason, the path is not accessible
190   # to the script (e.g. permissions re-evaled after suid)
191   exit 1  # fail
192 fi
193
194 debug_echo "$0 is running from $RUN_BUILD_PACKAGES_PATH"
195 debug_echo "Workspace is $WORKSPACE"
196
197 if [[ -f /etc/profile.d/rvm.sh ]]; then
198     source /etc/profile.d/rvm.sh
199     GEM="rvm-exec default gem"
200 else
201     GEM=gem
202 fi
203
204 # Make all files world-readable -- jenkins runs with umask 027, and has checked
205 # out our git tree here
206 chmod o+r "$WORKSPACE" -R
207
208 # More cleanup - make sure all executables that we'll package are 755
209 cd "$WORKSPACE"
210 find -type d -name 'bin' |xargs -I {} find {} -type f |xargs -I {} chmod 755 {}
211
212 # Now fix our umask to something better suited to building and publishing
213 # gems and packages
214 umask 0022
215
216 debug_echo "umask is" `umask`
217
218 if [[ ! -d "$WORKSPACE/packages/$TARGET" ]]; then
219   mkdir -p $WORKSPACE/packages/$TARGET
220 fi
221
222 # Perl packages
223 debug_echo -e "\nPerl packages\n"
224
225 cd "$WORKSPACE/sdk/perl"
226
227 if [[ -e Makefile ]]; then
228   make realclean >"$STDOUT_IF_DEBUG"
229 fi
230 find -maxdepth 1 \( -name 'MANIFEST*' -or -name "libarvados-perl*.$FORMAT" \) \
231     -delete
232 rm -rf install
233
234 perl Makefile.PL INSTALL_BASE=install >"$STDOUT_IF_DEBUG" && \
235     make install INSTALLDIRS=perl >"$STDOUT_IF_DEBUG" && \
236     fpm_build install/lib/=/usr/share libarvados-perl \
237     "Curoverse, Inc." dir "$(version_from_git)" install/man/=/usr/share/man \
238     "$WORKSPACE/LICENSE-2.0.txt=/usr/share/doc/libarvados-perl/LICENSE-2.0.txt" && \
239     mv --no-clobber libarvados-perl*.$FORMAT "$WORKSPACE/packages/$TARGET/"
240
241 # Ruby gems
242 debug_echo -e "\nRuby gems\n"
243
244 FPM_GEM_PREFIX=$($GEM environment gemdir)
245
246 cd "$WORKSPACE/sdk/ruby"
247 handle_ruby_gem arvados
248
249 cd "$WORKSPACE/sdk/cli"
250 handle_ruby_gem arvados-cli
251
252 cd "$WORKSPACE/services/login-sync"
253 handle_ruby_gem arvados-login-sync
254
255 # Python packages
256 debug_echo -e "\nPython packages\n"
257
258 cd "$WORKSPACE/sdk/pam"
259 handle_python_package
260
261 cd "$WORKSPACE/sdk/python"
262 handle_python_package
263
264 cd "$WORKSPACE/sdk/cwl"
265 handle_python_package
266
267 cd "$WORKSPACE/services/fuse"
268 handle_python_package
269
270 cd "$WORKSPACE/services/nodemanager"
271 handle_python_package
272
273 # arvados-src
274 (
275     set -e
276
277     cd "$WORKSPACE"
278     COMMIT_HASH=$(format_last_commit_here "%H")
279
280     SRC_BUILD_DIR=$(mktemp -d)
281     # mktemp creates the directory with 0700 permissions by default
282     chmod 755 $SRC_BUILD_DIR
283     git clone $DASHQ_UNLESS_DEBUG "$WORKSPACE/.git" "$SRC_BUILD_DIR"
284     cd "$SRC_BUILD_DIR"
285
286     # go into detached-head state
287     git checkout $DASHQ_UNLESS_DEBUG "$COMMIT_HASH"
288     echo "$COMMIT_HASH" >git-commit.version
289
290     cd "$SRC_BUILD_DIR"
291     PKG_VERSION=$(version_from_git)
292     cd $WORKSPACE/packages/$TARGET
293     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"
294
295     rm -rf "$SRC_BUILD_DIR"
296 )
297
298 # On older platforms we need to publish a backport of libfuse >=2.9.2,
299 # and we need to build and install it here in order to even build an
300 # llfuse package.
301 cd $WORKSPACE/packages/$TARGET
302 if [[ $TARGET =~ ubuntu1204 ]]; then
303     # port libfuse 2.9.2 to Ubuntu 12.04
304     LIBFUSE_DIR=$(mktemp -d)
305     (
306         cd $LIBFUSE_DIR
307         # download fuse 2.9.2 ubuntu 14.04 source package
308         file="fuse_2.9.2.orig.tar.xz" && curl -L -o "${file}" "http://archive.ubuntu.com/ubuntu/pool/main/f/fuse/${file}"
309         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}"
310         file="fuse_2.9.2-4ubuntu4.14.04.1.dsc" && curl -L -o "${file}" "http://archive.ubuntu.com/ubuntu/pool/main/f/fuse/${file}"
311
312         # install dpkg-source and dpkg-buildpackage commands
313         apt-get install -y --no-install-recommends dpkg-dev
314
315         # extract source and apply patches
316         dpkg-source -x fuse_2.9.2-4ubuntu4.14.04.1.dsc
317         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
318
319         # add new version to changelog
320         cd fuse-2.9.2
321         (
322             echo "fuse (2.9.2-5) precise; urgency=low"
323             echo
324             echo "  * Backported from trusty-security to precise"
325             echo
326             echo " -- Joshua Randall <jcrandall@alum.mit.edu>  Thu, 4 Feb 2016 11:31:00 -0000"
327             echo
328             cat debian/changelog
329         ) > debian/changelog.new
330         mv debian/changelog.new debian/changelog
331
332         # install build-deps and build
333         apt-get install -y --no-install-recommends debhelper dh-autoreconf libselinux-dev
334         dpkg-buildpackage -rfakeroot -b
335     )
336     fpm_build "$LIBFUSE_DIR/fuse_2.9.2-5_amd64.deb" fuse "Ubuntu Developers" deb "2.9.2" --iteration 5
337     fpm_build "$LIBFUSE_DIR/libfuse2_2.9.2-5_amd64.deb" libfuse2 "Ubuntu Developers" deb "2.9.2" --iteration 5
338     fpm_build "$LIBFUSE_DIR/libfuse-dev_2.9.2-5_amd64.deb" libfuse-dev "Ubuntu Developers" deb "2.9.2" --iteration 5
339     dpkg -i \
340         "$WORKSPACE/packages/$TARGET/fuse_2.9.2-5_amd64.deb" \
341         "$WORKSPACE/packages/$TARGET/libfuse2_2.9.2-5_amd64.deb" \
342         "$WORKSPACE/packages/$TARGET/libfuse-dev_2.9.2-5_amd64.deb"
343     apt-get -y --no-install-recommends -f install
344     rm -rf $LIBFUSE_DIR
345 elif [[ $TARGET =~ centos6 ]]; then
346     # port fuse 2.9.2 to centos 6
347     # install tools to build rpm from source
348     yum install -y rpm-build redhat-rpm-config
349     LIBFUSE_DIR=$(mktemp -d)
350     (
351         cd "$LIBFUSE_DIR"
352         # download fuse 2.9.2 centos 7 source rpm
353         file="fuse-2.9.2-6.el7.src.rpm" && curl -L -o "${file}" "http://vault.centos.org/7.2.1511/os/Source/SPackages/${file}"
354         (
355             # modify source rpm spec to remove conflict on filesystem version
356             mkdir -p /root/rpmbuild/SOURCES
357             cd /root/rpmbuild/SOURCES
358             rpm2cpio ${LIBFUSE_DIR}/fuse-2.9.2-6.el7.src.rpm | cpio -i
359             perl -pi -e 's/Conflicts:\s*filesystem.*//g' fuse.spec
360         )
361         # build rpms from source
362         rpmbuild -bb /root/rpmbuild/SOURCES/fuse.spec
363         rm -f fuse-2.9.2-6.el7.src.rpm
364         # move built RPMs to LIBFUSE_DIR
365         mv "/root/rpmbuild/RPMS/x86_64/fuse-2.9.2-6.el6.x86_64.rpm" ${LIBFUSE_DIR}/
366         mv "/root/rpmbuild/RPMS/x86_64/fuse-libs-2.9.2-6.el6.x86_64.rpm" ${LIBFUSE_DIR}/
367         mv "/root/rpmbuild/RPMS/x86_64/fuse-devel-2.9.2-6.el6.x86_64.rpm" ${LIBFUSE_DIR}/
368         rm -rf /root/rpmbuild
369     )
370     fpm_build "$LIBFUSE_DIR/fuse-libs-2.9.2-6.el6.x86_64.rpm" fuse-libs "Centos Developers" rpm "2.9.2" --iteration 5
371     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
372     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
373     yum install -y \
374         "$WORKSPACE/packages/$TARGET/fuse-libs-2.9.2-5.x86_64.rpm" \
375         "$WORKSPACE/packages/$TARGET/fuse-2.9.2-5.x86_64.rpm" \
376         "$WORKSPACE/packages/$TARGET/fuse-devel-2.9.2-5.x86_64.rpm"
377 fi
378
379 # Go binaries
380 cd $WORKSPACE/packages/$TARGET
381 export GOPATH=$(mktemp -d)
382 package_go_binary services/keepstore keepstore \
383     "Keep storage daemon, accessible to clients on the LAN"
384 package_go_binary services/keepproxy keepproxy \
385     "Make a Keep cluster accessible to clients that are not on the LAN"
386 package_go_binary services/keep-web keep-web \
387     "Static web hosting service for user data stored in Arvados Keep"
388 package_go_binary services/datamanager arvados-data-manager \
389     "Ensure block replication levels, report disk usage, and determine which blocks should be deleted when space is needed"
390 package_go_binary services/arv-git-httpd arvados-git-httpd \
391     "Provide authenticated http access to Arvados-hosted git repositories"
392 package_go_binary services/crunchstat crunchstat \
393     "Gather cpu/memory/network statistics of running Crunch jobs"
394 package_go_binary tools/keep-rsync keep-rsync \
395     "Copy all data from one set of Keep servers to another"
396 package_go_binary tools/keep-block-check keep-block-check \
397     "Verify that all data from one set of Keep servers to another was copied"
398 package_go_binary sdk/go/crunchrunner crunchrunner \
399     "Crunchrunner executes a command inside a container and uploads the output"
400
401 # The Python SDK
402 # Please resist the temptation to add --no-python-fix-name to the fpm call here
403 # (which would remove the python- prefix from the package name), because this
404 # package is a dependency of arvados-fuse, and fpm can not omit the python-
405 # prefix from only one of the dependencies of a package...  Maybe I could
406 # whip up a patch and send it upstream, but that will be for another day. Ward,
407 # 2014-05-15
408 cd $WORKSPACE/packages/$TARGET
409 rm -rf "$WORKSPACE/sdk/python/build"
410 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
411
412 # cwl-runner
413 cd $WORKSPACE/packages/$TARGET
414 rm -rf "$WORKSPACE/sdk/cwl/build"
415 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" --iteration 2
416
417 # schema_salad. This is a python dependency of arvados-cwl-runner,
418 # but we can't use the usual PYTHONPACKAGES way to build this package due to the
419 # intricacies of how version numbers get generated in setup.py: we need version
420 # 1.7.20160316203940. If we don't explicitly list that version with the -v
421 # argument to fpm, and instead specify it as schema_salad==1.7.20160316203940, we get
422 # a package with version 1.7. That's because our gittagger hack is not being
423 # picked up by self.distribution.get_version(), which is called from
424 # https://github.com/jordansissel/fpm/blob/master/lib/fpm/package/pyfpm/get_metadata.py
425 # by means of this command:
426 #
427 # python2.7 setup.py --command-packages=pyfpm get_metadata --output=metadata.json
428 #
429 # So we build this thing separately.
430 #
431 # Ward, 2016-03-17
432 fpm --maintainer='Ward Vandewege <ward@curoverse.com>' -s python -t $FORMAT --exclude=*/dist-packages/tests/* --exclude=*/site-packages/tests/* --deb-ignore-iteration-in-dependencies -n "${PYTHON2_PKG_PREFIX}-schema-salad" --iteration 1 --python-bin python2.7 --python-easyinstall "$EASY_INSTALL2" --python-package-name-prefix "$PYTHON2_PKG_PREFIX" --depends "$PYTHON2_PACKAGE" -v 1.11.20160506154702 schema_salad
433
434 # 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. 
435 # Ward, 2016-05-26
436 fpm --maintainer='Ward Vandewege <ward@curoverse.com>' -s python -t $FORMAT --exclude=*/dist-packages/tests/* --exclude=*/site-packages/tests/* --deb-ignore-iteration-in-dependencies --iteration 1 --python-bin python2.7 --python-easyinstall "$EASY_INSTALL2" --python-package-name-prefix "$PYTHON2_PKG_PREFIX" --depends "$PYTHON2_PACKAGE" --python-setup-py-arguments "--single-version-externally-managed" ruamel.yaml
437
438 # And for cwltool we have the same problem as for schema_salad. Ward, 2016-03-17
439 fpm --maintainer='Ward Vandewege <ward@curoverse.com>' -s python -t $FORMAT --exclude=*/dist-packages/tests/* --exclude=*/site-packages/tests/* --deb-ignore-iteration-in-dependencies -n "${PYTHON2_PKG_PREFIX}-cwltool" --iteration 1 --python-bin python2.7 --python-easyinstall "$EASY_INSTALL2" --python-package-name-prefix "$PYTHON2_PKG_PREFIX" --depends "$PYTHON2_PACKAGE" -v 1.0.20160519182434 cwltool
440
441 # 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
442 fpm --maintainer='Ward Vandewege <ward@curoverse.com>' -s python -t $FORMAT --exclude=*/dist-packages/tests/* --exclude=*/site-packages/tests/* --deb-ignore-iteration-in-dependencies --verbose --log info -n "${PYTHON2_PKG_PREFIX}-rdflib-jsonld" --iteration 1 --python-bin python2.7 --python-easyinstall "$EASY_INSTALL2" --python-package-name-prefix "$PYTHON2_PKG_PREFIX" --depends "$PYTHON2_PACKAGE" -v 0.3.0 rdflib-jsonld
443
444 # The PAM module
445 if [[ $TARGET =~ debian|ubuntu ]]; then
446     cd $WORKSPACE/packages/$TARGET
447     rm -rf "$WORKSPACE/sdk/pam/build"
448     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
449 fi
450
451 # The FUSE driver
452 # Please see comment about --no-python-fix-name above; we stay consistent and do
453 # not omit the python- prefix first.
454 cd $WORKSPACE/packages/$TARGET
455 rm -rf "$WORKSPACE/services/fuse/build"
456 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"
457
458 # The node manager
459 cd $WORKSPACE/packages/$TARGET
460 rm -rf "$WORKSPACE/services/nodemanager/build"
461 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"
462
463 # The Docker image cleaner
464 cd $WORKSPACE/packages/$TARGET
465 rm -rf "$WORKSPACE/services/dockercleaner/build"
466 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"
467
468 # The Arvados crunchstat-summary tool
469 cd $WORKSPACE/packages/$TARGET
470 rm -rf "$WORKSPACE/tools/crunchstat-summary/build"
471 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"
472
473 # Forked libcloud
474 LIBCLOUD_DIR=$(mktemp -d)
475 (
476     cd $LIBCLOUD_DIR
477     git clone $DASHQ_UNLESS_DEBUG https://github.com/curoverse/libcloud.git .
478     git checkout apache-libcloud-$LIBCLOUD_PIN
479     # libcloud is absurdly noisy without -q, so force -q here
480     OLD_DASHQ_UNLESS_DEBUG=$DASHQ_UNLESS_DEBUG
481     DASHQ_UNLESS_DEBUG=-q
482     handle_python_package
483     DASHQ_UNLESS_DEBUG=$OLD_DASHQ_UNLESS_DEBUG
484 )
485 fpm_build $LIBCLOUD_DIR "$PYTHON2_PKG_PREFIX"-apache-libcloud
486 rm -rf $LIBCLOUD_DIR
487
488 # Python 2 dependencies
489 declare -a PIP_DOWNLOAD_SWITCHES=(--no-deps)
490 # Add --no-use-wheel if this pip knows it.
491 pip wheel --help >/dev/null 2>&1
492 case "$?" in
493     0) PIP_DOWNLOAD_SWITCHES+=(--no-use-wheel) ;;
494     2) ;;
495     *) echo "WARNING: `pip wheel` test returned unknown exit code $?" ;;
496 esac
497
498 for deppkg in "${PYTHON_BACKPORTS[@]}"; do
499     outname=$(echo "$deppkg" | sed -e 's/^python-//' -e 's/[<=>].*//' -e 's/_/-/g' -e "s/^/${PYTHON2_PKG_PREFIX}-/")
500     case "$deppkg" in
501         httplib2|google-api-python-client)
502             # Work around 0640 permissions on some package files.
503             # See #7591 and #7991.
504             pyfpm_workdir=$(mktemp --tmpdir -d pyfpm-XXXXXX) && (
505                 set -e
506                 cd "$pyfpm_workdir"
507                 pip install "${PIP_DOWNLOAD_SWITCHES[@]}" --download . "$deppkg"
508                 # Sometimes pip gives us a tarball, sometimes a zip file...
509                 DOWNLOADED=`ls $deppkg-*`
510                 [[ "$DOWNLOADED" =~ ".tar" ]] && tar -xf $DOWNLOADED
511                 [[ "$DOWNLOADED" =~ ".zip" ]] && unzip $DOWNLOADED
512                 cd "$deppkg"-*/
513                 "python$PYTHON2_VERSION" setup.py $DASHQ_UNLESS_DEBUG egg_info build
514                 chmod -R go+rX .
515                 set +e
516                 # --iteration 2 provides an upgrade for previously built
517                 # buggy packages.
518                 fpm_build . "$outname" "" python "" --iteration 2
519                 # The upload step uses the package timestamp to determine
520                 # whether it's new.  --no-clobber plays nice with that.
521                 mv --no-clobber "$outname"*.$FORMAT "$WORKSPACE/packages/$TARGET"
522             )
523             if [ 0 != "$?" ]; then
524                 echo "ERROR: $deppkg build process failed"
525                 EXITCODE=1
526             fi
527             if [ -n "$pyfpm_workdir" ]; then
528                 rm -rf "$pyfpm_workdir"
529             fi
530             ;;
531         *)
532             fpm_build "$deppkg" "$outname"
533             ;;
534     esac
535 done
536
537 # Python 3 dependencies
538 for deppkg in "${PYTHON3_BACKPORTS[@]}"; do
539     outname=$(echo "$deppkg" | sed -e 's/^python-//' -e 's/[<=>].*//' -e 's/_/-/g' -e "s/^/${PYTHON3_PKG_PREFIX}-/")
540     # The empty string is the vendor argument: these aren't Curoverse software.
541     fpm_build "$deppkg" "$outname" "" python3
542 done
543
544 # Build the API server package
545 handle_rails_package arvados-api-server "$WORKSPACE/services/api" \
546     "$WORKSPACE/agpl-3.0.txt" --url="https://arvados.org" \
547     --description="Arvados API server - Arvados is a free and open source platform for big data science." \
548     --license="GNU Affero General Public License, version 3.0"
549
550 # Build the workbench server package
551 (
552     set -e
553     cd "$WORKSPACE/apps/workbench"
554
555     # We need to bundle to be ready even when we build a package without vendor directory
556     # because asset compilation requires it.
557     bundle install --path vendor/bundle >"$STDOUT_IF_DEBUG"
558
559     # clear the tmp directory; the asset generation step will recreate tmp/cache/assets,
560     # and we want that in the package, so it's easier to not exclude the tmp directory
561     # from the package - empty it instead.
562     rm -rf tmp
563     mkdir tmp
564
565     # Set up application.yml and production.rb so that asset precompilation works
566     \cp config/application.yml.example config/application.yml -f
567     \cp config/environments/production.rb.example config/environments/production.rb -f
568     sed -i 's/secret_token: ~/secret_token: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/' config/application.yml
569
570     RAILS_ENV=production RAILS_GROUPS=assets bundle exec rake assets:precompile >/dev/null
571
572     # Remove generated configuration files so they don't go in the package.
573     rm config/application.yml config/environments/production.rb
574 )
575
576 if [[ "$?" != "0" ]]; then
577   echo "ERROR: Asset precompilation failed"
578   EXITCODE=1
579 else
580   handle_rails_package arvados-workbench "$WORKSPACE/apps/workbench" \
581       "$WORKSPACE/agpl-3.0.txt" --url="https://arvados.org" \
582       --description="Arvados Workbench - Arvados is a free and open source platform for big data science." \
583       --license="GNU Affero General Public License, version 3.0"
584 fi
585
586 # clean up temporary GOPATH
587 rm -rf "$GOPATH"
588
589 exit $EXITCODE