2 # Copyright (C) 2016 Ian Kelling
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
8 # http://www.apache.org/licenses/LICENSE-2.0
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
17 trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?"' ERR
20 # arg = git commit to check out
26 while [[ $1 == -* ]]; do
28 --no-r) recompile
=false
; shift ;;
29 -u) update
=true
; shift ;;
30 -p) show_pkgs
=true
; shift ;;
35 e
() { echo "$*"; "$@"; }
37 # Og = optmize, but keep gdb working
38 export CFLAGS
="-Og -g3"
40 pkgs
=(gawk attr autoconf-archive
)
43 for x
in emacs25 maildir-utils
; do
44 # todo, this gives fake provided packages like mailx, and then
46 # https://askubuntu.com/questions/21379/how-do-i-find-the-build-dependencies-of-a-package
47 apt-rdepends
--build-depends --follow=DEPENDS
$x|
sed -rn 's/^\s*Build-Depends: (\S+).*/\1/p'
53 # gawk and attr were no longer automatically installed in stretch,
54 # looking back, i assume i got some error.
55 # autoconf-archive due to come error
59 case $
(distro-name
) in
61 logq s yum-builddep
-y emacs
62 logq pi texlive-dvipng
64 debian|ubuntu|trisquel
)
65 # todo: unknown for other distros, this will fail
66 logq p
-y build-dep maildir-utils
67 # oddly, on ubuntu 14.04 this installs postfix, but I dun care
68 # ubuntu 14.04 gave this error message
69 # Unable to satisfy the build-depends: Build-Depends: libpng-dev
70 # this is satisfied by dvipng. the build-dep is just wrong
71 # minor bug I'm not going to bother reporting.
73 # note, useful command to see build dep packagages:
74 # apt-rdepends --build-depends --follow=DEPENDS emacs25
75 logq p
-y build-dep emacs25
81 #building emacs, INSTALL.BZR
84 dir
=/a
/opt
/emacs-
`distro-name`
85 dir
+=`debian-archive` ||
: # we may not be on debian
87 if [[ ! -e $dir ]]; then
88 e
cp -ar /a
/opt
/emacs
$dir
94 # todo, consider when this should be uncommented
95 #logq s make uninstall
96 find ~
/.emacs.d
/ -name '*.elc' -delete
104 e i
reset --hard origin
/master
108 # autogen is usually only for the first build, assume it works
109 logq .
/autogen.sh all
110 # I tried changing O2 to O3, don't know if it made it faster or slower so I went back to 02.
111 # Also, link-time-optimization based on ./INSTALL
113 # for debugging, use -Og, or -O0 to make debug really correspond to sources
114 # dunno why I have had -std=gnu99 in the past
115 #CFLAGS='-std=gnu99 -g3 -Og'
116 export CFLAGS
='-g3 -Og'
117 #CFLAGS='-std=gnu99 -g3 -O2' logq ./configure --enable-link-time-optimization
118 # on ubuntu 12.04, the above fails, says my c compiler won't work, so intead, just use defaults
120 logq
make -j `nproc` bootstrap
123 # temporarily for testing multiple versions
125 logq sudo
make install
127 # make emacs always work for root
128 s lnf
/usr
/local
/bin
/emacs
/usr
/bin
131 #git clone https://github.com/djcb/mu
132 # from its HACKING file
137 # note uninstall is implemented
140 # note, not totally sure its right to put this within recompile, but its taking up most of the time, so going for it.
141 logq emacs
--batch -l ~
/.emacs.d
/init.el
-l ~
/.emacs.d
/compile-init-dir.el
144 # as of 01-2017, built-in org mode has a bug that
145 # org-edit-src-exit does not get bound, so using latest
146 /a
/bin
/buildscripts
/org-mode
150 cd ~
/.emacs.d
/src
/mediawiki-el
155 # not keeping up with the latest gnus development.
156 # # instructions from the README
157 # # the byte-recompile-directory seems to compile gnus,
158 # # but gnus complains that it should be compiled when it starts
159 # cd ~/.emacs.d/src/gnus
160 # if [[ $1 == *u* ]]; then