emacs fixes
[buildscripts] / emacs
diff --git a/emacs b/emacs
index 350f9bac55e928149bfb6b183d0255f9db9b016b..5300c3cbf32c1e0bc143a43685c68f3777585577 100755 (executable)
--- a/emacs
+++ b/emacs
@@ -1,4 +1,4 @@
-#!/bin/bash -l
+#!/bin/bash
 # Copyright (C) 2016 Ian Kelling
 
 # Licensed under the Apache License, Version 2.0 (the "License");
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-set -eE -o pipefail
-trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?"' ERR
+if [[ -s ~/.bashrc ]];then . ~/.bashrc;fi
 
 #set -x
 # arg = git commit to check out
-# -r = don't recompile from scratch
-# -u = update sources
 
-# stop if any the command fails
 update=false
-recompile=true
+bootstrap=false
+recompile=false
+show_pkgs=false
 
 while [[ $1 == -* ]]; do
-    case $1 in
-        --no-r) recompile=false; shift ;;
-        -u) update=true; shift ;;
-        --) break ;;
-    esac
+  case $1 in
+    -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"
 
-# gawk and attr were no longer automatically installed in stretch
-logq pi texlive hunspell git gawk attr
-case $(distro-name) in
-    fedora )
-        # before i learned the builddep command, i identified these
-        # dependencies. Not sure if the builddep took care of them all
-        # gtk3-devel libXpm-devel libjpeg-turbo-devel libtiff-devel giflib-devel ncurses-devel gnutls-devel libxml2-devel libotf-devel GConf2-devel gpm-devel librsvg2-devel ImageMagick-devel m17n-lib-devel libselinux-devel
-
-        logq s yum-builddep -y emacs
-        logq pi texlive-dvipng
-        ;;&
-    debian|ubuntu)
-               # todo: unknown for other distros, this will fail
-        logq p -y build-dep maildir-utils
-# due to autogen error message
-p install autoconf-archive
-
-        # oddly, on ubuntu 14.04 this installs postfix, but I dun care
-        # ubuntu 14.04 gave this error message
-        # Unable to satisfy the build-depends: Build-Depends: libpng-dev
-        # this is satisfied by dvipng. the build-dep is just wrong
-        # minor bug I'm not going to bother reporting
-        logq p -y build-dep emacs
-        # fyi libmagick is broken right now because it uses a fork which is waiting for emacs to support it
-        # not sure how many of these are satisfied by the prev command,
-        # but from the log, it looks like none of them
-        logq pi libacl1-dev libselinux-dev libm17n-dev libgtk-3-dev \
-             librsvg2-dev libgpm-dev libgconf2-dev libotf-dev libxml2-dev \
-             automake1.11 libgnutls28-dev libncurses-dev libxpm-dev libjpeg-dev \
-             libgif-dev libtiff-dev texinfo dvipng
-        ;;&
-    debian)
-        # included in dependencies on other distros, todo, check on ubuntu
-        logq pi suckless-tools
-        ;;
-esac
+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 latest_emacs=$x
+    latest_emacs=emacs$x
+    break
+  fi
+done
 
+pkgs=(gawk attr autoconf-archive git install-info)
+##### warning, apt-rdepends seems to look at the newest version of the package,
+##### not the one that build-dep would install.
+if $show_pkgs; then
+  echo ${pkgs[*]}
+  for x in $latest_emacs maildir-utils; do
+    # todo, this gives fake provided packages like mailx, and then
+    # fai ignores them.
+    # https://askubuntu.com/questions/21379/how-do-i-find-the-build-dependencies-of-a-package
+    if ! type -p apt-rdepends &>/dev/null; then
+      sudo apt-get -y install --purge --auto-remove apt-rdepends
+    fi
+    apt-rdepends -p --build-depends --follow=DEPENDS $x/$(debian-codename)|sed -rn 's/^\s*Build-Depends: (\S+).*/\1/p'
+  done
+  exit 0
+fi
 
 
 #building emacs, INSTALL.BZR
 
+
 #git repo
-dir=/a/opt/emacs-`distro-name``debian-archive`
+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 -r /a/opt/emacs $dir
-    recompile=true
+if $bootstrap; then
+  m rsync --delete -ra /a/opt/emacs/ $dir
+  recompile=true
 fi
-e cd $dir
+
+# 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; then
+  case $(distro-name) in
+    fedora )
+      logq s yum-builddep -y emacs
+      logq pi texlive-dvipng
+      ;;&
+    debian|ubuntu|trisquel)
+      # todo: unknown for other distros, this will fail
+      logq p -y build-dep maildir-utils/$(debian-codename)
+      # oddly, on ubuntu 14.04 this installs postfix, but I dun care
+      # ubuntu 14.04 gave this error message
+      # Unable to satisfy the build-depends: Build-Depends: libpng-dev
+      # this is satisfied by dvipng. the build-dep is just wrong
+      # minor bug I'm not going to bother reporting.
+      #
+      # note, useful command to see build dep packagages:
+      # apt-rdepends --build-depends --follow=DEPENDS emacs25
+      logq p -y build-dep $latest_emacs
+      ;;&
+  esac
+fi
+
+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
+    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.
     # Also, link-time-optimization based on ./INSTALL
 
@@ -114,37 +171,77 @@ if $recompile; 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
+  fi
 
-# temporarily for testing multiple versions
-
-logq sudo make install
-
-# make emacs always work for root
-s lnf /usr/local/bin/emacs /usr/bin
+  logq make -j `nproc`
+  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
 
 
 #git clone https://github.com/djcb/mu
+# 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
-./autogen.sh
-make
-s make install
-# note uninstall is implemented
 
-logq emacs --batch -l ~/.emacs.d/init.el -l ~/.emacs.d/compile-init-dir.el
+last_build=$PWD/iank-mu-build
+
+rev=$(cat $last_build 2>/dev/null) ||:
+head=$(git rev-parse HEAD)
+if $recompile || [[ $rev != "$head" ]]; then
+
+  if [[ $(debian-codename) == flidas ]]; then
+    # use the flidas branch, stuck behind because
+    # needs newer crypt libraries that are too troublesome.
+    cd /a/opt/muflidas
+  else
+    # newer version than build-dep installs for buster
+    sudo apt-get -y install --purge --auto-remove libgmime-3.0-dev
+  fi
+  git clean -xfffd
+  ./autogen.sh
+  make
+  sudo make install
+  echo $head >~/.local/mu-build-git-revision
+  # note uninstall is implemented
+fi
+
+if $recompile; then
+  # note, not totally sure its right to put this within recompile, but its taking up most of the time, so going for it.
+  logq emacs --batch -l ~/.emacs.d/compile-init-dir.el
+fi
 
 # as of 01-2017, built-in org mode has a bug that
 # org-edit-src-exit does not get bound, so using latest
-/a/bin/buildscripts/org-mode
+#/a/bin/buildscripts/org-mode
 
-if $update; then
-    logq pi bzr
-    cd ~/.emacs.d/src/mediawiki-el
-    bzr pull
-fi
+# disabled as i haven't used it in a while
+# if $update; then
+#   logq pi bzr
+#   cd ~/.emacs.d/src/mediawiki-el
+#   bzr pull
+# fi
 
 
 # not keeping up with the latest gnus development.
@@ -157,3 +254,5 @@ fi
 # fi
 # logq ./configure
 # logq make
+
+my-update-info-dir