2 # bootstrap a xapian source tree obtained from git to produce a tree like
3 # you'd get from unpacking the results of "make dist"
6 # Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017 Olly Betts
8 # This program is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU General Public License as
10 # published by the Free Software Foundation; either version 2 of the
11 # License, or (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
24 if [ "$1" = "--help" ] ; then
26 $0 [--ftp] [--download-tools=(always|ifneeded|never)] [--clean] [MODULE...]
28 The default is to bootstrap all known modules. Any modules which have a
29 file called ".nobootstrap" in their top-level will be skipped.
34 trap 'echo "Bootstrap failed"' EXIT
37 # The variables which specify the autotools to use.
38 autotools
="AUTORECONF AUTOCONF AUTOHEADER AUTOM4TE AUTOMAKE ACLOCAL LIBTOOLIZE"
40 # Tool for downloading a file from a URL (currently wget or curl).
47 if [ -z "$SHA1SUM_TOOL" ] ; then
49 '${SHA1SUM-sha1sum} 2>/dev/null|cut -d\ -f1' \
50 '${SHASUM-shasum} 2>/dev/null|cut -d\ -f1' \
51 '${OPENSSL-openssl} sha1 2>/dev/null|sed "s/.* //"' \
53 if [ -z "$SHA1SUM_TOOL" ] ; then
55 Need sha1sum or shasum or openssl installed to check SHA1 checksums.
56 Set environment variable SHA1SUM, SHASUM or OPENSSL if the tool isn't on
61 r
=`:|eval "$SHA1SUM_TOOL"`
62 [ X
"$r" != Xda39a3ee5e6b4b0d3255bfef95601890afd80709
] ||
break
65 r
=`< $tarball eval "$SHA1SUM_TOOL"`
66 if [ X
"$r" != X
"$checksum" ] ; then
67 echo "$tarball: computed SHA1 checksum did NOT match"
68 echo "computed: $r with $SHA1SUM_TOOL"
69 echo "expected: $checksum"
72 mv "$tarball" "$tarball.$r"
73 echo "Renamed $tarball to $tarball.$r"
86 if [ "$1" != "$v" ] ; then
87 if [ "$1" -lt "$v" ] ; then
103 case $download_tools in
109 if [ -n $binary ] ; then
110 # Check if a new enough version is already installed.
111 version_installed
=`"$binary" --version 2>/dev/null|sed '1,1 s/.* //p;d'`
112 if [ -n "$version_installed" ] ; then
113 # Fast track equality.
114 if [ "$version_installed" = "$version" ] ; then
115 echo "$binary $version_installed installed, exactly what's needed"
118 if check_at_least
"$version_installed" "$version" ; then
119 echo "$binary $version_installed installed >= $version required"
127 basename=$package-$version
131 if [ "$ext" = "tar.xz" ] ; then
132 if [ -z "$xz_ok" ] ; then
133 if ${XZ-xz} --version > /dev
/null
2>&1 ; then
139 if [ "$xz_ok" = 0 ] ; then
145 if [ "$ext" = "tar.bz2" ] ; then
146 if [ -z "$bz2_ok" ] ; then
147 # bzip2 --version doesn't exit with code 0 in upstream version (though
148 # Debian at least patch this bug), so use --help to check it.
149 if bzip2 --help > /dev
/null
2>&1 ; then
155 if [ "$bz2_ok" = 0 ] ; then
161 tarball
=$basename.
$ext
163 *[24680][a-z
]) basename=`echo "$basename"|sed 's/[a-z]$//'` ;;
166 # Create the stamp file in INST so that rerunning bootstrap after
167 # "rm -rf INST" recovers nicely.
168 stamp
=..
/INST
/$package.stamp
170 # Download the tarball if required.
171 if [ ! -f "$tarball" ] ; then
172 if [ -z "$FETCH_URL_TOOL" ] ; then
173 if ${WGET-wget} --version > /dev
/null
2>&1 ; then
174 FETCH_URL_TOOL
="${WGET-wget} -O-"
175 elif ${CURL-curl} --version > /dev
/null
2>&1 ||
[ "$?" = 2 ] ; then
176 # curl --version exits with code 2.
177 # -L is needed to follow HTTP redirects.
178 FETCH_URL_TOOL
="${CURL-curl} -L"
179 elif ${LWP_REQUEST-lwp-request} -v > /dev
/null
2>&1 ||
[ "$?" = 9 -o "$?" = 255 ] ; then
180 # lwp-request -v exits with code 9 (5.810) or 255 (6.03)
181 FETCH_URL_TOOL
="${LWP_REQUEST-lwp-request} -mGET"
184 Neither wget nor curl nor lwp-request found - install one of them or if already
185 installed, set WGET, CURL or LWP_REQUEST to the full path. Alternatively,
188 then rerun this script.
195 if [ "$use_ftp" = yes ] ; then
196 url
="ftp://ftp.astron.com/pub/file/$tarball"
198 url
="http://fossies.org/unix/misc/$tarball"
202 if [ "$use_ftp" = yes ] ; then
203 url
="ftp://alpha.gnu.org/gnu/$package/$tarball"
205 url
="http://alpha.gnu.org/gnu/$package/$tarball"
208 if [ "$use_ftp" = yes ] ; then
209 url
="ftp://ftp.gnu.org/gnu/$package/$tarball"
211 url
="http://ftpmirror.gnu.org/$package/$tarball"
215 echo "Downloading <$url>"
216 $FETCH_URL_TOOL "$url" > download.tmp
&& mv download.tmp
"$tarball"
219 if [ -f "$stamp" ] ; then
220 find_stdout
=`find "$tarball" ../patches/"$package"/* -newer "$stamp" -print 2> /dev/null||true`
225 if [ -n "$find_stdout" ] ; then
226 # Verify the tarball's checksum before building it.
227 check_sha1sum
"$checksum" "$tarball"
229 # Remove tarballs of other versions.
230 for f
in "$package"-* ; do
231 [ "$f" = "$tarball" ] ||
rm -rf "$f"
236 ${XZ-xz} -dc "$tarball"|
tar xf
- ;;
238 bzip2 -dc "$tarball"|
tar xf
- ;;
240 gzip -dc "$tarball"|
tar xf
- ;;
245 if [ ! -f "../../patches/$package/series" ] ; then
247 No patch series file 'patches/$package/series' - if there are no patches,
248 this should just be an empty file.
252 echo "Applying patches from $package/series"
253 sed -n 's/[ ]*\(#.*\)\?$//;/./p' "../../patches/$package/series" | \
255 echo "Applying patch $package/$p"
256 patch -p1 < "../../patches/$package/$p"
259 if test -n "$AUTOCONF" ; then
260 .
/configure
--prefix "$instdir" AUTOCONF
="$AUTOCONF"
262 .
/configure
--prefix "$instdir"
274 handle_git_external
() {
276 if [ ! -f "$path/.nobootstrap" ] ; then
279 if [ ! -d "$path" ] ; then
280 git clone
--no-checkout -- "$url" "$path"
281 elif (cd "$path" && git reflog
"$rev" -- 2>/dev
/null
) ; then
282 : # Already have that revision locally
284 (cd "$path" && git fetch
)
286 (cd "$path" && git checkout
"$rev")
293 ts_from
=`perl -ne '/^timestamp=(\W?)([-\d]+)$1/ and do {$_=$2;y/-//d;print;exit}' "$from"`
294 ts_to
=`perl -ne '/^timestamp=(\W?)([-\d]+)$1/ and do {$_=$2;y/-//d;print;exit}' "$to"`
295 if [ "$ts_from" -gt "$ts_to" ] ; then
296 echo "Updating $to ($ts_to) with $from ($ts_from)"
297 # rm first in case the existing file is a symlink.
305 # cd to srcdir if we aren't already there.
306 srcdir
=`echo "$0"|sed 's!/*[^/]*$!!'`
314 # Commit hash to pass to handle_git_external for swig.
315 swig_git_commit_hash
=2c910e47ae788412b95e356c99cef5862808bf9a
317 # Commit hashes to use for common in omega and letor respectively:
318 omega_common_commit_hash
=bddcf54435286b0363efff94f22529093e85fc89
319 letor_common_commit_hash
=bddcf54435286b0363efff94f22529093e85fc89
321 if [ ! -d .git
] ; then
322 echo "$0: No '.git' directory found - this script should be run from a"
323 echo "git repo cloned from git://git.xapian.org/xapian or a mirror of it"
327 for emptydir
in xapian-applications
/omega
/m4 xapian-bindings
/m4 xapian-letor
/m4 ; do
328 if test -d "$emptydir" ; then
331 parent
=`echo "$emptydir"|sed 's,/[^/]*$,,'`
332 if test -d "$parent" ; then
338 if [ -f .git
/info
/exclude
] ; then
339 sed '/^\(swig\|xapian-applications\/omega\/common$\)/d' .git
/info
/exclude
> .git
/info
/exclude~
341 [ -d .git
/info
] || mkdir .git
/info
343 cat <<END >> .git/info/exclude~
345 xapian-applications/omega/common
348 if [ -f .git
/info
/exclude
] &&
349 cmp -s .git
/info
/exclude~ .git
/info
/exclude
; then
350 rm .git
/info
/exclude~
352 mv .git
/info
/exclude~ .git
/info
/exclude
355 # If this tree is checked out from the github mirror, use the same access
356 # method for other things checked out from github (e.g. swig) so we avoid
357 # firewall issues. If there's no default remote, the git config command
358 # will exit with status 1, so ignore that failure.
359 origin_url
=`git config remote.origin.url||:`
361 *[@
/]github.com
[:/]*)
362 github_base_url
=`echo "X$origin_url"|sed 's/^X//;s!\([@/]github.com[:/]\).*!\1!'` ;;
364 github_base_url
=https
://github.com
/ ;;
366 swig_origin_url
=${github_base_url}swig
/swig.git
368 if [ -z "$XAPIAN_COMMON_CLONE_URL" ] ; then
369 xapian_common_clone_url
=.
371 xapian_common_clone_url
=$XAPIAN_COMMON_CLONE_URL
374 # Set to 'yes' to use ftp URLs where available.
376 # By default we prefer http downloads as they are more likely to work through
380 # Set to 'always' to always use a locally installed copy of the autotools
381 # or 'never' to never download.
383 # By default we check for locally installed versions and use them if they are
384 # new enough versions. But e.g. for building releases we want to use a known
386 download_tools
=ifneeded
388 while [ "$#" -gt 0 ] ; do
391 download_tools
=`echo "x$1"|sed 's/x--download-tools=//'`
415 echo "warning: Ignoring old option '$1' - new default is to use installed versions of tools if new enough. Use '--download-tools=never' to prevent ever downloading"
426 echo "Unknown option '$1'" 1>&2
436 case $download_tools in
439 echo "warning: If stuff breaks with '--download-tools=never', you get to keep the pieces"
442 echo "Invalid --download-tools value '$download_tools'"
447 [ -d INST
] || mkdir INST
450 [ -d BUILD
] || mkdir BUILD
453 # The last field is the SHA1 checksum of the tarball.
454 if lazy_build autoconf autoconf
2.69 \
455 tar.xz e891c3193029775e83e0534ac0ee0c4c711f6d23 \
456 tar.gz
562471cbcb0dd0fa42a76665acf0dbb68479b78a \
458 AUTOCONF
=$instdir/bin
/autoconf
460 AUTORECONF
=$instdir/bin
/autoreconf
462 AUTOHEADER
=$instdir/bin
/autoheader
464 AUTOM4TE
=$instdir/bin
/autom4te
467 if lazy_build automake automake
1.15 \
468 tar.xz c279b35ca6c410809dac8ade143b805fb48b7655 \
469 tar.gz b5a840c7ec4321e78fdc9472e476263fa6614ca1 \
471 ACLOCAL
=$instdir/bin
/aclocal
473 AUTOMAKE
=$instdir/bin
/automake
476 if lazy_build libtool libtool
2.4.6 \
477 tar.xz
3e7504b832eb2dd23170c91b6af72e15b56eb94e \
478 tar.gz
25b6931265230a06f0fc2146df64c04e5ae6ec33 \
480 LIBTOOLIZE
=$instdir/bin
/libtoolize
483 if [ "$1" = "--deps=libmagic" ] ; then
485 lazy_build
file '' 5.25 \
486 tar.gz fea78106dd0b7a09a61714cdbe545135563e84bd
491 case `${LIBTOOLIZE-libtoolize} --version` in
493 echo "${LIBTOOLIZE-libtoolize} not found"
495 "libtoolize (GNU libtool) 1.4.*")
496 echo "${LIBTOOLIZE-libtoolize} is from libtool 1.4 which is too old - libtool 2.2 is required."
497 echo "If you have both installed, set LIBTOOLIZE to point to the correct version."
499 "libtoolize (GNU libtool) 1.5.*")
500 echo "${LIBTOOLIZE-libtoolize} is from libtool 1.5 which is too old - libtool 2.2 is required."
501 echo "If you have both installed, set LIBTOOLIZE to point to the correct version."
505 ACLOCAL
="${ACLOCAL-aclocal} -I `pwd`/xapian-core/m4-macros"
510 for module
in ${@:-xapian-core xapian-applications/omega swig xapian-bindings} ; do
512 if [ "$d" = swig
] ; then
513 if [ -f "xapian-bindings/.nobootstrap" ] ; then
514 # No point bootstrapping SWIG if we aren't going to use it.
515 echo "Skipping '$d' due to presence of 'xapian-bindings/.nobootstrap'."
518 handle_git_external swig
"$swig_git_commit_hash" "$swig_origin_url"
520 if [ -f "$d/configure.ac" -o -f "$d/configure.in" ] ; then
523 # Skip any directories we can't bootstrap.
526 if [ -f "$d/.nobootstrap" ] ; then
527 # Report why to save head scratching when someone forgets they created
528 # a .nobootstrap file.
529 echo "Skipping '$module' due to presence of '$d/.nobootstrap'."
533 xapian-applications
/omega|xapian-letor
)
534 # If someone's created a directory for common, leave it be.
535 if [ -h "$d/common" ] ||
[ ! -d "$d/common" ] ; then
536 # Pick omega_common_commit_hash or letor_common_commit_hash:
537 var
=`echo "$d"|sed 's!.*[-/]!!g'`_common_commit_hash
538 hash=`eval echo \\\$"$var"`
539 handle_git_external
"$d/.common.git" "$hash" "$xapian_common_clone_url"
540 ln -sf .common.git
/xapian-core
/common
"$d/common"
545 echo "Bootstrapping \`$module'"
546 [ -f "$d/preautoreconf" ] && "$d/preautoreconf"
548 # If we have a custom INSTALL file, preserve it since autoreconf insists on
549 # replacing INSTALL with "generic installation instructions" when --force
550 # is used. Be careful to replace it if autoreconf fails.
551 if [ -f "$d/INSTALL" ] ; then
552 if grep 'generic installation instructions' "$d/INSTALL" >/dev
/null
2>&1 ; then
555 mv -f "$d/INSTALL" "$d/INSTALL.preserved-by-bootstrap"
560 if [ swig
= "$module" ] ; then
561 # SWIG provides its own bootstrapping script.
564 .
/autogen.sh || autoreconf_rc
=$?
566 # Use the uninstalled wrapper for the in-tree copy of SWIG.
569 # Use --install as debian's autoconf wrapper uses 2.5X if it sees it
570 # (but it doesn't check for -i).
572 # Use --force so that we update files if autoconf, automake, or libtool
574 ${AUTORECONF-autoreconf} --install --force "$d" || autoreconf_rc
=$?
576 if [ -f "$d/INSTALL.preserved-by-bootstrap" ] ; then
577 mv -f "$d/INSTALL.preserved-by-bootstrap" "$d/INSTALL"
579 if [ -n "$autoreconf_rc" ] ; then
582 for f
in config.guess config.sub
; do
583 if [ -f "$d/$f" ] ; then
584 update_config
"config/$f" "$d/$f"
587 modules
="$modules $module"
590 # Produce an absolute path to srcdir.
593 # Generate the top-level configure script.
595 cat <<TOP_OF_CONFIGURE > configure.tmp
597 # configure each submodule in a xapian source tree
598 # Generated by Xapian top-level bootstrap script.
600 trap 'echo "configure failed"' EXIT
608 cat <<'MIDDLE_OF_CONFIGURE' >> configure.tmp
609 # Produced escaped version of command suitable for pasting back into sh
613 *[^-A-Za-z0-9_+=:@/.,]*)
614 esc_a=`echo "$a"|sed 's!\([^-A-Za-z0-9_+=:@/.,]\)!\\\\\\1!g'`
625 if [ yes = "$intree_swig" ] ; then
626 # We want the path to SWIG to point into srcdir, which isn't known until
627 # configure-time, so we need to expand $here in configure.
628 vars
=' SWIG=$here/swig/preinst-swig'
629 elif [ -n "$SWIG" ] ; then
630 # User specified SWIG in environment, e.g. with:
631 # SWIG=/opt/swig/bin/swig ./bootstrap
632 vars
=" SWIG='"`echo "$val"|sed 's/\(['"\\'"']\)/\\\1/g'`"'"
634 for tool
in $autotools ; do
636 if [ -n "$val" ] ; then
637 echo ': ${'"$tool='$val'"'}' >> configure.tmp
638 echo "export $tool" >> configure.tmp
639 vars
="$vars $tool='"`echo "$val"|sed 's/\(['"\\'"']\)/\\\1/g'`"'"
642 if [ -n "$vars" ] ; then
643 # $vars will always have a leading space.
644 echo "set$vars "'"$@"' >> configure.tmp
647 cat <<'END_OF_CONFIGURE' >> configure.tmp
650 XAPIAN_CONFIG=$here/xapian-core/xapian-config
651 for d in $modules ; do
652 if [ "$here" = "$srcdir" ] ; then
653 configure=./configure
654 configure_from_here=$d/configure
656 configure=$srcdir/$d/configure
657 configure_from_here=$configure
659 if [ -f "$configure_from_here" ] ; then
660 if [ -d "$d" ] ; then : ; else
662 xapian-applications/*) [ -d xapian-applications ] || mkdir xapian-applications ;;
666 echo "Configuring \`$d'"
667 # Use a shared config.cache for speed and to save a bit of diskspace, but
668 # don't share it with SWIG just in case it manages to probe and cache
669 # different answers (e.g. because it uses a C compiler).
673 *--host=*|*--host" "*)
674 # We're cross-building, but SWIG needs to be built natively.
678 if [ -n "$skip" ] ; then
691 # Drop CC=xxx or CXX=xxx
693 CC_FOR_BUILD=*|CXX_FOR_BUILD=*)
694 # CC_FOR_BUILD=xxx -> CC=xxx; CXX_FOR_BUILD=xxx -> CXX=xxx
695 arg=`echo "$arg"|sed 's/_FOR_BUILD//'`
698 # Drop SWIG=xxx - not useful and could cause problems.
701 swig_configure_args="$swig_configure_args "\'`echo "x$arg"|sed "s/^x//;s/'/'\\\\\\\\''/g"`\'
703 # Also handle compilers specified in environment variables. We can
704 # just reassign them unconditionally as CC and CXX are ignored if
706 cd "$d" && CC=$CC_FOR_BUILD CXX=$CXX_FOR_BUILD "$configure" `eval echo $swig_configure_args`
709 cd "$d" && "$configure" ${1+"$@"}
714 cd "$d" && "$configure" --enable-maintainer-mode --disable-option-checking --cache-file="$here/config.cache" ${1+"$@"}
716 xapian-applications/omega)
717 cd "$d" && "$configure" --enable-maintainer-mode --disable-option-checking XAPIAN_CONFIG="$XAPIAN_CONFIG" CPPFLAGS="-I$srcdir/INST/include" LDFLAGS="-L$srcdir/INST/lib" ${1+"$@"}
720 cd "$d" && "$configure" --enable-maintainer-mode --disable-option-checking --cache-file="$here/config.cache" XAPIAN_CONFIG="$XAPIAN_CONFIG" ${1+"$@"}
725 revdirs="$d $revdirs"
730 *" --help "*|*" --version "*)
731 # Don't generate Makefile if --help or --version specified.
738 cat <<EOF > Makefile.tmp
739 # Makefile generated by:
740 CONFIGURE_COMMAND := $cmd
742 if [ "$srcdir" != . ] ; then
743 cat <<EOF >> Makefile.tmp
748 targets='all install uninstall install-strip clean distclean mostlyclean maintainer-clean dist check distcheck'
749 for target in $targets ; do
754 # When uninstalling or cleaning, process directories in reverse order, so
755 # that we process a directory after any directories which might use it.
762 swig,install*|swig,uninstall)
763 # Nothing to do with swig when installing/uninstalling.
765 swig,dist|swig,check|swig,distcheck|swig,all)
766 # Need to ensure swig is built before "make dist", "make check", etc.
767 echo " cd $d && \$(MAKE)" ;;
769 echo " cd $d && \$(MAKE) clean" ;;
770 xapian-bindings,distcheck)
771 # FIXME: distcheck doesn't currently work for xapian-bindings because
772 # xapian-core isn't installed.
773 echo " cd $d && \$(MAKE) check && \$(MAKE) dist" ;;
775 echo " cd $d && \$(MAKE) $target" ;;
779 distclean|maintainer-clean) echo " rm -f Makefile config.cache" ;;
782 cat <<EOF >> Makefile.tmp
785 \$(CONFIGURE_COMMAND)
787 Makefile: $srcdir/configure
788 \$(CONFIGURE_COMMAND)
790 $srcdir/configure: \\
795 # We want to rerun bootstrap if a series file changes (patch added or removed)
796 # or an existing patch changes. Since we always have an series file (even if
797 # it is empty), this also handles us adding the first patch for something.
799 for d
in patches
/* ; do
801 echo "$series:" >> configure.tmp2
805 sed -n 's/[ ]*\(#.*\)\?$//;/./p' "$series" |\
811 # Because there's a pipeline, this is a subshell, so use a temporary file
812 # rather than a variable to compile a list of patches to use below.
813 echo "$patch:" >> configure.tmp2
815 done >> configure.tmp
817 cat <<'END_OF_CONFIGURE' >> configure.tmp
821 .PHONY: $targets recheck
823 # Dummy dependencies to allow removing patches we no longer need.
826 cat configure.tmp2
>> configure.tmp
828 cat <<'END_OF_CONFIGURE' >> configure.tmp
830 mv -f Makefile.tmp Makefile
832 echo "Configured successfully - now run \"${MAKE-make}\""
837 chmod +x configure.tmp
838 mv -f configure.tmp configure
840 # git defaults to showing 7 character abbreviated hashes if that's enough to be
841 # unique for a particular commit. But you can't paste these into trac as it
842 # needs at least 8 hex digits to recognise a hex string as a commit hash. You
843 # need 9 characters to be unique across all of Xapian at the time of writing,
844 # and 12 for the Linux kernel currently (a much larger number of objects than
845 # Xapian). 12 is a manageable length and decently future-proof, so let's use
847 core_abbrev_recommended
=12
848 core_abbrev
=`git config --get core.abbrev||:`
849 if [ -z "$core_abbrev" ] ; then
850 echo "*** Setting core.abbrev=$core_abbrev_recommended in repo config"
851 git config
--local core.abbrev
"$core_abbrev_recommended"
852 elif [ "$core_abbrev" -lt "$core_abbrev_recommended" ] ; then
853 if [ -z "`git config --local core.abbrev`" ] ; then
854 # Set globally to < $core_abbrev_recommended, override in this repo.
855 echo "*** Setting core.abbrev=$core_abbrev_recommended in repo config to override global core.abbrev=$core_abbrev"
856 git config
--local core.abbrev
"$core_abbrev_recommended"
859 echo "warning: core.abbrev=$core_abbrev set on this repo, at least $core_abbrev_recommended is recommended"
864 echo "Bootstrapped successfully - now run \"$srcdir/configure\" and \"${MAKE-make}\""