aboutsummaryrefslogtreecommitdiff
path: root/make-sdist.sh
diff options
context:
space:
mode:
authoralexbiehl <alex.biehl@gmail.com>2017-04-11 19:46:29 +0200
committeralexbiehl <alex.biehl@gmail.com>2017-04-11 19:46:29 +0200
commit62ae5e71ceaee2e5ae58c87f870cdc5ccfe67e33 (patch)
treeb52e635891ecb53db5a9b924e477b06a21a88219 /make-sdist.sh
parent8260f433c5e7b9baf47ae94f2208a2eedfad189d (diff)
Move dist scripts to scripts/
Diffstat (limited to 'make-sdist.sh')
-rw-r--r--make-sdist.sh36
1 files changed, 0 insertions, 36 deletions
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-<version>-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