[Git][ghc/ghc] Deleted branch wip/jeltsch/system-io-uncovering
by Wolfgang Jeltsch (@jeltsch) 09 Mar '26
by Wolfgang Jeltsch (@jeltsch) 09 Mar '26
09 Mar '26
Wolfgang Jeltsch deleted branch wip/jeltsch/system-io-uncovering at Glasgow Haskell Compiler / GHC
--
You're receiving this email because of your account on gitlab.haskell.org.
1
0
[Git][ghc/ghc][wip/sjakobi/T2057] 8 commits: compiler: add myCapabilityExpr to GHC.Cmm.Utils
by Simon Jakobi (@sjakobi2) 09 Mar '26
by Simon Jakobi (@sjakobi2) 09 Mar '26
09 Mar '26
Simon Jakobi pushed to branch wip/sjakobi/T2057 at Glasgow Haskell Compiler / GHC
Commits:
a46a1bb1 by Cheng Shao at 2026-03-09T04:50:30-04:00
compiler: add myCapabilityExpr to GHC.Cmm.Utils
This commit adds `myCapabilityExpr` to `GHC.Cmm.Utils` which is
computed from `BaseReg`. It's convenient for codegen logic where one
needs to pass the current Capability's pointer.
- - - - -
4afc65b1 by Cheng Shao at 2026-03-09T04:50:30-04:00
compiler: lower tryPutMVar# into a ccall directly
This patch addresses an old TODO of `stg_tryPutMVarzh` by removing it
completely and making the compiler lower `tryPutMVar#` into a ccall to
`performTryPutMVar` directly, without landing into an intermediate C
or Cmm function. `performTryPutMVar` is promoted to a public RTS
function with default visibility, and the compiler lowering logic
takes into account the C ABI of `performTryPutMVar` and converts from
C Bool to primop's `Int#` result properly.
- - - - -
9e3d6a58 by Simon Hengel at 2026-03-09T04:51:15-04:00
Don't use #line in haddocks
This confuses the parser. Haddock output is unaffected by this change.
(read: this still produces the same documentation)
- - - - -
f4e8fec2 by Wolfgang Jeltsch at 2026-03-09T04:52:01-04:00
Remove in-package dependencies on `GHC.Internal.System.IO`
This contribution eliminates all dependencies on
`GHC.Internal.System.IO` from within `ghc-internal`. It comprises the
following changes:
* Make `GHC.Internal.Fingerprint` independent of I/O support
* Tighten the dependencies of `GHC.Internal.Data.Version`
* Tighten the dependencies of `GHC.Internal.TH.Monad`
* Tighten the dependencies of `GHCi.Helpers`
* Move some code that needs `System.IO` to `template-haskell`
* Move the `GHC.ResponseFile` implementation into `base`
* Move the `System.Exit` implementation into `base`
* Move the `System.IO.OS` implementation into `base`
Metric Decrease:
size_hello_artifact
size_hello_artifact_gzip
size_hello_unicode
size_hello_unicode_gzip
- - - - -
91df4c82 by Sylvain Henry at 2026-03-09T04:53:20-04:00
T18832: fix Windows CI failure by dropping removeDirectoryRecursive
On Windows, open file handles prevent deletion. After killThread, the
closer thread may not have called hClose yet, causing removeDirectoryRecursive
to fail with "permission denied". The test harness cleans up the run
directory anyway, so the call is redundant.
- - - - -
d7fe9671 by Cheng Shao at 2026-03-09T04:54:04-04:00
compiler: fix redundant import in GHC.StgToJS.Object
This patch fixes a redundant import in GHC.StgToJS.Object that causes
a build failure when compiling head from 9.14 with validate flavours.
Fixes #26991.
- - - - -
0bfd29c3 by Cheng Shao at 2026-03-09T04:54:46-04:00
wasm: fix `Illegal foreign declaration` failure when ghci loads modules with JSFFI exports
This patch fixes a wasm ghci error when loading modules with JSFFI
exports; the `backendValidityOfCExport` check in `tcCheckFEType`
should only makes sense and should be performed when not checking the
JavaScript calling convention; otherwise, when the calling convention
is JavaScript, the codegen logic should be trusted to backends that
actually make use of it. Fixes #26998.
- - - - -
cbf5bdc3 by Simon Jakobi at 2026-03-09T16:56:15+01:00
Add regression test for #2057
Test that GHC stops after an interface-file error instead of
continuing into the linker.
The test constructs a stale package dependency on purpose. `pkgB` is compiled
against one version of package `A`, then the same unit id is replaced by an
incompatible build of `A`. When `Main` imports `B`, GHC has to read `B.hi`,
finds an unfolding that still mentions the old `A`, and should fail while
loading interfaces.
Closes #2057.
Assisted-by: Codex
- - - - -
41 changed files:
- compiler/GHC/Cmm/Utils.hs
- compiler/GHC/Iface/Ext/Utils.hs
- compiler/GHC/StgToCmm/Prim.hs
- compiler/GHC/StgToJS/Object.hs
- compiler/GHC/Tc/Gen/Foreign.hs
- libraries/base/src/GHC/Fingerprint.hs
- libraries/base/src/GHC/ResponseFile.hs
- libraries/base/src/System/Exit.hs
- libraries/base/src/System/IO/OS.hs
- libraries/base/tests/IO/T18832.hs
- libraries/ghc-heap/GHC/Exts/Heap/Closures.hs
- libraries/ghc-internal/ghc-internal.cabal.in
- libraries/ghc-internal/src/GHC/Internal/Data/Version.hs
- libraries/ghc-internal/src/GHC/Internal/Fingerprint.hs
- libraries/ghc-internal/src/GHC/Internal/GHCi/Helpers.hs
- − libraries/ghc-internal/src/GHC/Internal/ResponseFile.hs
- − libraries/ghc-internal/src/GHC/Internal/System/Exit.hs
- − libraries/ghc-internal/src/GHC/Internal/System/IO/OS.hs
- libraries/ghc-internal/src/GHC/Internal/TH/Monad.hs
- libraries/template-haskell/Language/Haskell/TH/Syntax.hs
- rts/PrimOps.cmm
- rts/RtsSymbols.c
- rts/Threads.c
- rts/Threads.h
- rts/include/rts/Threads.h
- rts/include/stg/MiscClosures.h
- + testsuite/tests/driver/T2057/.gitignore
- + testsuite/tests/driver/T2057/Makefile
- + testsuite/tests/driver/T2057/README.md
- + testsuite/tests/driver/T2057/T2057.stderr
- + testsuite/tests/driver/T2057/all.T
- + testsuite/tests/driver/T2057/app/Main.hs
- + testsuite/tests/driver/T2057/pkgA1/A.hs
- + testsuite/tests/driver/T2057/pkgA1/pkg.conf.in
- + testsuite/tests/driver/T2057/pkgA2/A.hs
- + testsuite/tests/driver/T2057/pkgA2/pkg.conf.in
- + testsuite/tests/driver/T2057/pkgB/B.hs
- + testsuite/tests/driver/T2057/pkgB/pkg.conf.in
- testsuite/tests/ffi/should_compile/all.T
- + testsuite/tests/ghci-wasm/T26998.hs
- testsuite/tests/ghci-wasm/all.T
The diff was not included because it is too large.
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/d968566af553c83a5d113565c2453e…
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/d968566af553c83a5d113565c2453e…
You're receiving this email because of your account on gitlab.haskell.org.
1
0
[Git][ghc/ghc][wip/romes/hadrian-cross-stage2-rebase_SVEN_FINAL] Build early stages with minimal settings
by Sven Tennie (@supersven) 09 Mar '26
by Sven Tennie (@supersven) 09 Mar '26
09 Mar '26
Sven Tennie pushed to branch wip/romes/hadrian-cross-stage2-rebase_SVEN_FINAL at Glasgow Haskell Compiler / GHC
Commits:
e54c74df by Sven at 2026-03-09T15:24:50+00:00
Build early stages with minimal settings
- - - - -
4 changed files:
- hadrian/README.md
- hadrian/src/Hadrian/Oracles/TextFile.hs
- hadrian/src/Oracles/Setting.hs
- hadrian/src/Settings/Default.hs
Changes:
=====================================
hadrian/README.md
=====================================
@@ -329,15 +329,17 @@ workflow, for now.
Note: On windows you need to use the `reloc-binary-dist` target.
-#### Cross Compiling
+#### Staged `system.config.*` configuration
-If you are cross compiling then all the settings specified to ./configure are
-for the target system. For example, if you specify `--with-ffi-includes` then
-this is specifically for the target.
+There are three `system.config.*` configuration files with different roles:
-If your host system needs additional configuration in order to build a stage1 compiler,
-then at the moment you need to manually edit the "cfg/system.config.host.in" file to
-specify these options in the right place.
+- `system.config`: Contains general settings that are valid for all stages.
+- `system.config.host`: Contains system settings for the initial stages.
+- `system.config.target`: Contains system settings for the final stages.
+
+The flags of the `./configure` script refer to `system.config.target`.
+`system.config.host` contains only a minimal vanilla configuration. This may
+change if it turns out that specific options are required for the early stages.
#### Relocatable Binary Distribution
=====================================
hadrian/src/Hadrian/Oracles/TextFile.hs
=====================================
@@ -1,6 +1,6 @@
{-# OPTIONS_GHC -Wno-orphans #-} -- Orphan instances for Toolchain.Target
{-# LANGUAGE TypeFamilies #-}
-{-# LANGUAGE StandaloneDeriving #-}
+
-----------------------------------------------------------------------------
-- |
-- Module : Hadrian.Oracles.TextFile
@@ -14,7 +14,7 @@
-----------------------------------------------------------------------------
module Hadrian.Oracles.TextFile (
lookupValue, lookupValueOrEmpty, lookupValueOrError, lookupSystemConfig,
- lookupHostBuildConfig, lookupTargetBuildConfig, lookupStageBuildConfig,
+ lookupStageBuildConfig,
lookupValues,
lookupValuesOrEmpty, lookupValuesOrError, lookupDependencies, textFileOracle,
getBuildTarget, getHostTarget, getTargetTarget,
@@ -54,29 +54,31 @@ lookupSystemConfig = lookupValueOrError (Just configError) configFile
where
configError = "Perhaps you need to rerun ./configure"
-lookupHostBuildConfig :: String -> Action String
-lookupHostBuildConfig key = do
- cross <- (== "YES") <$> lookupSystemConfig "cross-compiling"
- -- If we are not cross compiling, then build the host compiler like the target.
- let cfgFile = if cross then buildConfigFileHost else buildConfigFileTarget
- lookupValueOrError (Just configError) cfgFile key
+lookupStageBuildConfig :: String -> Stage -> Action String
+lookupStageBuildConfig key stage = case stage of
+ Stage0 {} -> lookupHostBuildConfig key
+ Stage1 -> lookupHostBuildConfig' key
+ Stage2 -> lookupTargetBuildConfig key
+ Stage3 -> lookupTargetBuildConfig key
where
- configError = "Perhaps you need to rerun ./configure"
+ lookupHostBuildConfig :: String -> Action String
+ lookupHostBuildConfig =
+ lookupValueOrError (Just configError) buildConfigFileHost
+
+ lookupHostBuildConfig' :: String -> Action String
+ lookupHostBuildConfig' k = do
+ isCross <- (== "YES") <$> lookupSystemConfig "cross-compiling"
+ if isCross then
+ lookupValueOrError (Just configError) buildConfigFileHost k
+ else
+ lookupTargetBuildConfig k
+
+ lookupTargetBuildConfig :: String -> Action String
+ lookupTargetBuildConfig =
+ lookupValueOrError (Just configError) buildConfigFileTarget
-lookupTargetBuildConfig :: String -> Action String
-lookupTargetBuildConfig key =
- lookupValueOrError (Just configError) buildConfigFileTarget key
- where
configError = "Perhaps you need to rerun ./configure"
-lookupStageBuildConfig :: String -> Stage -> Action String
-lookupStageBuildConfig key st = tgtConfig st key
- where
- tgtConfig Stage0 {} = lookupHostBuildConfig
- tgtConfig Stage1 = lookupHostBuildConfig
- tgtConfig Stage2 = lookupTargetBuildConfig
- tgtConfig Stage3 = lookupTargetBuildConfig
-
-- | Lookup a list of values in a text file, tracking the result. Each line of
-- the file is expected to have @key value1 value2 ...@ format.
lookupValues :: FilePath -> String -> Action (Maybe [String])
=====================================
hadrian/src/Oracles/Setting.hs
=====================================
@@ -107,7 +107,7 @@ setting key = lookupSystemConfig $ case key of
EmsdkVersion -> "emsdk-version"
buildSetting :: BuildSetting -> Stage -> Action String
-buildSetting key stage = tgtConfig stage $ case key of
+buildSetting key stage = flip lookupStageBuildConfig stage $ case key of
CursesIncludeDir -> "curses-include-dir"
CursesLibDir -> "curses-lib-dir"
DynamicExtension -> "dynamic-extension"
@@ -121,11 +121,6 @@ buildSetting key stage = tgtConfig stage $ case key of
LibnumaLibDir -> "libnuma-lib-dir"
LibZstdIncludeDir -> "libzstd-include-dir"
LibZstdLibDir -> "libzstd-lib-dir"
- where
- tgtConfig Stage0 {} = lookupHostBuildConfig
- tgtConfig Stage1 = lookupHostBuildConfig
- tgtConfig Stage2 = lookupTargetBuildConfig
- tgtConfig Stage3 = lookupTargetBuildConfig
-- | An expression that looks up the value of a 'Setting' in @cfg/system.config@,
-- tracking the result.
=====================================
hadrian/src/Settings/Default.hs
=====================================
@@ -77,8 +77,7 @@ stageBootPackages = return
-- | Packages built in 'Stage0' by default. You can change this in "UserSettings".
stage0Packages :: Action [Package]
-stage0Packages = do
- cross <- flag CrossCompiling
+stage0Packages =
return $ [ cabalSyntax
, cabal
, compiler
@@ -117,11 +116,6 @@ stage0Packages = do
-- that confused Hadrian, so we must make those a stage0 package as well.
-- Once we drop `Win32`/`unix` it should be possible to drop those too.
]
- -- Currently, we have no way to provide paths to [n]curses libs for
- -- both - build and target - in cross builds. Thus, we only build it
- -- for upper stages. As we only use stage0 to build upper stages,
- -- this should be fine.
- ++ [ terminfo | not windowsHost, not cross ]
++ [ timeout | windowsHost ]
-- | Packages built in 'Stage1' by default. You can change this in "UserSettings".
@@ -142,7 +136,7 @@ stagedPackages stage = do
cross <- flag CrossCompiling
winTarget <- isWinTarget stage
jsTarget <- isJsTarget stage
- haveCurses <- any (/= "") <$> traverse (flip buildSetting stage) [ CursesIncludeDir, CursesLibDir ]
+ haveCurses <- any (/= "") <$> traverse (`buildSetting` stage) [ CursesIncludeDir, CursesLibDir ]
useSystemFfi <- buildFlag UseSystemFfi stage
let when c xs = if c then xs else mempty
@@ -190,7 +184,7 @@ stagedPackages stage = do
[ -- See Note [Hadrian's ghci-wrapper package]
ghciWrapper
]
- , when (cross && haveCurses)
+ , when haveCurses
[
terminfo
]
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/e54c74df04b675d5d76d763dfdd3e91…
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/e54c74df04b675d5d76d763dfdd3e91…
You're receiving this email because of your account on gitlab.haskell.org.
1
0
Ashok Kimmel pushed new branch wip/26918 at Glasgow Haskell Compiler / GHC
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/tree/wip/26918
You're receiving this email because of your account on gitlab.haskell.org.
1
0
[Git][ghc/ghc][wip/bump-hadrian-bootstrap] hadrian: bump index state & bootstrap plans
by Cheng Shao (@TerrorJack) 09 Mar '26
by Cheng Shao (@TerrorJack) 09 Mar '26
09 Mar '26
Cheng Shao pushed to branch wip/bump-hadrian-bootstrap at Glasgow Haskell Compiler / GHC
Commits:
133b48da by Cheng Shao at 2026-03-09T15:22:36+01:00
hadrian: bump index state & bootstrap plans
This patch bumps hadrian index state & bootstrap plans:
- The updated index state allows bootstrapping from 9.14 without cabal
allow-newer hacks
- The updated bootstrap plans all contain shake-0.19.9 containing
important bugfix, allowing a subsequent patch to bump shake bound to
ensure the bugfix is included
- - - - -
12 changed files:
- .gitlab/ci.sh
- hadrian/bootstrap/plan-9_10_1.json
- hadrian/bootstrap/plan-9_10_2.json
- hadrian/bootstrap/plan-9_10_3.json
- hadrian/bootstrap/plan-9_12_1.json
- hadrian/bootstrap/plan-9_12_2.json
- hadrian/bootstrap/plan-bootstrap-9_10_1.json
- hadrian/bootstrap/plan-bootstrap-9_10_2.json
- hadrian/bootstrap/plan-bootstrap-9_10_3.json
- hadrian/bootstrap/plan-bootstrap-9_12_1.json
- hadrian/bootstrap/plan-bootstrap-9_12_2.json
- hadrian/cabal.project
Changes:
=====================================
.gitlab/ci.sh
=====================================
@@ -8,7 +8,7 @@ set -Eeuo pipefail
# Configuration:
# N.B. You may want to also update the index-state in hadrian/cabal.project.
-HACKAGE_INDEX_STATE="2025-12-19T19:24:24Z"
+HACKAGE_INDEX_STATE="2026-03-09T13:54:35Z"
MIN_HAPPY_VERSION="1.20"
MIN_ALEX_VERSION="3.2.6"
=====================================
hadrian/bootstrap/plan-9_10_1.json
=====================================
@@ -8,18 +8,18 @@
{
"component-name": "lib",
"depends": [
- "Cabal-syntax-3.16.0.0-d61e9e1093b45f36c18b12f3e38b43591ab540d76d2ff2ca6a5c4e281743b552",
+ "Cabal-syntax-3.16.1.0-fc3870c83c36a28498e27428125d93e6d4cf24e23b7004f0f63f9458b1313b0f",
"array-0.5.7.0-20cf",
"base-4.20.0.0-7b2c",
"bytestring-0.12.1.0-3a9c",
"containers-0.7-ade3",
"deepseq-1.5.0.0-98b3",
- "directory-1.3.9.0-57a7a137f57e8acba28fc860a8fae192989d8884fe9a345a94f887c90bea85c9",
+ "directory-1.3.10.1-e2ceddcdd7e3b80e964b692b8be98894f353a68bdef63acc5d2a916ee27bdbf8",
"filepath-1.5.2.0-f8c0",
"mtl-2.3.1-2128",
"parsec-3.1.17.0-52f5",
"pretty-1.1.3.6-d2be",
- "process-1.6.26.1-b74d49fad9ff648698423eff7b67bb9980cb3fb426ac220fef3e39c08cbf8b5e",
+ "process-1.6.27.0-c4d9cb5122085bb1bea897fb444fb56a066c441575f196fd4c45246c8622b080",
"time-1.12.2-c1d3",
"transformers-0.6.1.1-f453",
"unix-2.8.8.0-0acb9b4954e2bbdb5be27749cd3487fe70fc3d6953f4b3b17603596fee734632"
@@ -28,8 +28,8 @@
"flags": {
"git-rev": false
},
- "id": "Cabal-3.16.0.0-6e264705a4a873d58b1cf4353e98a273e4c8d9e2a08e9f1135a701c893beca26",
- "pkg-cabal-sha256": "9972c2bd263168a20bd990962a68d4fd024f50c30a00519a6b942e8871d1bd67",
+ "id": "Cabal-3.16.1.0-4893c1f6371cf882d0ba1ac4548cf49d41bd2a71301efc4ff9713c097c502c66",
+ "pkg-cabal-sha256": "6d7ee02dc18c7485d597d131356cee25b3b95778746f39b73bca1d2d44b12e11",
"pkg-name": "Cabal",
"pkg-src": {
"repo": {
@@ -38,8 +38,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "d68aa36d47f550a45e72a2079aeef28d42add0a2e97f131b4d491c6cf1491b0c",
- "pkg-version": "3.16.0.0",
+ "pkg-src-sha256": "c6b8a37d21dc67c1c68d36a6258ea529391d4bb8bcc1caebaa9b483d93ef2556",
+ "pkg-version": "3.16.1.0",
"style": "global",
"type": "configured"
},
@@ -52,7 +52,7 @@
"bytestring-0.12.1.0-3a9c",
"containers-0.7-ade3",
"deepseq-1.5.0.0-98b3",
- "directory-1.3.9.0-57a7a137f57e8acba28fc860a8fae192989d8884fe9a345a94f887c90bea85c9",
+ "directory-1.3.10.1-e2ceddcdd7e3b80e964b692b8be98894f353a68bdef63acc5d2a916ee27bdbf8",
"filepath-1.5.2.0-f8c0",
"mtl-2.3.1-2128",
"parsec-3.1.17.0-52f5",
@@ -62,11 +62,11 @@
"transformers-0.6.1.1-f453"
],
"exe-depends": [
- "alex-3.5.4.0-e-alex-dbbc26d800debcb097d694dd92e325de76ff6c96b0f010b31a7618d55930dfe6"
+ "alex-3.5.4.0-e-alex-68765f2b88a9d336cf6abbb5245945a74e64da5f6adacff72692de6777d53e27"
],
"flags": {},
- "id": "Cabal-syntax-3.16.0.0-d61e9e1093b45f36c18b12f3e38b43591ab540d76d2ff2ca6a5c4e281743b552",
- "pkg-cabal-sha256": "6a35036763557301876c5b7a448de4f1cb54fe1e223ff6c4c0c1fdd6df635a65",
+ "id": "Cabal-syntax-3.16.1.0-fc3870c83c36a28498e27428125d93e6d4cf24e23b7004f0f63f9458b1313b0f",
+ "pkg-cabal-sha256": "4c3f63157628d3dc359c2af16ffe683b84a54857694c9d59d5fb7232f4679957",
"pkg-name": "Cabal-syntax",
"pkg-src": {
"repo": {
@@ -75,23 +75,23 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "f45bd417052f4638787871957380365aab5cabfc7b110ec52df4e445c656809f",
- "pkg-version": "3.16.0.0",
+ "pkg-src-sha256": "6bd561449b4d96aca4896e17a34cb504d1b0fd83b338380d131b16b50b36bda7",
+ "pkg-version": "3.16.1.0",
"style": "global",
"type": "configured"
},
{
- "bin-file": "/home/mangoiv/.cabal/store/ghc-9.10.1-347c/alex-3.5.4.0-e-alex-dbbc26d800debcb097d694dd92e325de76ff6c96b0f010b31a7618d55930dfe6/bin/alex",
+ "bin-file": "/home/terrorjack/.cabal/store/ghc-9.10.1-347c/alex-3.5.4.0-e-alex-68765f2b88a9d336cf6abbb5245945a74e64da5f6adacff72692de6777d53e27/bin/alex",
"component-name": "exe:alex",
"depends": [
"array-0.5.7.0-20cf",
"base-4.20.0.0-7b2c",
"containers-0.7-ade3",
- "directory-1.3.9.0-57a7a137f57e8acba28fc860a8fae192989d8884fe9a345a94f887c90bea85c9"
+ "directory-1.3.10.1-e2ceddcdd7e3b80e964b692b8be98894f353a68bdef63acc5d2a916ee27bdbf8"
],
"exe-depends": [],
"flags": {},
- "id": "alex-3.5.4.0-e-alex-dbbc26d800debcb097d694dd92e325de76ff6c96b0f010b31a7618d55930dfe6",
+ "id": "alex-3.5.4.0-e-alex-68765f2b88a9d336cf6abbb5245945a74e64da5f6adacff72692de6777d53e27",
"pkg-cabal-sha256": "38b3481bb0d5eb58c9dd6579e7904859372c3c0c82a8db86e58177649c289621",
"pkg-name": "alex",
"pkg-src": {
@@ -249,7 +249,7 @@
"component-name": "lib",
"depends": [
"base-4.20.0.0-7b2c",
- "file-io-0.1.5-134583416b0b1ec848b7243a06d9b8c8622529d8efe17cac02e7fec5170689d8",
+ "file-io-0.1.6-11495217c19423ea98896a6036606f16478ec7ffbd6ff9830c6c9447216bd55c",
"filepath-1.5.2.0-f8c0",
"os-string-2.0.2-826a",
"time-1.12.2-c1d3",
@@ -259,8 +259,8 @@
"flags": {
"os-string": true
},
- "id": "directory-1.3.9.0-57a7a137f57e8acba28fc860a8fae192989d8884fe9a345a94f887c90bea85c9",
- "pkg-cabal-sha256": "ed6784601c6a800d4c1e40efbc9f20cf33ae2f25cac301fc239f9c91947b816b",
+ "id": "directory-1.3.10.1-e2ceddcdd7e3b80e964b692b8be98894f353a68bdef63acc5d2a916ee27bdbf8",
+ "pkg-cabal-sha256": "bf029d8163ccae567cc6a5aa8f654016f58dfc066d15f8a8f7c74b8ca855562c",
"pkg-name": "directory",
"pkg-src": {
"repo": {
@@ -269,8 +269,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "20a24846117fc5f8751d974b7de07210a161989410467e9adca525381b8e64cc",
- "pkg-version": "1.3.9.0",
+ "pkg-src-sha256": "d8f718851aa25a357ca4a6d0204eb357a69383b9b69528d18e2bca463e94c259",
+ "pkg-version": "1.3.10.1",
"style": "global",
"type": "configured"
},
@@ -292,15 +292,15 @@
"depends": [
"base-4.20.0.0-7b2c",
"clock-0.8.4-56841ac08e75fc2ffddd00183c6bd9ea791f055b62267f90eb00c1f19bed2d5a",
- "directory-1.3.9.0-57a7a137f57e8acba28fc860a8fae192989d8884fe9a345a94f887c90bea85c9",
+ "directory-1.3.10.1-e2ceddcdd7e3b80e964b692b8be98894f353a68bdef63acc5d2a916ee27bdbf8",
"filepath-1.5.2.0-f8c0",
- "process-1.6.26.1-b74d49fad9ff648698423eff7b67bb9980cb3fb426ac220fef3e39c08cbf8b5e",
+ "process-1.6.27.0-c4d9cb5122085bb1bea897fb444fb56a066c441575f196fd4c45246c8622b080",
"time-1.12.2-c1d3",
"unix-2.8.8.0-0acb9b4954e2bbdb5be27749cd3487fe70fc3d6953f4b3b17603596fee734632"
],
"exe-depends": [],
"flags": {},
- "id": "extra-1.8.1-958cbbfad62bc0749a31e9ee0309ff6d6aad97eeb266f8ff2c66e53a60f3413b",
+ "id": "extra-1.8.1-f7ab5ff32616a06a67ed3e9f884bad61f7884789f823f370935f3799aca6ed3f",
"pkg-cabal-sha256": "b9c360f2f3fbff5ca04656b7aa0a91b254ac7de7e4b959bae4688a178ffd79d1",
"pkg-name": "extra",
"pkg-src": {
@@ -327,10 +327,11 @@
],
"exe-depends": [],
"flags": {
+ "long-paths": true,
"os-string": true
},
- "id": "file-io-0.1.5-134583416b0b1ec848b7243a06d9b8c8622529d8efe17cac02e7fec5170689d8",
- "pkg-cabal-sha256": "1d68a81fa684d006b1ec73836cebe3de9a54688836915fe3e56a20389846bb4e",
+ "id": "file-io-0.1.6-11495217c19423ea98896a6036606f16478ec7ffbd6ff9830c6c9447216bd55c",
+ "pkg-cabal-sha256": "5e3466f15993e499db47d79d09c519d6d37c143cfe94fb46dd218bf2f6f3fd39",
"pkg-name": "file-io",
"pkg-src": {
"repo": {
@@ -339,8 +340,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "310a19e4c792de4d30c912bc71ff3becb40818d7c796b9999bcd0979dab87d5b",
- "pkg-version": "0.1.5",
+ "pkg-src-sha256": "0ae9986dc1df9a87d17a16c6c0afb2bfc72dcd2a2ec7a40faf1257bf1fa4d710",
+ "pkg-version": "0.1.6",
"style": "global",
"type": "configured"
},
@@ -362,13 +363,13 @@
"component-name": "lib",
"depends": [
"base-4.20.0.0-7b2c",
- "directory-1.3.9.0-57a7a137f57e8acba28fc860a8fae192989d8884fe9a345a94f887c90bea85c9",
- "extra-1.8.1-958cbbfad62bc0749a31e9ee0309ff6d6aad97eeb266f8ff2c66e53a60f3413b",
+ "directory-1.3.10.1-e2ceddcdd7e3b80e964b692b8be98894f353a68bdef63acc5d2a916ee27bdbf8",
+ "extra-1.8.1-f7ab5ff32616a06a67ed3e9f884bad61f7884789f823f370935f3799aca6ed3f",
"filepath-1.5.2.0-f8c0"
],
"exe-depends": [],
"flags": {},
- "id": "filepattern-0.1.3-39f44bd046689cbde70f44f51874b312b8748f84a2d401db252122a6d32ae5d6",
+ "id": "filepattern-0.1.3-d2af036e123fd127302407e37f0c79da3b13dc2a0ae3426603dc8bd4f4cb54b9",
"pkg-cabal-sha256": "372c1733d83b90045eb29da9f010fed79bfef8771ce65eb126a1d83ecc54a9a2",
"pkg-name": "filepattern",
"pkg-src": {
@@ -413,18 +414,18 @@
"type": "pre-existing"
},
{
- "build-info": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.1/ghc-platform-0.1.0.0/build-info.json",
+ "build-info": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.1/ghc-platform-0.1.0.0/build-info.json",
"component-name": "lib",
"depends": [
"base-4.20.0.0-7b2c"
],
- "dist-dir": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.1/ghc-platform-0.1.0.0",
+ "dist-dir": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.1/ghc-platform-0.1.0.0",
"exe-depends": [],
"flags": {},
"id": "ghc-platform-0.1.0.0-inplace",
"pkg-name": "ghc-platform",
"pkg-src": {
- "path": "/home/mangoiv/Devel/ghc-devops/hadrian/../libraries/ghc-platform",
+ "path": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/../libraries/ghc-platform",
"type": "local"
},
"pkg-version": "0.1.0.0",
@@ -441,24 +442,24 @@
"type": "pre-existing"
},
{
- "build-info": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.1/ghc-toolchain-0.1.0.0/build-info.json",
+ "build-info": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.1/ghc-toolchain-0.1.0.0/build-info.json",
"component-name": "lib",
"depends": [
"base-4.20.0.0-7b2c",
- "directory-1.3.9.0-57a7a137f57e8acba28fc860a8fae192989d8884fe9a345a94f887c90bea85c9",
+ "directory-1.3.10.1-e2ceddcdd7e3b80e964b692b8be98894f353a68bdef63acc5d2a916ee27bdbf8",
"filepath-1.5.2.0-f8c0",
"ghc-platform-0.1.0.0-inplace",
- "process-1.6.26.1-b74d49fad9ff648698423eff7b67bb9980cb3fb426ac220fef3e39c08cbf8b5e",
+ "process-1.6.27.0-c4d9cb5122085bb1bea897fb444fb56a066c441575f196fd4c45246c8622b080",
"text-2.1.1-ffc6",
"transformers-0.6.1.1-f453"
],
- "dist-dir": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.1/ghc-toolchain-0.1.0.0",
+ "dist-dir": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.1/ghc-toolchain-0.1.0.0",
"exe-depends": [],
"flags": {},
"id": "ghc-toolchain-0.1.0.0-inplace",
"pkg-name": "ghc-toolchain",
"pkg-src": {
- "path": "/home/mangoiv/Devel/ghc-devops/hadrian/../utils/ghc-toolchain",
+ "path": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/../utils/ghc-toolchain",
"type": "local"
},
"pkg-version": "0.1.0.0",
@@ -466,30 +467,30 @@
"type": "configured"
},
{
- "bin-file": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.1/hadrian-0.1.0.0/x/hadrian/build/hadrian/hadrian",
- "build-info": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.1/hadrian-0.1.0.0/x/hadrian/build-info.json",
+ "bin-file": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.1/hadrian-0.1.0.0/x/hadrian/build/hadrian/hadrian",
+ "build-info": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.1/hadrian-0.1.0.0/x/hadrian/build-info.json",
"component-name": "exe:hadrian",
"depends": [
- "Cabal-3.16.0.0-6e264705a4a873d58b1cf4353e98a273e4c8d9e2a08e9f1135a701c893beca26",
+ "Cabal-3.16.1.0-4893c1f6371cf882d0ba1ac4548cf49d41bd2a71301efc4ff9713c097c502c66",
"base-4.20.0.0-7b2c",
"base16-bytestring-1.0.2.0-9bf52d53f02ac07863c57f2a3328e682c9206bb1c22df635fbd31e51139557cd",
"bytestring-0.12.1.0-3a9c",
"containers-0.7-ade3",
"cryptohash-sha256-0.11.102.1-98be6513af0ffbf49624233c19e68ca5d37ad7125f6004d1946ddc642b46478b",
- "directory-1.3.9.0-57a7a137f57e8acba28fc860a8fae192989d8884fe9a345a94f887c90bea85c9",
- "extra-1.8.1-958cbbfad62bc0749a31e9ee0309ff6d6aad97eeb266f8ff2c66e53a60f3413b",
+ "directory-1.3.10.1-e2ceddcdd7e3b80e964b692b8be98894f353a68bdef63acc5d2a916ee27bdbf8",
+ "extra-1.8.1-f7ab5ff32616a06a67ed3e9f884bad61f7884789f823f370935f3799aca6ed3f",
"filepath-1.5.2.0-f8c0",
"ghc-platform-0.1.0.0-inplace",
"ghc-toolchain-0.1.0.0-inplace",
"mtl-2.3.1-2128",
"parsec-3.1.17.0-52f5",
- "shake-0.19.8-bfb1a6af3d4f37296ad5bd36f53ef6aa6669a74b73fd2c5bbb577d20e125a0f3",
+ "shake-0.19.9-68fbdf25516d2a330834c7af379f63f2481a271af52a2e1f9553b24380020249",
"text-2.1.1-ffc6",
"time-1.12.2-c1d3",
"transformers-0.6.1.1-f453",
- "unordered-containers-0.2.21-d3958e5f367cb8b55d506de6e5a1c768dfd1187e99ede8c2232fb87396d6bf38"
+ "unordered-containers-0.2.21-8483bc1bc288a1248be5cd0e558b9f6527d7ee73f3f344b6d0c4b7c89228f772"
],
- "dist-dir": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.1/hadrian-0.1.0.0/x/hadrian",
+ "dist-dir": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.1/hadrian-0.1.0.0/x/hadrian",
"exe-depends": [],
"flags": {
"selftest": false,
@@ -498,7 +499,7 @@
"id": "hadrian-0.1.0.0-inplace-hadrian",
"pkg-name": "hadrian",
"pkg-src": {
- "path": "/home/mangoiv/Devel/ghc-devops/hadrian/.",
+ "path": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/.",
"type": "local"
},
"pkg-version": "0.1.0.0",
@@ -513,8 +514,6 @@
"containers-0.7-ade3",
"deepseq-1.5.0.0-98b3",
"filepath-1.5.2.0-f8c0",
- "ghc-bignum-1.3-8f32",
- "ghc-prim-0.11.0-e678",
"os-string-2.0.2-826a",
"text-2.1.1-ffc6"
],
@@ -523,8 +522,8 @@
"arch-native": false,
"random-initial-seed": false
},
- "id": "hashable-1.5.0.0-482774d0b052018930330f3a4a785567c121f9eaec069cd982b6951179d56ff6",
- "pkg-cabal-sha256": "2f23146cbe0325029927b221647695a4c7d6e97548ff731110979e34361f58ef",
+ "id": "hashable-1.5.1.0-f9ec57e786fce3fec533513b30f16d3af7a7471e6c79181f73af2f2206f4f1f4",
+ "pkg-cabal-sha256": "140fc5adad166f7b527567cbd26ff481e8da4a66bdfc84be3ddf28dbeb66f275",
"pkg-name": "hashable",
"pkg-src": {
"repo": {
@@ -533,8 +532,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "e58b3a8e18da5f6cd7e937e5fd683e500bb1f8276b3768269759119ca0cddb6a",
- "pkg-version": "1.5.0.0",
+ "pkg-src-sha256": "ed0b7c10ce92c9ffe45420dadc38c6d39db486ff3633ff13567cc9f75f79b112",
+ "pkg-version": "1.5.1.0",
"style": "global",
"type": "configured"
},
@@ -683,7 +682,7 @@
"exe-depends": [],
"flags": {},
"id": "primitive-0.9.1.0-461d6c2ea72293ae9c6f6dc65569f360a572118b2a9229a440d949c7b560012b",
- "pkg-cabal-sha256": "dfdd6572944c11e69208237dd32a2eb9d975b4f4e9064a7b8dc952cb0e256846",
+ "pkg-cabal-sha256": "756b222c715bc6ef5ba81fa69cdbaa20c5c53beb6f16f174b8bacc93a6d239f0",
"pkg-name": "primitive",
"pkg-src": {
"repo": {
@@ -702,7 +701,7 @@
"depends": [
"base-4.20.0.0-7b2c",
"deepseq-1.5.0.0-98b3",
- "directory-1.3.9.0-57a7a137f57e8acba28fc860a8fae192989d8884fe9a345a94f887c90bea85c9",
+ "directory-1.3.10.1-e2ceddcdd7e3b80e964b692b8be98894f353a68bdef63acc5d2a916ee27bdbf8",
"filepath-1.5.2.0-f8c0",
"os-string-2.0.2-826a",
"unix-2.8.8.0-0acb9b4954e2bbdb5be27749cd3487fe70fc3d6953f4b3b17603596fee734632"
@@ -711,8 +710,8 @@
"flags": {
"os-string": true
},
- "id": "process-1.6.26.1-b74d49fad9ff648698423eff7b67bb9980cb3fb426ac220fef3e39c08cbf8b5e",
- "pkg-cabal-sha256": "6def2e07c317f52f4d30c43e92f97b7bc5f7c27cb1270d386b15dce429e1180f",
+ "id": "process-1.6.27.0-c4d9cb5122085bb1bea897fb444fb56a066c441575f196fd4c45246c8622b080",
+ "pkg-cabal-sha256": "0512ed17e7e312a6412859abcb37a7bcc81b94cbb797a1ba2a8c78a5d3055d32",
"pkg-name": "process",
"pkg-src": {
"repo": {
@@ -721,8 +720,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "b431d2ba77607986fa84b42ff3021505b8637b8d638ff664be3292dd44aba8f0",
- "pkg-version": "1.6.26.1",
+ "pkg-src-sha256": "ee9ef426d33560f3d06b237fbb8156c530c6b265cca8ef0c63abadb12769b693",
+ "pkg-version": "1.6.27.0",
"style": "global",
"type": "configured"
},
@@ -733,12 +732,12 @@
"bytestring-0.12.1.0-3a9c",
"deepseq-1.5.0.0-98b3",
"mtl-2.3.1-2128",
- "splitmix-0.1.3.1-32c47dc93f140404aff72d533e2e4327d5ec143a15e0380c95ee394dc41012ef",
+ "splitmix-0.1.3.2-d2b47b10b3c23305f55007964ffa2e07e84ad1326a60b1c7b132dcb7c13b28be",
"transformers-0.6.1.1-f453"
],
"exe-depends": [],
"flags": {},
- "id": "random-1.3.1-38bb3fda18bdbee149bacdb664961274ee2a70027d4933dc636b5fb1509f1130",
+ "id": "random-1.3.1-6e3a8dbe4a8d929bed25429b690b4afe4f30132525cd87ad362184c23111af45",
"pkg-cabal-sha256": "0b4f649c3e78713b2ccad1535251ee34b148237fb2229d7058c2b1d9ccc324b8",
"pkg-name": "random",
"pkg-src": {
@@ -767,22 +766,22 @@
"binary-0.8.9.2-1319",
"bytestring-0.12.1.0-3a9c",
"deepseq-1.5.0.0-98b3",
- "directory-1.3.9.0-57a7a137f57e8acba28fc860a8fae192989d8884fe9a345a94f887c90bea85c9",
- "extra-1.8.1-958cbbfad62bc0749a31e9ee0309ff6d6aad97eeb266f8ff2c66e53a60f3413b",
+ "directory-1.3.10.1-e2ceddcdd7e3b80e964b692b8be98894f353a68bdef63acc5d2a916ee27bdbf8",
+ "extra-1.8.1-f7ab5ff32616a06a67ed3e9f884bad61f7884789f823f370935f3799aca6ed3f",
"filepath-1.5.2.0-f8c0",
- "filepattern-0.1.3-39f44bd046689cbde70f44f51874b312b8748f84a2d401db252122a6d32ae5d6",
- "hashable-1.5.0.0-482774d0b052018930330f3a4a785567c121f9eaec069cd982b6951179d56ff6",
+ "filepattern-0.1.3-d2af036e123fd127302407e37f0c79da3b13dc2a0ae3426603dc8bd4f4cb54b9",
+ "hashable-1.5.1.0-f9ec57e786fce3fec533513b30f16d3af7a7471e6c79181f73af2f2206f4f1f4",
"heaps-0.4.1-488b938154469513ca07fb0f6ccd7a6d70a20590cf32133aef6d8f6b4acdd376",
"js-dgtable-0.5.2-3818da552f2b3187e0265ffbc6f3426d5138315d0cbab9932df9823bddc2de12",
"js-flot-0.8.3-8e1adc0d8f63c95aa904f357f0909e45abaccf66c5b0ecc0c71d7d9f67b09aa4",
"js-jquery-3.7.1-64e7b444c7a02b1a16c436f18cb58286876fb6d885f959eaf139a8c5f1bc0825",
"primitive-0.9.1.0-461d6c2ea72293ae9c6f6dc65569f360a572118b2a9229a440d949c7b560012b",
- "process-1.6.26.1-b74d49fad9ff648698423eff7b67bb9980cb3fb426ac220fef3e39c08cbf8b5e",
- "random-1.3.1-38bb3fda18bdbee149bacdb664961274ee2a70027d4933dc636b5fb1509f1130",
+ "process-1.6.27.0-c4d9cb5122085bb1bea897fb444fb56a066c441575f196fd4c45246c8622b080",
+ "random-1.3.1-6e3a8dbe4a8d929bed25429b690b4afe4f30132525cd87ad362184c23111af45",
"time-1.12.2-c1d3",
"transformers-0.6.1.1-f453",
"unix-2.8.8.0-0acb9b4954e2bbdb5be27749cd3487fe70fc3d6953f4b3b17603596fee734632",
- "unordered-containers-0.2.21-d3958e5f367cb8b55d506de6e5a1c768dfd1187e99ede8c2232fb87396d6bf38",
+ "unordered-containers-0.2.21-8483bc1bc288a1248be5cd0e558b9f6527d7ee73f3f344b6d0c4b7c89228f772",
"utf8-string-1.0.2-f031d8378675da793243ead6b143053ed95478d30f99ec3e761e1919ce8c2720"
],
"exe-depends": [],
@@ -792,8 +791,8 @@
"portable": false,
"threaded": true
},
- "id": "shake-0.19.8-bfb1a6af3d4f37296ad5bd36f53ef6aa6669a74b73fd2c5bbb577d20e125a0f3",
- "pkg-cabal-sha256": "03c8f06de478e07ad6fde95984c9206920106d0d8432ecb7ab825ef108d45382",
+ "id": "shake-0.19.9-68fbdf25516d2a330834c7af379f63f2481a271af52a2e1f9553b24380020249",
+ "pkg-cabal-sha256": "8704f35f7857f71adef2b74aafb5580f73dfab004a804718d418c16798f4a186",
"pkg-name": "shake",
"pkg-src": {
"repo": {
@@ -802,35 +801,35 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "6384e33a26a2590bf33719e88881076b899ac4b5340c1c9271e4caa37e9d6535",
- "pkg-version": "0.19.8",
+ "pkg-src-sha256": "4176d6e38c3b7813f019f2377466d9f01db842056eec1cdaa8a23b80ceddcb8a",
+ "pkg-version": "0.19.9",
"style": "global",
"type": "configured"
},
{
- "bin-file": "/home/mangoiv/.cabal/store/ghc-9.10.1-347c/shake-0.19.8-e-shake-28a8fada2491273c95a6c323a608ebd6e7e26ed213a7d834978b58bace034b8b/bin/shake",
+ "bin-file": "/home/terrorjack/.cabal/store/ghc-9.10.1-347c/shake-0.19.9-e-shake-685cb75296282ab208fcfd331df6d29c59370db4d521e290ab1d51dd201ca021/bin/shake",
"component-name": "exe:shake",
"depends": [
"base-4.20.0.0-7b2c",
"binary-0.8.9.2-1319",
"bytestring-0.12.1.0-3a9c",
"deepseq-1.5.0.0-98b3",
- "directory-1.3.9.0-57a7a137f57e8acba28fc860a8fae192989d8884fe9a345a94f887c90bea85c9",
- "extra-1.8.1-958cbbfad62bc0749a31e9ee0309ff6d6aad97eeb266f8ff2c66e53a60f3413b",
+ "directory-1.3.10.1-e2ceddcdd7e3b80e964b692b8be98894f353a68bdef63acc5d2a916ee27bdbf8",
+ "extra-1.8.1-f7ab5ff32616a06a67ed3e9f884bad61f7884789f823f370935f3799aca6ed3f",
"filepath-1.5.2.0-f8c0",
- "filepattern-0.1.3-39f44bd046689cbde70f44f51874b312b8748f84a2d401db252122a6d32ae5d6",
- "hashable-1.5.0.0-482774d0b052018930330f3a4a785567c121f9eaec069cd982b6951179d56ff6",
+ "filepattern-0.1.3-d2af036e123fd127302407e37f0c79da3b13dc2a0ae3426603dc8bd4f4cb54b9",
+ "hashable-1.5.1.0-f9ec57e786fce3fec533513b30f16d3af7a7471e6c79181f73af2f2206f4f1f4",
"heaps-0.4.1-488b938154469513ca07fb0f6ccd7a6d70a20590cf32133aef6d8f6b4acdd376",
"js-dgtable-0.5.2-3818da552f2b3187e0265ffbc6f3426d5138315d0cbab9932df9823bddc2de12",
"js-flot-0.8.3-8e1adc0d8f63c95aa904f357f0909e45abaccf66c5b0ecc0c71d7d9f67b09aa4",
"js-jquery-3.7.1-64e7b444c7a02b1a16c436f18cb58286876fb6d885f959eaf139a8c5f1bc0825",
"primitive-0.9.1.0-461d6c2ea72293ae9c6f6dc65569f360a572118b2a9229a440d949c7b560012b",
- "process-1.6.26.1-b74d49fad9ff648698423eff7b67bb9980cb3fb426ac220fef3e39c08cbf8b5e",
- "random-1.3.1-38bb3fda18bdbee149bacdb664961274ee2a70027d4933dc636b5fb1509f1130",
+ "process-1.6.27.0-c4d9cb5122085bb1bea897fb444fb56a066c441575f196fd4c45246c8622b080",
+ "random-1.3.1-6e3a8dbe4a8d929bed25429b690b4afe4f30132525cd87ad362184c23111af45",
"time-1.12.2-c1d3",
"transformers-0.6.1.1-f453",
"unix-2.8.8.0-0acb9b4954e2bbdb5be27749cd3487fe70fc3d6953f4b3b17603596fee734632",
- "unordered-containers-0.2.21-d3958e5f367cb8b55d506de6e5a1c768dfd1187e99ede8c2232fb87396d6bf38",
+ "unordered-containers-0.2.21-8483bc1bc288a1248be5cd0e558b9f6527d7ee73f3f344b6d0c4b7c89228f772",
"utf8-string-1.0.2-f031d8378675da793243ead6b143053ed95478d30f99ec3e761e1919ce8c2720"
],
"exe-depends": [],
@@ -840,8 +839,8 @@
"portable": false,
"threaded": true
},
- "id": "shake-0.19.8-e-shake-28a8fada2491273c95a6c323a608ebd6e7e26ed213a7d834978b58bace034b8b",
- "pkg-cabal-sha256": "03c8f06de478e07ad6fde95984c9206920106d0d8432ecb7ab825ef108d45382",
+ "id": "shake-0.19.9-e-shake-685cb75296282ab208fcfd331df6d29c59370db4d521e290ab1d51dd201ca021",
+ "pkg-cabal-sha256": "8704f35f7857f71adef2b74aafb5580f73dfab004a804718d418c16798f4a186",
"pkg-name": "shake",
"pkg-src": {
"repo": {
@@ -850,8 +849,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "6384e33a26a2590bf33719e88881076b899ac4b5340c1c9271e4caa37e9d6535",
- "pkg-version": "0.19.8",
+ "pkg-src-sha256": "4176d6e38c3b7813f019f2377466d9f01db842056eec1cdaa8a23b80ceddcb8a",
+ "pkg-version": "0.19.9",
"style": "global",
"type": "configured"
},
@@ -865,8 +864,8 @@
"flags": {
"optimised-mixer": false
},
- "id": "splitmix-0.1.3.1-32c47dc93f140404aff72d533e2e4327d5ec143a15e0380c95ee394dc41012ef",
- "pkg-cabal-sha256": "d0002f3fb16a2cc5ba8afd47a6657726386edccfe8853d310e3479fe3b45201b",
+ "id": "splitmix-0.1.3.2-d2b47b10b3c23305f55007964ffa2e07e84ad1326a60b1c7b132dcb7c13b28be",
+ "pkg-cabal-sha256": "a557cff65eed1f70f3a3b468423cd58e7a9a9564c5cc00c76a13de64dec9bcbd",
"pkg-name": "splitmix",
"pkg-src": {
"repo": {
@@ -875,8 +874,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "b6bcd0d79bd4fe40975c8ebe803be2f3bfbf6006069a59745a325a0df3f86270",
- "pkg-version": "0.1.3.1",
+ "pkg-src-sha256": "a61d4e8b30f5a16526d7d31171b674ae7924d2207f378060d13363bd8794de8c",
+ "pkg-version": "0.1.3.2",
"style": "global",
"type": "configured"
},
@@ -970,15 +969,15 @@
"depends": [
"base-4.20.0.0-7b2c",
"deepseq-1.5.0.0-98b3",
- "hashable-1.5.0.0-482774d0b052018930330f3a4a785567c121f9eaec069cd982b6951179d56ff6",
+ "hashable-1.5.1.0-f9ec57e786fce3fec533513b30f16d3af7a7471e6c79181f73af2f2206f4f1f4",
"template-haskell-2.22.0.0-5d7d"
],
"exe-depends": [],
"flags": {
"debug": false
},
- "id": "unordered-containers-0.2.21-d3958e5f367cb8b55d506de6e5a1c768dfd1187e99ede8c2232fb87396d6bf38",
- "pkg-cabal-sha256": "bcff64f48fba1e25bf9b5346d1c3545402cd2f1293b411435e7850ccb62884e5",
+ "id": "unordered-containers-0.2.21-8483bc1bc288a1248be5cd0e558b9f6527d7ee73f3f344b6d0c4b7c89228f772",
+ "pkg-cabal-sha256": "c5de1fb3377ed3c5f4cd851a771d1acc5c37d2f6bef0a499295c0e8857da5605",
"pkg-name": "unordered-containers",
"pkg-src": {
"repo": {
=====================================
hadrian/bootstrap/plan-9_10_2.json
=====================================
@@ -8,18 +8,18 @@
{
"component-name": "lib",
"depends": [
- "Cabal-syntax-3.16.0.0-12af5026a73dc9031c906a86b7d29a958acfb735f52741050e2291a74da6a3bb",
+ "Cabal-syntax-3.16.1.0-f2de58cb9d4daf18d13b8ee6ba48681d51a5bea6180cfc87b4a430eaa1513629",
"array-0.5.8.0-cd57",
"base-4.20.1.0-74ce",
"bytestring-0.12.2.0-4189",
"containers-0.7-dc17",
"deepseq-1.5.0.0-4587",
- "directory-1.3.9.0-bc0abf1c9a7228ee1760bbac658c674241239232ec9dc6a223395f8d33cdbc6f",
+ "directory-1.3.10.1-d7c5ae457f4c5a5ee456b29f3efd804a381bcb038d5f0a1024df9588d4b56c5f",
"filepath-1.5.4.0-a42f",
"mtl-2.3.1-6ec5",
"parsec-3.1.18.0-71aa",
"pretty-1.1.3.6-d2e8",
- "process-1.6.26.1-c30ac68264906babef7aace4ddda01c1e6f5189cce819bc80c4cdfafd9214a9f",
+ "process-1.6.27.0-fcf894449fb405685995be689bc18913a7cfcc8957727f67a92149882bc70369",
"time-1.12.2-9b4e",
"transformers-0.6.1.1-be28",
"unix-2.8.6.0-cf2a"
@@ -28,8 +28,8 @@
"flags": {
"git-rev": false
},
- "id": "Cabal-3.16.0.0-bb4228e7cf7d865c2cde42e3cf10df52629123f6e6cf0bc80a1eb3074f26a6fc",
- "pkg-cabal-sha256": "9972c2bd263168a20bd990962a68d4fd024f50c30a00519a6b942e8871d1bd67",
+ "id": "Cabal-3.16.1.0-54a9f614db8e2077390f0e040fb1f3a695dc900d66750af71c58b10629c2ec10",
+ "pkg-cabal-sha256": "6d7ee02dc18c7485d597d131356cee25b3b95778746f39b73bca1d2d44b12e11",
"pkg-name": "Cabal",
"pkg-src": {
"repo": {
@@ -38,8 +38,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "d68aa36d47f550a45e72a2079aeef28d42add0a2e97f131b4d491c6cf1491b0c",
- "pkg-version": "3.16.0.0",
+ "pkg-src-sha256": "c6b8a37d21dc67c1c68d36a6258ea529391d4bb8bcc1caebaa9b483d93ef2556",
+ "pkg-version": "3.16.1.0",
"style": "global",
"type": "configured"
},
@@ -52,7 +52,7 @@
"bytestring-0.12.2.0-4189",
"containers-0.7-dc17",
"deepseq-1.5.0.0-4587",
- "directory-1.3.9.0-bc0abf1c9a7228ee1760bbac658c674241239232ec9dc6a223395f8d33cdbc6f",
+ "directory-1.3.10.1-d7c5ae457f4c5a5ee456b29f3efd804a381bcb038d5f0a1024df9588d4b56c5f",
"filepath-1.5.4.0-a42f",
"mtl-2.3.1-6ec5",
"parsec-3.1.18.0-71aa",
@@ -62,11 +62,11 @@
"transformers-0.6.1.1-be28"
],
"exe-depends": [
- "alex-3.5.4.0-e-alex-a862d0e41041318583e4c848e59e05652377b04618dd98073aac32682d98bf38"
+ "alex-3.5.4.0-e-alex-10b0ccba99517c7ed5ce6e1c02b0e71b471bddddc2d72a3ce4bd7a8e92783d23"
],
"flags": {},
- "id": "Cabal-syntax-3.16.0.0-12af5026a73dc9031c906a86b7d29a958acfb735f52741050e2291a74da6a3bb",
- "pkg-cabal-sha256": "6a35036763557301876c5b7a448de4f1cb54fe1e223ff6c4c0c1fdd6df635a65",
+ "id": "Cabal-syntax-3.16.1.0-f2de58cb9d4daf18d13b8ee6ba48681d51a5bea6180cfc87b4a430eaa1513629",
+ "pkg-cabal-sha256": "4c3f63157628d3dc359c2af16ffe683b84a54857694c9d59d5fb7232f4679957",
"pkg-name": "Cabal-syntax",
"pkg-src": {
"repo": {
@@ -75,23 +75,23 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "f45bd417052f4638787871957380365aab5cabfc7b110ec52df4e445c656809f",
- "pkg-version": "3.16.0.0",
+ "pkg-src-sha256": "6bd561449b4d96aca4896e17a34cb504d1b0fd83b338380d131b16b50b36bda7",
+ "pkg-version": "3.16.1.0",
"style": "global",
"type": "configured"
},
{
- "bin-file": "/home/mangoiv/.cabal/store/ghc-9.10.2-2194/alex-3.5.4.0-e-alex-a862d0e41041318583e4c848e59e05652377b04618dd98073aac32682d98bf38/bin/alex",
+ "bin-file": "/home/terrorjack/.cabal/store/ghc-9.10.2-2194/alex-3.5.4.0-e-alex-10b0ccba99517c7ed5ce6e1c02b0e71b471bddddc2d72a3ce4bd7a8e92783d23/bin/alex",
"component-name": "exe:alex",
"depends": [
"array-0.5.8.0-cd57",
"base-4.20.1.0-74ce",
"containers-0.7-dc17",
- "directory-1.3.9.0-bc0abf1c9a7228ee1760bbac658c674241239232ec9dc6a223395f8d33cdbc6f"
+ "directory-1.3.10.1-d7c5ae457f4c5a5ee456b29f3efd804a381bcb038d5f0a1024df9588d4b56c5f"
],
"exe-depends": [],
"flags": {},
- "id": "alex-3.5.4.0-e-alex-a862d0e41041318583e4c848e59e05652377b04618dd98073aac32682d98bf38",
+ "id": "alex-3.5.4.0-e-alex-10b0ccba99517c7ed5ce6e1c02b0e71b471bddddc2d72a3ce4bd7a8e92783d23",
"pkg-cabal-sha256": "38b3481bb0d5eb58c9dd6579e7904859372c3c0c82a8db86e58177649c289621",
"pkg-name": "alex",
"pkg-src": {
@@ -249,7 +249,7 @@
"component-name": "lib",
"depends": [
"base-4.20.1.0-74ce",
- "file-io-0.1.5-030d74d2deeebe5a5c518c6d089149a2658022669c39950365b9d88aef49ab24",
+ "file-io-0.1.6-e346ab5388456943eecff1e02c02f84f7eb31096860abab60332efa6fcd9b132",
"filepath-1.5.4.0-a42f",
"os-string-2.0.4-6908",
"time-1.12.2-9b4e",
@@ -259,8 +259,8 @@
"flags": {
"os-string": true
},
- "id": "directory-1.3.9.0-bc0abf1c9a7228ee1760bbac658c674241239232ec9dc6a223395f8d33cdbc6f",
- "pkg-cabal-sha256": "ed6784601c6a800d4c1e40efbc9f20cf33ae2f25cac301fc239f9c91947b816b",
+ "id": "directory-1.3.10.1-d7c5ae457f4c5a5ee456b29f3efd804a381bcb038d5f0a1024df9588d4b56c5f",
+ "pkg-cabal-sha256": "bf029d8163ccae567cc6a5aa8f654016f58dfc066d15f8a8f7c74b8ca855562c",
"pkg-name": "directory",
"pkg-src": {
"repo": {
@@ -269,8 +269,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "20a24846117fc5f8751d974b7de07210a161989410467e9adca525381b8e64cc",
- "pkg-version": "1.3.9.0",
+ "pkg-src-sha256": "d8f718851aa25a357ca4a6d0204eb357a69383b9b69528d18e2bca463e94c259",
+ "pkg-version": "1.3.10.1",
"style": "global",
"type": "configured"
},
@@ -292,15 +292,15 @@
"depends": [
"base-4.20.1.0-74ce",
"clock-0.8.4-e39dc618cb4b85d9a1dd76bd67a55ab3bbc60be7557641f994075d75e762415d",
- "directory-1.3.9.0-bc0abf1c9a7228ee1760bbac658c674241239232ec9dc6a223395f8d33cdbc6f",
+ "directory-1.3.10.1-d7c5ae457f4c5a5ee456b29f3efd804a381bcb038d5f0a1024df9588d4b56c5f",
"filepath-1.5.4.0-a42f",
- "process-1.6.26.1-c30ac68264906babef7aace4ddda01c1e6f5189cce819bc80c4cdfafd9214a9f",
+ "process-1.6.27.0-fcf894449fb405685995be689bc18913a7cfcc8957727f67a92149882bc70369",
"time-1.12.2-9b4e",
"unix-2.8.6.0-cf2a"
],
"exe-depends": [],
"flags": {},
- "id": "extra-1.8.1-6452350613ef63f957f44fa19ae757371c555b4185640a391f035b8b3ffa3430",
+ "id": "extra-1.8.1-baa06287ee4c1eef41c25e2d8fcc11d82a789d78b021fd4dd307e91e970125f8",
"pkg-cabal-sha256": "b9c360f2f3fbff5ca04656b7aa0a91b254ac7de7e4b959bae4688a178ffd79d1",
"pkg-name": "extra",
"pkg-src": {
@@ -327,10 +327,11 @@
],
"exe-depends": [],
"flags": {
+ "long-paths": true,
"os-string": true
},
- "id": "file-io-0.1.5-030d74d2deeebe5a5c518c6d089149a2658022669c39950365b9d88aef49ab24",
- "pkg-cabal-sha256": "1d68a81fa684d006b1ec73836cebe3de9a54688836915fe3e56a20389846bb4e",
+ "id": "file-io-0.1.6-e346ab5388456943eecff1e02c02f84f7eb31096860abab60332efa6fcd9b132",
+ "pkg-cabal-sha256": "5e3466f15993e499db47d79d09c519d6d37c143cfe94fb46dd218bf2f6f3fd39",
"pkg-name": "file-io",
"pkg-src": {
"repo": {
@@ -339,8 +340,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "310a19e4c792de4d30c912bc71ff3becb40818d7c796b9999bcd0979dab87d5b",
- "pkg-version": "0.1.5",
+ "pkg-src-sha256": "0ae9986dc1df9a87d17a16c6c0afb2bfc72dcd2a2ec7a40faf1257bf1fa4d710",
+ "pkg-version": "0.1.6",
"style": "global",
"type": "configured"
},
@@ -362,13 +363,13 @@
"component-name": "lib",
"depends": [
"base-4.20.1.0-74ce",
- "directory-1.3.9.0-bc0abf1c9a7228ee1760bbac658c674241239232ec9dc6a223395f8d33cdbc6f",
- "extra-1.8.1-6452350613ef63f957f44fa19ae757371c555b4185640a391f035b8b3ffa3430",
+ "directory-1.3.10.1-d7c5ae457f4c5a5ee456b29f3efd804a381bcb038d5f0a1024df9588d4b56c5f",
+ "extra-1.8.1-baa06287ee4c1eef41c25e2d8fcc11d82a789d78b021fd4dd307e91e970125f8",
"filepath-1.5.4.0-a42f"
],
"exe-depends": [],
"flags": {},
- "id": "filepattern-0.1.3-3f07fc062335aec98d061c5e544644f6a52e83ad1366b0a192ca3d0ec3e19955",
+ "id": "filepattern-0.1.3-1b7183f1be372e821a82edc7f5ef72fd8cf73bacdbcaa303a275f9067a98f64a",
"pkg-cabal-sha256": "372c1733d83b90045eb29da9f010fed79bfef8771ce65eb126a1d83ecc54a9a2",
"pkg-name": "filepattern",
"pkg-src": {
@@ -413,18 +414,18 @@
"type": "pre-existing"
},
{
- "build-info": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.2/ghc-platform-0.1.0.0/build-info.json",
+ "build-info": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.2/ghc-platform-0.1.0.0/build-info.json",
"component-name": "lib",
"depends": [
"base-4.20.1.0-74ce"
],
- "dist-dir": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.2/ghc-platform-0.1.0.0",
+ "dist-dir": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.2/ghc-platform-0.1.0.0",
"exe-depends": [],
"flags": {},
"id": "ghc-platform-0.1.0.0-inplace",
"pkg-name": "ghc-platform",
"pkg-src": {
- "path": "/home/mangoiv/Devel/ghc-devops/hadrian/../libraries/ghc-platform",
+ "path": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/../libraries/ghc-platform",
"type": "local"
},
"pkg-version": "0.1.0.0",
@@ -441,24 +442,24 @@
"type": "pre-existing"
},
{
- "build-info": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.2/ghc-toolchain-0.1.0.0/build-info.json",
+ "build-info": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.2/ghc-toolchain-0.1.0.0/build-info.json",
"component-name": "lib",
"depends": [
"base-4.20.1.0-74ce",
- "directory-1.3.9.0-bc0abf1c9a7228ee1760bbac658c674241239232ec9dc6a223395f8d33cdbc6f",
+ "directory-1.3.10.1-d7c5ae457f4c5a5ee456b29f3efd804a381bcb038d5f0a1024df9588d4b56c5f",
"filepath-1.5.4.0-a42f",
"ghc-platform-0.1.0.0-inplace",
- "process-1.6.26.1-c30ac68264906babef7aace4ddda01c1e6f5189cce819bc80c4cdfafd9214a9f",
+ "process-1.6.27.0-fcf894449fb405685995be689bc18913a7cfcc8957727f67a92149882bc70369",
"text-2.1.2-50ed",
"transformers-0.6.1.1-be28"
],
- "dist-dir": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.2/ghc-toolchain-0.1.0.0",
+ "dist-dir": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.2/ghc-toolchain-0.1.0.0",
"exe-depends": [],
"flags": {},
"id": "ghc-toolchain-0.1.0.0-inplace",
"pkg-name": "ghc-toolchain",
"pkg-src": {
- "path": "/home/mangoiv/Devel/ghc-devops/hadrian/../utils/ghc-toolchain",
+ "path": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/../utils/ghc-toolchain",
"type": "local"
},
"pkg-version": "0.1.0.0",
@@ -466,30 +467,30 @@
"type": "configured"
},
{
- "bin-file": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.2/hadrian-0.1.0.0/x/hadrian/build/hadrian/hadrian",
- "build-info": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.2/hadrian-0.1.0.0/x/hadrian/build-info.json",
+ "bin-file": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.2/hadrian-0.1.0.0/x/hadrian/build/hadrian/hadrian",
+ "build-info": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.2/hadrian-0.1.0.0/x/hadrian/build-info.json",
"component-name": "exe:hadrian",
"depends": [
- "Cabal-3.16.0.0-bb4228e7cf7d865c2cde42e3cf10df52629123f6e6cf0bc80a1eb3074f26a6fc",
+ "Cabal-3.16.1.0-54a9f614db8e2077390f0e040fb1f3a695dc900d66750af71c58b10629c2ec10",
"base-4.20.1.0-74ce",
"base16-bytestring-1.0.2.0-0e70cce92eaf2507b59eeeb7f53df0af42d0c00d1a3ebce61267da114e952711",
"bytestring-0.12.2.0-4189",
"containers-0.7-dc17",
"cryptohash-sha256-0.11.102.1-878bf7ec844d7b04ef3da6363bffd68245a34fb94101cd7f2eec9fba90263359",
- "directory-1.3.9.0-bc0abf1c9a7228ee1760bbac658c674241239232ec9dc6a223395f8d33cdbc6f",
- "extra-1.8.1-6452350613ef63f957f44fa19ae757371c555b4185640a391f035b8b3ffa3430",
+ "directory-1.3.10.1-d7c5ae457f4c5a5ee456b29f3efd804a381bcb038d5f0a1024df9588d4b56c5f",
+ "extra-1.8.1-baa06287ee4c1eef41c25e2d8fcc11d82a789d78b021fd4dd307e91e970125f8",
"filepath-1.5.4.0-a42f",
"ghc-platform-0.1.0.0-inplace",
"ghc-toolchain-0.1.0.0-inplace",
"mtl-2.3.1-6ec5",
"parsec-3.1.18.0-71aa",
- "shake-0.19.8-5a8ba86bf6dc6a8f2569ff13c9897ba12b5d8d2cc57e77989f5e8b5d5203451e",
+ "shake-0.19.9-b6a5e682aa04fd94ea93cfefe2fb8bda09a90e9acdbea3ded70a0f19491bab69",
"text-2.1.2-50ed",
"time-1.12.2-9b4e",
"transformers-0.6.1.1-be28",
- "unordered-containers-0.2.21-09a41b81d4520f82e2b010bc72aef1afa15e9a6308e48439919865e9dbc68a7d"
+ "unordered-containers-0.2.21-041a4ca2dffcaca5f70b0c1f2cf2263a90ade38066ac07dfcde0978d819eba03"
],
- "dist-dir": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.2/hadrian-0.1.0.0/x/hadrian",
+ "dist-dir": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.2/hadrian-0.1.0.0/x/hadrian",
"exe-depends": [],
"flags": {
"selftest": false,
@@ -498,7 +499,7 @@
"id": "hadrian-0.1.0.0-inplace-hadrian",
"pkg-name": "hadrian",
"pkg-src": {
- "path": "/home/mangoiv/Devel/ghc-devops/hadrian/.",
+ "path": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/.",
"type": "local"
},
"pkg-version": "0.1.0.0",
@@ -513,8 +514,6 @@
"containers-0.7-dc17",
"deepseq-1.5.0.0-4587",
"filepath-1.5.4.0-a42f",
- "ghc-bignum-1.3-47df",
- "ghc-prim-0.12.0-46d2",
"os-string-2.0.4-6908",
"text-2.1.2-50ed"
],
@@ -523,8 +522,8 @@
"arch-native": false,
"random-initial-seed": false
},
- "id": "hashable-1.5.0.0-70ae99e97232bc15240145cf47971627a45fa2b149ffe7e3b6b7755dde835c04",
- "pkg-cabal-sha256": "2f23146cbe0325029927b221647695a4c7d6e97548ff731110979e34361f58ef",
+ "id": "hashable-1.5.1.0-221a6ba43f8229c1c8cb27327148666568a5050ae73f029113a5a35449667c98",
+ "pkg-cabal-sha256": "140fc5adad166f7b527567cbd26ff481e8da4a66bdfc84be3ddf28dbeb66f275",
"pkg-name": "hashable",
"pkg-src": {
"repo": {
@@ -533,8 +532,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "e58b3a8e18da5f6cd7e937e5fd683e500bb1f8276b3768269759119ca0cddb6a",
- "pkg-version": "1.5.0.0",
+ "pkg-src-sha256": "ed0b7c10ce92c9ffe45420dadc38c6d39db486ff3633ff13567cc9f75f79b112",
+ "pkg-version": "1.5.1.0",
"style": "global",
"type": "configured"
},
@@ -683,7 +682,7 @@
"exe-depends": [],
"flags": {},
"id": "primitive-0.9.1.0-916b3ab9708ff846a921a10875f0708f9499c32f00dc7a922ce7075c1546c811",
- "pkg-cabal-sha256": "dfdd6572944c11e69208237dd32a2eb9d975b4f4e9064a7b8dc952cb0e256846",
+ "pkg-cabal-sha256": "756b222c715bc6ef5ba81fa69cdbaa20c5c53beb6f16f174b8bacc93a6d239f0",
"pkg-name": "primitive",
"pkg-src": {
"repo": {
@@ -702,7 +701,7 @@
"depends": [
"base-4.20.1.0-74ce",
"deepseq-1.5.0.0-4587",
- "directory-1.3.9.0-bc0abf1c9a7228ee1760bbac658c674241239232ec9dc6a223395f8d33cdbc6f",
+ "directory-1.3.10.1-d7c5ae457f4c5a5ee456b29f3efd804a381bcb038d5f0a1024df9588d4b56c5f",
"filepath-1.5.4.0-a42f",
"os-string-2.0.4-6908",
"unix-2.8.6.0-cf2a"
@@ -711,8 +710,8 @@
"flags": {
"os-string": true
},
- "id": "process-1.6.26.1-c30ac68264906babef7aace4ddda01c1e6f5189cce819bc80c4cdfafd9214a9f",
- "pkg-cabal-sha256": "6def2e07c317f52f4d30c43e92f97b7bc5f7c27cb1270d386b15dce429e1180f",
+ "id": "process-1.6.27.0-fcf894449fb405685995be689bc18913a7cfcc8957727f67a92149882bc70369",
+ "pkg-cabal-sha256": "0512ed17e7e312a6412859abcb37a7bcc81b94cbb797a1ba2a8c78a5d3055d32",
"pkg-name": "process",
"pkg-src": {
"repo": {
@@ -721,8 +720,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "b431d2ba77607986fa84b42ff3021505b8637b8d638ff664be3292dd44aba8f0",
- "pkg-version": "1.6.26.1",
+ "pkg-src-sha256": "ee9ef426d33560f3d06b237fbb8156c530c6b265cca8ef0c63abadb12769b693",
+ "pkg-version": "1.6.27.0",
"style": "global",
"type": "configured"
},
@@ -733,12 +732,12 @@
"bytestring-0.12.2.0-4189",
"deepseq-1.5.0.0-4587",
"mtl-2.3.1-6ec5",
- "splitmix-0.1.3.1-a41cf20cb2eeab0969721b0d12a9b37363b2da016299c5c1d0b01089654d5ae8",
+ "splitmix-0.1.3.2-0910741e084b906054b6d847596f202c422aa35aa4a80bff5bf69b9f06bac8a9",
"transformers-0.6.1.1-be28"
],
"exe-depends": [],
"flags": {},
- "id": "random-1.3.1-1e7c2e74105820b2709b7458495611c1083fc4297e7da7ae8a0dc7f2535b353f",
+ "id": "random-1.3.1-61354a0da1d8fc506f49bd828fc847fa5b14ed4a189e7a1f5290937d57153400",
"pkg-cabal-sha256": "0b4f649c3e78713b2ccad1535251ee34b148237fb2229d7058c2b1d9ccc324b8",
"pkg-name": "random",
"pkg-src": {
@@ -767,22 +766,22 @@
"binary-0.8.9.3-3042",
"bytestring-0.12.2.0-4189",
"deepseq-1.5.0.0-4587",
- "directory-1.3.9.0-bc0abf1c9a7228ee1760bbac658c674241239232ec9dc6a223395f8d33cdbc6f",
- "extra-1.8.1-6452350613ef63f957f44fa19ae757371c555b4185640a391f035b8b3ffa3430",
+ "directory-1.3.10.1-d7c5ae457f4c5a5ee456b29f3efd804a381bcb038d5f0a1024df9588d4b56c5f",
+ "extra-1.8.1-baa06287ee4c1eef41c25e2d8fcc11d82a789d78b021fd4dd307e91e970125f8",
"filepath-1.5.4.0-a42f",
- "filepattern-0.1.3-3f07fc062335aec98d061c5e544644f6a52e83ad1366b0a192ca3d0ec3e19955",
- "hashable-1.5.0.0-70ae99e97232bc15240145cf47971627a45fa2b149ffe7e3b6b7755dde835c04",
+ "filepattern-0.1.3-1b7183f1be372e821a82edc7f5ef72fd8cf73bacdbcaa303a275f9067a98f64a",
+ "hashable-1.5.1.0-221a6ba43f8229c1c8cb27327148666568a5050ae73f029113a5a35449667c98",
"heaps-0.4.1-194d3342e9b73424a7c36aaa12346a3b0d6aff9d85ed6d06dbd611c12a31538c",
"js-dgtable-0.5.2-7074ea3d97a967859004dee66d52f01ed823452503dd8e74d446f65643ba7d0e",
"js-flot-0.8.3-6457f695c38582020fee2a53c0a573df008ce2e2a080dc5623ee73782a1300da",
"js-jquery-3.7.1-138965900c559d500321728bfce3fe7bbde7784a8c2aa62d30e4d6d487b65c89",
"primitive-0.9.1.0-916b3ab9708ff846a921a10875f0708f9499c32f00dc7a922ce7075c1546c811",
- "process-1.6.26.1-c30ac68264906babef7aace4ddda01c1e6f5189cce819bc80c4cdfafd9214a9f",
- "random-1.3.1-1e7c2e74105820b2709b7458495611c1083fc4297e7da7ae8a0dc7f2535b353f",
+ "process-1.6.27.0-fcf894449fb405685995be689bc18913a7cfcc8957727f67a92149882bc70369",
+ "random-1.3.1-61354a0da1d8fc506f49bd828fc847fa5b14ed4a189e7a1f5290937d57153400",
"time-1.12.2-9b4e",
"transformers-0.6.1.1-be28",
"unix-2.8.6.0-cf2a",
- "unordered-containers-0.2.21-09a41b81d4520f82e2b010bc72aef1afa15e9a6308e48439919865e9dbc68a7d",
+ "unordered-containers-0.2.21-041a4ca2dffcaca5f70b0c1f2cf2263a90ade38066ac07dfcde0978d819eba03",
"utf8-string-1.0.2-b0d2096ba4d273705865702df8d475821acf73964a13b1e0cb27e1be9559bd33"
],
"exe-depends": [],
@@ -792,8 +791,8 @@
"portable": false,
"threaded": true
},
- "id": "shake-0.19.8-5a8ba86bf6dc6a8f2569ff13c9897ba12b5d8d2cc57e77989f5e8b5d5203451e",
- "pkg-cabal-sha256": "03c8f06de478e07ad6fde95984c9206920106d0d8432ecb7ab825ef108d45382",
+ "id": "shake-0.19.9-b6a5e682aa04fd94ea93cfefe2fb8bda09a90e9acdbea3ded70a0f19491bab69",
+ "pkg-cabal-sha256": "8704f35f7857f71adef2b74aafb5580f73dfab004a804718d418c16798f4a186",
"pkg-name": "shake",
"pkg-src": {
"repo": {
@@ -802,35 +801,35 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "6384e33a26a2590bf33719e88881076b899ac4b5340c1c9271e4caa37e9d6535",
- "pkg-version": "0.19.8",
+ "pkg-src-sha256": "4176d6e38c3b7813f019f2377466d9f01db842056eec1cdaa8a23b80ceddcb8a",
+ "pkg-version": "0.19.9",
"style": "global",
"type": "configured"
},
{
- "bin-file": "/home/mangoiv/.cabal/store/ghc-9.10.2-2194/shake-0.19.8-e-shake-43dd09db6088437883ec2a1060f663c4696679efda041bf6fe26fd4585b1ac60/bin/shake",
+ "bin-file": "/home/terrorjack/.cabal/store/ghc-9.10.2-2194/shake-0.19.9-e-shake-ab6a9a263a9def62e0b88aac9f9958691d0216675758a625741e23895db8604a/bin/shake",
"component-name": "exe:shake",
"depends": [
"base-4.20.1.0-74ce",
"binary-0.8.9.3-3042",
"bytestring-0.12.2.0-4189",
"deepseq-1.5.0.0-4587",
- "directory-1.3.9.0-bc0abf1c9a7228ee1760bbac658c674241239232ec9dc6a223395f8d33cdbc6f",
- "extra-1.8.1-6452350613ef63f957f44fa19ae757371c555b4185640a391f035b8b3ffa3430",
+ "directory-1.3.10.1-d7c5ae457f4c5a5ee456b29f3efd804a381bcb038d5f0a1024df9588d4b56c5f",
+ "extra-1.8.1-baa06287ee4c1eef41c25e2d8fcc11d82a789d78b021fd4dd307e91e970125f8",
"filepath-1.5.4.0-a42f",
- "filepattern-0.1.3-3f07fc062335aec98d061c5e544644f6a52e83ad1366b0a192ca3d0ec3e19955",
- "hashable-1.5.0.0-70ae99e97232bc15240145cf47971627a45fa2b149ffe7e3b6b7755dde835c04",
+ "filepattern-0.1.3-1b7183f1be372e821a82edc7f5ef72fd8cf73bacdbcaa303a275f9067a98f64a",
+ "hashable-1.5.1.0-221a6ba43f8229c1c8cb27327148666568a5050ae73f029113a5a35449667c98",
"heaps-0.4.1-194d3342e9b73424a7c36aaa12346a3b0d6aff9d85ed6d06dbd611c12a31538c",
"js-dgtable-0.5.2-7074ea3d97a967859004dee66d52f01ed823452503dd8e74d446f65643ba7d0e",
"js-flot-0.8.3-6457f695c38582020fee2a53c0a573df008ce2e2a080dc5623ee73782a1300da",
"js-jquery-3.7.1-138965900c559d500321728bfce3fe7bbde7784a8c2aa62d30e4d6d487b65c89",
"primitive-0.9.1.0-916b3ab9708ff846a921a10875f0708f9499c32f00dc7a922ce7075c1546c811",
- "process-1.6.26.1-c30ac68264906babef7aace4ddda01c1e6f5189cce819bc80c4cdfafd9214a9f",
- "random-1.3.1-1e7c2e74105820b2709b7458495611c1083fc4297e7da7ae8a0dc7f2535b353f",
+ "process-1.6.27.0-fcf894449fb405685995be689bc18913a7cfcc8957727f67a92149882bc70369",
+ "random-1.3.1-61354a0da1d8fc506f49bd828fc847fa5b14ed4a189e7a1f5290937d57153400",
"time-1.12.2-9b4e",
"transformers-0.6.1.1-be28",
"unix-2.8.6.0-cf2a",
- "unordered-containers-0.2.21-09a41b81d4520f82e2b010bc72aef1afa15e9a6308e48439919865e9dbc68a7d",
+ "unordered-containers-0.2.21-041a4ca2dffcaca5f70b0c1f2cf2263a90ade38066ac07dfcde0978d819eba03",
"utf8-string-1.0.2-b0d2096ba4d273705865702df8d475821acf73964a13b1e0cb27e1be9559bd33"
],
"exe-depends": [],
@@ -840,8 +839,8 @@
"portable": false,
"threaded": true
},
- "id": "shake-0.19.8-e-shake-43dd09db6088437883ec2a1060f663c4696679efda041bf6fe26fd4585b1ac60",
- "pkg-cabal-sha256": "03c8f06de478e07ad6fde95984c9206920106d0d8432ecb7ab825ef108d45382",
+ "id": "shake-0.19.9-e-shake-ab6a9a263a9def62e0b88aac9f9958691d0216675758a625741e23895db8604a",
+ "pkg-cabal-sha256": "8704f35f7857f71adef2b74aafb5580f73dfab004a804718d418c16798f4a186",
"pkg-name": "shake",
"pkg-src": {
"repo": {
@@ -850,8 +849,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "6384e33a26a2590bf33719e88881076b899ac4b5340c1c9271e4caa37e9d6535",
- "pkg-version": "0.19.8",
+ "pkg-src-sha256": "4176d6e38c3b7813f019f2377466d9f01db842056eec1cdaa8a23b80ceddcb8a",
+ "pkg-version": "0.19.9",
"style": "global",
"type": "configured"
},
@@ -865,8 +864,8 @@
"flags": {
"optimised-mixer": false
},
- "id": "splitmix-0.1.3.1-a41cf20cb2eeab0969721b0d12a9b37363b2da016299c5c1d0b01089654d5ae8",
- "pkg-cabal-sha256": "d0002f3fb16a2cc5ba8afd47a6657726386edccfe8853d310e3479fe3b45201b",
+ "id": "splitmix-0.1.3.2-0910741e084b906054b6d847596f202c422aa35aa4a80bff5bf69b9f06bac8a9",
+ "pkg-cabal-sha256": "a557cff65eed1f70f3a3b468423cd58e7a9a9564c5cc00c76a13de64dec9bcbd",
"pkg-name": "splitmix",
"pkg-src": {
"repo": {
@@ -875,8 +874,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "b6bcd0d79bd4fe40975c8ebe803be2f3bfbf6006069a59745a325a0df3f86270",
- "pkg-version": "0.1.3.1",
+ "pkg-src-sha256": "a61d4e8b30f5a16526d7d31171b674ae7924d2207f378060d13363bd8794de8c",
+ "pkg-version": "0.1.3.2",
"style": "global",
"type": "configured"
},
@@ -954,15 +953,15 @@
"depends": [
"base-4.20.1.0-74ce",
"deepseq-1.5.0.0-4587",
- "hashable-1.5.0.0-70ae99e97232bc15240145cf47971627a45fa2b149ffe7e3b6b7755dde835c04",
+ "hashable-1.5.1.0-221a6ba43f8229c1c8cb27327148666568a5050ae73f029113a5a35449667c98",
"template-haskell-2.22.0.0-0187"
],
"exe-depends": [],
"flags": {
"debug": false
},
- "id": "unordered-containers-0.2.21-09a41b81d4520f82e2b010bc72aef1afa15e9a6308e48439919865e9dbc68a7d",
- "pkg-cabal-sha256": "bcff64f48fba1e25bf9b5346d1c3545402cd2f1293b411435e7850ccb62884e5",
+ "id": "unordered-containers-0.2.21-041a4ca2dffcaca5f70b0c1f2cf2263a90ade38066ac07dfcde0978d819eba03",
+ "pkg-cabal-sha256": "c5de1fb3377ed3c5f4cd851a771d1acc5c37d2f6bef0a499295c0e8857da5605",
"pkg-name": "unordered-containers",
"pkg-src": {
"repo": {
=====================================
hadrian/bootstrap/plan-9_10_3.json
=====================================
@@ -8,18 +8,18 @@
{
"component-name": "lib",
"depends": [
- "Cabal-syntax-3.16.0.0-03a7980019401e4ed3ba94b6a0a0fc792ffed8c9a176e019aefb9e385d2a8cf3",
+ "Cabal-syntax-3.16.1.0-a236216a5dc39e095c27636e489ab8d04e476769259d20c4353e6a73cdc72b90",
"array-0.5.8.0-52e5",
"base-4.20.2.0-17a7",
"bytestring-0.12.2.0-efe2",
"containers-0.7-7106",
"deepseq-1.5.0.0-fb1c",
- "directory-1.3.9.0-64d1f1de6fbd78d54b089780e35d8da2e0fc39e25fc149fddd1a5b78c5856c19",
+ "directory-1.3.10.1-eb020d809605602a187ebfcda553b5d4459432e607631013de7fb458111b134c",
"filepath-1.5.4.0-d558",
"mtl-2.3.1-d091",
"parsec-3.1.18.0-100a",
"pretty-1.1.3.6-8ad3",
- "process-1.6.26.1-9ab411618ab29f5dfb85122b9ba8970f6d63bb7b47236c8cf810fc03e247593d",
+ "process-1.6.27.0-b88932f7b166079d4ac8676a9030c1d296fb2f8739cb237c0e3228b98ecc42b6",
"time-1.12.2-f935",
"transformers-0.6.1.1-d0a2",
"unix-2.8.7.0-b856"
@@ -28,8 +28,8 @@
"flags": {
"git-rev": false
},
- "id": "Cabal-3.16.0.0-1fc09959375366a38145af84c14db5d742fae78d6115dbde05ce51b01e21045f",
- "pkg-cabal-sha256": "9972c2bd263168a20bd990962a68d4fd024f50c30a00519a6b942e8871d1bd67",
+ "id": "Cabal-3.16.1.0-c0407845849191db5b96e64afa4bfb521691629c58c89783091a9ede11fd8d30",
+ "pkg-cabal-sha256": "6d7ee02dc18c7485d597d131356cee25b3b95778746f39b73bca1d2d44b12e11",
"pkg-name": "Cabal",
"pkg-src": {
"repo": {
@@ -38,8 +38,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "d68aa36d47f550a45e72a2079aeef28d42add0a2e97f131b4d491c6cf1491b0c",
- "pkg-version": "3.16.0.0",
+ "pkg-src-sha256": "c6b8a37d21dc67c1c68d36a6258ea529391d4bb8bcc1caebaa9b483d93ef2556",
+ "pkg-version": "3.16.1.0",
"style": "global",
"type": "configured"
},
@@ -52,7 +52,7 @@
"bytestring-0.12.2.0-efe2",
"containers-0.7-7106",
"deepseq-1.5.0.0-fb1c",
- "directory-1.3.9.0-64d1f1de6fbd78d54b089780e35d8da2e0fc39e25fc149fddd1a5b78c5856c19",
+ "directory-1.3.10.1-eb020d809605602a187ebfcda553b5d4459432e607631013de7fb458111b134c",
"filepath-1.5.4.0-d558",
"mtl-2.3.1-d091",
"parsec-3.1.18.0-100a",
@@ -62,11 +62,11 @@
"transformers-0.6.1.1-d0a2"
],
"exe-depends": [
- "alex-3.5.4.0-e-alex-66e9116dd579c762483dd43f76da0968658367387d7376f2794ed449e5844e32"
+ "alex-3.5.4.0-e-alex-0cade3aef1e7c45aed52b2adac265733ce3279e5538352ca7abb4c797fbb00ca"
],
"flags": {},
- "id": "Cabal-syntax-3.16.0.0-03a7980019401e4ed3ba94b6a0a0fc792ffed8c9a176e019aefb9e385d2a8cf3",
- "pkg-cabal-sha256": "6a35036763557301876c5b7a448de4f1cb54fe1e223ff6c4c0c1fdd6df635a65",
+ "id": "Cabal-syntax-3.16.1.0-a236216a5dc39e095c27636e489ab8d04e476769259d20c4353e6a73cdc72b90",
+ "pkg-cabal-sha256": "4c3f63157628d3dc359c2af16ffe683b84a54857694c9d59d5fb7232f4679957",
"pkg-name": "Cabal-syntax",
"pkg-src": {
"repo": {
@@ -75,23 +75,23 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "f45bd417052f4638787871957380365aab5cabfc7b110ec52df4e445c656809f",
- "pkg-version": "3.16.0.0",
+ "pkg-src-sha256": "6bd561449b4d96aca4896e17a34cb504d1b0fd83b338380d131b16b50b36bda7",
+ "pkg-version": "3.16.1.0",
"style": "global",
"type": "configured"
},
{
- "bin-file": "/home/mangoiv/.cabal/store/ghc-9.10.3-147c/alex-3.5.4.0-e-alex-66e9116dd579c762483dd43f76da0968658367387d7376f2794ed449e5844e32/bin/alex",
+ "bin-file": "/home/terrorjack/.cabal/store/ghc-9.10.3-147c/alex-3.5.4.0-e-alex-0cade3aef1e7c45aed52b2adac265733ce3279e5538352ca7abb4c797fbb00ca/bin/alex",
"component-name": "exe:alex",
"depends": [
"array-0.5.8.0-52e5",
"base-4.20.2.0-17a7",
"containers-0.7-7106",
- "directory-1.3.9.0-64d1f1de6fbd78d54b089780e35d8da2e0fc39e25fc149fddd1a5b78c5856c19"
+ "directory-1.3.10.1-eb020d809605602a187ebfcda553b5d4459432e607631013de7fb458111b134c"
],
"exe-depends": [],
"flags": {},
- "id": "alex-3.5.4.0-e-alex-66e9116dd579c762483dd43f76da0968658367387d7376f2794ed449e5844e32",
+ "id": "alex-3.5.4.0-e-alex-0cade3aef1e7c45aed52b2adac265733ce3279e5538352ca7abb4c797fbb00ca",
"pkg-cabal-sha256": "38b3481bb0d5eb58c9dd6579e7904859372c3c0c82a8db86e58177649c289621",
"pkg-name": "alex",
"pkg-src": {
@@ -249,7 +249,7 @@
"component-name": "lib",
"depends": [
"base-4.20.2.0-17a7",
- "file-io-0.1.5-4e018768f2b3537117dd95ef1ebaf6ef9faa5d28652fad791f5c31a3f54319d0",
+ "file-io-0.1.6-09cd1f129dc1d254b01779cfd4f89401859373e2c56eb25f3913054ccfdb34af",
"filepath-1.5.4.0-d558",
"os-string-2.0.7-78d7",
"time-1.12.2-f935",
@@ -259,8 +259,8 @@
"flags": {
"os-string": true
},
- "id": "directory-1.3.9.0-64d1f1de6fbd78d54b089780e35d8da2e0fc39e25fc149fddd1a5b78c5856c19",
- "pkg-cabal-sha256": "ed6784601c6a800d4c1e40efbc9f20cf33ae2f25cac301fc239f9c91947b816b",
+ "id": "directory-1.3.10.1-eb020d809605602a187ebfcda553b5d4459432e607631013de7fb458111b134c",
+ "pkg-cabal-sha256": "bf029d8163ccae567cc6a5aa8f654016f58dfc066d15f8a8f7c74b8ca855562c",
"pkg-name": "directory",
"pkg-src": {
"repo": {
@@ -269,8 +269,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "20a24846117fc5f8751d974b7de07210a161989410467e9adca525381b8e64cc",
- "pkg-version": "1.3.9.0",
+ "pkg-src-sha256": "d8f718851aa25a357ca4a6d0204eb357a69383b9b69528d18e2bca463e94c259",
+ "pkg-version": "1.3.10.1",
"style": "global",
"type": "configured"
},
@@ -292,15 +292,15 @@
"depends": [
"base-4.20.2.0-17a7",
"clock-0.8.4-060313280706c73602ee99afcb3bc47ef20d95522e54d794386cb36b0a05883d",
- "directory-1.3.9.0-64d1f1de6fbd78d54b089780e35d8da2e0fc39e25fc149fddd1a5b78c5856c19",
+ "directory-1.3.10.1-eb020d809605602a187ebfcda553b5d4459432e607631013de7fb458111b134c",
"filepath-1.5.4.0-d558",
- "process-1.6.26.1-9ab411618ab29f5dfb85122b9ba8970f6d63bb7b47236c8cf810fc03e247593d",
+ "process-1.6.27.0-b88932f7b166079d4ac8676a9030c1d296fb2f8739cb237c0e3228b98ecc42b6",
"time-1.12.2-f935",
"unix-2.8.7.0-b856"
],
"exe-depends": [],
"flags": {},
- "id": "extra-1.8.1-8297c89e12d79a17372f73a4e8a6036eb8e04e7033854c84d1ef4b0114f368e2",
+ "id": "extra-1.8.1-fdca8a752fbce7321b47176aa976e3cace072edbd9b3a6eb8b78c5642e852ecc",
"pkg-cabal-sha256": "b9c360f2f3fbff5ca04656b7aa0a91b254ac7de7e4b959bae4688a178ffd79d1",
"pkg-name": "extra",
"pkg-src": {
@@ -327,10 +327,11 @@
],
"exe-depends": [],
"flags": {
+ "long-paths": true,
"os-string": true
},
- "id": "file-io-0.1.5-4e018768f2b3537117dd95ef1ebaf6ef9faa5d28652fad791f5c31a3f54319d0",
- "pkg-cabal-sha256": "1d68a81fa684d006b1ec73836cebe3de9a54688836915fe3e56a20389846bb4e",
+ "id": "file-io-0.1.6-09cd1f129dc1d254b01779cfd4f89401859373e2c56eb25f3913054ccfdb34af",
+ "pkg-cabal-sha256": "5e3466f15993e499db47d79d09c519d6d37c143cfe94fb46dd218bf2f6f3fd39",
"pkg-name": "file-io",
"pkg-src": {
"repo": {
@@ -339,8 +340,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "310a19e4c792de4d30c912bc71ff3becb40818d7c796b9999bcd0979dab87d5b",
- "pkg-version": "0.1.5",
+ "pkg-src-sha256": "0ae9986dc1df9a87d17a16c6c0afb2bfc72dcd2a2ec7a40faf1257bf1fa4d710",
+ "pkg-version": "0.1.6",
"style": "global",
"type": "configured"
},
@@ -362,13 +363,13 @@
"component-name": "lib",
"depends": [
"base-4.20.2.0-17a7",
- "directory-1.3.9.0-64d1f1de6fbd78d54b089780e35d8da2e0fc39e25fc149fddd1a5b78c5856c19",
- "extra-1.8.1-8297c89e12d79a17372f73a4e8a6036eb8e04e7033854c84d1ef4b0114f368e2",
+ "directory-1.3.10.1-eb020d809605602a187ebfcda553b5d4459432e607631013de7fb458111b134c",
+ "extra-1.8.1-fdca8a752fbce7321b47176aa976e3cace072edbd9b3a6eb8b78c5642e852ecc",
"filepath-1.5.4.0-d558"
],
"exe-depends": [],
"flags": {},
- "id": "filepattern-0.1.3-791de9e2a8b82be938dfd4972723ecd7cf17e066ba8b9b556e81193d2b8a54aa",
+ "id": "filepattern-0.1.3-26883dcea976f7041d9d4efca66a1ecda414c720e35a73ad266fbe9dd3777249",
"pkg-cabal-sha256": "372c1733d83b90045eb29da9f010fed79bfef8771ce65eb126a1d83ecc54a9a2",
"pkg-name": "filepattern",
"pkg-src": {
@@ -413,18 +414,18 @@
"type": "pre-existing"
},
{
- "build-info": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.3/ghc-platform-0.1.0.0/build-info.json",
+ "build-info": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.3/ghc-platform-0.1.0.0/build-info.json",
"component-name": "lib",
"depends": [
"base-4.20.2.0-17a7"
],
- "dist-dir": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.3/ghc-platform-0.1.0.0",
+ "dist-dir": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.3/ghc-platform-0.1.0.0",
"exe-depends": [],
"flags": {},
"id": "ghc-platform-0.1.0.0-inplace",
"pkg-name": "ghc-platform",
"pkg-src": {
- "path": "/home/mangoiv/Devel/ghc-devops/hadrian/../libraries/ghc-platform",
+ "path": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/../libraries/ghc-platform",
"type": "local"
},
"pkg-version": "0.1.0.0",
@@ -441,24 +442,24 @@
"type": "pre-existing"
},
{
- "build-info": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.3/ghc-toolchain-0.1.0.0/build-info.json",
+ "build-info": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.3/ghc-toolchain-0.1.0.0/build-info.json",
"component-name": "lib",
"depends": [
"base-4.20.2.0-17a7",
- "directory-1.3.9.0-64d1f1de6fbd78d54b089780e35d8da2e0fc39e25fc149fddd1a5b78c5856c19",
+ "directory-1.3.10.1-eb020d809605602a187ebfcda553b5d4459432e607631013de7fb458111b134c",
"filepath-1.5.4.0-d558",
"ghc-platform-0.1.0.0-inplace",
- "process-1.6.26.1-9ab411618ab29f5dfb85122b9ba8970f6d63bb7b47236c8cf810fc03e247593d",
+ "process-1.6.27.0-b88932f7b166079d4ac8676a9030c1d296fb2f8739cb237c0e3228b98ecc42b6",
"text-2.1.3-408f",
"transformers-0.6.1.1-d0a2"
],
- "dist-dir": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.3/ghc-toolchain-0.1.0.0",
+ "dist-dir": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.3/ghc-toolchain-0.1.0.0",
"exe-depends": [],
"flags": {},
"id": "ghc-toolchain-0.1.0.0-inplace",
"pkg-name": "ghc-toolchain",
"pkg-src": {
- "path": "/home/mangoiv/Devel/ghc-devops/hadrian/../utils/ghc-toolchain",
+ "path": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/../utils/ghc-toolchain",
"type": "local"
},
"pkg-version": "0.1.0.0",
@@ -466,30 +467,30 @@
"type": "configured"
},
{
- "bin-file": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.3/hadrian-0.1.0.0/x/hadrian/build/hadrian/hadrian",
- "build-info": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.3/hadrian-0.1.0.0/x/hadrian/build-info.json",
+ "bin-file": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.3/hadrian-0.1.0.0/x/hadrian/build/hadrian/hadrian",
+ "build-info": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.3/hadrian-0.1.0.0/x/hadrian/build-info.json",
"component-name": "exe:hadrian",
"depends": [
- "Cabal-3.16.0.0-1fc09959375366a38145af84c14db5d742fae78d6115dbde05ce51b01e21045f",
+ "Cabal-3.16.1.0-c0407845849191db5b96e64afa4bfb521691629c58c89783091a9ede11fd8d30",
"base-4.20.2.0-17a7",
"base16-bytestring-1.0.2.0-29bd0f434dcdbe2901a6d2585dcfa06ab67b022e6476b19392956b4d59214cb5",
"bytestring-0.12.2.0-efe2",
"containers-0.7-7106",
"cryptohash-sha256-0.11.102.1-e3db2c08cb1862103e90660deb943771942019a3f79d1b5d2e2f89a83496be5b",
- "directory-1.3.9.0-64d1f1de6fbd78d54b089780e35d8da2e0fc39e25fc149fddd1a5b78c5856c19",
- "extra-1.8.1-8297c89e12d79a17372f73a4e8a6036eb8e04e7033854c84d1ef4b0114f368e2",
+ "directory-1.3.10.1-eb020d809605602a187ebfcda553b5d4459432e607631013de7fb458111b134c",
+ "extra-1.8.1-fdca8a752fbce7321b47176aa976e3cace072edbd9b3a6eb8b78c5642e852ecc",
"filepath-1.5.4.0-d558",
"ghc-platform-0.1.0.0-inplace",
"ghc-toolchain-0.1.0.0-inplace",
"mtl-2.3.1-d091",
"parsec-3.1.18.0-100a",
- "shake-0.19.8-f16fa553db07869c458804ae423114174b75639ad9013e5bc6766952998ec62c",
+ "shake-0.19.9-26be79a6006eb77bc8ea6c4acdbf2fdf4bd5963e60c8a411987e39d04d22bc6a",
"text-2.1.3-408f",
"time-1.12.2-f935",
"transformers-0.6.1.1-d0a2",
- "unordered-containers-0.2.21-a462eed1393d6ff025e5bec5eb79f3581415a808c08d359ca9fc7df4f119fc5b"
+ "unordered-containers-0.2.21-de14d6502d6610b3da465ec3c7b65467a132d9410b6d014fa79e4f2ed5eed79b"
],
- "dist-dir": "/home/mangoiv/Devel/ghc-devops/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.3/hadrian-0.1.0.0/x/hadrian",
+ "dist-dir": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.10.3/hadrian-0.1.0.0/x/hadrian",
"exe-depends": [],
"flags": {
"selftest": false,
@@ -498,7 +499,7 @@
"id": "hadrian-0.1.0.0-inplace-hadrian",
"pkg-name": "hadrian",
"pkg-src": {
- "path": "/home/mangoiv/Devel/ghc-devops/hadrian/.",
+ "path": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/.",
"type": "local"
},
"pkg-version": "0.1.0.0",
@@ -513,8 +514,6 @@
"containers-0.7-7106",
"deepseq-1.5.0.0-fb1c",
"filepath-1.5.4.0-d558",
- "ghc-bignum-1.3-a320",
- "ghc-prim-0.12.0-1026",
"os-string-2.0.7-78d7",
"text-2.1.3-408f"
],
@@ -523,8 +522,8 @@
"arch-native": false,
"random-initial-seed": false
},
- "id": "hashable-1.5.0.0-fbc6319c3043562f8849687c71968b7c9b9c98c5037818885c785e5a11159175",
- "pkg-cabal-sha256": "2f23146cbe0325029927b221647695a4c7d6e97548ff731110979e34361f58ef",
+ "id": "hashable-1.5.1.0-2d5fa92ede5f3cbf172e7c1bc385ec56324436c24c54b1f5427cced823e62798",
+ "pkg-cabal-sha256": "140fc5adad166f7b527567cbd26ff481e8da4a66bdfc84be3ddf28dbeb66f275",
"pkg-name": "hashable",
"pkg-src": {
"repo": {
@@ -533,8 +532,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "e58b3a8e18da5f6cd7e937e5fd683e500bb1f8276b3768269759119ca0cddb6a",
- "pkg-version": "1.5.0.0",
+ "pkg-src-sha256": "ed0b7c10ce92c9ffe45420dadc38c6d39db486ff3633ff13567cc9f75f79b112",
+ "pkg-version": "1.5.1.0",
"style": "global",
"type": "configured"
},
@@ -683,7 +682,7 @@
"exe-depends": [],
"flags": {},
"id": "primitive-0.9.1.0-e2522b12496b6a54d32fc50d63739542886af0b7de9fbbaf49c9dd11cd266d3b",
- "pkg-cabal-sha256": "dfdd6572944c11e69208237dd32a2eb9d975b4f4e9064a7b8dc952cb0e256846",
+ "pkg-cabal-sha256": "756b222c715bc6ef5ba81fa69cdbaa20c5c53beb6f16f174b8bacc93a6d239f0",
"pkg-name": "primitive",
"pkg-src": {
"repo": {
@@ -702,7 +701,7 @@
"depends": [
"base-4.20.2.0-17a7",
"deepseq-1.5.0.0-fb1c",
- "directory-1.3.9.0-64d1f1de6fbd78d54b089780e35d8da2e0fc39e25fc149fddd1a5b78c5856c19",
+ "directory-1.3.10.1-eb020d809605602a187ebfcda553b5d4459432e607631013de7fb458111b134c",
"filepath-1.5.4.0-d558",
"os-string-2.0.7-78d7",
"unix-2.8.7.0-b856"
@@ -711,8 +710,8 @@
"flags": {
"os-string": true
},
- "id": "process-1.6.26.1-9ab411618ab29f5dfb85122b9ba8970f6d63bb7b47236c8cf810fc03e247593d",
- "pkg-cabal-sha256": "6def2e07c317f52f4d30c43e92f97b7bc5f7c27cb1270d386b15dce429e1180f",
+ "id": "process-1.6.27.0-b88932f7b166079d4ac8676a9030c1d296fb2f8739cb237c0e3228b98ecc42b6",
+ "pkg-cabal-sha256": "0512ed17e7e312a6412859abcb37a7bcc81b94cbb797a1ba2a8c78a5d3055d32",
"pkg-name": "process",
"pkg-src": {
"repo": {
@@ -721,8 +720,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "b431d2ba77607986fa84b42ff3021505b8637b8d638ff664be3292dd44aba8f0",
- "pkg-version": "1.6.26.1",
+ "pkg-src-sha256": "ee9ef426d33560f3d06b237fbb8156c530c6b265cca8ef0c63abadb12769b693",
+ "pkg-version": "1.6.27.0",
"style": "global",
"type": "configured"
},
@@ -733,12 +732,12 @@
"bytestring-0.12.2.0-efe2",
"deepseq-1.5.0.0-fb1c",
"mtl-2.3.1-d091",
- "splitmix-0.1.3.1-2497eda1b2ad3dd4603f9e45b06d44f8acbc71f8cdcc7e94891c377f236e65cb",
+ "splitmix-0.1.3.2-c83f4d58ab16b6f5b056f510da5d5d15305079b344ea8af2e2c32cba8feb45a1",
"transformers-0.6.1.1-d0a2"
],
"exe-depends": [],
"flags": {},
- "id": "random-1.3.1-5a4ad890bf4a6fd8bc779232c29beb64beb64a814dc12690e4defdac73a82056",
+ "id": "random-1.3.1-ccb1f9d87f65efda1133fc92efd4b7ce4a1b1373f8ce5f89a381e314c148ad77",
"pkg-cabal-sha256": "0b4f649c3e78713b2ccad1535251ee34b148237fb2229d7058c2b1d9ccc324b8",
"pkg-name": "random",
"pkg-src": {
@@ -761,29 +760,28 @@
"type": "pre-existing"
},
{
- "bin-file": "/home/mangoiv/.cabal/store/ghc-9.10.3-147c/shake-0.19.8-e-shake-80f2131796bb8cd22b5c12230b0fdabea41341d05ba99d3bc2f69e0d681e0270/bin/shake",
- "component-name": "exe:shake",
+ "component-name": "lib",
"depends": [
"base-4.20.2.0-17a7",
"binary-0.8.9.3-bc9a",
"bytestring-0.12.2.0-efe2",
"deepseq-1.5.0.0-fb1c",
- "directory-1.3.9.0-64d1f1de6fbd78d54b089780e35d8da2e0fc39e25fc149fddd1a5b78c5856c19",
- "extra-1.8.1-8297c89e12d79a17372f73a4e8a6036eb8e04e7033854c84d1ef4b0114f368e2",
+ "directory-1.3.10.1-eb020d809605602a187ebfcda553b5d4459432e607631013de7fb458111b134c",
+ "extra-1.8.1-fdca8a752fbce7321b47176aa976e3cace072edbd9b3a6eb8b78c5642e852ecc",
"filepath-1.5.4.0-d558",
- "filepattern-0.1.3-791de9e2a8b82be938dfd4972723ecd7cf17e066ba8b9b556e81193d2b8a54aa",
- "hashable-1.5.0.0-fbc6319c3043562f8849687c71968b7c9b9c98c5037818885c785e5a11159175",
+ "filepattern-0.1.3-26883dcea976f7041d9d4efca66a1ecda414c720e35a73ad266fbe9dd3777249",
+ "hashable-1.5.1.0-2d5fa92ede5f3cbf172e7c1bc385ec56324436c24c54b1f5427cced823e62798",
"heaps-0.4.1-1631132b9f053f489025ff0a32e89ef5e5c6065e3922a212956f0c8772ba3ea5",
"js-dgtable-0.5.2-e8654d5f11fa53f1860bede6ee2578bcab00dd4074e6fed49d4c07bcb8c54ad7",
"js-flot-0.8.3-77004cc9c053a7c71b0fd8a0b4d0b87cec1659cb0fb481224c22d7bc416defce",
"js-jquery-3.7.1-db5e10cac67bd5e02afee78a3399584298241b31b8dee43c241f36bd0a30ebeb",
"primitive-0.9.1.0-e2522b12496b6a54d32fc50d63739542886af0b7de9fbbaf49c9dd11cd266d3b",
- "process-1.6.26.1-9ab411618ab29f5dfb85122b9ba8970f6d63bb7b47236c8cf810fc03e247593d",
- "random-1.3.1-5a4ad890bf4a6fd8bc779232c29beb64beb64a814dc12690e4defdac73a82056",
+ "process-1.6.27.0-b88932f7b166079d4ac8676a9030c1d296fb2f8739cb237c0e3228b98ecc42b6",
+ "random-1.3.1-ccb1f9d87f65efda1133fc92efd4b7ce4a1b1373f8ce5f89a381e314c148ad77",
"time-1.12.2-f935",
"transformers-0.6.1.1-d0a2",
"unix-2.8.7.0-b856",
- "unordered-containers-0.2.21-a462eed1393d6ff025e5bec5eb79f3581415a808c08d359ca9fc7df4f119fc5b",
+ "unordered-containers-0.2.21-de14d6502d6610b3da465ec3c7b65467a132d9410b6d014fa79e4f2ed5eed79b",
"utf8-string-1.0.2-9495a6e5177dde48f97fd29258c60c235f167f07cae65feb857609dd8598ca03"
],
"exe-depends": [],
@@ -793,8 +791,8 @@
"portable": false,
"threaded": true
},
- "id": "shake-0.19.8-e-shake-80f2131796bb8cd22b5c12230b0fdabea41341d05ba99d3bc2f69e0d681e0270",
- "pkg-cabal-sha256": "03c8f06de478e07ad6fde95984c9206920106d0d8432ecb7ab825ef108d45382",
+ "id": "shake-0.19.9-26be79a6006eb77bc8ea6c4acdbf2fdf4bd5963e60c8a411987e39d04d22bc6a",
+ "pkg-cabal-sha256": "8704f35f7857f71adef2b74aafb5580f73dfab004a804718d418c16798f4a186",
"pkg-name": "shake",
"pkg-src": {
"repo": {
@@ -803,34 +801,35 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "6384e33a26a2590bf33719e88881076b899ac4b5340c1c9271e4caa37e9d6535",
- "pkg-version": "0.19.8",
+ "pkg-src-sha256": "4176d6e38c3b7813f019f2377466d9f01db842056eec1cdaa8a23b80ceddcb8a",
+ "pkg-version": "0.19.9",
"style": "global",
"type": "configured"
},
{
- "component-name": "lib",
+ "bin-file": "/home/terrorjack/.cabal/store/ghc-9.10.3-147c/shake-0.19.9-e-shake-d11a1d72dcbb7ae8bbbcc3c5beca2a27804002847263f88d31741ee864e9d031/bin/shake",
+ "component-name": "exe:shake",
"depends": [
"base-4.20.2.0-17a7",
"binary-0.8.9.3-bc9a",
"bytestring-0.12.2.0-efe2",
"deepseq-1.5.0.0-fb1c",
- "directory-1.3.9.0-64d1f1de6fbd78d54b089780e35d8da2e0fc39e25fc149fddd1a5b78c5856c19",
- "extra-1.8.1-8297c89e12d79a17372f73a4e8a6036eb8e04e7033854c84d1ef4b0114f368e2",
+ "directory-1.3.10.1-eb020d809605602a187ebfcda553b5d4459432e607631013de7fb458111b134c",
+ "extra-1.8.1-fdca8a752fbce7321b47176aa976e3cace072edbd9b3a6eb8b78c5642e852ecc",
"filepath-1.5.4.0-d558",
- "filepattern-0.1.3-791de9e2a8b82be938dfd4972723ecd7cf17e066ba8b9b556e81193d2b8a54aa",
- "hashable-1.5.0.0-fbc6319c3043562f8849687c71968b7c9b9c98c5037818885c785e5a11159175",
+ "filepattern-0.1.3-26883dcea976f7041d9d4efca66a1ecda414c720e35a73ad266fbe9dd3777249",
+ "hashable-1.5.1.0-2d5fa92ede5f3cbf172e7c1bc385ec56324436c24c54b1f5427cced823e62798",
"heaps-0.4.1-1631132b9f053f489025ff0a32e89ef5e5c6065e3922a212956f0c8772ba3ea5",
"js-dgtable-0.5.2-e8654d5f11fa53f1860bede6ee2578bcab00dd4074e6fed49d4c07bcb8c54ad7",
"js-flot-0.8.3-77004cc9c053a7c71b0fd8a0b4d0b87cec1659cb0fb481224c22d7bc416defce",
"js-jquery-3.7.1-db5e10cac67bd5e02afee78a3399584298241b31b8dee43c241f36bd0a30ebeb",
"primitive-0.9.1.0-e2522b12496b6a54d32fc50d63739542886af0b7de9fbbaf49c9dd11cd266d3b",
- "process-1.6.26.1-9ab411618ab29f5dfb85122b9ba8970f6d63bb7b47236c8cf810fc03e247593d",
- "random-1.3.1-5a4ad890bf4a6fd8bc779232c29beb64beb64a814dc12690e4defdac73a82056",
+ "process-1.6.27.0-b88932f7b166079d4ac8676a9030c1d296fb2f8739cb237c0e3228b98ecc42b6",
+ "random-1.3.1-ccb1f9d87f65efda1133fc92efd4b7ce4a1b1373f8ce5f89a381e314c148ad77",
"time-1.12.2-f935",
"transformers-0.6.1.1-d0a2",
"unix-2.8.7.0-b856",
- "unordered-containers-0.2.21-a462eed1393d6ff025e5bec5eb79f3581415a808c08d359ca9fc7df4f119fc5b",
+ "unordered-containers-0.2.21-de14d6502d6610b3da465ec3c7b65467a132d9410b6d014fa79e4f2ed5eed79b",
"utf8-string-1.0.2-9495a6e5177dde48f97fd29258c60c235f167f07cae65feb857609dd8598ca03"
],
"exe-depends": [],
@@ -840,8 +839,8 @@
"portable": false,
"threaded": true
},
- "id": "shake-0.19.8-f16fa553db07869c458804ae423114174b75639ad9013e5bc6766952998ec62c",
- "pkg-cabal-sha256": "03c8f06de478e07ad6fde95984c9206920106d0d8432ecb7ab825ef108d45382",
+ "id": "shake-0.19.9-e-shake-d11a1d72dcbb7ae8bbbcc3c5beca2a27804002847263f88d31741ee864e9d031",
+ "pkg-cabal-sha256": "8704f35f7857f71adef2b74aafb5580f73dfab004a804718d418c16798f4a186",
"pkg-name": "shake",
"pkg-src": {
"repo": {
@@ -850,8 +849,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "6384e33a26a2590bf33719e88881076b899ac4b5340c1c9271e4caa37e9d6535",
- "pkg-version": "0.19.8",
+ "pkg-src-sha256": "4176d6e38c3b7813f019f2377466d9f01db842056eec1cdaa8a23b80ceddcb8a",
+ "pkg-version": "0.19.9",
"style": "global",
"type": "configured"
},
@@ -865,8 +864,8 @@
"flags": {
"optimised-mixer": false
},
- "id": "splitmix-0.1.3.1-2497eda1b2ad3dd4603f9e45b06d44f8acbc71f8cdcc7e94891c377f236e65cb",
- "pkg-cabal-sha256": "d0002f3fb16a2cc5ba8afd47a6657726386edccfe8853d310e3479fe3b45201b",
+ "id": "splitmix-0.1.3.2-c83f4d58ab16b6f5b056f510da5d5d15305079b344ea8af2e2c32cba8feb45a1",
+ "pkg-cabal-sha256": "a557cff65eed1f70f3a3b468423cd58e7a9a9564c5cc00c76a13de64dec9bcbd",
"pkg-name": "splitmix",
"pkg-src": {
"repo": {
@@ -875,8 +874,8 @@
},
"type": "repo-tar"
},
- "pkg-src-sha256": "b6bcd0d79bd4fe40975c8ebe803be2f3bfbf6006069a59745a325a0df3f86270",
- "pkg-version": "0.1.3.1",
+ "pkg-src-sha256": "a61d4e8b30f5a16526d7d31171b674ae7924d2207f378060d13363bd8794de8c",
+ "pkg-version": "0.1.3.2",
"style": "global",
"type": "configured"
},
@@ -954,15 +953,15 @@
"depends": [
"base-4.20.2.0-17a7",
"deepseq-1.5.0.0-fb1c",
- "hashable-1.5.0.0-fbc6319c3043562f8849687c71968b7c9b9c98c5037818885c785e5a11159175",
+ "hashable-1.5.1.0-2d5fa92ede5f3cbf172e7c1bc385ec56324436c24c54b1f5427cced823e62798",
"template-haskell-2.22.0.0-b851"
],
"exe-depends": [],
"flags": {
"debug": false
},
- "id": "unordered-containers-0.2.21-a462eed1393d6ff025e5bec5eb79f3581415a808c08d359ca9fc7df4f119fc5b",
- "pkg-cabal-sha256": "bcff64f48fba1e25bf9b5346d1c3545402cd2f1293b411435e7850ccb62884e5",
+ "id": "unordered-containers-0.2.21-de14d6502d6610b3da465ec3c7b65467a132d9410b6d014fa79e4f2ed5eed79b",
+ "pkg-cabal-sha256": "c5de1fb3377ed3c5f4cd851a771d1acc5c37d2f6bef0a499295c0e8857da5605",
"pkg-name": "unordered-containers",
"pkg-src": {
"repo": {
=====================================
hadrian/bootstrap/plan-9_12_1.json
=====================================
@@ -1,7 +1,8 @@
{
"arch": "x86_64",
- "cabal-lib-version": "3.14.2.0",
- "cabal-version": "3.14.2.0",
+ "cabal-lib-version": "3.16.0.0",
+ "cabal-version": "3.16.0.0",
+ "compiler-abi": "c8f6",
"compiler-id": "ghc-9.12.1",
"install-plan": [
{
@@ -82,7 +83,7 @@
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
@@ -130,7 +131,7 @@
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
@@ -168,7 +169,7 @@
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
@@ -227,18 +228,18 @@
],
"exe-depends": [],
"flags": {},
- "id": "extra-1.8-4b1c85eb357367298a0f8341bc33a1c6a85d257b2cff766ba764d28132c03c9a",
- "pkg-cabal-sha256": "57d9200fbea2e88e05e0be35925511764827b1c86d3214106b0b610f331fc40c",
+ "id": "extra-1.8.1-2a7bf7ebab6b939ddf8b142c55c43f32f77c506c4af69de19b793beb0ab46dfa",
+ "pkg-cabal-sha256": "b9c360f2f3fbff5ca04656b7aa0a91b254ac7de7e4b959bae4688a178ffd79d1",
"pkg-name": "extra",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
- "pkg-src-sha256": "2fa4ce5eae50560bba80f1883913cf2ed52b3d87fd290dae27d838c94f5389a1",
- "pkg-version": "1.8",
+ "pkg-src-sha256": "66a7d6d718646a7bda822d67550dc185c6e25ad1f7fecf06fc132e300098b598",
+ "pkg-version": "1.8.1",
"style": "global",
"type": "configured"
},
@@ -275,18 +276,18 @@
"depends": [
"base-4.21.0.0-04ae",
"directory-1.3.9.0-b987",
- "extra-1.8-4b1c85eb357367298a0f8341bc33a1c6a85d257b2cff766ba764d28132c03c9a",
+ "extra-1.8.1-2a7bf7ebab6b939ddf8b142c55c43f32f77c506c4af69de19b793beb0ab46dfa",
"filepath-1.5.4.0-591b"
],
"exe-depends": [],
"flags": {},
- "id": "filepattern-0.1.3-ffc260889400f0217318420382074eb826b8563d497ebf444773ebaf5782a020",
+ "id": "filepattern-0.1.3-c0d7025eeadd4d2e24ee551d70dc5c277bae9251e04dc8bb1fe6edb9ba7997b0",
"pkg-cabal-sha256": "372c1733d83b90045eb29da9f010fed79bfef8771ce65eb126a1d83ecc54a9a2",
"pkg-name": "filepattern",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
@@ -328,18 +329,18 @@
"type": "pre-existing"
},
{
- "build-info": "/home/hugin/Documents/haskell/ghc/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.1/ghc-platform-0.1.0.0/build-info.json",
+ "build-info": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.1/ghc-platform-0.1.0.0/build-info.json",
"component-name": "lib",
"depends": [
"base-4.21.0.0-04ae"
],
- "dist-dir": "/home/hugin/Documents/haskell/ghc/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.1/ghc-platform-0.1.0.0",
+ "dist-dir": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.1/ghc-platform-0.1.0.0",
"exe-depends": [],
"flags": {},
"id": "ghc-platform-0.1.0.0-inplace",
"pkg-name": "ghc-platform",
"pkg-src": {
- "path": "/home/hugin/Documents/haskell/ghc/hadrian/../libraries/ghc-platform",
+ "path": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/../libraries/ghc-platform",
"type": "local"
},
"pkg-version": "0.1.0.0",
@@ -356,7 +357,7 @@
"type": "pre-existing"
},
{
- "build-info": "/home/hugin/Documents/haskell/ghc/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.1/ghc-toolchain-0.1.0.0/build-info.json",
+ "build-info": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.1/ghc-toolchain-0.1.0.0/build-info.json",
"component-name": "lib",
"depends": [
"base-4.21.0.0-04ae",
@@ -367,13 +368,13 @@
"text-2.1.2-32e7",
"transformers-0.6.1.2-3984"
],
- "dist-dir": "/home/hugin/Documents/haskell/ghc/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.1/ghc-toolchain-0.1.0.0",
+ "dist-dir": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.1/ghc-toolchain-0.1.0.0",
"exe-depends": [],
"flags": {},
"id": "ghc-toolchain-0.1.0.0-inplace",
"pkg-name": "ghc-toolchain",
"pkg-src": {
- "path": "/home/hugin/Documents/haskell/ghc/hadrian/../utils/ghc-toolchain",
+ "path": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/../utils/ghc-toolchain",
"type": "local"
},
"pkg-version": "0.1.0.0",
@@ -381,8 +382,8 @@
"type": "configured"
},
{
- "bin-file": "/home/hugin/Documents/haskell/ghc/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.1/hadrian-0.1.0.0/x/hadrian/build/hadrian/hadrian",
- "build-info": "/home/hugin/Documents/haskell/ghc/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.1/hadrian-0.1.0.0/x/hadrian/build-info.json",
+ "bin-file": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.1/hadrian-0.1.0.0/x/hadrian/build/hadrian/hadrian",
+ "build-info": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.1/hadrian-0.1.0.0/x/hadrian/build-info.json",
"component-name": "exe:hadrian",
"depends": [
"Cabal-3.14.1.0-d450",
@@ -392,19 +393,19 @@
"containers-0.7-b9f1",
"cryptohash-sha256-0.11.102.1-a38fa518cdafccf6b7fb487c7c22c7d7a39e9a4ed21a9326b6ff00396940218e",
"directory-1.3.9.0-b987",
- "extra-1.8-4b1c85eb357367298a0f8341bc33a1c6a85d257b2cff766ba764d28132c03c9a",
+ "extra-1.8.1-2a7bf7ebab6b939ddf8b142c55c43f32f77c506c4af69de19b793beb0ab46dfa",
"filepath-1.5.4.0-591b",
"ghc-platform-0.1.0.0-inplace",
"ghc-toolchain-0.1.0.0-inplace",
"mtl-2.3.1-f979",
"parsec-3.1.17.0-672c",
- "shake-0.19.8-e7ac2f7226d51380df94f6a45634794cc2163b061467728c5bc4eccc59e15e58",
+ "shake-0.19.9-f3dec07a304bf873f37c64523342cf16e2d28c943d742e966ec28716817eb0e2",
"text-2.1.2-32e7",
"time-1.14-835f",
"transformers-0.6.1.2-3984",
- "unordered-containers-0.2.20-f6c7df8c7c3767047f77bec1dfa61909e7d294e71bf7aef3a6fe70c5b5181664"
+ "unordered-containers-0.2.21-1db7997cd6cc0f725b31c0c0bffb929521d12a4be7083999748a58f663a02bdc"
],
- "dist-dir": "/home/hugin/Documents/haskell/ghc/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.1/hadrian-0.1.0.0/x/hadrian",
+ "dist-dir": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.1/hadrian-0.1.0.0/x/hadrian",
"exe-depends": [],
"flags": {
"selftest": false,
@@ -413,7 +414,7 @@
"id": "hadrian-0.1.0.0-inplace-hadrian",
"pkg-name": "hadrian",
"pkg-src": {
- "path": "/home/hugin/Documents/haskell/ghc/hadrian/.",
+ "path": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/.",
"type": "local"
},
"pkg-version": "0.1.0.0",
@@ -428,8 +429,6 @@
"containers-0.7-b9f1",
"deepseq-1.5.1.0-59fd",
"filepath-1.5.4.0-591b",
- "ghc-bignum-1.3-eca6",
- "ghc-prim-0.13.0-92ce",
"os-string-2.0.7-e623",
"text-2.1.2-32e7"
],
@@ -438,18 +437,18 @@
"arch-native": false,
"random-initial-seed": false
},
- "id": "hashable-1.5.0.0-60a421cbabef02a4ae554bdc309488c63019e81f2cf56bae3c1c9f5cc1cdf3c3",
- "pkg-cabal-sha256": "2f23146cbe0325029927b221647695a4c7d6e97548ff731110979e34361f58ef",
+ "id": "hashable-1.5.1.0-0f5bdfbdd06174d808ad627e8efcf0d85d979b7f868dd338b3ecd9e1437cb205",
+ "pkg-cabal-sha256": "140fc5adad166f7b527567cbd26ff481e8da4a66bdfc84be3ddf28dbeb66f275",
"pkg-name": "hashable",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
- "pkg-src-sha256": "e58b3a8e18da5f6cd7e937e5fd683e500bb1f8276b3768269759119ca0cddb6a",
- "pkg-version": "1.5.0.0",
+ "pkg-src-sha256": "ed0b7c10ce92c9ffe45420dadc38c6d39db486ff3633ff13567cc9f75f79b112",
+ "pkg-version": "1.5.1.0",
"style": "global",
"type": "configured"
},
@@ -466,7 +465,7 @@
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
@@ -488,7 +487,7 @@
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
@@ -510,7 +509,7 @@
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
@@ -526,18 +525,18 @@
],
"exe-depends": [],
"flags": {},
- "id": "js-jquery-3.3.1-4351f78c53afd3f78d82c3a4ab0af7edf91faffd99c0c5ab7b759ebc23ab1df0",
- "pkg-cabal-sha256": "59ab6c79159549ef94b584abce8e6d3b336014c2cce1337b59a8f637e2856df5",
+ "id": "js-jquery-3.7.1-5dbd92c94f26a3a49be1c2da3c571420b70da2a10b8c59163ad0269ea3e9a2c2",
+ "pkg-cabal-sha256": "fdbdfd4d413848c678a3737f2b985a5db66b796c6847b1ae08246ea3795c0ba2",
"pkg-name": "js-jquery",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
- "pkg-src-sha256": "e0e0681f0da1130ede4e03a051630ea439c458cb97216cdb01771ebdbe44069b",
- "pkg-version": "3.3.1",
+ "pkg-src-sha256": "a087fa01a1c52f5386d43f5355f64841c5a4b56b53720090d66b5aa00bfeb106",
+ "pkg-version": "3.7.1",
"style": "global",
"type": "configured"
},
@@ -597,18 +596,18 @@
],
"exe-depends": [],
"flags": {},
- "id": "primitive-0.9.0.0-f39a71a5b723b5033663f748f326052840035b2c633dcc66b4c1d0598086f7ea",
- "pkg-cabal-sha256": "de20bf4eff1f972088854c8efda6eaca2d3147aff62232c3707f059152638759",
+ "id": "primitive-0.9.1.0-092ea06d27d0018f0265db602eb68ef37d31afaa62e9b0d36c43d7f3ecc420cf",
+ "pkg-cabal-sha256": "756b222c715bc6ef5ba81fa69cdbaa20c5c53beb6f16f174b8bacc93a6d239f0",
"pkg-name": "primitive",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
- "pkg-src-sha256": "696d4bd291c94d736142d6182117dca4258d3ef28bfefdb649ac8b5ecd0999c7",
- "pkg-version": "0.9.0.0",
+ "pkg-src-sha256": "44b4de41813c7bc5db8a57f87c3612a069b65086946268ba165097252ebd3d76",
+ "pkg-version": "0.9.1.0",
"style": "global",
"type": "configured"
},
@@ -632,23 +631,23 @@
"bytestring-0.12.2.0-28a0",
"deepseq-1.5.1.0-59fd",
"mtl-2.3.1-f979",
- "splitmix-0.1.1-57945b1a961cc3b91e7b188b588bb314ad60c743eb9ea86e0fc646e5a85fea90",
+ "splitmix-0.1.3.2-099435e68152a9e68749c8b767f4de6136ff18501236a716ae0c8fb2bb2131ba",
"transformers-0.6.1.2-3984"
],
"exe-depends": [],
"flags": {},
- "id": "random-1.3.0-ee67ed5f034cc09f315670720f6874e464c62a092b436d91dfb650e36fa8c7e1",
- "pkg-cabal-sha256": "e5b7016e43a8f4822ebcf8cacaaa737beb62d370b988b5c69e95105d9f0fd582",
+ "id": "random-1.3.1-0670578465e28c7ba4a324bd377de121e0a3d0c9a0eec3eac5cf1eefc197b4db",
+ "pkg-cabal-sha256": "0b4f649c3e78713b2ccad1535251ee34b148237fb2229d7058c2b1d9ccc324b8",
"pkg-name": "random",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
- "pkg-src-sha256": "6b5067e65625d777e31f151f5fcec351091d9de832183ca2a2a864e1cfd4f1b1",
- "pkg-version": "1.3.0",
+ "pkg-src-sha256": "d840ac83f265b0cfa2a678f8ec78627eb50cf9be2f067c52c8a4239c29b71a35",
+ "pkg-version": "1.3.1",
"style": "global",
"type": "configured"
},
@@ -660,7 +659,7 @@
"type": "pre-existing"
},
{
- "bin-file": "/home/hugin/.local/state/cabal/store/ghc-9.12.1-c8f6/shake-0.19.8-e-shake-3318fd6945103d96e99360e0c896e6f47af260c193a02b9e67e017cebd4b8792/bin/shake",
+ "bin-file": "/home/terrorjack/.cabal/store/ghc-9.12.1-c8f6/shake-0.19.9-e-shake-a3accfaf25a38ee17ec3ae1c4230bf20b22b98fbb903fdaaef213227fb1688be/bin/shake",
"component-name": "exe:shake",
"depends": [
"base-4.21.0.0-04ae",
@@ -668,21 +667,21 @@
"bytestring-0.12.2.0-28a0",
"deepseq-1.5.1.0-59fd",
"directory-1.3.9.0-b987",
- "extra-1.8-4b1c85eb357367298a0f8341bc33a1c6a85d257b2cff766ba764d28132c03c9a",
+ "extra-1.8.1-2a7bf7ebab6b939ddf8b142c55c43f32f77c506c4af69de19b793beb0ab46dfa",
"filepath-1.5.4.0-591b",
- "filepattern-0.1.3-ffc260889400f0217318420382074eb826b8563d497ebf444773ebaf5782a020",
- "hashable-1.5.0.0-60a421cbabef02a4ae554bdc309488c63019e81f2cf56bae3c1c9f5cc1cdf3c3",
+ "filepattern-0.1.3-c0d7025eeadd4d2e24ee551d70dc5c277bae9251e04dc8bb1fe6edb9ba7997b0",
+ "hashable-1.5.1.0-0f5bdfbdd06174d808ad627e8efcf0d85d979b7f868dd338b3ecd9e1437cb205",
"heaps-0.4.1-1127b6d20a93566a642ebc940110586ac179d9d6ecb906d2fec62823e6dcd740",
"js-dgtable-0.5.2-797e6af748f8b5551d03a690369b10f490ab5e9e9297b4eb641f62799f29f39a",
"js-flot-0.8.3-7255b1bcd41f7762ff6388a4e40d37625094eeb652ab2f9e82e0b890a383b21e",
- "js-jquery-3.3.1-4351f78c53afd3f78d82c3a4ab0af7edf91faffd99c0c5ab7b759ebc23ab1df0",
- "primitive-0.9.0.0-f39a71a5b723b5033663f748f326052840035b2c633dcc66b4c1d0598086f7ea",
+ "js-jquery-3.7.1-5dbd92c94f26a3a49be1c2da3c571420b70da2a10b8c59163ad0269ea3e9a2c2",
+ "primitive-0.9.1.0-092ea06d27d0018f0265db602eb68ef37d31afaa62e9b0d36c43d7f3ecc420cf",
"process-1.6.25.0-6078",
- "random-1.3.0-ee67ed5f034cc09f315670720f6874e464c62a092b436d91dfb650e36fa8c7e1",
+ "random-1.3.1-0670578465e28c7ba4a324bd377de121e0a3d0c9a0eec3eac5cf1eefc197b4db",
"time-1.14-835f",
"transformers-0.6.1.2-3984",
"unix-2.8.6.0-f196",
- "unordered-containers-0.2.20-f6c7df8c7c3767047f77bec1dfa61909e7d294e71bf7aef3a6fe70c5b5181664",
+ "unordered-containers-0.2.21-1db7997cd6cc0f725b31c0c0bffb929521d12a4be7083999748a58f663a02bdc",
"utf8-string-1.0.2-389936316709f8718f734574296e703a81de6e02fa6be6acb62451e49b631ec5"
],
"exe-depends": [],
@@ -692,18 +691,18 @@
"portable": false,
"threaded": true
},
- "id": "shake-0.19.8-e-shake-3318fd6945103d96e99360e0c896e6f47af260c193a02b9e67e017cebd4b8792",
- "pkg-cabal-sha256": "03c8f06de478e07ad6fde95984c9206920106d0d8432ecb7ab825ef108d45382",
+ "id": "shake-0.19.9-e-shake-a3accfaf25a38ee17ec3ae1c4230bf20b22b98fbb903fdaaef213227fb1688be",
+ "pkg-cabal-sha256": "8704f35f7857f71adef2b74aafb5580f73dfab004a804718d418c16798f4a186",
"pkg-name": "shake",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
- "pkg-src-sha256": "6384e33a26a2590bf33719e88881076b899ac4b5340c1c9271e4caa37e9d6535",
- "pkg-version": "0.19.8",
+ "pkg-src-sha256": "4176d6e38c3b7813f019f2377466d9f01db842056eec1cdaa8a23b80ceddcb8a",
+ "pkg-version": "0.19.9",
"style": "global",
"type": "configured"
},
@@ -715,21 +714,21 @@
"bytestring-0.12.2.0-28a0",
"deepseq-1.5.1.0-59fd",
"directory-1.3.9.0-b987",
- "extra-1.8-4b1c85eb357367298a0f8341bc33a1c6a85d257b2cff766ba764d28132c03c9a",
+ "extra-1.8.1-2a7bf7ebab6b939ddf8b142c55c43f32f77c506c4af69de19b793beb0ab46dfa",
"filepath-1.5.4.0-591b",
- "filepattern-0.1.3-ffc260889400f0217318420382074eb826b8563d497ebf444773ebaf5782a020",
- "hashable-1.5.0.0-60a421cbabef02a4ae554bdc309488c63019e81f2cf56bae3c1c9f5cc1cdf3c3",
+ "filepattern-0.1.3-c0d7025eeadd4d2e24ee551d70dc5c277bae9251e04dc8bb1fe6edb9ba7997b0",
+ "hashable-1.5.1.0-0f5bdfbdd06174d808ad627e8efcf0d85d979b7f868dd338b3ecd9e1437cb205",
"heaps-0.4.1-1127b6d20a93566a642ebc940110586ac179d9d6ecb906d2fec62823e6dcd740",
"js-dgtable-0.5.2-797e6af748f8b5551d03a690369b10f490ab5e9e9297b4eb641f62799f29f39a",
"js-flot-0.8.3-7255b1bcd41f7762ff6388a4e40d37625094eeb652ab2f9e82e0b890a383b21e",
- "js-jquery-3.3.1-4351f78c53afd3f78d82c3a4ab0af7edf91faffd99c0c5ab7b759ebc23ab1df0",
- "primitive-0.9.0.0-f39a71a5b723b5033663f748f326052840035b2c633dcc66b4c1d0598086f7ea",
+ "js-jquery-3.7.1-5dbd92c94f26a3a49be1c2da3c571420b70da2a10b8c59163ad0269ea3e9a2c2",
+ "primitive-0.9.1.0-092ea06d27d0018f0265db602eb68ef37d31afaa62e9b0d36c43d7f3ecc420cf",
"process-1.6.25.0-6078",
- "random-1.3.0-ee67ed5f034cc09f315670720f6874e464c62a092b436d91dfb650e36fa8c7e1",
+ "random-1.3.1-0670578465e28c7ba4a324bd377de121e0a3d0c9a0eec3eac5cf1eefc197b4db",
"time-1.14-835f",
"transformers-0.6.1.2-3984",
"unix-2.8.6.0-f196",
- "unordered-containers-0.2.20-f6c7df8c7c3767047f77bec1dfa61909e7d294e71bf7aef3a6fe70c5b5181664",
+ "unordered-containers-0.2.21-1db7997cd6cc0f725b31c0c0bffb929521d12a4be7083999748a58f663a02bdc",
"utf8-string-1.0.2-389936316709f8718f734574296e703a81de6e02fa6be6acb62451e49b631ec5"
],
"exe-depends": [],
@@ -739,18 +738,18 @@
"portable": false,
"threaded": true
},
- "id": "shake-0.19.8-e7ac2f7226d51380df94f6a45634794cc2163b061467728c5bc4eccc59e15e58",
- "pkg-cabal-sha256": "03c8f06de478e07ad6fde95984c9206920106d0d8432ecb7ab825ef108d45382",
+ "id": "shake-0.19.9-f3dec07a304bf873f37c64523342cf16e2d28c943d742e966ec28716817eb0e2",
+ "pkg-cabal-sha256": "8704f35f7857f71adef2b74aafb5580f73dfab004a804718d418c16798f4a186",
"pkg-name": "shake",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
- "pkg-src-sha256": "6384e33a26a2590bf33719e88881076b899ac4b5340c1c9271e4caa37e9d6535",
- "pkg-version": "0.19.8",
+ "pkg-src-sha256": "4176d6e38c3b7813f019f2377466d9f01db842056eec1cdaa8a23b80ceddcb8a",
+ "pkg-version": "0.19.9",
"style": "global",
"type": "configured"
},
@@ -764,18 +763,18 @@
"flags": {
"optimised-mixer": false
},
- "id": "splitmix-0.1.1-57945b1a961cc3b91e7b188b588bb314ad60c743eb9ea86e0fc646e5a85fea90",
- "pkg-cabal-sha256": "8f92088f1c51c8d4569279a07565f8aa6b534a6735615b2295d2961dec8f1783",
+ "id": "splitmix-0.1.3.2-099435e68152a9e68749c8b767f4de6136ff18501236a716ae0c8fb2bb2131ba",
+ "pkg-cabal-sha256": "a557cff65eed1f70f3a3b468423cd58e7a9a9564c5cc00c76a13de64dec9bcbd",
"pkg-name": "splitmix",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
- "pkg-src-sha256": "d678c41a603a62032cf7e5f8336bb8222c93990e4b59c8b291b7ca26c7eb12c7",
- "pkg-version": "0.1.1",
+ "pkg-src-sha256": "a61d4e8b30f5a16526d7d31171b674ae7924d2207f378060d13363bd8794de8c",
+ "pkg-version": "0.1.3.2",
"style": "global",
"type": "configured"
},
@@ -852,25 +851,25 @@
"depends": [
"base-4.21.0.0-04ae",
"deepseq-1.5.1.0-59fd",
- "hashable-1.5.0.0-60a421cbabef02a4ae554bdc309488c63019e81f2cf56bae3c1c9f5cc1cdf3c3",
+ "hashable-1.5.1.0-0f5bdfbdd06174d808ad627e8efcf0d85d979b7f868dd338b3ecd9e1437cb205",
"template-haskell-2.23.0.0-5f15"
],
"exe-depends": [],
"flags": {
"debug": false
},
- "id": "unordered-containers-0.2.20-f6c7df8c7c3767047f77bec1dfa61909e7d294e71bf7aef3a6fe70c5b5181664",
- "pkg-cabal-sha256": "233cbcdda6c2698932bb391ce0935fb44f80c115621ee815a21ed33ac8ede422",
+ "id": "unordered-containers-0.2.21-1db7997cd6cc0f725b31c0c0bffb929521d12a4be7083999748a58f663a02bdc",
+ "pkg-cabal-sha256": "c5de1fb3377ed3c5f4cd851a771d1acc5c37d2f6bef0a499295c0e8857da5605",
"pkg-name": "unordered-containers",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
- "pkg-src-sha256": "d9cfb287cf00592d39dc9c3cac8b99627ea08f2c01798e70130fc39f7c90f11d",
- "pkg-version": "0.2.20",
+ "pkg-src-sha256": "3b2ad1522b546e61960153257d1e5d239eeec5e83da847d5cb4d896a5bb7f9c0",
+ "pkg-version": "0.2.21",
"style": "global",
"type": "configured"
},
@@ -888,7 +887,7 @@
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
=====================================
hadrian/bootstrap/plan-9_12_2.json
=====================================
@@ -1,7 +1,8 @@
{
"arch": "x86_64",
- "cabal-lib-version": "3.14.2.0",
- "cabal-version": "3.14.2.0",
+ "cabal-lib-version": "3.16.0.0",
+ "cabal-version": "3.16.0.0",
+ "compiler-abi": "7d10",
"compiler-id": "ghc-9.12.2",
"install-plan": [
{
@@ -82,7 +83,7 @@
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
@@ -130,7 +131,7 @@
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
@@ -168,7 +169,7 @@
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
@@ -227,18 +228,18 @@
],
"exe-depends": [],
"flags": {},
- "id": "extra-1.8-50b8092c5974330645cff2032a91fd49e16d9d30cda790efacc90cdc42ab67a9",
- "pkg-cabal-sha256": "57d9200fbea2e88e05e0be35925511764827b1c86d3214106b0b610f331fc40c",
+ "id": "extra-1.8.1-450945f9d5a870a008ef3e78fd78299d7a78ba225428cebbffd0505f4d1c1810",
+ "pkg-cabal-sha256": "b9c360f2f3fbff5ca04656b7aa0a91b254ac7de7e4b959bae4688a178ffd79d1",
"pkg-name": "extra",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
- "pkg-src-sha256": "2fa4ce5eae50560bba80f1883913cf2ed52b3d87fd290dae27d838c94f5389a1",
- "pkg-version": "1.8",
+ "pkg-src-sha256": "66a7d6d718646a7bda822d67550dc185c6e25ad1f7fecf06fc132e300098b598",
+ "pkg-version": "1.8.1",
"style": "global",
"type": "configured"
},
@@ -275,18 +276,18 @@
"depends": [
"base-4.21.0.0-1fa7",
"directory-1.3.9.0-a727",
- "extra-1.8-50b8092c5974330645cff2032a91fd49e16d9d30cda790efacc90cdc42ab67a9",
+ "extra-1.8.1-450945f9d5a870a008ef3e78fd78299d7a78ba225428cebbffd0505f4d1c1810",
"filepath-1.5.4.0-0fd2"
],
"exe-depends": [],
"flags": {},
- "id": "filepattern-0.1.3-1d9653ab3a8a4ec7e2e8a7c3b30514ba4404fd8ec6e85581f069d3eba6dbd9ab",
+ "id": "filepattern-0.1.3-08472e696d501ee877ebb8f7131efc22a76897925d5a0772ff98b3af8499c53a",
"pkg-cabal-sha256": "372c1733d83b90045eb29da9f010fed79bfef8771ce65eb126a1d83ecc54a9a2",
"pkg-name": "filepattern",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
@@ -328,18 +329,18 @@
"type": "pre-existing"
},
{
- "build-info": "/home/hugin/Documents/haskell/ghc/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.2/ghc-platform-0.1.0.0/build-info.json",
+ "build-info": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.2/ghc-platform-0.1.0.0/build-info.json",
"component-name": "lib",
"depends": [
"base-4.21.0.0-1fa7"
],
- "dist-dir": "/home/hugin/Documents/haskell/ghc/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.2/ghc-platform-0.1.0.0",
+ "dist-dir": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.2/ghc-platform-0.1.0.0",
"exe-depends": [],
"flags": {},
"id": "ghc-platform-0.1.0.0-inplace",
"pkg-name": "ghc-platform",
"pkg-src": {
- "path": "/home/hugin/Documents/haskell/ghc/hadrian/../libraries/ghc-platform",
+ "path": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/../libraries/ghc-platform",
"type": "local"
},
"pkg-version": "0.1.0.0",
@@ -356,7 +357,7 @@
"type": "pre-existing"
},
{
- "build-info": "/home/hugin/Documents/haskell/ghc/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.2/ghc-toolchain-0.1.0.0/build-info.json",
+ "build-info": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.2/ghc-toolchain-0.1.0.0/build-info.json",
"component-name": "lib",
"depends": [
"base-4.21.0.0-1fa7",
@@ -367,13 +368,13 @@
"text-2.1.2-4bf8",
"transformers-0.6.1.2-6bdf"
],
- "dist-dir": "/home/hugin/Documents/haskell/ghc/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.2/ghc-toolchain-0.1.0.0",
+ "dist-dir": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.2/ghc-toolchain-0.1.0.0",
"exe-depends": [],
"flags": {},
"id": "ghc-toolchain-0.1.0.0-inplace",
"pkg-name": "ghc-toolchain",
"pkg-src": {
- "path": "/home/hugin/Documents/haskell/ghc/hadrian/../utils/ghc-toolchain",
+ "path": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/../utils/ghc-toolchain",
"type": "local"
},
"pkg-version": "0.1.0.0",
@@ -381,8 +382,8 @@
"type": "configured"
},
{
- "bin-file": "/home/hugin/Documents/haskell/ghc/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.2/hadrian-0.1.0.0/x/hadrian/build/hadrian/hadrian",
- "build-info": "/home/hugin/Documents/haskell/ghc/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.2/hadrian-0.1.0.0/x/hadrian/build-info.json",
+ "bin-file": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.2/hadrian-0.1.0.0/x/hadrian/build/hadrian/hadrian",
+ "build-info": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.2/hadrian-0.1.0.0/x/hadrian/build-info.json",
"component-name": "exe:hadrian",
"depends": [
"Cabal-3.14.1.0-be3d",
@@ -392,19 +393,19 @@
"containers-0.7-8108",
"cryptohash-sha256-0.11.102.1-a99a1b62d149332345eba2994e44a9fd5fdd5f059dbe0842117cd277d8e9d754",
"directory-1.3.9.0-a727",
- "extra-1.8-50b8092c5974330645cff2032a91fd49e16d9d30cda790efacc90cdc42ab67a9",
+ "extra-1.8.1-450945f9d5a870a008ef3e78fd78299d7a78ba225428cebbffd0505f4d1c1810",
"filepath-1.5.4.0-0fd2",
"ghc-platform-0.1.0.0-inplace",
"ghc-toolchain-0.1.0.0-inplace",
"mtl-2.3.1-5fa4",
"parsec-3.1.18.0-0b38",
- "shake-0.19.8-a8f2f62d336fdae4f621bdcb2bf7f954c7dfee5cf908e5c605618aae58411708",
+ "shake-0.19.9-6efee3d9d505cf64178e29839839681b38bf505f18f00954ecb97dc485e64563",
"text-2.1.2-4bf8",
"time-1.14-d4f2",
"transformers-0.6.1.2-6bdf",
- "unordered-containers-0.2.20-68d908e4ec8232d91b88d9db28ca5869cdb7b7a914cf50b2ac5d4c0bc7777e83"
+ "unordered-containers-0.2.21-9472c9b934eced1581b52486e5298f39f894d3c6623141e3ab55845c5be3bf84"
],
- "dist-dir": "/home/hugin/Documents/haskell/ghc/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.2/hadrian-0.1.0.0/x/hadrian",
+ "dist-dir": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/dist-newstyle/build/x86_64-linux/ghc-9.12.2/hadrian-0.1.0.0/x/hadrian",
"exe-depends": [],
"flags": {
"selftest": false,
@@ -413,7 +414,7 @@
"id": "hadrian-0.1.0.0-inplace-hadrian",
"pkg-name": "hadrian",
"pkg-src": {
- "path": "/home/hugin/Documents/haskell/ghc/hadrian/.",
+ "path": "/home/terrorjack/workspace/ghc-bump-bootstrap/hadrian/.",
"type": "local"
},
"pkg-version": "0.1.0.0",
@@ -428,8 +429,6 @@
"containers-0.7-8108",
"deepseq-1.5.1.0-8fa5",
"filepath-1.5.4.0-0fd2",
- "ghc-bignum-1.3-6e8a",
- "ghc-prim-0.13.0-025c",
"os-string-2.0.7-1ff0",
"text-2.1.2-4bf8"
],
@@ -438,18 +437,18 @@
"arch-native": false,
"random-initial-seed": false
},
- "id": "hashable-1.5.0.0-ec01b4f3b9c059c04f224d51740f7365a448534265e755100c0674d34570efa9",
- "pkg-cabal-sha256": "2f23146cbe0325029927b221647695a4c7d6e97548ff731110979e34361f58ef",
+ "id": "hashable-1.5.1.0-179f465f9ed9ddaf6664d8c763547f686cf4e46573b341743b3b826f9838ef39",
+ "pkg-cabal-sha256": "140fc5adad166f7b527567cbd26ff481e8da4a66bdfc84be3ddf28dbeb66f275",
"pkg-name": "hashable",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
- "pkg-src-sha256": "e58b3a8e18da5f6cd7e937e5fd683e500bb1f8276b3768269759119ca0cddb6a",
- "pkg-version": "1.5.0.0",
+ "pkg-src-sha256": "ed0b7c10ce92c9ffe45420dadc38c6d39db486ff3633ff13567cc9f75f79b112",
+ "pkg-version": "1.5.1.0",
"style": "global",
"type": "configured"
},
@@ -466,7 +465,7 @@
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
@@ -488,7 +487,7 @@
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
@@ -510,7 +509,7 @@
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
@@ -526,18 +525,18 @@
],
"exe-depends": [],
"flags": {},
- "id": "js-jquery-3.3.1-18e5899acf067b8d46d9d9196b0b321c65a59eb8e9b2789e7897495c7654a59b",
- "pkg-cabal-sha256": "59ab6c79159549ef94b584abce8e6d3b336014c2cce1337b59a8f637e2856df5",
+ "id": "js-jquery-3.7.1-5d337fa3c982df8061dcd3fe4d6a75a92294ca655f5971c3a1036f381551c590",
+ "pkg-cabal-sha256": "fdbdfd4d413848c678a3737f2b985a5db66b796c6847b1ae08246ea3795c0ba2",
"pkg-name": "js-jquery",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
- "pkg-src-sha256": "e0e0681f0da1130ede4e03a051630ea439c458cb97216cdb01771ebdbe44069b",
- "pkg-version": "3.3.1",
+ "pkg-src-sha256": "a087fa01a1c52f5386d43f5355f64841c5a4b56b53720090d66b5aa00bfeb106",
+ "pkg-version": "3.7.1",
"style": "global",
"type": "configured"
},
@@ -597,18 +596,18 @@
],
"exe-depends": [],
"flags": {},
- "id": "primitive-0.9.0.0-59fb67c01a15fddfe0b821ecd40637689914ddc2f85c39a9893918a55663f110",
- "pkg-cabal-sha256": "de20bf4eff1f972088854c8efda6eaca2d3147aff62232c3707f059152638759",
+ "id": "primitive-0.9.1.0-2f0eac5744baca97226a86ebb3a539a2f4506d64f0fd8955237f0f1692c4a083",
+ "pkg-cabal-sha256": "756b222c715bc6ef5ba81fa69cdbaa20c5c53beb6f16f174b8bacc93a6d239f0",
"pkg-name": "primitive",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
- "pkg-src-sha256": "696d4bd291c94d736142d6182117dca4258d3ef28bfefdb649ac8b5ecd0999c7",
- "pkg-version": "0.9.0.0",
+ "pkg-src-sha256": "44b4de41813c7bc5db8a57f87c3612a069b65086946268ba165097252ebd3d76",
+ "pkg-version": "0.9.1.0",
"style": "global",
"type": "configured"
},
@@ -632,23 +631,23 @@
"bytestring-0.12.2.0-2438",
"deepseq-1.5.1.0-8fa5",
"mtl-2.3.1-5fa4",
- "splitmix-0.1.1-3c9de8215d883fe8929b659ace37f98292441f904fb6c6a92a1760b9829b50a2",
+ "splitmix-0.1.3.2-85edcfffa6f8a0966e79c5a467626e65a7fbfd1fe8253657941974605b50614d",
"transformers-0.6.1.2-6bdf"
],
"exe-depends": [],
"flags": {},
- "id": "random-1.3.0-0bd7c3bb7964b44ea226e9a0d6c122942752e7084d710c0344524329793031f9",
- "pkg-cabal-sha256": "e5b7016e43a8f4822ebcf8cacaaa737beb62d370b988b5c69e95105d9f0fd582",
+ "id": "random-1.3.1-9fa864005d3e1154c68d0bd3c0871f2969a5015cd27d0a5f7c80f6ee169e0bcb",
+ "pkg-cabal-sha256": "0b4f649c3e78713b2ccad1535251ee34b148237fb2229d7058c2b1d9ccc324b8",
"pkg-name": "random",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
- "pkg-src-sha256": "6b5067e65625d777e31f151f5fcec351091d9de832183ca2a2a864e1cfd4f1b1",
- "pkg-version": "1.3.0",
+ "pkg-src-sha256": "d840ac83f265b0cfa2a678f8ec78627eb50cf9be2f067c52c8a4239c29b71a35",
+ "pkg-version": "1.3.1",
"style": "global",
"type": "configured"
},
@@ -667,21 +666,21 @@
"bytestring-0.12.2.0-2438",
"deepseq-1.5.1.0-8fa5",
"directory-1.3.9.0-a727",
- "extra-1.8-50b8092c5974330645cff2032a91fd49e16d9d30cda790efacc90cdc42ab67a9",
+ "extra-1.8.1-450945f9d5a870a008ef3e78fd78299d7a78ba225428cebbffd0505f4d1c1810",
"filepath-1.5.4.0-0fd2",
- "filepattern-0.1.3-1d9653ab3a8a4ec7e2e8a7c3b30514ba4404fd8ec6e85581f069d3eba6dbd9ab",
- "hashable-1.5.0.0-ec01b4f3b9c059c04f224d51740f7365a448534265e755100c0674d34570efa9",
+ "filepattern-0.1.3-08472e696d501ee877ebb8f7131efc22a76897925d5a0772ff98b3af8499c53a",
+ "hashable-1.5.1.0-179f465f9ed9ddaf6664d8c763547f686cf4e46573b341743b3b826f9838ef39",
"heaps-0.4.1-878aaa67e4e194a4e4ff4baf896d0e1f061050493d7569a95ef182e7451522e6",
"js-dgtable-0.5.2-12abb063ad97e07aad3cf2a9356b2e37d9d2dc4f1d6a5e34bdf446e98d80d6e6",
"js-flot-0.8.3-4599f59a9a84133b252cd97b1c5e4f3e608d8e68f402d4a9bde2e4e9c65da02b",
- "js-jquery-3.3.1-18e5899acf067b8d46d9d9196b0b321c65a59eb8e9b2789e7897495c7654a59b",
- "primitive-0.9.0.0-59fb67c01a15fddfe0b821ecd40637689914ddc2f85c39a9893918a55663f110",
+ "js-jquery-3.7.1-5d337fa3c982df8061dcd3fe4d6a75a92294ca655f5971c3a1036f381551c590",
+ "primitive-0.9.1.0-2f0eac5744baca97226a86ebb3a539a2f4506d64f0fd8955237f0f1692c4a083",
"process-1.6.25.0-8d00",
- "random-1.3.0-0bd7c3bb7964b44ea226e9a0d6c122942752e7084d710c0344524329793031f9",
+ "random-1.3.1-9fa864005d3e1154c68d0bd3c0871f2969a5015cd27d0a5f7c80f6ee169e0bcb",
"time-1.14-d4f2",
"transformers-0.6.1.2-6bdf",
"unix-2.8.6.0-c716",
- "unordered-containers-0.2.20-68d908e4ec8232d91b88d9db28ca5869cdb7b7a914cf50b2ac5d4c0bc7777e83",
+ "unordered-containers-0.2.21-9472c9b934eced1581b52486e5298f39f894d3c6623141e3ab55845c5be3bf84",
"utf8-string-1.0.2-a3b43d0e00fe0df58bbf8ae8c3dcc5474a87a3166fd444852466164d8698aff1"
],
"exe-depends": [],
@@ -691,23 +690,23 @@
"portable": false,
"threaded": true
},
- "id": "shake-0.19.8-a8f2f62d336fdae4f621bdcb2bf7f954c7dfee5cf908e5c605618aae58411708",
- "pkg-cabal-sha256": "03c8f06de478e07ad6fde95984c9206920106d0d8432ecb7ab825ef108d45382",
+ "id": "shake-0.19.9-6efee3d9d505cf64178e29839839681b38bf505f18f00954ecb97dc485e64563",
+ "pkg-cabal-sha256": "8704f35f7857f71adef2b74aafb5580f73dfab004a804718d418c16798f4a186",
"pkg-name": "shake",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
- "pkg-src-sha256": "6384e33a26a2590bf33719e88881076b899ac4b5340c1c9271e4caa37e9d6535",
- "pkg-version": "0.19.8",
+ "pkg-src-sha256": "4176d6e38c3b7813f019f2377466d9f01db842056eec1cdaa8a23b80ceddcb8a",
+ "pkg-version": "0.19.9",
"style": "global",
"type": "configured"
},
{
- "bin-file": "/home/hugin/.local/state/cabal/store/ghc-9.12.2-7d10/shake-0.19.8-e-shake-086575c7478b21eead2e4dba7f40638945ac3fcf178bc26799cbe67233da8ef4/bin/shake",
+ "bin-file": "/home/terrorjack/.cabal/store/ghc-9.12.2-7d10/shake-0.19.9-e-shake-b1728ce5ccbe13b9a6e1f23b490bacb74391328bb4b0e37aef90fdd850ff4fa7/bin/shake",
"component-name": "exe:shake",
"depends": [
"base-4.21.0.0-1fa7",
@@ -715,21 +714,21 @@
"bytestring-0.12.2.0-2438",
"deepseq-1.5.1.0-8fa5",
"directory-1.3.9.0-a727",
- "extra-1.8-50b8092c5974330645cff2032a91fd49e16d9d30cda790efacc90cdc42ab67a9",
+ "extra-1.8.1-450945f9d5a870a008ef3e78fd78299d7a78ba225428cebbffd0505f4d1c1810",
"filepath-1.5.4.0-0fd2",
- "filepattern-0.1.3-1d9653ab3a8a4ec7e2e8a7c3b30514ba4404fd8ec6e85581f069d3eba6dbd9ab",
- "hashable-1.5.0.0-ec01b4f3b9c059c04f224d51740f7365a448534265e755100c0674d34570efa9",
+ "filepattern-0.1.3-08472e696d501ee877ebb8f7131efc22a76897925d5a0772ff98b3af8499c53a",
+ "hashable-1.5.1.0-179f465f9ed9ddaf6664d8c763547f686cf4e46573b341743b3b826f9838ef39",
"heaps-0.4.1-878aaa67e4e194a4e4ff4baf896d0e1f061050493d7569a95ef182e7451522e6",
"js-dgtable-0.5.2-12abb063ad97e07aad3cf2a9356b2e37d9d2dc4f1d6a5e34bdf446e98d80d6e6",
"js-flot-0.8.3-4599f59a9a84133b252cd97b1c5e4f3e608d8e68f402d4a9bde2e4e9c65da02b",
- "js-jquery-3.3.1-18e5899acf067b8d46d9d9196b0b321c65a59eb8e9b2789e7897495c7654a59b",
- "primitive-0.9.0.0-59fb67c01a15fddfe0b821ecd40637689914ddc2f85c39a9893918a55663f110",
+ "js-jquery-3.7.1-5d337fa3c982df8061dcd3fe4d6a75a92294ca655f5971c3a1036f381551c590",
+ "primitive-0.9.1.0-2f0eac5744baca97226a86ebb3a539a2f4506d64f0fd8955237f0f1692c4a083",
"process-1.6.25.0-8d00",
- "random-1.3.0-0bd7c3bb7964b44ea226e9a0d6c122942752e7084d710c0344524329793031f9",
+ "random-1.3.1-9fa864005d3e1154c68d0bd3c0871f2969a5015cd27d0a5f7c80f6ee169e0bcb",
"time-1.14-d4f2",
"transformers-0.6.1.2-6bdf",
"unix-2.8.6.0-c716",
- "unordered-containers-0.2.20-68d908e4ec8232d91b88d9db28ca5869cdb7b7a914cf50b2ac5d4c0bc7777e83",
+ "unordered-containers-0.2.21-9472c9b934eced1581b52486e5298f39f894d3c6623141e3ab55845c5be3bf84",
"utf8-string-1.0.2-a3b43d0e00fe0df58bbf8ae8c3dcc5474a87a3166fd444852466164d8698aff1"
],
"exe-depends": [],
@@ -739,18 +738,18 @@
"portable": false,
"threaded": true
},
- "id": "shake-0.19.8-e-shake-086575c7478b21eead2e4dba7f40638945ac3fcf178bc26799cbe67233da8ef4",
- "pkg-cabal-sha256": "03c8f06de478e07ad6fde95984c9206920106d0d8432ecb7ab825ef108d45382",
+ "id": "shake-0.19.9-e-shake-b1728ce5ccbe13b9a6e1f23b490bacb74391328bb4b0e37aef90fdd850ff4fa7",
+ "pkg-cabal-sha256": "8704f35f7857f71adef2b74aafb5580f73dfab004a804718d418c16798f4a186",
"pkg-name": "shake",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
- "pkg-src-sha256": "6384e33a26a2590bf33719e88881076b899ac4b5340c1c9271e4caa37e9d6535",
- "pkg-version": "0.19.8",
+ "pkg-src-sha256": "4176d6e38c3b7813f019f2377466d9f01db842056eec1cdaa8a23b80ceddcb8a",
+ "pkg-version": "0.19.9",
"style": "global",
"type": "configured"
},
@@ -764,18 +763,18 @@
"flags": {
"optimised-mixer": false
},
- "id": "splitmix-0.1.1-3c9de8215d883fe8929b659ace37f98292441f904fb6c6a92a1760b9829b50a2",
- "pkg-cabal-sha256": "8f92088f1c51c8d4569279a07565f8aa6b534a6735615b2295d2961dec8f1783",
+ "id": "splitmix-0.1.3.2-85edcfffa6f8a0966e79c5a467626e65a7fbfd1fe8253657941974605b50614d",
+ "pkg-cabal-sha256": "a557cff65eed1f70f3a3b468423cd58e7a9a9564c5cc00c76a13de64dec9bcbd",
"pkg-name": "splitmix",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
- "pkg-src-sha256": "d678c41a603a62032cf7e5f8336bb8222c93990e4b59c8b291b7ca26c7eb12c7",
- "pkg-version": "0.1.1",
+ "pkg-src-sha256": "a61d4e8b30f5a16526d7d31171b674ae7924d2207f378060d13363bd8794de8c",
+ "pkg-version": "0.1.3.2",
"style": "global",
"type": "configured"
},
@@ -852,25 +851,25 @@
"depends": [
"base-4.21.0.0-1fa7",
"deepseq-1.5.1.0-8fa5",
- "hashable-1.5.0.0-ec01b4f3b9c059c04f224d51740f7365a448534265e755100c0674d34570efa9",
+ "hashable-1.5.1.0-179f465f9ed9ddaf6664d8c763547f686cf4e46573b341743b3b826f9838ef39",
"template-haskell-2.23.0.0-e01a"
],
"exe-depends": [],
"flags": {
"debug": false
},
- "id": "unordered-containers-0.2.20-68d908e4ec8232d91b88d9db28ca5869cdb7b7a914cf50b2ac5d4c0bc7777e83",
- "pkg-cabal-sha256": "233cbcdda6c2698932bb391ce0935fb44f80c115621ee815a21ed33ac8ede422",
+ "id": "unordered-containers-0.2.21-9472c9b934eced1581b52486e5298f39f894d3c6623141e3ab55845c5be3bf84",
+ "pkg-cabal-sha256": "c5de1fb3377ed3c5f4cd851a771d1acc5c37d2f6bef0a499295c0e8857da5605",
"pkg-name": "unordered-containers",
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
- "pkg-src-sha256": "d9cfb287cf00592d39dc9c3cac8b99627ea08f2c01798e70130fc39f7c90f11d",
- "pkg-version": "0.2.20",
+ "pkg-src-sha256": "3b2ad1522b546e61960153257d1e5d239eeec5e83da847d5cb4d896a5bb7f9c0",
+ "pkg-version": "0.2.21",
"style": "global",
"type": "configured"
},
@@ -888,7 +887,7 @@
"pkg-src": {
"repo": {
"type": "secure-repo",
- "uri": "http://hackage.haskell.org/"
+ "uri": "https://hackage.haskell.org/"
},
"type": "repo-tar"
},
=====================================
hadrian/bootstrap/plan-bootstrap-9_10_1.json
=====================================
@@ -104,28 +104,29 @@
"version": "2.8.8.0"
},
{
- "cabal_sha256": "1d68a81fa684d006b1ec73836cebe3de9a54688836915fe3e56a20389846bb4e",
+ "cabal_sha256": "5e3466f15993e499db47d79d09c519d6d37c143cfe94fb46dd218bf2f6f3fd39",
"component": "lib:file-io",
"flags": [
+ "+long-paths",
"+os-string"
],
"package": "file-io",
"revision": 0,
"source": "hackage",
- "src_sha256": "310a19e4c792de4d30c912bc71ff3becb40818d7c796b9999bcd0979dab87d5b",
- "version": "0.1.5"
+ "src_sha256": "0ae9986dc1df9a87d17a16c6c0afb2bfc72dcd2a2ec7a40faf1257bf1fa4d710",
+ "version": "0.1.6"
},
{
- "cabal_sha256": "ed6784601c6a800d4c1e40efbc9f20cf33ae2f25cac301fc239f9c91947b816b",
+ "cabal_sha256": "bf029d8163ccae567cc6a5aa8f654016f58dfc066d15f8a8f7c74b8ca855562c",
"component": "lib:directory",
"flags": [
"+os-string"
],
"package": "directory",
- "revision": 2,
+ "revision": 0,
"source": "hackage",
- "src_sha256": "20a24846117fc5f8751d974b7de07210a161989410467e9adca525381b8e64cc",
- "version": "1.3.9.0"
+ "src_sha256": "d8f718851aa25a357ca4a6d0204eb357a69383b9b69528d18e2bca463e94c259",
+ "version": "1.3.10.1"
},
{
"cabal_sha256": "38b3481bb0d5eb58c9dd6579e7904859372c3c0c82a8db86e58177649c289621",
@@ -138,38 +139,38 @@
"version": "3.5.4.0"
},
{
- "cabal_sha256": "6a35036763557301876c5b7a448de4f1cb54fe1e223ff6c4c0c1fdd6df635a65",
+ "cabal_sha256": "4c3f63157628d3dc359c2af16ffe683b84a54857694c9d59d5fb7232f4679957",
"component": "lib:Cabal-syntax",
"flags": [],
"package": "Cabal-syntax",
"revision": 0,
"source": "hackage",
- "src_sha256": "f45bd417052f4638787871957380365aab5cabfc7b110ec52df4e445c656809f",
- "version": "3.16.0.0"
+ "src_sha256": "6bd561449b4d96aca4896e17a34cb504d1b0fd83b338380d131b16b50b36bda7",
+ "version": "3.16.1.0"
},
{
- "cabal_sha256": "9571f573339d6189ebd4f492e692f604aa19fe03d7c0992b8aa071e873e23a95",
+ "cabal_sha256": "0512ed17e7e312a6412859abcb37a7bcc81b94cbb797a1ba2a8c78a5d3055d32",
"component": "lib:process",
"flags": [
"+os-string"
],
"package": "process",
- "revision": 1,
+ "revision": 0,
"source": "hackage",
- "src_sha256": "b431d2ba77607986fa84b42ff3021505b8637b8d638ff664be3292dd44aba8f0",
- "version": "1.6.26.1"
+ "src_sha256": "ee9ef426d33560f3d06b237fbb8156c530c6b265cca8ef0c63abadb12769b693",
+ "version": "1.6.27.0"
},
{
- "cabal_sha256": "9972c2bd263168a20bd990962a68d4fd024f50c30a00519a6b942e8871d1bd67",
+ "cabal_sha256": "6d7ee02dc18c7485d597d131356cee25b3b95778746f39b73bca1d2d44b12e11",
"component": "lib:Cabal",
"flags": [
"-git-rev"
],
"package": "Cabal",
- "revision": 1,
+ "revision": 0,
"source": "hackage",
- "src_sha256": "d68aa36d47f550a45e72a2079aeef28d42add0a2e97f131b4d491c6cf1491b0c",
- "version": "3.16.0.0"
+ "src_sha256": "c6b8a37d21dc67c1c68d36a6258ea529391d4bb8bcc1caebaa9b483d93ef2556",
+ "version": "3.16.1.0"
},
{
"cabal_sha256": "a694e88f9ec9fc79f0b03f233d3fea592b68f70a34aac2ddb5bcaecb6562e2fd",
@@ -247,17 +248,17 @@
"version": "0.1.0.0"
},
{
- "cabal_sha256": "2f23146cbe0325029927b221647695a4c7d6e97548ff731110979e34361f58ef",
+ "cabal_sha256": "140fc5adad166f7b527567cbd26ff481e8da4a66bdfc84be3ddf28dbeb66f275",
"component": "lib:hashable",
"flags": [
"-arch-native",
"-random-initial-seed"
],
"package": "hashable",
- "revision": 1,
+ "revision": 0,
"source": "hackage",
- "src_sha256": "e58b3a8e18da5f6cd7e937e5fd683e500bb1f8276b3768269759119ca0cddb6a",
- "version": "1.5.0.0"
+ "src_sha256": "ed0b7c10ce92c9ffe45420dadc38c6d39db486ff3633ff13567cc9f75f79b112",
+ "version": "1.5.1.0"
},
{
"cabal_sha256": "74ce60a23b8ef247b8bca71eeb38289e82b3b5e83b2383600b2c838a68218068",
@@ -310,7 +311,7 @@
"version": "0.9.1.0"
},
{
- "cabal_sha256": "d0002f3fb16a2cc5ba8afd47a6657726386edccfe8853d310e3479fe3b45201b",
+ "cabal_sha256": "a557cff65eed1f70f3a3b468423cd58e7a9a9564c5cc00c76a13de64dec9bcbd",
"component": "lib:splitmix",
"flags": [
"-optimised-mixer"
@@ -318,8 +319,8 @@
"package": "splitmix",
"revision": 0,
"source": "hackage",
- "src_sha256": "b6bcd0d79bd4fe40975c8ebe803be2f3bfbf6006069a59745a325a0df3f86270",
- "version": "0.1.3.1"
+ "src_sha256": "a61d4e8b30f5a16526d7d31171b674ae7924d2207f378060d13363bd8794de8c",
+ "version": "0.1.3.2"
},
{
"cabal_sha256": "0b4f649c3e78713b2ccad1535251ee34b148237fb2229d7058c2b1d9ccc324b8",
@@ -354,7 +355,7 @@
"version": "1.0.2"
},
{
- "cabal_sha256": "03c8f06de478e07ad6fde95984c9206920106d0d8432ecb7ab825ef108d45382",
+ "cabal_sha256": "8704f35f7857f71adef2b74aafb5580f73dfab004a804718d418c16798f4a186",
"component": "lib:shake",
"flags": [
"-cloud",
@@ -365,8 +366,8 @@
"package": "shake",
"revision": 0,
"source": "hackage",
- "src_sha256": "6384e33a26a2590bf33719e88881076b899ac4b5340c1c9271e4caa37e9d6535",
- "version": "0.19.8"
+ "src_sha256": "4176d6e38c3b7813f019f2377466d9f01db842056eec1cdaa8a23b80ceddcb8a",
+ "version": "0.19.9"
},
{
"cabal_sha256": null,
=====================================
hadrian/bootstrap/plan-bootstrap-9_10_2.json
=====================================
@@ -95,28 +95,29 @@
],
"dependencies": [
{
- "cabal_sha256": "1d68a81fa684d006b1ec73836cebe3de9a54688836915fe3e56a20389846bb4e",
+ "cabal_sha256": "5e3466f15993e499db47d79d09c519d6d37c143cfe94fb46dd218bf2f6f3fd39",
"component": "lib:file-io",
"flags": [
+ "+long-paths",
"+os-string"
],
"package": "file-io",
"revision": 0,
"source": "hackage",
- "src_sha256": "310a19e4c792de4d30c912bc71ff3becb40818d7c796b9999bcd0979dab87d5b",
- "version": "0.1.5"
+ "src_sha256": "0ae9986dc1df9a87d17a16c6c0afb2bfc72dcd2a2ec7a40faf1257bf1fa4d710",
+ "version": "0.1.6"
},
{
- "cabal_sha256": "ed6784601c6a800d4c1e40efbc9f20cf33ae2f25cac301fc239f9c91947b816b",
+ "cabal_sha256": "bf029d8163ccae567cc6a5aa8f654016f58dfc066d15f8a8f7c74b8ca855562c",
"component": "lib:directory",
"flags": [
"+os-string"
],
"package": "directory",
- "revision": 2,
+ "revision": 0,
"source": "hackage",
- "src_sha256": "20a24846117fc5f8751d974b7de07210a161989410467e9adca525381b8e64cc",
- "version": "1.3.9.0"
+ "src_sha256": "d8f718851aa25a357ca4a6d0204eb357a69383b9b69528d18e2bca463e94c259",
+ "version": "1.3.10.1"
},
{
"cabal_sha256": "38b3481bb0d5eb58c9dd6579e7904859372c3c0c82a8db86e58177649c289621",
@@ -129,38 +130,38 @@
"version": "3.5.4.0"
},
{
- "cabal_sha256": "6a35036763557301876c5b7a448de4f1cb54fe1e223ff6c4c0c1fdd6df635a65",
+ "cabal_sha256": "4c3f63157628d3dc359c2af16ffe683b84a54857694c9d59d5fb7232f4679957",
"component": "lib:Cabal-syntax",
"flags": [],
"package": "Cabal-syntax",
"revision": 0,
"source": "hackage",
- "src_sha256": "f45bd417052f4638787871957380365aab5cabfc7b110ec52df4e445c656809f",
- "version": "3.16.0.0"
+ "src_sha256": "6bd561449b4d96aca4896e17a34cb504d1b0fd83b338380d131b16b50b36bda7",
+ "version": "3.16.1.0"
},
{
- "cabal_sha256": "9571f573339d6189ebd4f492e692f604aa19fe03d7c0992b8aa071e873e23a95",
+ "cabal_sha256": "0512ed17e7e312a6412859abcb37a7bcc81b94cbb797a1ba2a8c78a5d3055d32",
"component": "lib:process",
"flags": [
"+os-string"
],
"package": "process",
- "revision": 1,
+ "revision": 0,
"source": "hackage",
- "src_sha256": "b431d2ba77607986fa84b42ff3021505b8637b8d638ff664be3292dd44aba8f0",
- "version": "1.6.26.1"
+ "src_sha256": "ee9ef426d33560f3d06b237fbb8156c530c6b265cca8ef0c63abadb12769b693",
+ "version": "1.6.27.0"
},
{
- "cabal_sha256": "9972c2bd263168a20bd990962a68d4fd024f50c30a00519a6b942e8871d1bd67",
+ "cabal_sha256": "6d7ee02dc18c7485d597d131356cee25b3b95778746f39b73bca1d2d44b12e11",
"component": "lib:Cabal",
"flags": [
"-git-rev"
],
"package": "Cabal",
- "revision": 1,
+ "revision": 0,
"source": "hackage",
- "src_sha256": "d68aa36d47f550a45e72a2079aeef28d42add0a2e97f131b4d491c6cf1491b0c",
- "version": "3.16.0.0"
+ "src_sha256": "c6b8a37d21dc67c1c68d36a6258ea529391d4bb8bcc1caebaa9b483d93ef2556",
+ "version": "3.16.1.0"
},
{
"cabal_sha256": "a694e88f9ec9fc79f0b03f233d3fea592b68f70a34aac2ddb5bcaecb6562e2fd",
@@ -238,17 +239,17 @@
"version": "0.1.0.0"
},
{
- "cabal_sha256": "2f23146cbe0325029927b221647695a4c7d6e97548ff731110979e34361f58ef",
+ "cabal_sha256": "140fc5adad166f7b527567cbd26ff481e8da4a66bdfc84be3ddf28dbeb66f275",
"component": "lib:hashable",
"flags": [
"-arch-native",
"-random-initial-seed"
],
"package": "hashable",
- "revision": 1,
+ "revision": 0,
"source": "hackage",
- "src_sha256": "e58b3a8e18da5f6cd7e937e5fd683e500bb1f8276b3768269759119ca0cddb6a",
- "version": "1.5.0.0"
+ "src_sha256": "ed0b7c10ce92c9ffe45420dadc38c6d39db486ff3633ff13567cc9f75f79b112",
+ "version": "1.5.1.0"
},
{
"cabal_sha256": "74ce60a23b8ef247b8bca71eeb38289e82b3b5e83b2383600b2c838a68218068",
@@ -301,7 +302,7 @@
"version": "0.9.1.0"
},
{
- "cabal_sha256": "d0002f3fb16a2cc5ba8afd47a6657726386edccfe8853d310e3479fe3b45201b",
+ "cabal_sha256": "a557cff65eed1f70f3a3b468423cd58e7a9a9564c5cc00c76a13de64dec9bcbd",
"component": "lib:splitmix",
"flags": [
"-optimised-mixer"
@@ -309,8 +310,8 @@
"package": "splitmix",
"revision": 0,
"source": "hackage",
- "src_sha256": "b6bcd0d79bd4fe40975c8ebe803be2f3bfbf6006069a59745a325a0df3f86270",
- "version": "0.1.3.1"
+ "src_sha256": "a61d4e8b30f5a16526d7d31171b674ae7924d2207f378060d13363bd8794de8c",
+ "version": "0.1.3.2"
},
{
"cabal_sha256": "0b4f649c3e78713b2ccad1535251ee34b148237fb2229d7058c2b1d9ccc324b8",
@@ -345,7 +346,7 @@
"version": "1.0.2"
},
{
- "cabal_sha256": "03c8f06de478e07ad6fde95984c9206920106d0d8432ecb7ab825ef108d45382",
+ "cabal_sha256": "8704f35f7857f71adef2b74aafb5580f73dfab004a804718d418c16798f4a186",
"component": "lib:shake",
"flags": [
"-cloud",
@@ -356,8 +357,8 @@
"package": "shake",
"revision": 0,
"source": "hackage",
- "src_sha256": "6384e33a26a2590bf33719e88881076b899ac4b5340c1c9271e4caa37e9d6535",
- "version": "0.19.8"
+ "src_sha256": "4176d6e38c3b7813f019f2377466d9f01db842056eec1cdaa8a23b80ceddcb8a",
+ "version": "0.19.9"
},
{
"cabal_sha256": null,
=====================================
hadrian/bootstrap/plan-bootstrap-9_10_3.json
=====================================
@@ -95,28 +95,29 @@
],
"dependencies": [
{
- "cabal_sha256": "1d68a81fa684d006b1ec73836cebe3de9a54688836915fe3e56a20389846bb4e",
+ "cabal_sha256": "5e3466f15993e499db47d79d09c519d6d37c143cfe94fb46dd218bf2f6f3fd39",
"component": "lib:file-io",
"flags": [
+ "+long-paths",
"+os-string"
],
"package": "file-io",
"revision": 0,
"source": "hackage",
- "src_sha256": "310a19e4c792de4d30c912bc71ff3becb40818d7c796b9999bcd0979dab87d5b",
- "version": "0.1.5"
+ "src_sha256": "0ae9986dc1df9a87d17a16c6c0afb2bfc72dcd2a2ec7a40faf1257bf1fa4d710",
+ "version": "0.1.6"
},
{
- "cabal_sha256": "ed6784601c6a800d4c1e40efbc9f20cf33ae2f25cac301fc239f9c91947b816b",
+ "cabal_sha256": "bf029d8163ccae567cc6a5aa8f654016f58dfc066d15f8a8f7c74b8ca855562c",
"component": "lib:directory",
"flags": [
"+os-string"
],
"package": "directory",
- "revision": 2,
+ "revision": 0,
"source": "hackage",
- "src_sha256": "20a24846117fc5f8751d974b7de07210a161989410467e9adca525381b8e64cc",
- "version": "1.3.9.0"
+ "src_sha256": "d8f718851aa25a357ca4a6d0204eb357a69383b9b69528d18e2bca463e94c259",
+ "version": "1.3.10.1"
},
{
"cabal_sha256": "38b3481bb0d5eb58c9dd6579e7904859372c3c0c82a8db86e58177649c289621",
@@ -129,38 +130,38 @@
"version": "3.5.4.0"
},
{
- "cabal_sha256": "6a35036763557301876c5b7a448de4f1cb54fe1e223ff6c4c0c1fdd6df635a65",
+ "cabal_sha256": "4c3f63157628d3dc359c2af16ffe683b84a54857694c9d59d5fb7232f4679957",
"component": "lib:Cabal-syntax",
"flags": [],
"package": "Cabal-syntax",
"revision": 0,
"source": "hackage",
- "src_sha256": "f45bd417052f4638787871957380365aab5cabfc7b110ec52df4e445c656809f",
- "version": "3.16.0.0"
+ "src_sha256": "6bd561449b4d96aca4896e17a34cb504d1b0fd83b338380d131b16b50b36bda7",
+ "version": "3.16.1.0"
},
{
- "cabal_sha256": "9571f573339d6189ebd4f492e692f604aa19fe03d7c0992b8aa071e873e23a95",
+ "cabal_sha256": "0512ed17e7e312a6412859abcb37a7bcc81b94cbb797a1ba2a8c78a5d3055d32",
"component": "lib:process",
"flags": [
"+os-string"
],
"package": "process",
- "revision": 1,
+ "revision": 0,
"source": "hackage",
- "src_sha256": "b431d2ba77607986fa84b42ff3021505b8637b8d638ff664be3292dd44aba8f0",
- "version": "1.6.26.1"
+ "src_sha256": "ee9ef426d33560f3d06b237fbb8156c530c6b265cca8ef0c63abadb12769b693",
+ "version": "1.6.27.0"
},
{
- "cabal_sha256": "9972c2bd263168a20bd990962a68d4fd024f50c30a00519a6b942e8871d1bd67",
+ "cabal_sha256": "6d7ee02dc18c7485d597d131356cee25b3b95778746f39b73bca1d2d44b12e11",
"component": "lib:Cabal",
"flags": [
"-git-rev"
],
"package": "Cabal",
- "revision": 1,
+ "revision": 0,
"source": "hackage",
- "src_sha256": "d68aa36d47f550a45e72a2079aeef28d42add0a2e97f131b4d491c6cf1491b0c",
- "version": "3.16.0.0"
+ "src_sha256": "c6b8a37d21dc67c1c68d36a6258ea529391d4bb8bcc1caebaa9b483d93ef2556",
+ "version": "3.16.1.0"
},
{
"cabal_sha256": "a694e88f9ec9fc79f0b03f233d3fea592b68f70a34aac2ddb5bcaecb6562e2fd",
@@ -238,17 +239,17 @@
"version": "0.1.0.0"
},
{
- "cabal_sha256": "2f23146cbe0325029927b221647695a4c7d6e97548ff731110979e34361f58ef",
+ "cabal_sha256": "140fc5adad166f7b527567cbd26ff481e8da4a66bdfc84be3ddf28dbeb66f275",
"component": "lib:hashable",
"flags": [
"-arch-native",
"-random-initial-seed"
],
"package": "hashable",
- "revision": 1,
+ "revision": 0,
"source": "hackage",
- "src_sha256": "e58b3a8e18da5f6cd7e937e5fd683e500bb1f8276b3768269759119ca0cddb6a",
- "version": "1.5.0.0"
+ "src_sha256": "ed0b7c10ce92c9ffe45420dadc38c6d39db486ff3633ff13567cc9f75f79b112",
+ "version": "1.5.1.0"
},
{
"cabal_sha256": "74ce60a23b8ef247b8bca71eeb38289e82b3b5e83b2383600b2c838a68218068",
@@ -301,7 +302,7 @@
"version": "0.9.1.0"
},
{
- "cabal_sha256": "d0002f3fb16a2cc5ba8afd47a6657726386edccfe8853d310e3479fe3b45201b",
+ "cabal_sha256": "a557cff65eed1f70f3a3b468423cd58e7a9a9564c5cc00c76a13de64dec9bcbd",
"component": "lib:splitmix",
"flags": [
"-optimised-mixer"
@@ -309,8 +310,8 @@
"package": "splitmix",
"revision": 0,
"source": "hackage",
- "src_sha256": "b6bcd0d79bd4fe40975c8ebe803be2f3bfbf6006069a59745a325a0df3f86270",
- "version": "0.1.3.1"
+ "src_sha256": "a61d4e8b30f5a16526d7d31171b674ae7924d2207f378060d13363bd8794de8c",
+ "version": "0.1.3.2"
},
{
"cabal_sha256": "0b4f649c3e78713b2ccad1535251ee34b148237fb2229d7058c2b1d9ccc324b8",
@@ -345,7 +346,7 @@
"version": "1.0.2"
},
{
- "cabal_sha256": "03c8f06de478e07ad6fde95984c9206920106d0d8432ecb7ab825ef108d45382",
+ "cabal_sha256": "8704f35f7857f71adef2b74aafb5580f73dfab004a804718d418c16798f4a186",
"component": "lib:shake",
"flags": [
"-cloud",
@@ -356,8 +357,8 @@
"package": "shake",
"revision": 0,
"source": "hackage",
- "src_sha256": "6384e33a26a2590bf33719e88881076b899ac4b5340c1c9271e4caa37e9d6535",
- "version": "0.19.8"
+ "src_sha256": "4176d6e38c3b7813f019f2377466d9f01db842056eec1cdaa8a23b80ceddcb8a",
+ "version": "0.19.9"
},
{
"cabal_sha256": null,
=====================================
hadrian/bootstrap/plan-bootstrap-9_12_1.json
=====================================
@@ -150,14 +150,14 @@
"version": "0.11.102.1"
},
{
- "cabal_sha256": "57d9200fbea2e88e05e0be35925511764827b1c86d3214106b0b610f331fc40c",
+ "cabal_sha256": "b9c360f2f3fbff5ca04656b7aa0a91b254ac7de7e4b959bae4688a178ffd79d1",
"component": "lib:extra",
"flags": [],
"package": "extra",
"revision": 0,
"source": "hackage",
- "src_sha256": "2fa4ce5eae50560bba80f1883913cf2ed52b3d87fd290dae27d838c94f5389a1",
- "version": "1.8"
+ "src_sha256": "66a7d6d718646a7bda822d67550dc185c6e25ad1f7fecf06fc132e300098b598",
+ "version": "1.8.1"
},
{
"cabal_sha256": "372c1733d83b90045eb29da9f010fed79bfef8771ce65eb126a1d83ecc54a9a2",
@@ -190,17 +190,17 @@
"version": "0.1.0.0"
},
{
- "cabal_sha256": "2f23146cbe0325029927b221647695a4c7d6e97548ff731110979e34361f58ef",
+ "cabal_sha256": "140fc5adad166f7b527567cbd26ff481e8da4a66bdfc84be3ddf28dbeb66f275",
"component": "lib:hashable",
"flags": [
"-arch-native",
"-random-initial-seed"
],
"package": "hashable",
- "revision": 1,
+ "revision": 0,
"source": "hackage",
- "src_sha256": "e58b3a8e18da5f6cd7e937e5fd683e500bb1f8276b3768269759119ca0cddb6a",
- "version": "1.5.0.0"
+ "src_sha256": "ed0b7c10ce92c9ffe45420dadc38c6d39db486ff3633ff13567cc9f75f79b112",
+ "version": "1.5.1.0"
},
{
"cabal_sha256": "74ce60a23b8ef247b8bca71eeb38289e82b3b5e83b2383600b2c838a68218068",
@@ -233,27 +233,27 @@
"version": "0.8.3"
},
{
- "cabal_sha256": "59ab6c79159549ef94b584abce8e6d3b336014c2cce1337b59a8f637e2856df5",
+ "cabal_sha256": "fdbdfd4d413848c678a3737f2b985a5db66b796c6847b1ae08246ea3795c0ba2",
"component": "lib:js-jquery",
"flags": [],
"package": "js-jquery",
"revision": 0,
"source": "hackage",
- "src_sha256": "e0e0681f0da1130ede4e03a051630ea439c458cb97216cdb01771ebdbe44069b",
- "version": "3.3.1"
+ "src_sha256": "a087fa01a1c52f5386d43f5355f64841c5a4b56b53720090d66b5aa00bfeb106",
+ "version": "3.7.1"
},
{
- "cabal_sha256": "de20bf4eff1f972088854c8efda6eaca2d3147aff62232c3707f059152638759",
+ "cabal_sha256": "756b222c715bc6ef5ba81fa69cdbaa20c5c53beb6f16f174b8bacc93a6d239f0",
"component": "lib:primitive",
"flags": [],
"package": "primitive",
- "revision": 2,
+ "revision": 1,
"source": "hackage",
- "src_sha256": "696d4bd291c94d736142d6182117dca4258d3ef28bfefdb649ac8b5ecd0999c7",
- "version": "0.9.0.0"
+ "src_sha256": "44b4de41813c7bc5db8a57f87c3612a069b65086946268ba165097252ebd3d76",
+ "version": "0.9.1.0"
},
{
- "cabal_sha256": "8f92088f1c51c8d4569279a07565f8aa6b534a6735615b2295d2961dec8f1783",
+ "cabal_sha256": "a557cff65eed1f70f3a3b468423cd58e7a9a9564c5cc00c76a13de64dec9bcbd",
"component": "lib:splitmix",
"flags": [
"-optimised-mixer"
@@ -261,30 +261,30 @@
"package": "splitmix",
"revision": 0,
"source": "hackage",
- "src_sha256": "d678c41a603a62032cf7e5f8336bb8222c93990e4b59c8b291b7ca26c7eb12c7",
- "version": "0.1.1"
+ "src_sha256": "a61d4e8b30f5a16526d7d31171b674ae7924d2207f378060d13363bd8794de8c",
+ "version": "0.1.3.2"
},
{
- "cabal_sha256": "e5b7016e43a8f4822ebcf8cacaaa737beb62d370b988b5c69e95105d9f0fd582",
+ "cabal_sha256": "0b4f649c3e78713b2ccad1535251ee34b148237fb2229d7058c2b1d9ccc324b8",
"component": "lib:random",
"flags": [],
"package": "random",
"revision": 0,
"source": "hackage",
- "src_sha256": "6b5067e65625d777e31f151f5fcec351091d9de832183ca2a2a864e1cfd4f1b1",
- "version": "1.3.0"
+ "src_sha256": "d840ac83f265b0cfa2a678f8ec78627eb50cf9be2f067c52c8a4239c29b71a35",
+ "version": "1.3.1"
},
{
- "cabal_sha256": "233cbcdda6c2698932bb391ce0935fb44f80c115621ee815a21ed33ac8ede422",
+ "cabal_sha256": "c5de1fb3377ed3c5f4cd851a771d1acc5c37d2f6bef0a499295c0e8857da5605",
"component": "lib:unordered-containers",
"flags": [
"-debug"
],
"package": "unordered-containers",
- "revision": 4,
+ "revision": 2,
"source": "hackage",
- "src_sha256": "d9cfb287cf00592d39dc9c3cac8b99627ea08f2c01798e70130fc39f7c90f11d",
- "version": "0.2.20"
+ "src_sha256": "3b2ad1522b546e61960153257d1e5d239eeec5e83da847d5cb4d896a5bb7f9c0",
+ "version": "0.2.21"
},
{
"cabal_sha256": "79416292186feeaf1f60e49ac5a1ffae9bf1b120e040a74bf0e81ca7f1d31d3f",
@@ -297,7 +297,7 @@
"version": "1.0.2"
},
{
- "cabal_sha256": "03c8f06de478e07ad6fde95984c9206920106d0d8432ecb7ab825ef108d45382",
+ "cabal_sha256": "8704f35f7857f71adef2b74aafb5580f73dfab004a804718d418c16798f4a186",
"component": "lib:shake",
"flags": [
"-cloud",
@@ -308,8 +308,8 @@
"package": "shake",
"revision": 0,
"source": "hackage",
- "src_sha256": "6384e33a26a2590bf33719e88881076b899ac4b5340c1c9271e4caa37e9d6535",
- "version": "0.19.8"
+ "src_sha256": "4176d6e38c3b7813f019f2377466d9f01db842056eec1cdaa8a23b80ceddcb8a",
+ "version": "0.19.9"
},
{
"cabal_sha256": null,
=====================================
hadrian/bootstrap/plan-bootstrap-9_12_2.json
=====================================
@@ -150,14 +150,14 @@
"version": "0.11.102.1"
},
{
- "cabal_sha256": "57d9200fbea2e88e05e0be35925511764827b1c86d3214106b0b610f331fc40c",
+ "cabal_sha256": "b9c360f2f3fbff5ca04656b7aa0a91b254ac7de7e4b959bae4688a178ffd79d1",
"component": "lib:extra",
"flags": [],
"package": "extra",
"revision": 0,
"source": "hackage",
- "src_sha256": "2fa4ce5eae50560bba80f1883913cf2ed52b3d87fd290dae27d838c94f5389a1",
- "version": "1.8"
+ "src_sha256": "66a7d6d718646a7bda822d67550dc185c6e25ad1f7fecf06fc132e300098b598",
+ "version": "1.8.1"
},
{
"cabal_sha256": "372c1733d83b90045eb29da9f010fed79bfef8771ce65eb126a1d83ecc54a9a2",
@@ -190,17 +190,17 @@
"version": "0.1.0.0"
},
{
- "cabal_sha256": "2f23146cbe0325029927b221647695a4c7d6e97548ff731110979e34361f58ef",
+ "cabal_sha256": "140fc5adad166f7b527567cbd26ff481e8da4a66bdfc84be3ddf28dbeb66f275",
"component": "lib:hashable",
"flags": [
"-arch-native",
"-random-initial-seed"
],
"package": "hashable",
- "revision": 1,
+ "revision": 0,
"source": "hackage",
- "src_sha256": "e58b3a8e18da5f6cd7e937e5fd683e500bb1f8276b3768269759119ca0cddb6a",
- "version": "1.5.0.0"
+ "src_sha256": "ed0b7c10ce92c9ffe45420dadc38c6d39db486ff3633ff13567cc9f75f79b112",
+ "version": "1.5.1.0"
},
{
"cabal_sha256": "74ce60a23b8ef247b8bca71eeb38289e82b3b5e83b2383600b2c838a68218068",
@@ -233,27 +233,27 @@
"version": "0.8.3"
},
{
- "cabal_sha256": "59ab6c79159549ef94b584abce8e6d3b336014c2cce1337b59a8f637e2856df5",
+ "cabal_sha256": "fdbdfd4d413848c678a3737f2b985a5db66b796c6847b1ae08246ea3795c0ba2",
"component": "lib:js-jquery",
"flags": [],
"package": "js-jquery",
"revision": 0,
"source": "hackage",
- "src_sha256": "e0e0681f0da1130ede4e03a051630ea439c458cb97216cdb01771ebdbe44069b",
- "version": "3.3.1"
+ "src_sha256": "a087fa01a1c52f5386d43f5355f64841c5a4b56b53720090d66b5aa00bfeb106",
+ "version": "3.7.1"
},
{
- "cabal_sha256": "de20bf4eff1f972088854c8efda6eaca2d3147aff62232c3707f059152638759",
+ "cabal_sha256": "756b222c715bc6ef5ba81fa69cdbaa20c5c53beb6f16f174b8bacc93a6d239f0",
"component": "lib:primitive",
"flags": [],
"package": "primitive",
- "revision": 2,
+ "revision": 1,
"source": "hackage",
- "src_sha256": "696d4bd291c94d736142d6182117dca4258d3ef28bfefdb649ac8b5ecd0999c7",
- "version": "0.9.0.0"
+ "src_sha256": "44b4de41813c7bc5db8a57f87c3612a069b65086946268ba165097252ebd3d76",
+ "version": "0.9.1.0"
},
{
- "cabal_sha256": "8f92088f1c51c8d4569279a07565f8aa6b534a6735615b2295d2961dec8f1783",
+ "cabal_sha256": "a557cff65eed1f70f3a3b468423cd58e7a9a9564c5cc00c76a13de64dec9bcbd",
"component": "lib:splitmix",
"flags": [
"-optimised-mixer"
@@ -261,30 +261,30 @@
"package": "splitmix",
"revision": 0,
"source": "hackage",
- "src_sha256": "d678c41a603a62032cf7e5f8336bb8222c93990e4b59c8b291b7ca26c7eb12c7",
- "version": "0.1.1"
+ "src_sha256": "a61d4e8b30f5a16526d7d31171b674ae7924d2207f378060d13363bd8794de8c",
+ "version": "0.1.3.2"
},
{
- "cabal_sha256": "e5b7016e43a8f4822ebcf8cacaaa737beb62d370b988b5c69e95105d9f0fd582",
+ "cabal_sha256": "0b4f649c3e78713b2ccad1535251ee34b148237fb2229d7058c2b1d9ccc324b8",
"component": "lib:random",
"flags": [],
"package": "random",
"revision": 0,
"source": "hackage",
- "src_sha256": "6b5067e65625d777e31f151f5fcec351091d9de832183ca2a2a864e1cfd4f1b1",
- "version": "1.3.0"
+ "src_sha256": "d840ac83f265b0cfa2a678f8ec78627eb50cf9be2f067c52c8a4239c29b71a35",
+ "version": "1.3.1"
},
{
- "cabal_sha256": "233cbcdda6c2698932bb391ce0935fb44f80c115621ee815a21ed33ac8ede422",
+ "cabal_sha256": "c5de1fb3377ed3c5f4cd851a771d1acc5c37d2f6bef0a499295c0e8857da5605",
"component": "lib:unordered-containers",
"flags": [
"-debug"
],
"package": "unordered-containers",
- "revision": 4,
+ "revision": 2,
"source": "hackage",
- "src_sha256": "d9cfb287cf00592d39dc9c3cac8b99627ea08f2c01798e70130fc39f7c90f11d",
- "version": "0.2.20"
+ "src_sha256": "3b2ad1522b546e61960153257d1e5d239eeec5e83da847d5cb4d896a5bb7f9c0",
+ "version": "0.2.21"
},
{
"cabal_sha256": "79416292186feeaf1f60e49ac5a1ffae9bf1b120e040a74bf0e81ca7f1d31d3f",
@@ -297,7 +297,7 @@
"version": "1.0.2"
},
{
- "cabal_sha256": "03c8f06de478e07ad6fde95984c9206920106d0d8432ecb7ab825ef108d45382",
+ "cabal_sha256": "8704f35f7857f71adef2b74aafb5580f73dfab004a804718d418c16798f4a186",
"component": "lib:shake",
"flags": [
"-cloud",
@@ -308,8 +308,8 @@
"package": "shake",
"revision": 0,
"source": "hackage",
- "src_sha256": "6384e33a26a2590bf33719e88881076b899ac4b5340c1c9271e4caa37e9d6535",
- "version": "0.19.8"
+ "src_sha256": "4176d6e38c3b7813f019f2377466d9f01db842056eec1cdaa8a23b80ceddcb8a",
+ "version": "0.19.9"
},
{
"cabal_sha256": null,
=====================================
hadrian/cabal.project
=====================================
@@ -4,11 +4,7 @@ packages: ./
-- This essentially freezes the build plan for hadrian
-- It would be wise to keep this up to date with the state set in .gitlab/ci.sh.
-index-state: 2025-12-19T19:24:24Z
-
--- Fixes bootstrapping with ghc-9.14
-allow-newer: all:base, all:ghc-bignum, all:template-haskell
-constraints: hashable >= 1.5.0.0
+index-state: 2026-03-09T13:54:35Z
-- N.B. Compile with -O0 since this is not a performance-critical executable
-- and the Cabal takes nearly twice as long to build with -O1. See #16817.
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/133b48daf61fe361591d6354b4dd7f9…
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/133b48daf61fe361591d6354b4dd7f9…
You're receiving this email because of your account on gitlab.haskell.org.
1
0
09 Mar '26
Cheng Shao pushed new branch wip/bump-hadrian-bootstrap at Glasgow Haskell Compiler / GHC
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/tree/wip/bump-hadrian-bootstrap
You're receiving this email because of your account on gitlab.haskell.org.
1
0
[Git][ghc/ghc] Pushed new branch wip/andreask/fix_orig_thunk
by Andreas Klebinger (@AndreasK) 09 Mar '26
by Andreas Klebinger (@AndreasK) 09 Mar '26
09 Mar '26
Andreas Klebinger pushed new branch wip/andreask/fix_orig_thunk at Glasgow Haskell Compiler / GHC
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/tree/wip/andreask/fix_orig_thunk
You're receiving this email because of your account on gitlab.haskell.org.
1
0
[Git][ghc/ghc][wip/sjakobi/regression-tests-3] 7 commits: Add regression test for #12002
by Simon Jakobi (@sjakobi2) 09 Mar '26
by Simon Jakobi (@sjakobi2) 09 Mar '26
09 Mar '26
Simon Jakobi pushed to branch wip/sjakobi/regression-tests-3 at Glasgow Haskell Compiler / GHC
Commits:
815bb2b8 by Simon Jakobi at 2026-03-09T13:29:58+01:00
Add regression test for #12002
Closes #12002.
- - - - -
0afc6290 by Simon Jakobi at 2026-03-09T13:29:58+01:00
Add regression test for #12046
Closes #12046.
- - - - -
2b8649fc by Simon Jakobi at 2026-03-09T13:29:58+01:00
Add regression test for #13180
Closes #13180.
- - - - -
0d5be8c7 by Simon Jakobi at 2026-03-09T13:29:58+01:00
Add regression test for #11141
Closes #11141.
- - - - -
06766598 by Simon Jakobi at 2026-03-09T13:29:58+01:00
Add regression test for #11505
Closes #11505.
- - - - -
e66d54a3 by Simon Jakobi at 2026-03-09T13:29:58+01:00
Add regression perf test for #13820
Closes #13820.
- - - - -
b811b708 by Simon Jakobi at 2026-03-09T13:29:58+01:00
Add regression test for #10381
Closes #10381.
- - - - -
19 changed files:
- + testsuite/tests/parser/should_compile/T12002.hs
- + testsuite/tests/parser/should_compile/T12002.stderr
- testsuite/tests/parser/should_compile/all.T
- + testsuite/tests/perf/compiler/T13820.hs
- testsuite/tests/perf/compiler/all.T
- + testsuite/tests/rebindable/T10381.hs
- testsuite/tests/rebindable/all.T
- + testsuite/tests/typecheck/T13180/T13180.hs
- + testsuite/tests/typecheck/T13180/T13180.hs-boot
- + testsuite/tests/typecheck/T13180/T13180.stderr
- + testsuite/tests/typecheck/T13180/T13180A.hs
- + testsuite/tests/typecheck/T13180/all.T
- + testsuite/tests/typecheck/should_compile/T11141.hs
- + testsuite/tests/typecheck/should_compile/T11141.stderr
- + testsuite/tests/typecheck/should_compile/T11505Bar.hs
- + testsuite/tests/typecheck/should_compile/T11505Foo.hs
- + testsuite/tests/typecheck/should_compile/T11505Foo.hs-boot
- + testsuite/tests/typecheck/should_compile/T12046.hs
- testsuite/tests/typecheck/should_compile/all.T
Changes:
=====================================
testsuite/tests/parser/should_compile/T12002.hs
=====================================
@@ -0,0 +1,5 @@
+-- Test that the misplaced LANGUAGE pragma results in a warning but doesn't
+-- cause the program to be rejected.
+module T12002 where
+
+{-# LANGUAGE OverloadedStrings #-}
=====================================
testsuite/tests/parser/should_compile/T12002.stderr
=====================================
@@ -0,0 +1,6 @@
+T12002.hs:5:1: warning: [GHC-28007] [-Wmisplaced-pragmas (in -Wdefault)]
+ Misplaced LANGUAGE pragma
+ Suggested fix:
+ Perhaps you meant to place it in the module header?
+ The module header is the section at the top of the file, before the ‘module’ keyword
+
=====================================
testsuite/tests/parser/should_compile/all.T
=====================================
@@ -116,6 +116,7 @@ test('DumpParsedAst', normal, compile, ['-dsuppress-uniques -ddump-parsed-a
test('DumpParsedAstComments', normal, compile, ['-dsuppress-uniques -ddump-parsed-ast -dkeep-comments'])
test('DumpRenamedAst', normal, compile, ['-dsuppress-uniques -ddump-rn-ast'])
test('DumpTypecheckedAst', normal, compile, ['-dsuppress-uniques -ddump-tc-ast'])
+test('T12002', normal, compile, [''])
test('T12045e', normal, compile, [''])
test('T13087', normal, compile, [''])
test('T13747', normal, compile, [''])
=====================================
testsuite/tests/perf/compiler/T13820.hs
=====================================
@@ -0,0 +1,11 @@
+-- Regression test for #13820. Instead of the original 27 `id`s, this
+-- test uses only 24, so a regression is less likely to result in an
+-- out-of-memory situation.
+f = id id id id
+ id id id id
+ id id id id
+ id id id id
+ id id id id
+ id id id id
+
+main = print 1
=====================================
testsuite/tests/perf/compiler/all.T
=====================================
@@ -680,6 +680,12 @@ test ('T13253-spj',
],
compile,
['-v0 -O'])
+test ('T13820',
+ [ collect_compiler_stats('peak_megabytes_allocated', 5),
+ collect_compiler_stats('bytes allocated', 2),
+ ],
+ compile,
+ ['-v0'])
test ('T14766',
[ collect_compiler_stats('bytes allocated',2),
pre_cmd('python3 genT14766.py > T14766.hs'),
=====================================
testsuite/tests/rebindable/T10381.hs
=====================================
@@ -0,0 +1,43 @@
+{-# LANGUAGE RebindableSyntax, RankNTypes #-}
+
+module T10381 where
+
+import Prelude ( String, undefined )
+
+newtype Cont r a = Cont { runCont :: (forall i. a i -> r) -> r }
+
+(>>=) :: Cont r a -> (forall i. a i -> Cont r b) -> Cont r b
+ma >>= fmb
+ = Cont (\k -> runCont ma (\a -> runCont (fmb a) k))
+
+fail :: String -> Cont r a
+fail = undefined
+
+return :: a i -> Cont r a
+return x = Cont (\k -> k x)
+
+foo :: Cont r []
+foo = do
+ bar <- foo
+ return bar
+
+{- Previously, GHC used to reject this program with:
+
+ Couldn't match type ‘i0’ with ‘i’
+ because type variable ‘i’ would escape its scope
+ This (rigid, skolem) type variable is bound by
+ a type expected by the context: [i] -> Cont r []
+ at Bug.hs:21:3-12
+ Expected type: Cont r [] -> ([i0] -> Cont r []) -> Cont r []
+ Actual type: Cont r []
+ -> (forall i. [i] -> Cont r []) -> Cont r []
+ In a stmt of a 'do' block: bar <- foo
+ In the expression:
+ do { bar <- foo;
+ return bar }
+ In an equation for ‘foo’:
+ foo
+ = do { bar <- foo;
+ return bar }
+-}
+
=====================================
testsuite/tests/rebindable/all.T
=====================================
@@ -35,6 +35,7 @@ test('T4851', normal, compile, [''])
test('T5908', normal, compile, [''])
test('T10112', normal, compile, [''])
+test('T10381', normal, compile, [''])
test('T11216', normal, compile, [''])
test('T11216A', normal, compile, [''])
test('T12080', normal, compile, [''])
=====================================
testsuite/tests/typecheck/T13180/T13180.hs
=====================================
@@ -0,0 +1,8 @@
+module T13180 (T, f) where
+
+import qualified T13180A
+
+type T = Int
+
+f :: T -> T
+f x = T13180A.f x
=====================================
testsuite/tests/typecheck/T13180/T13180.hs-boot
=====================================
@@ -0,0 +1,4 @@
+module T13180 where
+
+data T
+f :: T -> T
=====================================
testsuite/tests/typecheck/T13180/T13180.stderr
=====================================
@@ -0,0 +1,12 @@
+[1 of 3] Compiling T13180[boot] ( T13180.hs-boot, T13180.o-boot )
+[2 of 3] Compiling T13180A ( T13180A.hs, T13180A.o )
+[3 of 3] Compiling T13180 ( T13180.hs, T13180.o )
+T13180.hs-boot:3:1: error: [GHC-15843]
+ • Type constructor ‘T’ has conflicting definitions in the module
+ and its hs-boot file.
+ Main module: type T :: *
+ type T = Int
+ Boot file: type T :: *
+ data T
+ • In the type synonym declaration for ‘T’
+
=====================================
testsuite/tests/typecheck/T13180/T13180A.hs
=====================================
@@ -0,0 +1,3 @@
+module T13180A (f) where
+
+import {-# SOURCE #-} T13180
=====================================
testsuite/tests/typecheck/T13180/all.T
=====================================
@@ -0,0 +1,8 @@
+# Historically this scenario resulted in a second error:
+#
+# Identifier ‘f’ has conflicting definitions in the module
+# and its hs-boot file
+# Main module: f :: T -> T
+# Boot file: f :: T -> T
+# The two types are different
+test('T13180', normal, multimod_compile_fail, ['T13180', '-fforce-recomp'])
=====================================
testsuite/tests/typecheck/should_compile/T11141.hs
=====================================
@@ -0,0 +1,28 @@
+{-# LANGUAGE FunctionalDependencies #-}
+{-# LANGUAGE InstanceSigs #-}
+{-# LANGUAGE ScopedTypeVariables #-}
+module T11141 where
+
+data F a = F a
+instance Show a => Show (F a) where
+ show :: forall a. Show a => F a -> String
+ show (F x) = show x
+
+{- Previously emitted error:
+
+ Could not deduce (Show a0)
+ from the context (Show a)
+ bound by the type signature for show :: Show a => F a -> String
+ at A.hs:8:13-45
+ The type variable ‘a0’ is ambiguous
+ When checking that:
+ forall a. Show a => forall a1. Show a1 => F a1 -> String
+ is more polymorphic than: forall a. Show a => F a -> String
+ When checking that instance signature for ‘show’
+ is more general than its signature in the class
+ Instance sig: forall a.
+ Show a =>
+ forall a1. Show a1 => F a1 -> String
+ Class sig: forall a. Show a => F a -> String
+ In the instance declaration for ‘Show (F a)’
+-}
=====================================
testsuite/tests/typecheck/should_compile/T11141.stderr
=====================================
@@ -0,0 +1,4 @@
+T11141.hs:8:20: warning: [GHC-63397] [-Wname-shadowing (in -Wall)]
+ This binding for ‘a’ shadows the existing binding
+ bound at T11141.hs:7:10
+
=====================================
testsuite/tests/typecheck/should_compile/T11505Bar.hs
=====================================
@@ -0,0 +1,3 @@
+module T11505Bar where
+
+import {-# SOURCE #-} T11505Foo
=====================================
testsuite/tests/typecheck/should_compile/T11505Foo.hs
=====================================
@@ -0,0 +1,12 @@
+module T11505Foo where
+
+import T11505Bar
+
+-- #11505: this used to fail with:
+--
+-- T11505Foo.hs:12:1:
+-- Type constructor `Foo' has conflicting definitions in the module
+-- and its hs-boot file
+-- Main module: data Foo = Foo {x :: {-# UNPACK #-} !Int}
+-- Boot file: data Foo = Foo {x :: !Int}
+data Foo = Foo { x :: {-# UNPACK #-} !Int }
=====================================
testsuite/tests/typecheck/should_compile/T11505Foo.hs-boot
=====================================
@@ -0,0 +1,3 @@
+module T11505Foo where
+
+data Foo = Foo { x :: {-# UNPACK #-} !Int }
=====================================
testsuite/tests/typecheck/should_compile/T12046.hs
=====================================
@@ -0,0 +1,14 @@
+{-# LANGUAGE UndecidableSuperClasses #-}
+{-# LANGUAGE AllowAmbiguousTypes #-}
+{-# LANGUAGE TypeFamilies #-}
+module T12046 where
+
+class A (T a) => A a where
+ type T a
+
+test1 :: forall a. A a => ()
+test1 = ()
+
+test2 :: A a => proxy a -> ()
+test2 _ = ()
+
=====================================
testsuite/tests/typecheck/should_compile/all.T
=====================================
@@ -496,6 +496,7 @@ test('T10770b', expect_broken(10770), compile, [''])
test('T10935', normal, compile, [''])
test('T10971a', normal, compile, [''])
test('T11062', [extra_files(['T11062.hs', 'T11062.hs-boot', 'T11062a.hs'])], multimod_compile, ['T11062', '-v0'])
+test('T11141', normal, compile, ['-Wname-shadowing'])
test('T11237', normal, compile, [''])
test('T10592', normal, compile, [''])
test('T11305', normal, compile, [''])
@@ -507,6 +508,7 @@ test('RebindNegate', normal, compile, [''])
test('T11319', normal, compile, [''])
test('T11397', normal, compile, [''])
test('T11458', normal, compile, [''])
+test('T11505', [extra_files(['T11505Foo.hs', 'T11505Foo.hs-boot', 'T11505Bar.hs'])], multimod_compile, ['T11505Foo', '-v0'])
test('T11506', normal, compile, [''])
test('T11524', normal, compile, [''])
test('T11552', normal, compile, [''])
@@ -525,6 +527,7 @@ test('T11982a', expect_broken(11982), compile, [''])
test('T11982b', expect_broken(11982), compile, [''])
test('T11982c', normal, compile, [''])
test('T12045a', normal, compile, [''])
+test('T12046', normal, compile, [''])
test('T12064', [], multimod_compile, ['T12064', '-v0'])
test('ExPat', normal, compile, [''])
test('ExPatFail', normal, compile_fail, [''])
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/8490e91890ba3d4f5627edf6e4dbeb…
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/8490e91890ba3d4f5627edf6e4dbeb…
You're receiving this email because of your account on gitlab.haskell.org.
1
0
[Git][ghc/ghc][wip/marge_bot_batch_merge_job] 11 commits: compiler: add myCapabilityExpr to GHC.Cmm.Utils
by Marge Bot (@marge-bot) 09 Mar '26
by Marge Bot (@marge-bot) 09 Mar '26
09 Mar '26
Marge Bot pushed to branch wip/marge_bot_batch_merge_job at Glasgow Haskell Compiler / GHC
Commits:
a46a1bb1 by Cheng Shao at 2026-03-09T04:50:30-04:00
compiler: add myCapabilityExpr to GHC.Cmm.Utils
This commit adds `myCapabilityExpr` to `GHC.Cmm.Utils` which is
computed from `BaseReg`. It's convenient for codegen logic where one
needs to pass the current Capability's pointer.
- - - - -
4afc65b1 by Cheng Shao at 2026-03-09T04:50:30-04:00
compiler: lower tryPutMVar# into a ccall directly
This patch addresses an old TODO of `stg_tryPutMVarzh` by removing it
completely and making the compiler lower `tryPutMVar#` into a ccall to
`performTryPutMVar` directly, without landing into an intermediate C
or Cmm function. `performTryPutMVar` is promoted to a public RTS
function with default visibility, and the compiler lowering logic
takes into account the C ABI of `performTryPutMVar` and converts from
C Bool to primop's `Int#` result properly.
- - - - -
9e3d6a58 by Simon Hengel at 2026-03-09T04:51:15-04:00
Don't use #line in haddocks
This confuses the parser. Haddock output is unaffected by this change.
(read: this still produces the same documentation)
- - - - -
f4e8fec2 by Wolfgang Jeltsch at 2026-03-09T04:52:01-04:00
Remove in-package dependencies on `GHC.Internal.System.IO`
This contribution eliminates all dependencies on
`GHC.Internal.System.IO` from within `ghc-internal`. It comprises the
following changes:
* Make `GHC.Internal.Fingerprint` independent of I/O support
* Tighten the dependencies of `GHC.Internal.Data.Version`
* Tighten the dependencies of `GHC.Internal.TH.Monad`
* Tighten the dependencies of `GHCi.Helpers`
* Move some code that needs `System.IO` to `template-haskell`
* Move the `GHC.ResponseFile` implementation into `base`
* Move the `System.Exit` implementation into `base`
* Move the `System.IO.OS` implementation into `base`
Metric Decrease:
size_hello_artifact
size_hello_artifact_gzip
size_hello_unicode
size_hello_unicode_gzip
- - - - -
91df4c82 by Sylvain Henry at 2026-03-09T04:53:20-04:00
T18832: fix Windows CI failure by dropping removeDirectoryRecursive
On Windows, open file handles prevent deletion. After killThread, the
closer thread may not have called hClose yet, causing removeDirectoryRecursive
to fail with "permission denied". The test harness cleans up the run
directory anyway, so the call is redundant.
- - - - -
d7fe9671 by Cheng Shao at 2026-03-09T04:54:04-04:00
compiler: fix redundant import in GHC.StgToJS.Object
This patch fixes a redundant import in GHC.StgToJS.Object that causes
a build failure when compiling head from 9.14 with validate flavours.
Fixes #26991.
- - - - -
0bfd29c3 by Cheng Shao at 2026-03-09T04:54:46-04:00
wasm: fix `Illegal foreign declaration` failure when ghci loads modules with JSFFI exports
This patch fixes a wasm ghci error when loading modules with JSFFI
exports; the `backendValidityOfCExport` check in `tcCheckFEType`
should only makes sense and should be performed when not checking the
JavaScript calling convention; otherwise, when the calling convention
is JavaScript, the codegen logic should be trusted to backends that
actually make use of it. Fixes #26998.
- - - - -
74e1473c by Duncan Coutts at 2026-03-09T05:27:56-04:00
Apply NOINLINE pragmas to generated Typeable bindings
For context, see the existing Note [Grand plan for Typeable]
and the Note [NOINLINE on generated Typeable bindings] added in the
subsequent commit.
This is about reducing the number of exported top level names and
unfoldings, which reduces interface file sizes and reduces the number of
global/dynamic linker symbols.
Also accept the changed test output and metric decreases.
Tests that record the phase output for type checking or for simplifier
end up with different output: the generated bindings now have an
Inline [~] annotation, and many top level names are now local rather
than module-prefixed for export.
Also accept the numerous metric decreases in compile_time/bytes
allocated, and a few in compile_time/max_bytes_used.
There's also one instance of a decrease in runtime/max_bytes_used but
it's a ghci-way test and so presumably the reason is that it loads
smaller .hi files and/or links fewer symbols.
-------------------------
Metric Decrease:
CoOpt_Singletons
MultiLayerModulesTH_OneShot
MultilineStringsPerf
T10421
T10547
T12150
T12227
T12234
T12425
T13035
T13056
T13253
T13253-spj
T15304
T15703
T16875
T17836b
T17977b
T18140
T18223
T18282
T18304
T18698a
T18698b
T18730
T18923
T20049
T21839c
T24471
T24582
T24984
T3064
T4029
T5030
T5642
T5837
T6048
T9020
T9198
T9961
TcPlugin_RewritePerf
WWRec
hard_hole_fits
mhu-perf
-------------------------
- - - - -
ba28f4a3 by Duncan Coutts at 2026-03-09T05:27:56-04:00
Add documentation Note [NOINLINE on generated Typeable bindings]
and refer to it from the code and existing documentation.
- - - - -
bcc0c7ce by Duncan Coutts at 2026-03-09T05:27:57-04:00
Switch existing note to "named wrinkle" style, (GPT1)..(GPT7)
GPT = Grand plan for Typeable
- - - - -
0cf8aa05 by Cheng Shao at 2026-03-09T05:27:57-04:00
ci: only build deb13 for validate pipeline aarch64-linux jobs
This patch drops the redundant aarch64-linux deb12 job from validate pipelines
and only keeps deb13; it's still built in nightly/release pipelines. Closes #27004.
- - - - -
59 changed files:
- .gitlab/generate-ci/gen_ci.hs
- .gitlab/jobs.yaml
- compiler/GHC/Cmm/Utils.hs
- compiler/GHC/Iface/Ext/Utils.hs
- compiler/GHC/StgToCmm/Prim.hs
- compiler/GHC/StgToJS/Object.hs
- compiler/GHC/Tc/Gen/Foreign.hs
- compiler/GHC/Tc/Instance/Typeable.hs
- libraries/base/src/GHC/Fingerprint.hs
- libraries/base/src/GHC/ResponseFile.hs
- libraries/base/src/System/Exit.hs
- libraries/base/src/System/IO/OS.hs
- libraries/base/tests/IO/T18832.hs
- libraries/ghc-heap/GHC/Exts/Heap/Closures.hs
- libraries/ghc-internal/ghc-internal.cabal.in
- libraries/ghc-internal/src/GHC/Internal/Data/Version.hs
- libraries/ghc-internal/src/GHC/Internal/Fingerprint.hs
- libraries/ghc-internal/src/GHC/Internal/GHCi/Helpers.hs
- − libraries/ghc-internal/src/GHC/Internal/ResponseFile.hs
- − libraries/ghc-internal/src/GHC/Internal/System/Exit.hs
- − libraries/ghc-internal/src/GHC/Internal/System/IO/OS.hs
- libraries/ghc-internal/src/GHC/Internal/TH/Monad.hs
- libraries/template-haskell/Language/Haskell/TH/Syntax.hs
- rts/PrimOps.cmm
- rts/RtsSymbols.c
- rts/Threads.c
- rts/Threads.h
- rts/include/rts/Threads.h
- rts/include/stg/MiscClosures.h
- testsuite/tests/deSugar/should_compile/T16615.stderr
- testsuite/tests/deSugar/should_compile/T2431.stderr
- testsuite/tests/dmdanal/should_compile/T16029.stdout
- testsuite/tests/ffi/should_compile/all.T
- + testsuite/tests/ghci-wasm/T26998.hs
- testsuite/tests/ghci-wasm/all.T
- testsuite/tests/numeric/should_compile/T14170.stdout
- testsuite/tests/numeric/should_compile/T14465.stdout
- testsuite/tests/numeric/should_compile/T7116.stdout
- testsuite/tests/roles/should_compile/Roles1.stderr
- testsuite/tests/roles/should_compile/Roles13.stderr
- testsuite/tests/roles/should_compile/Roles14.stderr
- testsuite/tests/roles/should_compile/Roles2.stderr
- testsuite/tests/roles/should_compile/Roles3.stderr
- testsuite/tests/roles/should_compile/Roles4.stderr
- testsuite/tests/roles/should_compile/T8958.stderr
- testsuite/tests/simplCore/should_compile/OpaqueNoCastWW.stderr
- testsuite/tests/simplCore/should_compile/T3717.stderr
- testsuite/tests/simplCore/should_compile/T3772.stdout
- testsuite/tests/simplCore/should_compile/T4908.stderr
- testsuite/tests/simplCore/should_compile/T4930.stderr
- testsuite/tests/simplCore/should_compile/T7360.stderr
- testsuite/tests/simplCore/should_compile/T8274.stdout
- testsuite/tests/simplCore/should_compile/T9400.stderr
- testsuite/tests/simplCore/should_compile/noinline01.stderr
- testsuite/tests/simplCore/should_compile/par01.stderr
- testsuite/tests/th/TH_Roles2.stderr
- testsuite/tests/typecheck/should_compile/T13032.stderr
- testsuite/tests/typecheck/should_compile/T18406b.stderr
- testsuite/tests/typecheck/should_compile/T18529.stderr
The diff was not included because it is too large.
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/9c734a7ed2fcfdec4bd5af25c10a96…
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/9c734a7ed2fcfdec4bd5af25c10a96…
You're receiving this email because of your account on gitlab.haskell.org.
1
0
[Git][ghc/ghc][master] wasm: fix `Illegal foreign declaration` failure when ghci loads modules with JSFFI exports
by Marge Bot (@marge-bot) 09 Mar '26
by Marge Bot (@marge-bot) 09 Mar '26
09 Mar '26
Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC
Commits:
0bfd29c3 by Cheng Shao at 2026-03-09T04:54:46-04:00
wasm: fix `Illegal foreign declaration` failure when ghci loads modules with JSFFI exports
This patch fixes a wasm ghci error when loading modules with JSFFI
exports; the `backendValidityOfCExport` check in `tcCheckFEType`
should only makes sense and should be performed when not checking the
JavaScript calling convention; otherwise, when the calling convention
is JavaScript, the codegen logic should be trusted to backends that
actually make use of it. Fixes #26998.
- - - - -
3 changed files:
- compiler/GHC/Tc/Gen/Foreign.hs
- + testsuite/tests/ghci-wasm/T26998.hs
- testsuite/tests/ghci-wasm/all.T
Changes:
=====================================
compiler/GHC/Tc/Gen/Foreign.hs
=====================================
@@ -449,8 +449,9 @@ tcFExport d = pprPanic "tcFExport" (ppr d)
tcCheckFEType :: Type -> ForeignExport GhcRn -> TcM (ForeignExport GhcTc)
tcCheckFEType sig_ty edecl@(CExport src (L l (CExportStatic str cconv))) = do
- checkCg (Left edecl) backendValidityOfCExport
- when (cconv /= JavaScriptCallConv) $ checkTc (isCLabelString str) (TcRnInvalidCIdentifier str)
+ when (cconv /= JavaScriptCallConv) $ do
+ checkCg (Left edecl) backendValidityOfCExport
+ checkTc (isCLabelString str) (TcRnInvalidCIdentifier str)
cconv' <- checkCConv (Left edecl) cconv
checkForeignArgs isFFIExternalTy arg_tys
checkForeignRes nonIOok noCheckSafe isFFIExportResultTy res_ty
=====================================
testsuite/tests/ghci-wasm/T26998.hs
=====================================
@@ -0,0 +1,4 @@
+main :: IO ()
+main = pure ()
+
+foreign export javascript "my_main" main :: IO ()
=====================================
testsuite/tests/ghci-wasm/all.T
=====================================
@@ -10,3 +10,5 @@ test('T26430', [
extra_hc_opts('-L. -lT26430B')]
, compile_and_run, ['']
)
+
+test('T26998', [], compile_and_run, [''])
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/0bfd29c3d233da282e96e89e5398cfd…
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/0bfd29c3d233da282e96e89e5398cfd…
You're receiving this email because of your account on gitlab.haskell.org.
1
0