aboutsummaryrefslogtreecommitdiff
path: root/scripts/make-sdist.sh
diff options
context:
space:
mode:
authorAlec Theriault <alec.theriault@gmail.com>2020-03-20 20:17:01 -0400
committerAlec Theriault <alec.theriault@gmail.com>2020-03-20 20:17:01 -0400
commit053c9add568dad4264f4629bff0de9b10d9316e1 (patch)
tree0e6f4de693a1748fb59df1ef32e5596e6008af0b /scripts/make-sdist.sh
parent70f4b3a03a47b38ee301f0da9c72d5a7ff0ed9b0 (diff)
parentdae8d9de6aaf3913a3776f1af235fb72404e9970 (diff)
Merge branch 'ghc-8.8' into ghc-8.10
Diffstat (limited to 'scripts/make-sdist.sh')
-rw-r--r--scripts/make-sdist.sh36
1 files changed, 0 insertions, 36 deletions
diff --git a/scripts/make-sdist.sh b/scripts/make-sdist.sh
deleted file mode 100644
index 914bf909..00000000
--- a/scripts/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