git-annex/standalone/android/install-haskell-packages

138 lines
3 KiB
Text
Raw Normal View History

#!/bin/bash
# Bootstraps from an empty cabal to all the necessary haskell packages
# being installed, with the necessary patches to work on Android.
#
2013-09-22 18:13:31 +00:00
# You should install ghc-android first.
#
# The cabal.config is used to pin the haskell packages to the last
# versions that have been gotten working. To update, delete the
# cabal.config, run this script with an empty cabal and fix up the broken
# patches, and then use cabal freeze to generate a new cabal.config.
set -e
2013-09-22 19:58:13 +00:00
if [ ! -d haskell-patches ]; then
cd standalone/android
fi
setupcabal () {
# Some packages fail to install in a non unicode locale.
LANG=en_US.UTF-8
export LANG
}
patched () {
pkg=$1
2014-02-07 21:57:04 +00:00
ver=$2
if [ -z "$ver" ]; then
2014-10-14 21:04:39 +00:00
ver="$(grep " $pkg " ../cabal.config | cut -d= -f 3 | sed 's/,$//')"
fi
2014-02-07 21:57:04 +00:00
if [ -z "$ver" ]; then
cabal unpack --pristine $pkg
2014-02-07 21:57:04 +00:00
else
cabal unpack --pristine $pkg-$ver
2014-02-07 21:57:04 +00:00
fi
cd $pkg*
git init
git config user.name dummy
git config user.email dummy@example.com
git add .
git commit -m "pre-patched state of $pkg"
ln -sf ../../cabal.config
for patch in ../../haskell-patches/${pkg}_* ../../../no-th/haskell-patches/${pkg}_*; do
if [ -e "$patch" ]; then
echo trying $patch
if ! patch -p1 < $patch; then
echo "failed to apply $patch"
echo "please resolve this, replace the patch with a new version, and exit the subshell to continue"
$SHELL
fi
fi
done
2014-10-15 18:37:21 +00:00
if [ -e config.sub ]; then
cp /usr/share/misc/config.sub .
fi
if [ -e config.guess ]; then
cp /usr/share/misc/config.guess .
fi
cabal install # --reinstall --force-reinstalls
rm -f cabal.config
rm -rf $pkg*
cd ..
}
installgitannexdeps () {
pushd ../..
ln -sf standalone/android/cabal.config
cabal install --only-dependencies "$@"
rm -f cabal.config
popd
2013-05-08 16:30:39 +00:00
}
install_pkgs () {
rm -rf tmp
mkdir tmp
cd tmp
2014-10-15 18:37:21 +00:00
cat <<EOF
EOF
patched network
2013-09-23 00:14:48 +00:00
patched unix-time
patched lifted-base
patched zlib
patched MissingH
2013-10-18 23:11:39 +00:00
patched distributive
patched comonad
patched iproute
patched primitive
patched socks
2014-10-15 18:37:21 +00:00
# patched entropy # needed for newer version, not current pinned version
patched vector
patched stm-chans
patched profunctors
patched skein
patched lens
2014-02-07 18:52:17 +00:00
patched certificate
patched x509-system
patched persistent-template
2014-02-07 22:38:46 +00:00
patched system-filepath
patched optparse-applicative
2013-09-22 18:13:31 +00:00
patched wai-app-static
patched shakespeare
patched shakespeare-css
2013-12-27 04:32:29 +00:00
patched shakespeare-js
2013-09-22 18:13:31 +00:00
patched yesod-routes
patched yesod-core
patched yesod-persistent
patched yesod-form
patched crypto-numbers
2015-05-22 18:39:50 +00:00
patched clock
patched yesod-auth
patched yesod
2013-12-30 02:13:19 +00:00
patched shakespeare-text
2013-12-27 04:32:29 +00:00
patched process-conduit
2014-02-08 17:03:44 +00:00
patched DAV
2013-12-27 04:32:29 +00:00
patched yesod-static
patched uuid
patched dns
2013-12-27 04:32:29 +00:00
patched gnutls
2014-03-12 16:25:32 +00:00
patched unbounded-delays
patched gnuidn
patched network-protocol-xmpp
cd ..
2013-09-23 14:25:21 +00:00
installgitannexdeps -fAndroid -f-Pairing
2013-05-09 17:08:24 +00:00
}
setupcabal
# Install packages for host ghc.
2014-10-15 18:37:21 +00:00
cabal update
installgitannexdeps
# Install packages for cross ghc, with patches as necessary.
PATH=$HOME/.ghc/$(cat abiversion)/bin:$HOME/.ghc/$(cat abiversion)/arm-linux-androideabi/bin:$PATH
cabal update
install_pkgs