Mercurial > dotfiles
annotate unixSoft/otherbin/svn-bootstrap.sh @ 336:ea73ef5dc38c
emacs: avoid weird package.el breakage with newish packages
I've been toting around this package.el from 2009 or so, and something
in the package format seems to have changed that broke me. Thanks to
some related diagnostics by Lucas, I've grabbed the last package.el
that worked with emacs 23 and stashed it here. This seems to work,
modulo some things (notably js2-mode and smex) now seem to require
emacs 24 if you install them using package.el, so this will end up
being brittle on my last couple of emacs23 machines.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Thu, 29 May 2014 14:30:42 -0400 |
parents | 2eb8cbc08070 |
children |
rev | line source |
---|---|
59
2eb8cbc08070
Add a script that builds serf and subversion assuming all other deps are installed so that I can wipe and rebuild a little easier.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
1 #!/bin/sh |
2eb8cbc08070
Add a script that builds serf and subversion assuming all other deps are installed so that I can wipe and rebuild a little easier.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
2 echo 'fetching and building serf trunk' |
2eb8cbc08070
Add a script that builds serf and subversion assuming all other deps are installed so that I can wipe and rebuild a little easier.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
3 svn co http://serf.googlecode.com/svn/trunk serf || exit 1 |
2eb8cbc08070
Add a script that builds serf and subversion assuming all other deps are installed so that I can wipe and rebuild a little easier.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
4 cd serf |
2eb8cbc08070
Add a script that builds serf and subversion assuming all other deps are installed so that I can wipe and rebuild a little easier.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
5 ./serfmake --prefix=/opt/durin install || exit 3 |
2eb8cbc08070
Add a script that builds serf and subversion assuming all other deps are installed so that I can wipe and rebuild a little easier.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
6 |
2eb8cbc08070
Add a script that builds serf and subversion assuming all other deps are installed so that I can wipe and rebuild a little easier.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
7 echo 'fetching and building svn trunk with swig-py' |
2eb8cbc08070
Add a script that builds serf and subversion assuming all other deps are installed so that I can wipe and rebuild a little easier.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
8 svn co http://svn.collab.net/repos/svn/trunk subversion || exit 4 |
2eb8cbc08070
Add a script that builds serf and subversion assuming all other deps are installed so that I can wipe and rebuild a little easier.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
9 cd subversion |
2eb8cbc08070
Add a script that builds serf and subversion assuming all other deps are installed so that I can wipe and rebuild a little easier.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
10 ./autogen.sh && ./configure --without-apxs --without-sasl \ |
2eb8cbc08070
Add a script that builds serf and subversion assuming all other deps are installed so that I can wipe and rebuild a little easier.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
11 --with-serf=/opt/durin --without-neon --prefix=/opt/durin || exit 5 |
2eb8cbc08070
Add a script that builds serf and subversion assuming all other deps are installed so that I can wipe and rebuild a little easier.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
12 make -j 4 && make install && make swig-py && make install-swig-py || exit 6 |