emacs fixes
[buildscripts] / emacs
diff --git a/emacs b/emacs
index 6acef0bc269d6deac5b672767e6d29a5e92d7596..5300c3cbf32c1e0bc143a43685c68f3777585577 100755 (executable)
--- a/emacs
+++ b/emacs
@@ -19,27 +19,32 @@ if [[ -s ~/.bashrc ]];then . ~/.bashrc;fi
 # arg = git commit to check out
 
 update=false
-recompile=true
-export FORCE_RECOMPILE=true
+bootstrap=false
+recompile=false
 show_pkgs=false
 
 while [[ $1 == -* ]]; do
   case $1 in
-    --no-r) recompile=false; unset FORCE_RECOMPILE; shift ;;
-    -u) update=true; shift ;;
-    -p) show_pkgs=true; shift ;;
+    -b) bootstrap=true; recompile=true ;;
+    -r) recompile=true ;;
+    --no-r) recompile=false ;;
+    -u) update=true ;;
+    -p) show_pkgs=true ;;
     --) break ;;
+    *) echo "$0: error: bad arg: $1" >&2; exit 1 ;;
   esac
+  shift
 done
 
-e() { echo "$*"; "$@"; }
 
 # Og = optmize, but keep gdb working
 export CFLAGS="-Og -g3"
 
-for x in {35..24}; do
+export DEBIAN_FRONTEND=noninteractive
+pupdate
+for x in {35..25} ""; do
   if apt-cache showsrc emacs$x 2>/dev/null |grep . &>/dev/null; then
-    echo $x
+    echo latest_emacs=$x
     latest_emacs=emacs$x
     break
   fi
@@ -65,28 +70,44 @@ fi
 
 #building emacs, INSTALL.BZR
 
-# gawk and attr were no longer automatically installed in stretch,
-# looking back, i assume i got some error.
-# autoconf-archive due to come error
-pi ${pkgs[@]}
 
 #git repo
-dir=/a/opt/emacs-`distro-name`
-dir+=`debian-archive` ||: # we may not be on debian
+dir=/a/opt/emacs-$(distro-name)$(distro-num)
+last_build=$dir/iank-emacs-build
+
+# e/e because autofs failing to mount will make it so
+# you cant ls whatever directory it is in, so we
+# need an extra directory
+dirs=($dir $dir-nox/.iank/e/e)
+
+if [[ -e $dir ]]; then
+  m cd $dir
+  rev=$(cat $last_build 2>/dev/null) ||:
+  head=$(git rev-parse HEAD)
+  if ! $recompile && ! $bootstrap && [[ $rev == "$head" ]]; then
+    echo "already compiled, exiting"
+    exit 0
+  fi
+  if [[ $rev != "$head" ]]; then
+    bootstrap=true
+  fi
+else
+  m cd /a/opt/emacs
+  head=$(git rev-parse HEAD)
+  bootstrap=true
+fi
 
-if [[ ! -e $dir ]]; then
-  e cp -ar /a/opt/emacs $dir
+if $bootstrap; then
+  m rsync --delete -ra /a/opt/emacs/ $dir
   recompile=true
 fi
-e cd $dir
-
-rev=$(cat ~/.local/emacs-build-git-revision 2>/dev/null) ||:
-head=$(git rev-parse HEAD)
 
+# gawk and attr were no longer automatically installed in stretch,
+# looking back, i assume i got some error.
+# autoconf-archive due to come error
+pi ${pkgs[@]}
 
-
-if $recompile || [[ $rev != "$head" ]]; then
-
+if $recompile; then
   case $(distro-name) in
     fedora )
       logq s yum-builddep -y emacs
@@ -106,24 +127,39 @@ if $recompile || [[ $rev != "$head" ]]; then
       logq p -y build-dep $latest_emacs
       ;;&
   esac
+fi
 
-
-
-  if $recompile; then
+nox=false
+for d in ${dirs[@]}; do
+  if $nox; then
+    # todo: this doesnt account for
+    m mkdir -p ${d%/*}
+    m rsync --delete -ra $dir/ $d
+    mp=$HOME/.iank/e/e
+    if mountpoint $mp &>/dev/null; then
+      m sudo umount $mp
+    fi
+    m mkdir -p $mp
+    m sudo mount -o bind $d $mp
+    m sudo chown $USER:$USER $mp
+    m cd $mp
+  else
+    m cd $d
+  fi
+  if $recompile || [[ ! -e configure ]]; then
     # todo, consider when this should be uncommented
     #logq s make uninstall
-    find ~/.emacs.d/ -name '*.elc' -delete
+    find ~/.emacs.d/ -name '*.elc' -delete
 
     # git version
     if [[ $1 ]]; then
-      e i clean -xxxfd
+      m i clean -xxxfd
     elif $update; then
-      e i fetch
-      e i clean -xxxffd
-      e i reset --hard origin/master
-      e i clean -xxxffd
+      m i fetch
+      m i clean -xxxffd
+      m i reset --hard origin/master
+      m i clean -xxxffd
     fi
-
     # autogen is usually only for the first build, assume it works
     logq ./autogen.sh all
     # I tried changing O2 to O3, don't know if it made it faster or slower so I went back to 02.
@@ -135,28 +171,43 @@ if $recompile || [[ $rev != "$head" ]]; then
     export CFLAGS='-g3 -Og'
     #CFLAGS='-std=gnu99 -g3 -O2' logq ./configure --enable-link-time-optimization
     # on ubuntu 12.04, the above fails, says my c compiler won't work, so intead, just use defaults
+  fi
+  if $nox; then
+    # mix of flags from arch and debians build flags
+    # note, youd think we could just run make again, but the
+    # build system isnt smart enough, we have to recompile
+    # from scratch.
+    logq ./configure --without-x --without-sound --without-gsettings --without-gconf
+    ln -s ~/.emacs.d .
+  else
     logq ./configure
+  fi
+  if $recompile; then
     logq make -j `nproc` bootstrap
   fi
 
-
-  # temporarily for testing multiple versions
   logq make -j `nproc`
-  logq sudo make install
-
-  # make emacs always work for root
-  sudo /a/exe/lnf /usr/local/bin/emacs /usr/bin
+  if ! $nox; then
+    logq sudo make install
+    # make emacs always work for root
+    sudo /a/exe/lnf /usr/local/bin/emacs /usr/bin
+  fi
+  nox=true
+done
+echo $head >$last_build
 
-  echo $head >~/.local/emacs-build-git-revision
-fi
 
 #git clone https://github.com/djcb/mu
-# note: master failed, i moved back to the commit before a bug https://github.com/djcb/mu/issues/1400
+# note: master failed on t8, i moved back to the commit before a bug
+# https://github.com/djcb/mu/issues/1400
 # from its HACKING file
 
+
 cd /a/opt/mu
 
-rev=$(cat ~/.local/mu-build-git-revision 2>/dev/null) ||:
+last_build=$PWD/iank-mu-build
+
+rev=$(cat $last_build 2>/dev/null) ||:
 head=$(git rev-parse HEAD)
 if $recompile || [[ $rev != "$head" ]]; then