[Git][ghc/ghc][ghc-9.10] 2 commits: rel_env/recompress_all: Decompress xz before recompressing

Ben Gamari (@bgamari) gitlab at gitlab.haskell.org
Thu Mar 21 15:49:47 UTC 2024



Ben Gamari pushed to branch ghc-9.10 at Glasgow Haskell Compiler / GHC


Commits:
548da279 by Ben Gamari at 2024-03-14T09:13:15-04:00
rel_env/recompress_all: Decompress xz before recompressing

Previously we would rather compress the xz *again*, before in addition
compressing it with the desired scheme.

Fixes #24545.

- - - - -
cf814fe9 by Teo Camarasu at 2024-03-21T11:44:15-04:00
Add preamble to 9.10 release notes

Resolves #24567

- - - - -


2 changed files:

- .gitlab/rel_eng/recompress-all
- docs/users_guide/9.10.1-notes.rst


Changes:

=====================================
.gitlab/rel_eng/recompress-all
=====================================
@@ -9,15 +9,15 @@ usage :
 
 %.gz : %.xz
 	echo "[xz->gz] $< to $@..."
-	xz -c $< | gzip -c > $@
+	xz -cd $< | gzip -c > $@
 
 %.bz2 : %.xz
 	echo "[xz->bz2] $< to $@..."
-	xz -c $< | bzip2 -c > $@
+	xz -cd $< | bzip2 -c > $@
 
 %.lz : %.xz
 	echo "[xz->lz] $< to $@..."
-	xz -c $< | lzip -c > $@
+	xz -cd $< | lzip -c > $@
 
 %.zip : %.tar.xz
 	echo "[tarxz->zip] $< to $@..."


=====================================
docs/users_guide/9.10.1-notes.rst
=====================================
@@ -2,6 +2,10 @@
 
 Version 9.10.1
 ==============
+The significant changes to the various parts of the compiler are listed in the
+following sections. See the `migration guide
+<https://gitlab.haskell.org/ghc/ghc/-/wikis/migration/9.10>`_ on the GHC Wiki
+for specific guidance on migrating programs to this release.
 
 Language
 ~~~~~~~~



View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/b55e0ef930f93c13e0f23ed7e129247fb06af9d2...cf814fe982f42483c672802ce905350d99a85a35

-- 
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/b55e0ef930f93c13e0f23ed7e129247fb06af9d2...cf814fe982f42483c672802ce905350d99a85a35
You're receiving this email because of your account on gitlab.haskell.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20240321/df2f39a7/attachment-0001.html>


More information about the ghc-commits mailing list