From 62ae5e71ceaee2e5ae58c87f870cdc5ccfe67e33 Mon Sep 17 00:00:00 2001 From: alexbiehl Date: Tue, 11 Apr 2017 19:46:29 +0200 Subject: Move dist scripts to scripts/ --- build-windows-dist.sh | 18 ------------------ make-sdist.sh | 36 ------------------------------------ scripts/build-windows-dist.sh | 18 ++++++++++++++++++ scripts/make-sdist.sh | 36 ++++++++++++++++++++++++++++++++++++ 4 files changed, 54 insertions(+), 54 deletions(-) delete mode 100644 build-windows-dist.sh delete mode 100644 make-sdist.sh create mode 100644 scripts/build-windows-dist.sh create mode 100644 scripts/make-sdist.sh diff --git a/build-windows-dist.sh b/build-windows-dist.sh deleted file mode 100644 index 2ae7dd2a..00000000 --- a/build-windows-dist.sh +++ /dev/null @@ -1,18 +0,0 @@ -# mini script for building the relocatable Windows binary distribution. -# -# sh build-windows-dist.sh -# -# NB. the Cabal that shipped with GHC 6.6 isn't enough for this, because it -# is missing this patch: -# -# Fri Oct 13 11:09:41 BST 2006 Simon Marlow -# * Fix getDataDir etc. when bindir=$prefix -# -# So you need to use a more recent Cabal. GHC 6.6 is fine for building the -# package, though. - -ghc --make Setup -./Setup configure --prefix=`pwd`/install --bindir='$prefix' --libdir='$prefix' --datadir='$prefix' -./Setup build -./Setup install -echo Now zip up `pwd`/install as "haddock--Win32.zip" diff --git a/make-sdist.sh b/make-sdist.sh deleted file mode 100644 index 914bf909..00000000 --- a/make-sdist.sh +++ /dev/null @@ -1,36 +0,0 @@ -# Put the Happy-generated .hs files in the right place in the source dist. -set -e -rm -f dist/haddock-*.tar.gz -rm -rf dist/haddock-*/ -./Setup sdist -cd dist -tar xvzf haddock-*.tar.gz -cd haddock-*/ -mkdir dist -mkdir dist/build -mv haddock dist/build -cd .. -tar cvzf haddock-*.tar.gz haddock-*/ - -# Steps for doing a release: -# * Update version number in .cabal, doc/haddock.xml -# * Update CHANGES -# * Source: -# - do the above -# - upload the dist to haskell.org:haddock/dist/${version} -# - scp CHANGES haskell.org:haddock/CHANGES.txt -# * Binaries: -# - build the Windows binary zip (see build-windows-dist.sh) -# - scp haddock--Win32.zip haskell.org:haddock/dist -# * Documentation: -# - cd doc -# - make html -# - mv haddock haddock-html -# - tar cvzf haddock-doc-html-${version}.tar.gz haddock-html -# - scp haddock-doc-html-${version}.tar.gz www.haskell.org:../haskell/haddock/doc -# - ssh haskell.org -# - cd haddock/doc -# - tar xvzf haddock-doc-html-${version}.tar.gz -# - rm -rf html-OLD -# - mv html html-OLD && mv haddock-html html -# * Update the web page (~/darcs/www/haddock/index.html), and push it diff --git a/scripts/build-windows-dist.sh b/scripts/build-windows-dist.sh new file mode 100644 index 00000000..2ae7dd2a --- /dev/null +++ b/scripts/build-windows-dist.sh @@ -0,0 +1,18 @@ +# mini script for building the relocatable Windows binary distribution. +# +# sh build-windows-dist.sh +# +# NB. the Cabal that shipped with GHC 6.6 isn't enough for this, because it +# is missing this patch: +# +# Fri Oct 13 11:09:41 BST 2006 Simon Marlow +# * Fix getDataDir etc. when bindir=$prefix +# +# So you need to use a more recent Cabal. GHC 6.6 is fine for building the +# package, though. + +ghc --make Setup +./Setup configure --prefix=`pwd`/install --bindir='$prefix' --libdir='$prefix' --datadir='$prefix' +./Setup build +./Setup install +echo Now zip up `pwd`/install as "haddock--Win32.zip" diff --git a/scripts/make-sdist.sh b/scripts/make-sdist.sh new file mode 100644 index 00000000..914bf909 --- /dev/null +++ b/scripts/make-sdist.sh @@ -0,0 +1,36 @@ +# Put the Happy-generated .hs files in the right place in the source dist. +set -e +rm -f dist/haddock-*.tar.gz +rm -rf dist/haddock-*/ +./Setup sdist +cd dist +tar xvzf haddock-*.tar.gz +cd haddock-*/ +mkdir dist +mkdir dist/build +mv haddock dist/build +cd .. +tar cvzf haddock-*.tar.gz haddock-*/ + +# Steps for doing a release: +# * Update version number in .cabal, doc/haddock.xml +# * Update CHANGES +# * Source: +# - do the above +# - upload the dist to haskell.org:haddock/dist/${version} +# - scp CHANGES haskell.org:haddock/CHANGES.txt +# * Binaries: +# - build the Windows binary zip (see build-windows-dist.sh) +# - scp haddock--Win32.zip haskell.org:haddock/dist +# * Documentation: +# - cd doc +# - make html +# - mv haddock haddock-html +# - tar cvzf haddock-doc-html-${version}.tar.gz haddock-html +# - scp haddock-doc-html-${version}.tar.gz www.haskell.org:../haskell/haddock/doc +# - ssh haskell.org +# - cd haddock/doc +# - tar xvzf haddock-doc-html-${version}.tar.gz +# - rm -rf html-OLD +# - mv html html-OLD && mv haddock-html html +# * Update the web page (~/darcs/www/haddock/index.html), and push it -- cgit v1.2.3