commercialhaskell / stack

The Haskell Tool Stack
http://haskellstack.org
BSD 3-Clause "New" or "Revised" License
4k stars 843 forks source link

stack install PKG-VERSION may quietly install some other version #5112

Open simonmichael opened 4 years ago

simonmichael commented 4 years ago

Steps to reproduce

Outside a project, ask stack install to install a package version that it doesn't know about yet (because stack update wasn't run recently):

~$ cd
~$ stack install --resolver=lts-14.16 hledger-lib-1.16.1 --dry-run
No packages would be unregistered.

Would build:
hledger-lib-1.14.1: database=snapshot, source=hledger-lib (from Hackage)

Expected

I expected it to find the requested version (1.16.1) from hackage, perhaps automatically updating its package db first; or to complain that it didn't know about this version, and fail with an error, and suggest running stack update.

Actual

It installed an older version (1.14.1) (the latest known at time of last stack update, presumably), and reported no error.

Stack version

~$ stack --version
Version 2.1.3, Git revision 0fa51b9925decd937e4a993ad90cb686f88fa282 (7739 commits) x86_64 hpack-0.31.2
dbaynard commented 4 years ago

Thanks for reporting! This seems to be an edge case, glossed over in the documentation — in short, as hledger-lib is in the snapshot (would also apply to extra-deps) it seems you shouldn't be able to override it by specifying the version. You could confirm this using a custom snapshot, which removes hledger-lib (I haven't done this).

Given this, plus your expectations, would you like to see stack throw an error, indicating what is actually going on?

simonmichael commented 4 years ago

I've always understood stack install PKG-VER, ie specifying a package version on the command line, to be like specifying an extra dep, overriding whatever is in the resolver. I'd expect stack to treat it that way, and give an error if it can't install exactly the requested version. Quietly substituting a different version from one explicitly requested is never the right behaviour I think.

qrilka commented 4 years ago

I didn't look deep into it but I think that this could be a reason for this to happen - https://github.com/commercialhaskell/stack/blob/9e6fd9f4c056cc22825a8bb8c1d06b64cbac5c04/src/Stack/Build/ConstructPlan.hs#L715 Unfortunately it doesn't list complete motivation behind this decision and I think I've talked with @snoyberg about it at least once but I don't remember enough details of that either. Actually that line is about dependencies and in this case it's an explicit target so that could be an explanation to no warning issued. I agree that this behavior is at least confusing and it makes sense to investigate it better and at least document it.

dbaynard commented 4 years ago

Quietly substituting a different version from one explicitly requested is never the right behaviour I think.

Oh definitely never the right behaviour.

The snippet from ConstructPlan seems to match my thought that not installling the version you specify is intentional. If you want to install a custom version, it would break the reproducibility princible.

Seems like we're all happy to call this a bug. I think the correct behaviour is to throw an error indicating that the package is in the snapshot, so cannot be overridden, and providing a link to how to use a custom snapshot.

@simonmichael Would you be wiling to help dig further into this, and resolve the matter?

simonmichael commented 4 years ago

For this use case - outside a project, installing an app that’s not yet in stackage but compatible - I feel it could do better than that. It works fine if you’ve done a stack update.

dbaynard commented 4 years ago

It works fine if you’ve done a stack update.

Ah, I didn't realize that. Would you be able to paste some verbose logs?

simonmichael commented 4 years ago

Forgive me, I just wanted to note the issue; I think it’s easy to reproduce.

simonmichael commented 4 years ago

@dbaynard, I just hit this again, here's the -v log:

~/src/hledger$ stack exec -- ghc-pkg list shake
/Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/lib/ghc-8.6.5/package.conf.d
    (no packages)
/Users/simon/.stack/snapshots/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/pkgdb
    (no packages)
/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/pkgdb
    (no packages)
~/src/hledger$ shake --version
bash: /Users/simon/.local/bin/shake: No such file or directory
~/src/hledger$ stack install shake-0.18.4 -v
Version 2.1.3, Git revision 0fa51b9925decd937e4a993ad90cb686f88fa282 (7739 commits) x86_64 hpack-0.31.2
2019-12-18 13:31:07.186424: [debug] Checking for project config at: /Users/simon/src/PLAINTEXTACCOUNTING/hledger/stack.yaml
2019-12-18 13:31:07.187561: [debug] Loading project config file stack.yaml
2019-12-18 13:31:07.197134: [debug] SELECT COUNT(*) FROM "last_performed" WHERE ("action"=?) AND ("timestamp">=?); [PersistInt64 1,PersistUTCTime 2019-12-17 21:31:07.19706 UTC]
2019-12-18 13:31:07.198774: [debug] Using package location completions from a lock file
2019-12-18 13:31:07.422956: [debug] Running hpack on /Users/simon/src/PLAINTEXTACCOUNTING/hledger/hledger-lib/package.yaml
2019-12-18 13:31:07.446930: [debug] hpack output unchanged in /Users/simon/src/PLAINTEXTACCOUNTING/hledger/hledger-lib/hledger-lib.cabal
2019-12-18 13:31:07.448092: [debug] Running hpack on /Users/simon/src/PLAINTEXTACCOUNTING/hledger/hledger/package.yaml
2019-12-18 13:31:07.507820: [debug] hpack output unchanged in /Users/simon/src/PLAINTEXTACCOUNTING/hledger/hledger/hledger.cabal
2019-12-18 13:31:07.509184: [debug] Running hpack on /Users/simon/src/PLAINTEXTACCOUNTING/hledger/hledger-ui/package.yaml
2019-12-18 13:31:07.514217: [debug] hpack output unchanged in /Users/simon/src/PLAINTEXTACCOUNTING/hledger/hledger-ui/hledger-ui.cabal
2019-12-18 13:31:07.574548: [debug] Running hpack on /Users/simon/src/PLAINTEXTACCOUNTING/hledger/hledger-web/package.yaml
2019-12-18 13:31:07.606218: [debug] hpack output unchanged in /Users/simon/src/PLAINTEXTACCOUNTING/hledger/hledger-web/hledger-web.cabal
2019-12-18 13:31:07.660063: [debug] Asking for a supported GHC version
2019-12-18 13:31:07.660363: [debug] Installed tools: 
 - ghc-8.8.1
 - ghc-8.6.5
 - ghc-8.10.0.20191210
2019-12-18 13:31:07.664433: [debug] Potential GHC builds: standard
2019-12-18 13:31:07.787965: [debug] Found already installed GHC builds: standard
2019-12-18 13:31:07.789751: [debug] SELECT "id","actual_version","arch","ghc_path","ghc_size","ghc_modified","ghc_pkg_path","runghc_path","haddock_path","cabal_version","global_db","global_db_cache_size","global_db_cache_modified","info","global_dump" FROM "compiler_cache" WHERE "ghc_path"=?; [PersistText "/Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-8.6.5"]
2019-12-18 13:31:07.868231: [debug] Loaded compiler information from cache
2019-12-18 13:31:07.888752: [debug] Asking for a supported GHC version
2019-12-18 13:31:07.889398: [debug] Resolving package entries
2019-12-18 13:31:07.889582: [debug] Parsing the targets
2019-12-18 13:31:08.105494: [debug] Checking flags
2019-12-18 13:31:08.105614: [debug] SourceMap constructed
2019-12-18 13:31:08.117014: [debug] Starting to execute command inside EnvConfig
2019-12-18 13:31:08.146513: [debug] Finding out which packages are already installed
2019-12-18 13:31:08.146840: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --global --no-user-package-db dump --expand-pkgroot
2019-12-18 13:31:08.258735: [debug] Process finished in 97ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --global --no-user-package-db dump --expand-pkgroot
2019-12-18 13:31:08.262799: [debug] Ignoring package haskeline due to wanting version 0.7.5.0 instead of 0.7.4.3
2019-12-18 13:31:08.265218: [debug] Ignoring package Cabal due to wanting version 2.4.1.0 instead of 2.4.0.1
2019-12-18 13:31:08.265743: [debug] Ignoring package parsec due to wanting version 3.1.14.0 instead of 3.1.13.0
2019-12-18 13:31:08.353197: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/pkgdb dump --expand-pkgroot
2019-12-18 13:31:08.583117: [debug] Process finished in 230ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/pkgdb dump --expand-pkgroot
2019-12-18 13:31:08.596267: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/pkgdb dump --expand-pkgroot
2019-12-18 13:31:08.663061: [debug] Process finished in 67ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/pkgdb dump --expand-pkgroot
2019-12-18 13:31:08.683773: [debug] Constructing the build plan
2019-12-18 13:31:08.776369: [debug] Parsing cabal file for shake (from Hackage)
2019-12-18 13:31:08.792462: [debug] Checking if we are going to build multiple executables with the same name
2019-12-18 13:31:08.793660: [debug] Executing the build plan
2019-12-18 13:31:08.871617: [debug] SELECT "id","platform_ghc_dir","compiler","cabal_version","package_key","options_hash","haddock","library" FROM "precompiled_cache" WHERE "platform_ghc_dir"=? AND "compiler"=? AND "cabal_version"=? AND "package_key"=? AND "options_hash"=? AND "haddock"=?; [PersistText "x86_64-osx/",PersistText "ghc-8.6.5",PersistText "2.4.0.1",PersistText "6ff24cd6cf7c375106240f67d42abb53a8dae3e7d2909bb9441a165855862a6e,11991",PersistByteString "_\234\ETX\RSb\247\DC3h\164\238\204\EM-T\132U\133\&0}\218kxO|3\231\178\168\DLE\174\165\185",PersistBool False]
2019-12-18 13:31:08.874268: [debug] SELECT "id", "precompiled_cache_id", "sub_lib" FROM "precompiled_cache_sub_lib" WHERE ("precompiled_cache_id"=?); [PersistInt64 720]
2019-12-18 13:31:08.968878: [debug] SELECT "id", "precompiled_cache_id", "exe" FROM "precompiled_cache_exe" WHERE ("precompiled_cache_id"=?); [PersistInt64 720]
2019-12-18 13:31:08.972789: [info] shake> using precompiled package
2019-12-18 13:31:09.074538: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 unregister --force shake-0.18.3
2019-12-18 13:31:09.187605: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/95cfabe7f2d079269cd84fc5c6436ec5c50948d4f64bdae90023e273dc6e90ac/8.6.5/pkgdb/shake-0.18.3-K6N2eLzVtai6jtZeWAmEIo.conf
2019-12-18 13:31:09.407762: [debug] Process finished in 220ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/95cfabe7f2d079269cd84fc5c6436ec5c50948d4f64bdae90023e273dc6e90ac/8.6.5/pkgdb/shake-0.18.3-K6N2eLzVtai6jtZeWAmEIo.conf
2019-12-18 13:31:09.439449: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/pkgdb describe --simple-output shake --expand-pkgroot
2019-12-18 13:31:09.581353: [debug] Process finished in 142ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/pkgdb describe --simple-output shake --expand-pkgroot
2019-12-18 13:31:09.581981: [debug] SELECT "id","directory","type","pkg_src","active","path_env_var","haddock" FROM "config_cache" WHERE "directory"=? AND "type"=?; [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/",PersistText "lib:shake-0.18.3-K6N2eLzVtai6jtZeWAmEIo"]
2019-12-18 13:31:09.625863: [debug] INSERT INTO "config_cache"("directory","type","pkg_src","active","path_env_var","haddock") VALUES(?,?,?,?,?,?); [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/",PersistText "lib:shake-0.18.3-K6N2eLzVtai6jtZeWAmEIo",PersistText "upstream",PersistBool True,PersistText "/Users/simon/.nix-profile/bin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/m4/bin:/Users/simon/bin.local:/Users/simon/bin:/Users/simon/adm/bin:/Users/simon/src/hledger/bin:/Users/simon/src/hledger/extra:/Users/simon/.local/bin:/Users/simon/.cabal/bin:/usr/local/bin:/usr/local/sbin:/opt/local/bin:/opt/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/Applications/splunk/bin:/Users/simon/src/PLAINTEXTACCOUNTING/beancount/bin:/Users/simon/.go/bin",PersistBool False]
2019-12-18 13:31:09.720712: [debug] SELECT "id" FROM "config_cache" WHERE _ROWID_=last_insert_rowid(); []
2019-12-18 13:31:09.799965: [debug] DELETE FROM "config_cache_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 340]
2019-12-18 13:31:09.801075: [debug] INSERT INTO "config_cache_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 340,PersistInt64 0,PersistText "--user",PersistInt64 340,PersistInt64 1,PersistText "--package-db=clear",PersistInt64 340,PersistInt64 2,PersistText "--package-db=global",PersistInt64 340,PersistInt64 3,PersistText "--package-db=/Users/simon/.stack/snapshots/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/pkgdb",PersistInt64 340,PersistInt64 4,PersistText "--libdir=/Users/simon/.stack/snapshots/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/lib",PersistInt64 340,PersistInt64 5,PersistText "--bindir=/Users/simon/.stack/snapshots/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/bin",PersistInt64 340,PersistInt64 6,PersistText "--datadir=/Users/simon/.stack/snapshots/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/share",PersistInt64 340,PersistInt64 7,PersistText "--libexecdir=/Users/simon/.stack/snapshots/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/libexec",PersistInt64 340,PersistInt64 8,PersistText "--sysconfdir=/Users/simon/.stack/snapshots/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/etc",PersistInt64 340,PersistInt64 9,PersistText "--docdir=/Users/simon/.stack/snapshots/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/doc/shake-0.18.3",PersistInt64 340,PersistInt64 10,PersistText "--htmldir=/Users/simon/.stack/snapshots/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/doc/shake-0.18.3",PersistInt64 340,PersistInt64 11,PersistText "--haddockdir=/Users/simon/.stack/snapshots/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/doc/shake-0.18.3"]
2019-12-18 13:31:09.989774: [debug] DELETE FROM "config_cache_no_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 340]
2019-12-18 13:31:10.165514: [debug] INSERT INTO "config_cache_no_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 340,PersistInt64 0,PersistText "--dependency=base=base-4.12.0.0",PersistInt64 340,PersistInt64 1,PersistText "--dependency=binary=binary-0.8.6.0",PersistInt64 340,PersistInt64 2,PersistText "--dependency=bytestring=bytestring-0.10.8.2",PersistInt64 340,PersistInt64 3,PersistText "--dependency=deepseq=deepseq-1.4.4.0",PersistInt64 340,PersistInt64 4,PersistText "--dependency=directory=directory-1.3.3.0",PersistInt64 340,PersistInt64 5,PersistText "--dependency=extra=extra-1.6.18-25ZB15KWAnzD8Fk6PCWQY",PersistInt64 340,PersistInt64 6,PersistText "--dependency=filepath=filepath-1.4.2.1",PersistInt64 340,PersistInt64 7,PersistText "--dependency=filepattern=filepattern-0.1.1-CmUxfPfJOZ1CicvCAFCqm3",PersistInt64 340,PersistInt64 8,PersistText "--dependency=hashable=hashable-1.2.7.0-2SI038axTEd7AEZJ275kpi",PersistInt64 340,PersistInt64 9,PersistText "--dependency=heaps=heaps-0.3.6.1-FbztQFLzLVD5oeX5TA4nUO",PersistInt64 340,PersistInt64 10,PersistText "--dependency=js-dgtable=js-dgtable-0.5.2-FqAdyplKo2t2OEsY8trwTv",PersistInt64 340,PersistInt64 11,PersistText "--dependency=js-flot=js-flot-0.8.3-LF7vQ1kAGl41Nl58RwjSyK",PersistInt64 340,PersistInt64 12,PersistText "--dependency=js-jquery=js-jquery-3.3.1-DZqkP3t9sdEKaANNNRYiKE",PersistInt64 340,PersistInt64 13,PersistText "--dependency=primitive=primitive-0.6.4.0-ILgywxtLpvnAOlEISPpP5b",PersistInt64 340,PersistInt64 14,PersistText "--dependency=process=process-1.6.5.0",PersistInt64 340,PersistInt64 15,PersistText "--dependency=random=random-1.1-3ypV4EIycgb35PKjTYYr5q",PersistInt64 340,PersistInt64 16,PersistText "--dependency=time=time-1.8.0.2",PersistInt64 340,PersistInt64 17,PersistText "--dependency=transformers=transformers-0.5.6.2",PersistInt64 340,PersistInt64 18,PersistText "--dependency=unix=unix-2.7.2.2",PersistInt64 340,PersistInt64 19,PersistText "--dependency=unordered-containers=unordered-containers-0.2.10.0-LgoTL3wbBEY5bZIDJiyxW4",PersistInt64 340,PersistInt64 20,PersistText "--dependency=utf8-string=utf8-string-1.0.1.1-Geq8jdOv4Q3LkcQoEOWDVv",PersistInt64 340,PersistInt64 21,PersistText "-f-cloud",PersistInt64 340,PersistInt64 22,PersistText "-f-portable",PersistInt64 340,PersistInt64 23,PersistText "--exact-configuration",PersistInt64 340,PersistInt64 24,PersistText "--ghc-option=-fhide-source-paths"]
2019-12-18 13:31:10.403154: [debug] DELETE FROM "config_cache_dep" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 340]
2019-12-18 13:31:10.512729: [debug] INSERT INTO "config_cache_dep"("config_cache_id","ghc_pkg_id") VALUES (?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?); [PersistInt64 340,PersistText "base-4.12.0.0",PersistInt64 340,PersistText "binary-0.8.6.0",PersistInt64 340,PersistText "bytestring-0.10.8.2",PersistInt64 340,PersistText "deepseq-1.4.4.0",PersistInt64 340,PersistText "directory-1.3.3.0",PersistInt64 340,PersistText "extra-1.6.18-25ZB15KWAnzD8Fk6PCWQY",PersistInt64 340,PersistText "filepath-1.4.2.1",PersistInt64 340,PersistText "filepattern-0.1.1-CmUxfPfJOZ1CicvCAFCqm3",PersistInt64 340,PersistText "hashable-1.2.7.0-2SI038axTEd7AEZJ275kpi",PersistInt64 340,PersistText "heaps-0.3.6.1-FbztQFLzLVD5oeX5TA4nUO",PersistInt64 340,PersistText "js-dgtable-0.5.2-FqAdyplKo2t2OEsY8trwTv",PersistInt64 340,PersistText "js-flot-0.8.3-LF7vQ1kAGl41Nl58RwjSyK",PersistInt64 340,PersistText "js-jquery-3.3.1-DZqkP3t9sdEKaANNNRYiKE",PersistInt64 340,PersistText "primitive-0.6.4.0-ILgywxtLpvnAOlEISPpP5b",PersistInt64 340,PersistText "process-1.6.5.0",PersistInt64 340,PersistText "random-1.1-3ypV4EIycgb35PKjTYYr5q",PersistInt64 340,PersistText "time-1.8.0.2",PersistInt64 340,PersistText "transformers-0.5.6.2",PersistInt64 340,PersistText "unix-2.7.2.2",PersistInt64 340,PersistText "unordered-containers-0.2.10.0-LgoTL3wbBEY5bZIDJiyxW4",PersistInt64 340,PersistText "utf8-string-1.0.1.1-Geq8jdOv4Q3LkcQoEOWDVv"]
2019-12-18 13:31:10.631868: [info] Copying from /Users/simon/.stack/snapshots/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/bin/shake to /Users/simon/.local/bin/shake
2019-12-18 13:31:10.766562: [info] 
2019-12-18 13:31:10.766672: [info] Copied executables to /Users/simon/.local/bin:
2019-12-18 13:31:10.838493: [info] - shake
~/src/hledger$ stack exec -- ghc-pkg list shake
/Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/lib/ghc-8.6.5/package.conf.d
    (no packages)
/Users/simon/.stack/snapshots/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/pkgdb
    shake-0.18.3
/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/pkgdb
    (no packages)
~/src/hledger$ shake --version
Shake build system, version 0.18.3
simonmichael commented 4 years ago

And here's a second oddity. After stack update, the newer binary is installed, as expected:

~/src/hledger$ stack update
Selected mirror https://s3.amazonaws.com/hackage.fpcomplete.com/
Downloading timestamp
No package index update available, but didn't update cache last time, running now
Calculating hashes to check for hackage-security rebases or filesystem changes
Updating preexisting cache, should be quick
Populating cache from file size 640250880, hash ca4eedfbc134d2343cbf641679e4208df86e71c3eb8fd88a5a688a22a93cb63a
Populating package index cache ...
Package index cache populated
~/src/hledger$ stack install shake-0.18.4 -v
Version 2.1.3, Git revision 0fa51b9925decd937e4a993ad90cb686f88fa282 (7739 commits) x86_64 hpack-0.31.2
2019-12-18 13:33:50.871835: [debug] Checking for project config at: /Users/simon/src/PLAINTEXTACCOUNTING/hledger/stack.yaml
2019-12-18 13:33:50.872734: [debug] Loading project config file stack.yaml
2019-12-18 13:33:51.158087: [debug] SELECT COUNT(*) FROM "last_performed" WHERE ("action"=?) AND ("timestamp">=?); [PersistInt64 1,PersistUTCTime 2019-12-17 21:33:51.158017 UTC]
2019-12-18 13:33:51.164328: [debug] Using package location completions from a lock file
2019-12-18 13:33:51.362021: [debug] Running hpack on /Users/simon/src/PLAINTEXTACCOUNTING/hledger/hledger-lib/package.yaml
2019-12-18 13:33:51.396528: [debug] hpack output unchanged in /Users/simon/src/PLAINTEXTACCOUNTING/hledger/hledger-lib/hledger-lib.cabal
2019-12-18 13:33:51.397904: [debug] Running hpack on /Users/simon/src/PLAINTEXTACCOUNTING/hledger/hledger/package.yaml
2019-12-18 13:33:51.462254: [debug] hpack output unchanged in /Users/simon/src/PLAINTEXTACCOUNTING/hledger/hledger/hledger.cabal
2019-12-18 13:33:51.478710: [debug] Running hpack on /Users/simon/src/PLAINTEXTACCOUNTING/hledger/hledger-ui/package.yaml
2019-12-18 13:33:51.487228: [debug] hpack output unchanged in /Users/simon/src/PLAINTEXTACCOUNTING/hledger/hledger-ui/hledger-ui.cabal
2019-12-18 13:33:51.584725: [debug] Running hpack on /Users/simon/src/PLAINTEXTACCOUNTING/hledger/hledger-web/package.yaml
2019-12-18 13:33:51.613130: [debug] hpack output unchanged in /Users/simon/src/PLAINTEXTACCOUNTING/hledger/hledger-web/hledger-web.cabal
2019-12-18 13:33:51.705451: [debug] Asking for a supported GHC version
2019-12-18 13:33:51.706666: [debug] Installed tools: 
 - ghc-8.8.1
 - ghc-8.6.5
 - ghc-8.10.0.20191210
2019-12-18 13:33:51.707432: [debug] Potential GHC builds: standard
2019-12-18 13:33:51.800506: [debug] Found already installed GHC builds: standard
2019-12-18 13:33:51.809084: [debug] SELECT "id","actual_version","arch","ghc_path","ghc_size","ghc_modified","ghc_pkg_path","runghc_path","haddock_path","cabal_version","global_db","global_db_cache_size","global_db_cache_modified","info","global_dump" FROM "compiler_cache" WHERE "ghc_path"=?; [PersistText "/Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-8.6.5"]
2019-12-18 13:33:51.878108: [debug] Loaded compiler information from cache
2019-12-18 13:33:51.966975: [debug] Asking for a supported GHC version
2019-12-18 13:33:51.967395: [debug] Resolving package entries
2019-12-18 13:33:51.967890: [debug] Parsing the targets
2019-12-18 13:33:52.276127: [debug] Downloading archive from https://s3.amazonaws.com/hackage.fpcomplete.com/package/shake-0.18.4.tar.gz
2019-12-18 13:33:53.372706: [debug] Checking flags
2019-12-18 13:33:53.373028: [debug] SourceMap constructed
2019-12-18 13:33:53.380814: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 init /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb/
2019-12-18 13:33:53.481307: [debug] Process finished in 100ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 init /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb/
2019-12-18 13:33:53.483670: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 init /Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb/
2019-12-18 13:33:53.628758: [debug] Process finished in 52ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 init /Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb/
2019-12-18 13:33:53.677926: [debug] Starting to execute command inside EnvConfig
2019-12-18 13:33:53.797665: [debug] Finding out which packages are already installed
2019-12-18 13:33:53.797903: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --global --no-user-package-db dump --expand-pkgroot
2019-12-18 13:33:53.953302: [debug] Process finished in 155ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --global --no-user-package-db dump --expand-pkgroot
2019-12-18 13:33:53.956409: [debug] Ignoring package haskeline due to wanting version 0.7.5.0 instead of 0.7.4.3
2019-12-18 13:33:53.957371: [debug] Ignoring package Cabal due to wanting version 2.4.1.0 instead of 2.4.0.1
2019-12-18 13:33:53.957530: [debug] Ignoring package parsec due to wanting version 3.1.14.0 instead of 3.1.13.0
2019-12-18 13:33:54.037038: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb dump --expand-pkgroot
2019-12-18 13:33:54.104606: [debug] Process finished in 67ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb dump --expand-pkgroot
2019-12-18 13:33:54.123645: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb dump --expand-pkgroot
2019-12-18 13:33:54.281074: [debug] Process finished in 67ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb dump --expand-pkgroot
2019-12-18 13:33:54.322700: [debug] Constructing the build plan
2019-12-18 13:33:54.362234: [debug] Parsing cabal file for shake (from Hackage)
2019-12-18 13:33:54.374821: [debug] Parsing cabal file for extra (from Hackage)
2019-12-18 13:33:54.382702: [debug] Parsing cabal file for clock (from Hackage)
2019-12-18 13:33:54.454035: [debug] Parsing cabal file for semigroups (from Hackage)
2019-12-18 13:33:54.460074: [debug] Parsing cabal file for file-embed (from Hackage)
2019-12-18 13:33:54.462657: [debug] Parsing cabal file for filepattern (from Hackage)
2019-12-18 13:33:54.546037: [debug] Parsing cabal file for hashable (from Hackage)
2019-12-18 13:33:54.555528: [debug] Parsing cabal file for heaps (from Hackage)
2019-12-18 13:33:54.562609: [debug] Parsing cabal file for js-dgtable (from Hackage)
2019-12-18 13:33:54.634145: [debug] Parsing cabal file for js-flot (from Hackage)
2019-12-18 13:33:54.636551: [debug] Parsing cabal file for js-jquery (from Hackage)
2019-12-18 13:33:54.641453: [debug] Parsing cabal file for primitive (from Hackage)
2019-12-18 13:33:54.723284: [debug] Parsing cabal file for random (from Hackage)
2019-12-18 13:33:54.726051: [debug] Parsing cabal file for unordered-containers (from Hackage)
2019-12-18 13:33:54.734330: [debug] Parsing cabal file for utf8-string (from Hackage)
2019-12-18 13:33:54.815634: [debug] Checking if we are going to build multiple executables with the same name
2019-12-18 13:33:54.820229: [debug] Executing the build plan
2019-12-18 13:33:54.856053: [debug] SELECT "id","platform_ghc_dir","compiler","cabal_version","package_key","options_hash","haddock","library" FROM "precompiled_cache" WHERE "platform_ghc_dir"=? AND "compiler"=? AND "cabal_version"=? AND "package_key"=? AND "options_hash"=? AND "haddock"=?; [PersistText "x86_64-osx/",PersistText "ghc-8.6.5",PersistText "2.4.0.1",PersistText "d9ac8ce6a19812fe74cb1e74228e6e624eda19021ff4d12e24611f88abacd38a,446",PersistByteString "i\252\137\246=\243\ETB\174a=\188A\224Mm\147\154\197\DC4\141\214\217\CAN\201\178b+L)\183\230\EM",PersistBool False]
2019-12-18 13:33:54.945981: [debug] SELECT "id", "precompiled_cache_id", "sub_lib" FROM "precompiled_cache_sub_lib" WHERE ("precompiled_cache_id"=?); [PersistInt64 418]
2019-12-18 13:33:54.946398: [debug] SELECT "id", "precompiled_cache_id", "exe" FROM "precompiled_cache_exe" WHERE ("precompiled_cache_id"=?); [PersistInt64 418]
2019-12-18 13:33:55.035399: [info] clock               > using precompiled package
2019-12-18 13:33:55.119474: [debug] SELECT "id","platform_ghc_dir","compiler","cabal_version","package_key","options_hash","haddock","library" FROM "precompiled_cache" WHERE "platform_ghc_dir"=? AND "compiler"=? AND "cabal_version"=? AND "package_key"=? AND "options_hash"=? AND "haddock"=?; [PersistText "x86_64-osx/",PersistText "ghc-8.6.5",PersistText "2.4.0.1",PersistText "901c4f10bcf6bda842b849950a2767c918f4ed59fa8885f7c945dd6c7e763332,1514",PersistByteString "j\183[l3y\184\ESC\nU&\226\207\203\&3$\n\220\ACK\153\168SA\138t\222{\240#\202\213\229",PersistBool False]
2019-12-18 13:33:55.206831: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 unregister --force clock-0.8
2019-12-18 13:33:55.209996: [debug] SELECT "id", "precompiled_cache_id", "sub_lib" FROM "precompiled_cache_sub_lib" WHERE ("precompiled_cache_id"=?); [PersistInt64 46]
2019-12-18 13:33:55.310316: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/clock-0.8-H1S1zDefxirImaRbI6ITNv.conf
2019-12-18 13:33:55.360853: [debug] SELECT "id", "precompiled_cache_id", "exe" FROM "precompiled_cache_exe" WHERE ("precompiled_cache_id"=?); [PersistInt64 46]
2019-12-18 13:33:55.382799: [info] hashable            > using precompiled package
2019-12-18 13:33:55.464888: [debug] SELECT "id","platform_ghc_dir","compiler","cabal_version","package_key","options_hash","haddock","library" FROM "precompiled_cache" WHERE "platform_ghc_dir"=? AND "compiler"=? AND "cabal_version"=? AND "package_key"=? AND "options_hash"=? AND "haddock"=?; [PersistText "x86_64-osx/",PersistText "ghc-8.6.5",PersistText "2.4.0.1",PersistText "b861a1cf43db0ec89a2c09caf8e913210aec8564a36046a8525cde3965dd181a,472",PersistByteString "\252\139k\SO\133\b\232\174\209\187\&5Wa\137@|X\144\242\214\&0\239\tX\SOHi\129\168\129\219\245\204",PersistBool False]
2019-12-18 13:33:55.556625: [debug] Process finished in 85ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/clock-0.8-H1S1zDefxirImaRbI6ITNv.conf
2019-12-18 13:33:55.654065: [debug] SELECT "id", "precompiled_cache_id", "sub_lib" FROM "precompiled_cache_sub_lib" WHERE ("precompiled_cache_id"=?); [PersistInt64 403]
2019-12-18 13:33:55.654403: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output clock --expand-pkgroot
2019-12-18 13:33:55.848660: [debug] SELECT "id", "precompiled_cache_id", "exe" FROM "precompiled_cache_exe" WHERE ("precompiled_cache_id"=?); [PersistInt64 403]
2019-12-18 13:33:55.862865: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 unregister --force hashable-1.2.7.0
2019-12-18 13:33:55.945952: [info] heaps               > using precompiled package
2019-12-18 13:33:56.061839: [debug] SELECT "id","platform_ghc_dir","compiler","cabal_version","package_key","options_hash","haddock","library" FROM "precompiled_cache" WHERE "platform_ghc_dir"=? AND "compiler"=? AND "cabal_version"=? AND "package_key"=? AND "options_hash"=? AND "haddock"=?; [PersistText "x86_64-osx/",PersistText "ghc-8.6.5",PersistText "2.4.0.1",PersistText "8f21a85661002dae6c21865bfaba3f2be07ff68fdad902a7ba142364ddb059c8,477",PersistByteString "C\138\248\SO\184=!\130\141\228\NAK\251\183\218\238L\167\184\159\188T]XH\134\FS\145k\181M1\ETB",PersistBool False]
2019-12-18 13:33:56.164848: [debug] Process finished in 75ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output clock --expand-pkgroot
2019-12-18 13:33:56.261750: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/hashable-1.2.7.0-2SI038axTEd7AEZJ275kpi.conf
2019-12-18 13:33:56.357373: [debug] SELECT "id", "precompiled_cache_id", "sub_lib" FROM "precompiled_cache_sub_lib" WHERE ("precompiled_cache_id"=?); [PersistInt64 45]
2019-12-18 13:33:56.357737: [debug] SELECT "id","directory","type","pkg_src","active","path_env_var","haddock" FROM "config_cache" WHERE "directory"=? AND "type"=?; [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:clock-0.8-H1S1zDefxirImaRbI6ITNv"]
2019-12-18 13:33:56.551907: [debug] SELECT "id", "precompiled_cache_id", "exe" FROM "precompiled_cache_exe" WHERE ("precompiled_cache_id"=?); [PersistInt64 45]
2019-12-18 13:33:56.552905: [debug] Process finished in 74ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/hashable-1.2.7.0-2SI038axTEd7AEZJ275kpi.conf
2019-12-18 13:33:57.138551: [info] file-embed          > using precompiled package
2019-12-18 13:33:57.138899: [debug] INSERT INTO "config_cache"("directory","type","pkg_src","active","path_env_var","haddock") VALUES(?,?,?,?,?,?); [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:clock-0.8-H1S1zDefxirImaRbI6ITNv",PersistText "upstream",PersistBool True,PersistText "/Users/simon/.nix-profile/bin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/m4/bin:/Users/simon/bin.local:/Users/simon/bin:/Users/simon/adm/bin:/Users/simon/src/hledger/bin:/Users/simon/src/hledger/extra:/Users/simon/.local/bin:/Users/simon/.cabal/bin:/usr/local/bin:/usr/local/sbin:/opt/local/bin:/opt/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/Applications/splunk/bin:/Users/simon/src/PLAINTEXTACCOUNTING/beancount/bin:/Users/simon/.go/bin",PersistBool False]
2019-12-18 13:33:57.239164: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output hashable --expand-pkgroot
2019-12-18 13:33:57.349038: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 unregister --force heaps-0.3.6.1
2019-12-18 13:33:57.351103: [debug] SELECT "id" FROM "config_cache" WHERE _ROWID_=last_insert_rowid(); []
2019-12-18 13:33:57.488969: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/490fe10396b9b37008c1d1bf3aebda540a5775cea8f27f3b66e3cf90da18fe98/8.6.5/pkgdb/heaps-0.3.6.1-FbztQFLzLVD5oeX5TA4nUO.conf
2019-12-18 13:33:57.588250: [debug] Process finished in 69ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output hashable --expand-pkgroot
2019-12-18 13:33:57.690495: [debug] DELETE FROM "config_cache_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 341]
2019-12-18 13:33:57.690730: [debug] Process finished in 65ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/490fe10396b9b37008c1d1bf3aebda540a5775cea8f27f3b66e3cf90da18fe98/8.6.5/pkgdb/heaps-0.3.6.1-FbztQFLzLVD5oeX5TA4nUO.conf
2019-12-18 13:33:57.790522: [debug] INSERT INTO "config_cache_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 341,PersistInt64 0,PersistText "--user",PersistInt64 341,PersistInt64 1,PersistText "--package-db=clear",PersistInt64 341,PersistInt64 2,PersistText "--package-db=global",PersistInt64 341,PersistInt64 3,PersistText "--package-db=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb",PersistInt64 341,PersistInt64 4,PersistText "--libdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/lib",PersistInt64 341,PersistInt64 5,PersistText "--bindir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin",PersistInt64 341,PersistInt64 6,PersistText "--datadir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/share",PersistInt64 341,PersistInt64 7,PersistText "--libexecdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/libexec",PersistInt64 341,PersistInt64 8,PersistText "--sysconfdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/etc",PersistInt64 341,PersistInt64 9,PersistText "--docdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/clock-0.8",PersistInt64 341,PersistInt64 10,PersistText "--htmldir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/clock-0.8",PersistInt64 341,PersistInt64 11,PersistText "--haddockdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/clock-0.8"]
2019-12-18 13:33:57.977845: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output heaps --expand-pkgroot
2019-12-18 13:33:58.101572: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 unregister --force file-embed-0.0.11
2019-12-18 13:33:58.102759: [debug] DELETE FROM "config_cache_no_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 341]
2019-12-18 13:33:58.253346: [debug] Process finished in 70ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output heaps --expand-pkgroot
2019-12-18 13:33:58.356477: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/file-embed-0.0.11-4IE3sw0bCLQ7xXwEGMUYke.conf
2019-12-18 13:33:58.465010: [debug] INSERT INTO "config_cache_no_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 341,PersistInt64 0,PersistText "--dependency=base=base-4.12.0.0",PersistInt64 341,PersistInt64 1,PersistText "-f-llvm",PersistInt64 341,PersistInt64 2,PersistText "--exact-configuration",PersistInt64 341,PersistInt64 3,PersistText "--ghc-option=-fhide-source-paths"]
2019-12-18 13:33:58.585173: [debug] Process finished in 80ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/file-embed-0.0.11-4IE3sw0bCLQ7xXwEGMUYke.conf
2019-12-18 13:33:58.695512: [debug] DELETE FROM "config_cache_dep" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 341]
2019-12-18 13:33:58.695762: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output file-embed --expand-pkgroot
2019-12-18 13:33:58.803720: [debug] INSERT INTO "config_cache_dep"("config_cache_id","ghc_pkg_id") VALUES (?,?); [PersistInt64 341,PersistText "base-4.12.0.0"]
2019-12-18 13:33:58.950481: [debug] SELECT "id","platform_ghc_dir","compiler","cabal_version","package_key","options_hash","haddock","library" FROM "precompiled_cache" WHERE "platform_ghc_dir"=? AND "compiler"=? AND "cabal_version"=? AND "package_key"=? AND "options_hash"=? AND "haddock"=?; [PersistText "x86_64-osx/",PersistText "ghc-8.6.5",PersistText "2.4.0.1",PersistText "223402a5a6d52020406e68ce94d27bed0f001161c270864414c220c5c8a02eb6,524",PersistByteString "\252\139k\SO\133\b\232\174\209\187\&5Wa\137@|X\144\242\214\&0\239\tX\SOHi\129\168\129\219\245\204",PersistBool False]
2019-12-18 13:33:59.092462: [debug] SELECT "id","directory","type","pkg_src","active","path_env_var","haddock" FROM "config_cache" WHERE "directory"=? AND "type"=?; [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:hashable-1.2.7.0-2SI038axTEd7AEZJ275kpi"]
2019-12-18 13:33:59.223484: [debug] Process finished in 93ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output file-embed --expand-pkgroot
2019-12-18 13:33:59.345471: [debug] SELECT "id", "precompiled_cache_id", "sub_lib" FROM "precompiled_cache_sub_lib" WHERE ("precompiled_cache_id"=?); [PersistInt64 400]
2019-12-18 13:33:59.456363: [debug] INSERT INTO "config_cache"("directory","type","pkg_src","active","path_env_var","haddock") VALUES(?,?,?,?,?,?); [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:hashable-1.2.7.0-2SI038axTEd7AEZJ275kpi",PersistText "upstream",PersistBool True,PersistText "/Users/simon/.nix-profile/bin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/m4/bin:/Users/simon/bin.local:/Users/simon/bin:/Users/simon/adm/bin:/Users/simon/src/hledger/bin:/Users/simon/src/hledger/extra:/Users/simon/.local/bin:/Users/simon/.cabal/bin:/usr/local/bin:/usr/local/sbin:/opt/local/bin:/opt/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/Applications/splunk/bin:/Users/simon/src/PLAINTEXTACCOUNTING/beancount/bin:/Users/simon/.go/bin",PersistBool False]
2019-12-18 13:33:59.568430: [debug] SELECT "id", "precompiled_cache_id", "exe" FROM "precompiled_cache_exe" WHERE ("precompiled_cache_id"=?); [PersistInt64 400]
2019-12-18 13:33:59.698961: [debug] SELECT "id" FROM "config_cache" WHERE _ROWID_=last_insert_rowid(); []
2019-12-18 13:33:59.836255: [info] js-dgtable          > using precompiled package
2019-12-18 13:33:59.955683: [debug] DELETE FROM "config_cache_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 342]
2019-12-18 13:34:00.078162: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 unregister --force js-dgtable-0.5.2
2019-12-18 13:34:00.201649: [debug] INSERT INTO "config_cache_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 342,PersistInt64 0,PersistText "--user",PersistInt64 342,PersistInt64 1,PersistText "--package-db=clear",PersistInt64 342,PersistInt64 2,PersistText "--package-db=global",PersistInt64 342,PersistInt64 3,PersistText "--package-db=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb",PersistInt64 342,PersistInt64 4,PersistText "--libdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/lib",PersistInt64 342,PersistInt64 5,PersistText "--bindir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin",PersistInt64 342,PersistInt64 6,PersistText "--datadir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/share",PersistInt64 342,PersistInt64 7,PersistText "--libexecdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/libexec",PersistInt64 342,PersistInt64 8,PersistText "--sysconfdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/etc",PersistInt64 342,PersistInt64 9,PersistText "--docdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/hashable-1.2.7.0",PersistInt64 342,PersistInt64 10,PersistText "--htmldir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/hashable-1.2.7.0",PersistInt64 342,PersistInt64 11,PersistText "--haddockdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/hashable-1.2.7.0"]
2019-12-18 13:34:00.578018: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/490fe10396b9b37008c1d1bf3aebda540a5775cea8f27f3b66e3cf90da18fe98/8.6.5/pkgdb/js-dgtable-0.5.2-FqAdyplKo2t2OEsY8trwTv.conf
2019-12-18 13:34:00.723785: [debug] DELETE FROM "config_cache_no_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 342]
2019-12-18 13:34:00.853541: [debug] Process finished in 83ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/490fe10396b9b37008c1d1bf3aebda540a5775cea8f27f3b66e3cf90da18fe98/8.6.5/pkgdb/js-dgtable-0.5.2-FqAdyplKo2t2OEsY8trwTv.conf
2019-12-18 13:34:00.977872: [debug] INSERT INTO "config_cache_no_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 342,PersistInt64 0,PersistText "--dependency=base=base-4.12.0.0",PersistInt64 342,PersistInt64 1,PersistText "--dependency=bytestring=bytestring-0.10.8.2",PersistInt64 342,PersistInt64 2,PersistText "--dependency=deepseq=deepseq-1.4.4.0",PersistInt64 342,PersistInt64 3,PersistText "--dependency=ghc-prim=ghc-prim-0.5.3",PersistInt64 342,PersistInt64 4,PersistText "--dependency=integer-gmp=integer-gmp-1.0.2.0",PersistInt64 342,PersistInt64 5,PersistText "--dependency=text=text-1.2.3.1",PersistInt64 342,PersistInt64 6,PersistText "-f-examples",PersistInt64 342,PersistInt64 7,PersistText "-finteger-gmp",PersistInt64 342,PersistInt64 8,PersistText "-fsse2",PersistInt64 342,PersistInt64 9,PersistText "-f-sse41",PersistInt64 342,PersistInt64 10,PersistText "--exact-configuration",PersistInt64 342,PersistInt64 11,PersistText "--ghc-option=-fhide-source-paths"]
2019-12-18 13:34:01.235016: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output js-dgtable --expand-pkgroot
2019-12-18 13:34:01.386351: [debug] DELETE FROM "config_cache_dep" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 342]
2019-12-18 13:34:01.527407: [debug] Process finished in 73ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output js-dgtable --expand-pkgroot
2019-12-18 13:34:01.645129: [debug] INSERT INTO "config_cache_dep"("config_cache_id","ghc_pkg_id") VALUES (?,?),(?,?),(?,?),(?,?),(?,?),(?,?); [PersistInt64 342,PersistText "base-4.12.0.0",PersistInt64 342,PersistText "bytestring-0.10.8.2",PersistInt64 342,PersistText "deepseq-1.4.4.0",PersistInt64 342,PersistText "ghc-prim-0.5.3",PersistInt64 342,PersistText "integer-gmp-1.0.2.0",PersistInt64 342,PersistText "text-1.2.3.1"]
2019-12-18 13:34:01.776988: [debug] SELECT "id","platform_ghc_dir","compiler","cabal_version","package_key","options_hash","haddock","library" FROM "precompiled_cache" WHERE "platform_ghc_dir"=? AND "compiler"=? AND "cabal_version"=? AND "package_key"=? AND "options_hash"=? AND "haddock"=?; [PersistText "x86_64-osx/",PersistText "ghc-8.6.5",PersistText "2.4.0.1",PersistText "1e2176740fcc8564c9ff674353e96e5585c6b79d11a09a7436026e8251a2c2e5,1597",PersistByteString "\252\139k\SO\133\b\232\174\209\187\&5Wa\137@|X\144\242\214\&0\239\tX\SOHi\129\168\129\219\245\204",PersistBool False]
2019-12-18 13:34:01.967220: [debug] SELECT "id","directory","type","pkg_src","active","path_env_var","haddock" FROM "config_cache" WHERE "directory"=? AND "type"=?; [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:heaps-0.3.6.1-FbztQFLzLVD5oeX5TA4nUO"]
2019-12-18 13:34:02.228951: [debug] SELECT "id", "precompiled_cache_id", "sub_lib" FROM "precompiled_cache_sub_lib" WHERE ("precompiled_cache_id"=?); [PersistInt64 401]
2019-12-18 13:34:02.350647: [debug] INSERT INTO "config_cache"("directory","type","pkg_src","active","path_env_var","haddock") VALUES(?,?,?,?,?,?); [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:heaps-0.3.6.1-FbztQFLzLVD5oeX5TA4nUO",PersistText "upstream",PersistBool True,PersistText "/Users/simon/.nix-profile/bin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/m4/bin:/Users/simon/bin.local:/Users/simon/bin:/Users/simon/adm/bin:/Users/simon/src/hledger/bin:/Users/simon/src/hledger/extra:/Users/simon/.local/bin:/Users/simon/.cabal/bin:/usr/local/bin:/usr/local/sbin:/opt/local/bin:/opt/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/Applications/splunk/bin:/Users/simon/src/PLAINTEXTACCOUNTING/beancount/bin:/Users/simon/.go/bin",PersistBool False]
2019-12-18 13:34:02.470337: [debug] SELECT "id", "precompiled_cache_id", "exe" FROM "precompiled_cache_exe" WHERE ("precompiled_cache_id"=?); [PersistInt64 401]
2019-12-18 13:34:02.611586: [debug] SELECT "id" FROM "config_cache" WHERE _ROWID_=last_insert_rowid(); []
2019-12-18 13:34:02.761013: [info] js-flot             > using precompiled package
2019-12-18 13:34:02.882977: [debug] DELETE FROM "config_cache_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 343]
2019-12-18 13:34:03.003549: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 unregister --force js-flot-0.8.3
2019-12-18 13:34:03.130077: [debug] INSERT INTO "config_cache_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 343,PersistInt64 0,PersistText "--user",PersistInt64 343,PersistInt64 1,PersistText "--package-db=clear",PersistInt64 343,PersistInt64 2,PersistText "--package-db=global",PersistInt64 343,PersistInt64 3,PersistText "--package-db=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb",PersistInt64 343,PersistInt64 4,PersistText "--libdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/lib",PersistInt64 343,PersistInt64 5,PersistText "--bindir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin",PersistInt64 343,PersistInt64 6,PersistText "--datadir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/share",PersistInt64 343,PersistInt64 7,PersistText "--libexecdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/libexec",PersistInt64 343,PersistInt64 8,PersistText "--sysconfdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/etc",PersistInt64 343,PersistInt64 9,PersistText "--docdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/heaps-0.3.6.1",PersistInt64 343,PersistInt64 10,PersistText "--htmldir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/heaps-0.3.6.1",PersistInt64 343,PersistInt64 11,PersistText "--haddockdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/heaps-0.3.6.1"]
2019-12-18 13:34:03.486986: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/js-flot-0.8.3-LF7vQ1kAGl41Nl58RwjSyK.conf
2019-12-18 13:34:03.637833: [debug] DELETE FROM "config_cache_no_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 343]
2019-12-18 13:34:03.766248: [debug] Process finished in 66ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/js-flot-0.8.3-LF7vQ1kAGl41Nl58RwjSyK.conf
2019-12-18 13:34:03.892075: [debug] INSERT INTO "config_cache_no_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?); [PersistInt64 343,PersistInt64 0,PersistText "--dependency=base=base-4.12.0.0",PersistInt64 343,PersistInt64 1,PersistText "--exact-configuration",PersistInt64 343,PersistInt64 2,PersistText "--ghc-option=-fhide-source-paths"]
2019-12-18 13:34:04.018535: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output js-flot --expand-pkgroot
2019-12-18 13:34:04.154412: [debug] DELETE FROM "config_cache_dep" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 343]
2019-12-18 13:34:04.285226: [debug] Process finished in 64ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output js-flot --expand-pkgroot
2019-12-18 13:34:04.408872: [debug] INSERT INTO "config_cache_dep"("config_cache_id","ghc_pkg_id") VALUES (?,?); [PersistInt64 343,PersistText "base-4.12.0.0"]
2019-12-18 13:34:04.537965: [debug] SELECT "id","platform_ghc_dir","compiler","cabal_version","package_key","options_hash","haddock","library" FROM "precompiled_cache" WHERE "platform_ghc_dir"=? AND "compiler"=? AND "cabal_version"=? AND "package_key"=? AND "options_hash"=? AND "haddock"=?; [PersistText "x86_64-osx/",PersistText "ghc-8.6.5",PersistText "2.4.0.1",PersistText "d92e462b45da7acf12cf526483ad057f68d3468445b55a5e2ae6007d284b990c,519",PersistByteString "\252\139k\SO\133\b\232\174\209\187\&5Wa\137@|X\144\242\214\&0\239\tX\SOHi\129\168\129\219\245\204",PersistBool False]
2019-12-18 13:34:04.654608: [debug] SELECT "id","directory","type","pkg_src","active","path_env_var","haddock" FROM "config_cache" WHERE "directory"=? AND "type"=?; [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:file-embed-0.0.11-4IE3sw0bCLQ7xXwEGMUYke"]
2019-12-18 13:34:04.906494: [debug] SELECT "id", "precompiled_cache_id", "sub_lib" FROM "precompiled_cache_sub_lib" WHERE ("precompiled_cache_id"=?); [PersistInt64 402]
2019-12-18 13:34:05.029562: [debug] INSERT INTO "config_cache"("directory","type","pkg_src","active","path_env_var","haddock") VALUES(?,?,?,?,?,?); [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:file-embed-0.0.11-4IE3sw0bCLQ7xXwEGMUYke",PersistText "upstream",PersistBool True,PersistText "/Users/simon/.nix-profile/bin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/m4/bin:/Users/simon/bin.local:/Users/simon/bin:/Users/simon/adm/bin:/Users/simon/src/hledger/bin:/Users/simon/src/hledger/extra:/Users/simon/.local/bin:/Users/simon/.cabal/bin:/usr/local/bin:/usr/local/sbin:/opt/local/bin:/opt/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/Applications/splunk/bin:/Users/simon/src/PLAINTEXTACCOUNTING/beancount/bin:/Users/simon/.go/bin",PersistBool False]
2019-12-18 13:34:05.154947: [debug] SELECT "id", "precompiled_cache_id", "exe" FROM "precompiled_cache_exe" WHERE ("precompiled_cache_id"=?); [PersistInt64 402]
2019-12-18 13:34:05.338554: [debug] SELECT "id" FROM "config_cache" WHERE _ROWID_=last_insert_rowid(); []
2019-12-18 13:34:05.505108: [info] js-jquery           > using precompiled package
2019-12-18 13:34:05.634455: [debug] DELETE FROM "config_cache_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 344]
2019-12-18 13:34:05.764234: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 unregister --force js-jquery-3.3.1
2019-12-18 13:34:05.896056: [debug] INSERT INTO "config_cache_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 344,PersistInt64 0,PersistText "--user",PersistInt64 344,PersistInt64 1,PersistText "--package-db=clear",PersistInt64 344,PersistInt64 2,PersistText "--package-db=global",PersistInt64 344,PersistInt64 3,PersistText "--package-db=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb",PersistInt64 344,PersistInt64 4,PersistText "--libdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/lib",PersistInt64 344,PersistInt64 5,PersistText "--bindir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin",PersistInt64 344,PersistInt64 6,PersistText "--datadir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/share",PersistInt64 344,PersistInt64 7,PersistText "--libexecdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/libexec",PersistInt64 344,PersistInt64 8,PersistText "--sysconfdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/etc",PersistInt64 344,PersistInt64 9,PersistText "--docdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/file-embed-0.0.11",PersistInt64 344,PersistInt64 10,PersistText "--htmldir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/file-embed-0.0.11",PersistInt64 344,PersistInt64 11,PersistText "--haddockdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/file-embed-0.0.11"]
2019-12-18 13:34:06.314259: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/js-jquery-3.3.1-DZqkP3t9sdEKaANNNRYiKE.conf
2019-12-18 13:34:06.490344: [debug] DELETE FROM "config_cache_no_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 344]
2019-12-18 13:34:06.644329: [debug] Process finished in 111ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/js-jquery-3.3.1-DZqkP3t9sdEKaANNNRYiKE.conf
2019-12-18 13:34:06.778230: [debug] INSERT INTO "config_cache_no_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 344,PersistInt64 0,PersistText "--dependency=base=base-4.12.0.0",PersistInt64 344,PersistInt64 1,PersistText "--dependency=bytestring=bytestring-0.10.8.2",PersistInt64 344,PersistInt64 2,PersistText "--dependency=directory=directory-1.3.3.0",PersistInt64 344,PersistInt64 3,PersistText "--dependency=filepath=filepath-1.4.2.1",PersistInt64 344,PersistInt64 4,PersistText "--dependency=template-haskell=template-haskell-2.14.0.0",PersistInt64 344,PersistInt64 5,PersistText "--exact-configuration",PersistInt64 344,PersistInt64 6,PersistText "--ghc-option=-fhide-source-paths"]
2019-12-18 13:34:07.258546: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output js-jquery --expand-pkgroot
2019-12-18 13:34:07.361812: [debug] DELETE FROM "config_cache_dep" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 344]
2019-12-18 13:34:07.478048: [debug] Process finished in 76ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output js-jquery --expand-pkgroot
2019-12-18 13:34:07.577710: [debug] INSERT INTO "config_cache_dep"("config_cache_id","ghc_pkg_id") VALUES (?,?),(?,?),(?,?),(?,?),(?,?); [PersistInt64 344,PersistText "base-4.12.0.0",PersistInt64 344,PersistText "bytestring-0.10.8.2",PersistInt64 344,PersistText "directory-1.3.3.0",PersistInt64 344,PersistText "filepath-1.4.2.1",PersistInt64 344,PersistText "template-haskell-2.14.0.0"]
2019-12-18 13:34:07.699079: [debug] SELECT "id","directory","type","pkg_src","active","path_env_var","haddock" FROM "config_cache" WHERE "directory"=? AND "type"=?; [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:js-dgtable-0.5.2-FqAdyplKo2t2OEsY8trwTv"]
2019-12-18 13:34:07.853326: [debug] SELECT "id","platform_ghc_dir","compiler","cabal_version","package_key","options_hash","haddock","library" FROM "precompiled_cache" WHERE "platform_ghc_dir"=? AND "compiler"=? AND "cabal_version"=? AND "package_key"=? AND "options_hash"=? AND "haddock"=?; [PersistText "x86_64-osx/",PersistText "ghc-8.6.5",PersistText "2.4.0.1",PersistText "5d5e591311664886e88ade3da6880c32adf0d1fe80c55f40a3c93bb91df8fdeb,1517",PersistByteString "C\152[mX\240Dqs\173\140G\200\195\237\212\NAKD.oF\254\253\253H0#\RS6z\SO\157",PersistBool False]
2019-12-18 13:34:07.942592: [debug] INSERT INTO "config_cache"("directory","type","pkg_src","active","path_env_var","haddock") VALUES(?,?,?,?,?,?); [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:js-dgtable-0.5.2-FqAdyplKo2t2OEsY8trwTv",PersistText "upstream",PersistBool True,PersistText "/Users/simon/.nix-profile/bin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/m4/bin:/Users/simon/bin.local:/Users/simon/bin:/Users/simon/adm/bin:/Users/simon/src/hledger/bin:/Users/simon/src/hledger/extra:/Users/simon/.local/bin:/Users/simon/.cabal/bin:/usr/local/bin:/usr/local/sbin:/opt/local/bin:/opt/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/Applications/splunk/bin:/Users/simon/src/PLAINTEXTACCOUNTING/beancount/bin:/Users/simon/.go/bin",PersistBool False]
2019-12-18 13:34:08.031961: [debug] SELECT "id", "precompiled_cache_id", "sub_lib" FROM "precompiled_cache_sub_lib" WHERE ("precompiled_cache_id"=?); [PersistInt64 85]
2019-12-18 13:34:08.117879: [debug] SELECT "id" FROM "config_cache" WHERE _ROWID_=last_insert_rowid(); []
2019-12-18 13:34:08.211123: [debug] SELECT "id", "precompiled_cache_id", "exe" FROM "precompiled_cache_exe" WHERE ("precompiled_cache_id"=?); [PersistInt64 85]
2019-12-18 13:34:08.322161: [debug] DELETE FROM "config_cache_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 345]
2019-12-18 13:34:08.393702: [info] primitive           > using precompiled package
2019-12-18 13:34:08.473852: [debug] INSERT INTO "config_cache_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 345,PersistInt64 0,PersistText "--user",PersistInt64 345,PersistInt64 1,PersistText "--package-db=clear",PersistInt64 345,PersistInt64 2,PersistText "--package-db=global",PersistInt64 345,PersistInt64 3,PersistText "--package-db=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb",PersistInt64 345,PersistInt64 4,PersistText "--libdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/lib",PersistInt64 345,PersistInt64 5,PersistText "--bindir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin",PersistInt64 345,PersistInt64 6,PersistText "--datadir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/share",PersistInt64 345,PersistInt64 7,PersistText "--libexecdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/libexec",PersistInt64 345,PersistInt64 8,PersistText "--sysconfdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/etc",PersistInt64 345,PersistInt64 9,PersistText "--docdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/js-dgtable-0.5.2",PersistInt64 345,PersistInt64 10,PersistText "--htmldir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/js-dgtable-0.5.2",PersistInt64 345,PersistInt64 11,PersistText "--haddockdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/js-dgtable-0.5.2"]
2019-12-18 13:34:08.723374: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 unregister --force primitive-0.6.4.0
2019-12-18 13:34:08.822904: [debug] DELETE FROM "config_cache_no_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 345]
2019-12-18 13:34:08.897867: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/primitive-0.6.4.0-ILgywxtLpvnAOlEISPpP5b.conf
2019-12-18 13:34:08.982913: [debug] INSERT INTO "config_cache_no_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?); [PersistInt64 345,PersistInt64 0,PersistText "--dependency=base=base-4.12.0.0",PersistInt64 345,PersistInt64 1,PersistText "--exact-configuration",PersistInt64 345,PersistInt64 2,PersistText "--ghc-option=-fhide-source-paths"]
2019-12-18 13:34:09.068799: [debug] Process finished in 67ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/primitive-0.6.4.0-ILgywxtLpvnAOlEISPpP5b.conf
2019-12-18 13:34:09.153317: [debug] DELETE FROM "config_cache_dep" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 345]
2019-12-18 13:34:09.234602: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output primitive --expand-pkgroot
2019-12-18 13:34:09.278752: [debug] INSERT INTO "config_cache_dep"("config_cache_id","ghc_pkg_id") VALUES (?,?); [PersistInt64 345,PersistText "base-4.12.0.0"]
2019-12-18 13:34:09.363162: [debug] Process finished in 68ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output primitive --expand-pkgroot
2019-12-18 13:34:09.448134: [debug] SELECT "id","platform_ghc_dir","compiler","cabal_version","package_key","options_hash","haddock","library" FROM "precompiled_cache" WHERE "platform_ghc_dir"=? AND "compiler"=? AND "cabal_version"=? AND "package_key"=? AND "options_hash"=? AND "haddock"=?; [PersistText "x86_64-osx/",PersistText "ghc-8.6.5",PersistText "2.4.0.1",PersistText "14a1b01728c5584e87c9fa00746a66e28ffd89dd2c0eabd334c8463953496e1b,637",PersistByteString "#\203\242\&9\216!\232\141\133Q\254\223\DC2\237$\198h\176G\254\211\201\255k\192_\183\251:c\161\SOH",PersistBool False]
2019-12-18 13:34:09.533359: [debug] SELECT "id","directory","type","pkg_src","active","path_env_var","haddock" FROM "config_cache" WHERE "directory"=? AND "type"=?; [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:js-flot-0.8.3-LF7vQ1kAGl41Nl58RwjSyK"]
2019-12-18 13:34:09.705666: [debug] SELECT "id", "precompiled_cache_id", "sub_lib" FROM "precompiled_cache_sub_lib" WHERE ("precompiled_cache_id"=?); [PersistInt64 83]
2019-12-18 13:34:09.775068: [debug] INSERT INTO "config_cache"("directory","type","pkg_src","active","path_env_var","haddock") VALUES(?,?,?,?,?,?); [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:js-flot-0.8.3-LF7vQ1kAGl41Nl58RwjSyK",PersistText "upstream",PersistBool True,PersistText "/Users/simon/.nix-profile/bin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/m4/bin:/Users/simon/bin.local:/Users/simon/bin:/Users/simon/adm/bin:/Users/simon/src/hledger/bin:/Users/simon/src/hledger/extra:/Users/simon/.local/bin:/Users/simon/.cabal/bin:/usr/local/bin:/usr/local/sbin:/opt/local/bin:/opt/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/Applications/splunk/bin:/Users/simon/src/PLAINTEXTACCOUNTING/beancount/bin:/Users/simon/.go/bin",PersistBool False]
2019-12-18 13:34:09.863124: [debug] SELECT "id", "precompiled_cache_id", "exe" FROM "precompiled_cache_exe" WHERE ("precompiled_cache_id"=?); [PersistInt64 83]
2019-12-18 13:34:09.947127: [debug] SELECT "id" FROM "config_cache" WHERE _ROWID_=last_insert_rowid(); []
2019-12-18 13:34:10.029800: [info] random              > using precompiled package
2019-12-18 13:34:10.113317: [debug] DELETE FROM "config_cache_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 346]
2019-12-18 13:34:10.201329: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 unregister --force random-1.1
2019-12-18 13:34:10.277204: [debug] INSERT INTO "config_cache_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 346,PersistInt64 0,PersistText "--user",PersistInt64 346,PersistInt64 1,PersistText "--package-db=clear",PersistInt64 346,PersistInt64 2,PersistText "--package-db=global",PersistInt64 346,PersistInt64 3,PersistText "--package-db=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb",PersistInt64 346,PersistInt64 4,PersistText "--libdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/lib",PersistInt64 346,PersistInt64 5,PersistText "--bindir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin",PersistInt64 346,PersistInt64 6,PersistText "--datadir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/share",PersistInt64 346,PersistInt64 7,PersistText "--libexecdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/libexec",PersistInt64 346,PersistInt64 8,PersistText "--sysconfdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/etc",PersistInt64 346,PersistInt64 9,PersistText "--docdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/js-flot-0.8.3",PersistInt64 346,PersistInt64 10,PersistText "--htmldir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/js-flot-0.8.3",PersistInt64 346,PersistInt64 11,PersistText "--haddockdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/js-flot-0.8.3"]
2019-12-18 13:34:10.537227: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/random-1.1-3ypV4EIycgb35PKjTYYr5q.conf
2019-12-18 13:34:10.621397: [debug] DELETE FROM "config_cache_no_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 346]
2019-12-18 13:34:10.703472: [debug] Process finished in 67ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/random-1.1-3ypV4EIycgb35PKjTYYr5q.conf
2019-12-18 13:34:10.771573: [debug] INSERT INTO "config_cache_no_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?); [PersistInt64 346,PersistInt64 0,PersistText "--dependency=base=base-4.12.0.0",PersistInt64 346,PersistInt64 1,PersistText "--exact-configuration",PersistInt64 346,PersistInt64 2,PersistText "--ghc-option=-fhide-source-paths"]
2019-12-18 13:34:10.858321: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output random --expand-pkgroot
2019-12-18 13:34:10.953272: [debug] DELETE FROM "config_cache_dep" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 346]
2019-12-18 13:34:11.042646: [debug] Process finished in 70ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output random --expand-pkgroot
2019-12-18 13:34:11.129892: [debug] INSERT INTO "config_cache_dep"("config_cache_id","ghc_pkg_id") VALUES (?,?); [PersistInt64 346,PersistText "base-4.12.0.0"]
2019-12-18 13:34:11.218642: [debug] SELECT "id","directory","type","pkg_src","active","path_env_var","haddock" FROM "config_cache" WHERE "directory"=? AND "type"=?; [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:js-jquery-3.3.1-DZqkP3t9sdEKaANNNRYiKE"]
2019-12-18 13:34:11.363196: [debug] SELECT "id","platform_ghc_dir","compiler","cabal_version","package_key","options_hash","haddock","library" FROM "precompiled_cache" WHERE "platform_ghc_dir"=? AND "compiler"=? AND "cabal_version"=? AND "package_key"=? AND "options_hash"=? AND "haddock"=?; [PersistText "x86_64-osx/",PersistText "ghc-8.6.5",PersistText "2.4.0.1",PersistText "7fe152b45de8c6a929db10c68b0576e35f7054492c528e8aa10cb1af2fc80953,533",PersistByteString "\198\157\142\ACK\bG\166\254\v\171\217\216u\SYN`\192j}\170\184\154\247\ACK\210\SUB\165$\249I0d}",PersistBool False]
2019-12-18 13:34:11.446727: [debug] INSERT INTO "config_cache"("directory","type","pkg_src","active","path_env_var","haddock") VALUES(?,?,?,?,?,?); [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:js-jquery-3.3.1-DZqkP3t9sdEKaANNNRYiKE",PersistText "upstream",PersistBool True,PersistText "/Users/simon/.nix-profile/bin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/m4/bin:/Users/simon/bin.local:/Users/simon/bin:/Users/simon/adm/bin:/Users/simon/src/hledger/bin:/Users/simon/src/hledger/extra:/Users/simon/.local/bin:/Users/simon/.cabal/bin:/usr/local/bin:/usr/local/sbin:/opt/local/bin:/opt/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/Applications/splunk/bin:/Users/simon/src/PLAINTEXTACCOUNTING/beancount/bin:/Users/simon/.go/bin",PersistBool False]
2019-12-18 13:34:11.537441: [debug] SELECT "id", "precompiled_cache_id", "sub_lib" FROM "precompiled_cache_sub_lib" WHERE ("precompiled_cache_id"=?); [PersistInt64 97]
2019-12-18 13:34:11.621779: [debug] SELECT "id" FROM "config_cache" WHERE _ROWID_=last_insert_rowid(); []
2019-12-18 13:34:11.708623: [debug] SELECT "id", "precompiled_cache_id", "exe" FROM "precompiled_cache_exe" WHERE ("precompiled_cache_id"=?); [PersistInt64 97]
2019-12-18 13:34:11.771666: [debug] DELETE FROM "config_cache_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 347]
2019-12-18 13:34:11.859423: [info] semigroups          > using precompiled package
2019-12-18 13:34:12.022372: [debug] INSERT INTO "config_cache_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 347,PersistInt64 0,PersistText "--user",PersistInt64 347,PersistInt64 1,PersistText "--package-db=clear",PersistInt64 347,PersistInt64 2,PersistText "--package-db=global",PersistInt64 347,PersistInt64 3,PersistText "--package-db=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb",PersistInt64 347,PersistInt64 4,PersistText "--libdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/lib",PersistInt64 347,PersistInt64 5,PersistText "--bindir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin",PersistInt64 347,PersistInt64 6,PersistText "--datadir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/share",PersistInt64 347,PersistInt64 7,PersistText "--libexecdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/libexec",PersistInt64 347,PersistInt64 8,PersistText "--sysconfdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/etc",PersistInt64 347,PersistInt64 9,PersistText "--docdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/js-jquery-3.3.1",PersistInt64 347,PersistInt64 10,PersistText "--htmldir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/js-jquery-3.3.1",PersistInt64 347,PersistInt64 11,PersistText "--haddockdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/js-jquery-3.3.1"]
2019-12-18 13:34:12.272686: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 unregister --force semigroups-0.18.5
2019-12-18 13:34:12.355831: [debug] DELETE FROM "config_cache_no_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 347]
2019-12-18 13:34:12.446762: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/semigroups-0.18.5-8pPnWqWrcWhEagTFf5Pnk2.conf
2019-12-18 13:34:12.542442: [debug] INSERT INTO "config_cache_no_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?); [PersistInt64 347,PersistInt64 0,PersistText "--dependency=base=base-4.12.0.0",PersistInt64 347,PersistInt64 1,PersistText "--exact-configuration",PersistInt64 347,PersistInt64 2,PersistText "--ghc-option=-fhide-source-paths"]
2019-12-18 13:34:12.629478: [debug] Process finished in 68ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/semigroups-0.18.5-8pPnWqWrcWhEagTFf5Pnk2.conf
2019-12-18 13:34:12.713593: [debug] DELETE FROM "config_cache_dep" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 347]
2019-12-18 13:34:12.771538: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output semigroups --expand-pkgroot
2019-12-18 13:34:12.860441: [debug] INSERT INTO "config_cache_dep"("config_cache_id","ghc_pkg_id") VALUES (?,?); [PersistInt64 347,PersistText "base-4.12.0.0"]
2019-12-18 13:34:12.946789: [debug] Process finished in 69ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output semigroups --expand-pkgroot
2019-12-18 13:34:13.036882: [debug] SELECT "id","platform_ghc_dir","compiler","cabal_version","package_key","options_hash","haddock","library" FROM "precompiled_cache" WHERE "platform_ghc_dir"=? AND "compiler"=? AND "cabal_version"=? AND "package_key"=? AND "options_hash"=? AND "haddock"=?; [PersistText "x86_64-osx/",PersistText "ghc-8.6.5",PersistText "2.4.0.1",PersistText "dfc2d75f4e59c03e2c68be6909b577f26991367134eaac06a407e940e66856ae,1415",PersistByteString "\199%\157\246&\183,\167K\245\200\141\138\243k#!\193\227\&8^$\244\252\134\DEL\182\ESCL\143B\236",PersistBool False]
2019-12-18 13:34:13.124865: [debug] SELECT "id","directory","type","pkg_src","active","path_env_var","haddock" FROM "config_cache" WHERE "directory"=? AND "type"=?; [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:primitive-0.6.4.0-ILgywxtLpvnAOlEISPpP5b"]
2019-12-18 13:34:13.274809: [debug] SELECT "id", "precompiled_cache_id", "sub_lib" FROM "precompiled_cache_sub_lib" WHERE ("precompiled_cache_id"=?); [PersistInt64 321]
2019-12-18 13:34:13.361806: [debug] INSERT INTO "config_cache"("directory","type","pkg_src","active","path_env_var","haddock") VALUES(?,?,?,?,?,?); [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:primitive-0.6.4.0-ILgywxtLpvnAOlEISPpP5b",PersistText "upstream",PersistBool True,PersistText "/Users/simon/.nix-profile/bin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/m4/bin:/Users/simon/bin.local:/Users/simon/bin:/Users/simon/adm/bin:/Users/simon/src/hledger/bin:/Users/simon/src/hledger/extra:/Users/simon/.local/bin:/Users/simon/.cabal/bin:/usr/local/bin:/usr/local/sbin:/opt/local/bin:/opt/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/Applications/splunk/bin:/Users/simon/src/PLAINTEXTACCOUNTING/beancount/bin:/Users/simon/.go/bin",PersistBool False]
2019-12-18 13:34:13.489151: [debug] SELECT "id", "precompiled_cache_id", "exe" FROM "precompiled_cache_exe" WHERE ("precompiled_cache_id"=?); [PersistInt64 321]
2019-12-18 13:34:13.568434: [debug] SELECT "id" FROM "config_cache" WHERE _ROWID_=last_insert_rowid(); []
2019-12-18 13:34:13.644099: [info] unordered-containers> using precompiled package
2019-12-18 13:34:13.728894: [debug] DELETE FROM "config_cache_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 348]
2019-12-18 13:34:13.773474: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 unregister --force unordered-containers-0.2.10.0
2019-12-18 13:34:13.861906: [debug] INSERT INTO "config_cache_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 348,PersistInt64 0,PersistText "--user",PersistInt64 348,PersistInt64 1,PersistText "--package-db=clear",PersistInt64 348,PersistInt64 2,PersistText "--package-db=global",PersistInt64 348,PersistInt64 3,PersistText "--package-db=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb",PersistInt64 348,PersistInt64 4,PersistText "--libdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/lib",PersistInt64 348,PersistInt64 5,PersistText "--bindir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin",PersistInt64 348,PersistInt64 6,PersistText "--datadir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/share",PersistInt64 348,PersistInt64 7,PersistText "--libexecdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/libexec",PersistInt64 348,PersistInt64 8,PersistText "--sysconfdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/etc",PersistInt64 348,PersistInt64 9,PersistText "--docdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/primitive-0.6.4.0",PersistInt64 348,PersistInt64 10,PersistText "--htmldir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/primitive-0.6.4.0",PersistInt64 348,PersistInt64 11,PersistText "--haddockdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/primitive-0.6.4.0"]
2019-12-18 13:34:14.127637: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/unordered-containers-0.2.10.0-LgoTL3wbBEY5bZIDJiyxW4.conf
2019-12-18 13:34:14.510449: [debug] DELETE FROM "config_cache_no_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 348]
2019-12-18 13:34:14.604446: [debug] Process finished in 82ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/unordered-containers-0.2.10.0-LgoTL3wbBEY5bZIDJiyxW4.conf
2019-12-18 13:34:14.763418: [debug] INSERT INTO "config_cache_no_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 348,PersistInt64 0,PersistText "--dependency=base=base-4.12.0.0",PersistInt64 348,PersistInt64 1,PersistText "--dependency=ghc-prim=ghc-prim-0.5.3",PersistInt64 348,PersistInt64 2,PersistText "--dependency=transformers=transformers-0.5.6.2",PersistInt64 348,PersistInt64 3,PersistText "--exact-configuration",PersistInt64 348,PersistInt64 4,PersistText "--ghc-option=-fhide-source-paths"]
2019-12-18 13:34:14.886644: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output unordered-containers --expand-pkgroot
2019-12-18 13:34:15.021559: [debug] DELETE FROM "config_cache_dep" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 348]
2019-12-18 13:34:15.094339: [debug] INSERT INTO "config_cache_dep"("config_cache_id","ghc_pkg_id") VALUES (?,?),(?,?),(?,?); [PersistInt64 348,PersistText "base-4.12.0.0",PersistInt64 348,PersistText "ghc-prim-0.5.3",PersistInt64 348,PersistText "transformers-0.5.6.2"]
2019-12-18 13:34:15.221089: [debug] Process finished in 119ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output unordered-containers --expand-pkgroot
2019-12-18 13:34:15.367984: [debug] SELECT "id","platform_ghc_dir","compiler","cabal_version","package_key","options_hash","haddock","library" FROM "precompiled_cache" WHERE "platform_ghc_dir"=? AND "compiler"=? AND "cabal_version"=? AND "package_key"=? AND "options_hash"=? AND "haddock"=?; [PersistText "x86_64-osx/",PersistText "ghc-8.6.5",PersistText "2.4.0.1",PersistText "94c160d3cba160be807fc2957f539453660cf64bd6cb29879aba82424d03527e,546",PersistByteString "\165X\189=BW\241\&8f\172\252D\192\223\207;\201\EOTC\191d\203\185\SYN$A\ESC\140\145\188<\STX",PersistBool False]
2019-12-18 13:34:15.501592: [debug] SELECT "id","directory","type","pkg_src","active","path_env_var","haddock" FROM "config_cache" WHERE "directory"=? AND "type"=?; [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:random-1.1-3ypV4EIycgb35PKjTYYr5q"]
2019-12-18 13:34:15.736860: [debug] SELECT "id", "precompiled_cache_id", "sub_lib" FROM "precompiled_cache_sub_lib" WHERE ("precompiled_cache_id"=?); [PersistInt64 157]
2019-12-18 13:34:15.799984: [debug] INSERT INTO "config_cache"("directory","type","pkg_src","active","path_env_var","haddock") VALUES(?,?,?,?,?,?); [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:random-1.1-3ypV4EIycgb35PKjTYYr5q",PersistText "upstream",PersistBool True,PersistText "/Users/simon/.nix-profile/bin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/m4/bin:/Users/simon/bin.local:/Users/simon/bin:/Users/simon/adm/bin:/Users/simon/src/hledger/bin:/Users/simon/src/hledger/extra:/Users/simon/.local/bin:/Users/simon/.cabal/bin:/usr/local/bin:/usr/local/sbin:/opt/local/bin:/opt/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/Applications/splunk/bin:/Users/simon/src/PLAINTEXTACCOUNTING/beancount/bin:/Users/simon/.go/bin",PersistBool False]
2019-12-18 13:34:15.962761: [debug] SELECT "id", "precompiled_cache_id", "exe" FROM "precompiled_cache_exe" WHERE ("precompiled_cache_id"=?); [PersistInt64 157]
2019-12-18 13:34:16.049461: [debug] SELECT "id" FROM "config_cache" WHERE _ROWID_=last_insert_rowid(); []
2019-12-18 13:34:16.128307: [info] utf8-string         > using precompiled package
2019-12-18 13:34:16.251365: [debug] DELETE FROM "config_cache_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 349]
2019-12-18 13:34:16.379384: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 unregister --force utf8-string-1.0.1.1
2019-12-18 13:34:16.523218: [debug] INSERT INTO "config_cache_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 349,PersistInt64 0,PersistText "--user",PersistInt64 349,PersistInt64 1,PersistText "--package-db=clear",PersistInt64 349,PersistInt64 2,PersistText "--package-db=global",PersistInt64 349,PersistInt64 3,PersistText "--package-db=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb",PersistInt64 349,PersistInt64 4,PersistText "--libdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/lib",PersistInt64 349,PersistInt64 5,PersistText "--bindir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin",PersistInt64 349,PersistInt64 6,PersistText "--datadir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/share",PersistInt64 349,PersistInt64 7,PersistText "--libexecdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/libexec",PersistInt64 349,PersistInt64 8,PersistText "--sysconfdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/etc",PersistInt64 349,PersistInt64 9,PersistText "--docdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/random-1.1",PersistInt64 349,PersistInt64 10,PersistText "--htmldir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/random-1.1",PersistInt64 349,PersistInt64 11,PersistText "--haddockdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/random-1.1"]
2019-12-18 13:34:16.988120: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/utf8-string-1.0.1.1-Geq8jdOv4Q3LkcQoEOWDVv.conf
2019-12-18 13:34:17.331717: [debug] DELETE FROM "config_cache_no_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 349]
2019-12-18 13:34:17.463015: [debug] Process finished in 63ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/fbf2b90f31fb36c1f624da6d5a4000cadea47fda1492a42c992134435201d0b9/8.6.5/pkgdb/utf8-string-1.0.1.1-Geq8jdOv4Q3LkcQoEOWDVv.conf
2019-12-18 13:34:17.730605: [debug] INSERT INTO "config_cache_no_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 349,PersistInt64 0,PersistText "--dependency=base=base-4.12.0.0",PersistInt64 349,PersistInt64 1,PersistText "--dependency=time=time-1.8.0.2",PersistInt64 349,PersistInt64 2,PersistText "--exact-configuration",PersistInt64 349,PersistInt64 3,PersistText "--ghc-option=-fhide-source-paths"]
2019-12-18 13:34:17.970712: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output utf8-string --expand-pkgroot
2019-12-18 13:34:18.205764: [debug] DELETE FROM "config_cache_dep" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 349]
2019-12-18 13:34:18.343288: [debug] Process finished in 65ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output utf8-string --expand-pkgroot
2019-12-18 13:34:18.612918: [debug] INSERT INTO "config_cache_dep"("config_cache_id","ghc_pkg_id") VALUES (?,?),(?,?); [PersistInt64 349,PersistText "base-4.12.0.0",PersistInt64 349,PersistText "time-1.8.0.2"]
2019-12-18 13:34:19.076387: [debug] SELECT "id","directory","type","pkg_src","active","path_env_var","haddock" FROM "config_cache" WHERE "directory"=? AND "type"=?; [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:semigroups-0.18.5-8pPnWqWrcWhEagTFf5Pnk2"]
2019-12-18 13:34:19.229613: [debug] INSERT INTO "config_cache"("directory","type","pkg_src","active","path_env_var","haddock") VALUES(?,?,?,?,?,?); [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:semigroups-0.18.5-8pPnWqWrcWhEagTFf5Pnk2",PersistText "upstream",PersistBool True,PersistText "/Users/simon/.nix-profile/bin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/m4/bin:/Users/simon/bin.local:/Users/simon/bin:/Users/simon/adm/bin:/Users/simon/src/hledger/bin:/Users/simon/src/hledger/extra:/Users/simon/.local/bin:/Users/simon/.cabal/bin:/usr/local/bin:/usr/local/sbin:/opt/local/bin:/opt/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/Applications/splunk/bin:/Users/simon/src/PLAINTEXTACCOUNTING/beancount/bin:/Users/simon/.go/bin",PersistBool False]
2019-12-18 13:34:19.428183: [debug] SELECT "id" FROM "config_cache" WHERE _ROWID_=last_insert_rowid(); []
2019-12-18 13:34:19.651846: [debug] DELETE FROM "config_cache_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 350]
2019-12-18 13:34:19.863051: [debug] INSERT INTO "config_cache_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 350,PersistInt64 0,PersistText "--user",PersistInt64 350,PersistInt64 1,PersistText "--package-db=clear",PersistInt64 350,PersistInt64 2,PersistText "--package-db=global",PersistInt64 350,PersistInt64 3,PersistText "--package-db=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb",PersistInt64 350,PersistInt64 4,PersistText "--libdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/lib",PersistInt64 350,PersistInt64 5,PersistText "--bindir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin",PersistInt64 350,PersistInt64 6,PersistText "--datadir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/share",PersistInt64 350,PersistInt64 7,PersistText "--libexecdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/libexec",PersistInt64 350,PersistInt64 8,PersistText "--sysconfdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/etc",PersistInt64 350,PersistInt64 9,PersistText "--docdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/semigroups-0.18.5",PersistInt64 350,PersistInt64 10,PersistText "--htmldir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/semigroups-0.18.5",PersistInt64 350,PersistInt64 11,PersistText "--haddockdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/semigroups-0.18.5"]
2019-12-18 13:34:20.582459: [debug] DELETE FROM "config_cache_no_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 350]
2019-12-18 13:34:20.947971: [debug] INSERT INTO "config_cache_no_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 350,PersistInt64 0,PersistText "--dependency=base=base-4.12.0.0",PersistInt64 350,PersistInt64 1,PersistText "-fbinary",PersistInt64 350,PersistInt64 2,PersistText "-fbytestring",PersistInt64 350,PersistInt64 3,PersistText "-f-bytestring-builder",PersistInt64 350,PersistInt64 4,PersistText "-fcontainers",PersistInt64 350,PersistInt64 5,PersistText "-fdeepseq",PersistInt64 350,PersistInt64 6,PersistText "-fhashable",PersistInt64 350,PersistInt64 7,PersistText "-ftagged",PersistInt64 350,PersistInt64 8,PersistText "-ftext",PersistInt64 350,PersistInt64 9,PersistText "-ftransformers",PersistInt64 350,PersistInt64 10,PersistText "-funordered-containers",PersistInt64 350,PersistInt64 11,PersistText "--exact-configuration",PersistInt64 350,PersistInt64 12,PersistText "--ghc-option=-fhide-source-paths"]
2019-12-18 13:34:21.330996: [debug] DELETE FROM "config_cache_dep" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 350]
2019-12-18 13:34:21.632715: [debug] INSERT INTO "config_cache_dep"("config_cache_id","ghc_pkg_id") VALUES (?,?); [PersistInt64 350,PersistText "base-4.12.0.0"]
2019-12-18 13:34:21.833055: [debug] SELECT "id","directory","type","pkg_src","active","path_env_var","haddock" FROM "config_cache" WHERE "directory"=? AND "type"=?; [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:unordered-containers-0.2.10.0-LgoTL3wbBEY5bZIDJiyxW4"]
2019-12-18 13:34:22.258011: [debug] SELECT "id","platform_ghc_dir","compiler","cabal_version","package_key","options_hash","haddock","library" FROM "precompiled_cache" WHERE "platform_ghc_dir"=? AND "compiler"=? AND "cabal_version"=? AND "package_key"=? AND "options_hash"=? AND "haddock"=?; [PersistText "x86_64-osx/",PersistText "ghc-8.6.5",PersistText "2.4.0.1",PersistText "61a764a72012e96ac338622af1dbcd8d7620d5952ccd631fc708fb0c5343494a,1828",PersistByteString "\FS\156\241\237#g\v\222i\130Z2\250\DC2\237\211\200\218\170\251\STX&\236\228\t\DC3\191\204\DC4\185$Q",PersistBool False]
2019-12-18 13:34:22.430470: [debug] INSERT INTO "config_cache"("directory","type","pkg_src","active","path_env_var","haddock") VALUES(?,?,?,?,?,?); [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:unordered-containers-0.2.10.0-LgoTL3wbBEY5bZIDJiyxW4",PersistText "upstream",PersistBool True,PersistText "/Users/simon/.nix-profile/bin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/m4/bin:/Users/simon/bin.local:/Users/simon/bin:/Users/simon/adm/bin:/Users/simon/src/hledger/bin:/Users/simon/src/hledger/extra:/Users/simon/.local/bin:/Users/simon/.cabal/bin:/usr/local/bin:/usr/local/sbin:/opt/local/bin:/opt/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/Applications/splunk/bin:/Users/simon/src/PLAINTEXTACCOUNTING/beancount/bin:/Users/simon/.go/bin",PersistBool False]
2019-12-18 13:34:22.601059: [debug] SELECT "id", "precompiled_cache_id", "sub_lib" FROM "precompiled_cache_sub_lib" WHERE ("precompiled_cache_id"=?); [PersistInt64 687]
2019-12-18 13:34:22.754992: [debug] SELECT "id" FROM "config_cache" WHERE _ROWID_=last_insert_rowid(); []
2019-12-18 13:34:22.951901: [debug] SELECT "id", "precompiled_cache_id", "exe" FROM "precompiled_cache_exe" WHERE ("precompiled_cache_id"=?); [PersistInt64 687]
2019-12-18 13:34:23.088511: [debug] DELETE FROM "config_cache_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 351]
2019-12-18 13:34:23.214951: [info] extra               > using precompiled package
2019-12-18 13:34:23.363791: [debug] INSERT INTO "config_cache_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 351,PersistInt64 0,PersistText "--user",PersistInt64 351,PersistInt64 1,PersistText "--package-db=clear",PersistInt64 351,PersistInt64 2,PersistText "--package-db=global",PersistInt64 351,PersistInt64 3,PersistText "--package-db=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb",PersistInt64 351,PersistInt64 4,PersistText "--libdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/lib",PersistInt64 351,PersistInt64 5,PersistText "--bindir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin",PersistInt64 351,PersistInt64 6,PersistText "--datadir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/share",PersistInt64 351,PersistInt64 7,PersistText "--libexecdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/libexec",PersistInt64 351,PersistInt64 8,PersistText "--sysconfdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/etc",PersistInt64 351,PersistInt64 9,PersistText "--docdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/unordered-containers-0.2.10.0",PersistInt64 351,PersistInt64 10,PersistText "--htmldir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/unordered-containers-0.2.10.0",PersistInt64 351,PersistInt64 11,PersistText "--haddockdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/unordered-containers-0.2.10.0"]
2019-12-18 13:34:23.758234: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 unregister --force extra-1.6.18
2019-12-18 13:34:23.906361: [debug] DELETE FROM "config_cache_no_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 351]
2019-12-18 13:34:24.071984: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/95cfabe7f2d079269cd84fc5c6436ec5c50948d4f64bdae90023e273dc6e90ac/8.6.5/pkgdb/extra-1.6.18-25ZB15KWAnzD8Fk6PCWQY.conf
2019-12-18 13:34:24.198929: [debug] INSERT INTO "config_cache_no_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 351,PersistInt64 0,PersistText "--dependency=base=base-4.12.0.0",PersistInt64 351,PersistInt64 1,PersistText "--dependency=deepseq=deepseq-1.4.4.0",PersistInt64 351,PersistInt64 2,PersistText "--dependency=hashable=hashable-1.2.7.0-2SI038axTEd7AEZJ275kpi",PersistInt64 351,PersistInt64 3,PersistText "-f-debug",PersistInt64 351,PersistInt64 4,PersistText "--exact-configuration",PersistInt64 351,PersistInt64 5,PersistText "--ghc-option=-fhide-source-paths"]
2019-12-18 13:34:24.347957: [debug] Process finished in 67ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/95cfabe7f2d079269cd84fc5c6436ec5c50948d4f64bdae90023e273dc6e90ac/8.6.5/pkgdb/extra-1.6.18-25ZB15KWAnzD8Fk6PCWQY.conf
2019-12-18 13:34:24.481407: [debug] DELETE FROM "config_cache_dep" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 351]
2019-12-18 13:34:24.614864: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output extra --expand-pkgroot
2019-12-18 13:34:24.748880: [debug] INSERT INTO "config_cache_dep"("config_cache_id","ghc_pkg_id") VALUES (?,?),(?,?),(?,?); [PersistInt64 351,PersistText "base-4.12.0.0",PersistInt64 351,PersistText "deepseq-1.4.4.0",PersistInt64 351,PersistText "hashable-1.2.7.0-2SI038axTEd7AEZJ275kpi"]
2019-12-18 13:34:24.881460: [debug] Process finished in 64ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output extra --expand-pkgroot
2019-12-18 13:34:25.007356: [debug] SELECT "id","directory","type","pkg_src","active","path_env_var","haddock" FROM "config_cache" WHERE "directory"=? AND "type"=?; [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:utf8-string-1.0.1.1-Geq8jdOv4Q3LkcQoEOWDVv"]
2019-12-18 13:34:25.257751: [debug] INSERT INTO "config_cache"("directory","type","pkg_src","active","path_env_var","haddock") VALUES(?,?,?,?,?,?); [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:utf8-string-1.0.1.1-Geq8jdOv4Q3LkcQoEOWDVv",PersistText "upstream",PersistBool True,PersistText "/Users/simon/.nix-profile/bin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/m4/bin:/Users/simon/bin.local:/Users/simon/bin:/Users/simon/adm/bin:/Users/simon/src/hledger/bin:/Users/simon/src/hledger/extra:/Users/simon/.local/bin:/Users/simon/.cabal/bin:/usr/local/bin:/usr/local/sbin:/opt/local/bin:/opt/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/Applications/splunk/bin:/Users/simon/src/PLAINTEXTACCOUNTING/beancount/bin:/Users/simon/.go/bin",PersistBool False]
2019-12-18 13:34:25.398614: [debug] SELECT "id" FROM "config_cache" WHERE _ROWID_=last_insert_rowid(); []
2019-12-18 13:34:25.531535: [debug] DELETE FROM "config_cache_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 352]
2019-12-18 13:34:25.662157: [debug] INSERT INTO "config_cache_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 352,PersistInt64 0,PersistText "--user",PersistInt64 352,PersistInt64 1,PersistText "--package-db=clear",PersistInt64 352,PersistInt64 2,PersistText "--package-db=global",PersistInt64 352,PersistInt64 3,PersistText "--package-db=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb",PersistInt64 352,PersistInt64 4,PersistText "--libdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/lib",PersistInt64 352,PersistInt64 5,PersistText "--bindir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin",PersistInt64 352,PersistInt64 6,PersistText "--datadir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/share",PersistInt64 352,PersistInt64 7,PersistText "--libexecdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/libexec",PersistInt64 352,PersistInt64 8,PersistText "--sysconfdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/etc",PersistInt64 352,PersistInt64 9,PersistText "--docdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/utf8-string-1.0.1.1",PersistInt64 352,PersistInt64 10,PersistText "--htmldir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/utf8-string-1.0.1.1",PersistInt64 352,PersistInt64 11,PersistText "--haddockdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/utf8-string-1.0.1.1"]
2019-12-18 13:34:26.148627: [debug] DELETE FROM "config_cache_no_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 352]
2019-12-18 13:34:26.259861: [debug] INSERT INTO "config_cache_no_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 352,PersistInt64 0,PersistText "--dependency=base=base-4.12.0.0",PersistInt64 352,PersistInt64 1,PersistText "--dependency=bytestring=bytestring-0.10.8.2",PersistInt64 352,PersistInt64 2,PersistText "--exact-configuration",PersistInt64 352,PersistInt64 3,PersistText "--ghc-option=-fhide-source-paths"]
2019-12-18 13:34:26.565515: [debug] DELETE FROM "config_cache_dep" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 352]
2019-12-18 13:34:26.698217: [debug] INSERT INTO "config_cache_dep"("config_cache_id","ghc_pkg_id") VALUES (?,?),(?,?); [PersistInt64 352,PersistText "base-4.12.0.0",PersistInt64 352,PersistText "bytestring-0.10.8.2"]
2019-12-18 13:34:26.855007: [debug] SELECT "id","directory","type","pkg_src","active","path_env_var","haddock" FROM "config_cache" WHERE "directory"=? AND "type"=?; [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:extra-1.6.18-25ZB15KWAnzD8Fk6PCWQY"]
2019-12-18 13:34:27.081649: [debug] INSERT INTO "config_cache"("directory","type","pkg_src","active","path_env_var","haddock") VALUES(?,?,?,?,?,?); [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:extra-1.6.18-25ZB15KWAnzD8Fk6PCWQY",PersistText "upstream",PersistBool True,PersistText "/Users/simon/.nix-profile/bin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/m4/bin:/Users/simon/bin.local:/Users/simon/bin:/Users/simon/adm/bin:/Users/simon/src/hledger/bin:/Users/simon/src/hledger/extra:/Users/simon/.local/bin:/Users/simon/.cabal/bin:/usr/local/bin:/usr/local/sbin:/opt/local/bin:/opt/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/Applications/splunk/bin:/Users/simon/src/PLAINTEXTACCOUNTING/beancount/bin:/Users/simon/.go/bin",PersistBool False]
2019-12-18 13:34:27.215465: [debug] SELECT "id" FROM "config_cache" WHERE _ROWID_=last_insert_rowid(); []
2019-12-18 13:34:27.215714: [debug] DELETE FROM "config_cache_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 353]
2019-12-18 13:34:27.364694: [debug] INSERT INTO "config_cache_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 353,PersistInt64 0,PersistText "--user",PersistInt64 353,PersistInt64 1,PersistText "--package-db=clear",PersistInt64 353,PersistInt64 2,PersistText "--package-db=global",PersistInt64 353,PersistInt64 3,PersistText "--package-db=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb",PersistInt64 353,PersistInt64 4,PersistText "--libdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/lib",PersistInt64 353,PersistInt64 5,PersistText "--bindir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin",PersistInt64 353,PersistInt64 6,PersistText "--datadir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/share",PersistInt64 353,PersistInt64 7,PersistText "--libexecdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/libexec",PersistInt64 353,PersistInt64 8,PersistText "--sysconfdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/etc",PersistInt64 353,PersistInt64 9,PersistText "--docdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/extra-1.6.18",PersistInt64 353,PersistInt64 10,PersistText "--htmldir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/extra-1.6.18",PersistInt64 353,PersistInt64 11,PersistText "--haddockdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/extra-1.6.18"]
2019-12-18 13:34:27.665267: [debug] DELETE FROM "config_cache_no_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 353]
2019-12-18 13:34:27.831670: [debug] INSERT INTO "config_cache_no_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 353,PersistInt64 0,PersistText "--dependency=base=base-4.12.0.0",PersistInt64 353,PersistInt64 1,PersistText "--dependency=clock=clock-0.8-H1S1zDefxirImaRbI6ITNv",PersistInt64 353,PersistInt64 2,PersistText "--dependency=directory=directory-1.3.3.0",PersistInt64 353,PersistInt64 3,PersistText "--dependency=filepath=filepath-1.4.2.1",PersistInt64 353,PersistInt64 4,PersistText "--dependency=process=process-1.6.5.0",PersistInt64 353,PersistInt64 5,PersistText "--dependency=semigroups=semigroups-0.18.5-8pPnWqWrcWhEagTFf5Pnk2",PersistInt64 353,PersistInt64 6,PersistText "--dependency=time=time-1.8.0.2",PersistInt64 353,PersistInt64 7,PersistText "--dependency=unix=unix-2.7.2.2",PersistInt64 353,PersistInt64 8,PersistText "--exact-configuration",PersistInt64 353,PersistInt64 9,PersistText "--ghc-option=-fhide-source-paths"]
2019-12-18 13:34:28.162035: [debug] DELETE FROM "config_cache_dep" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 353]
2019-12-18 13:34:28.162229: [debug] INSERT INTO "config_cache_dep"("config_cache_id","ghc_pkg_id") VALUES (?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?); [PersistInt64 353,PersistText "base-4.12.0.0",PersistInt64 353,PersistText "clock-0.8-H1S1zDefxirImaRbI6ITNv",PersistInt64 353,PersistText "directory-1.3.3.0",PersistInt64 353,PersistText "filepath-1.4.2.1",PersistInt64 353,PersistText "process-1.6.5.0",PersistInt64 353,PersistText "semigroups-0.18.5-8pPnWqWrcWhEagTFf5Pnk2",PersistInt64 353,PersistText "time-1.8.0.2",PersistInt64 353,PersistText "unix-2.7.2.2"]
2019-12-18 13:34:28.471032: [debug] SELECT "id","platform_ghc_dir","compiler","cabal_version","package_key","options_hash","haddock","library" FROM "precompiled_cache" WHERE "platform_ghc_dir"=? AND "compiler"=? AND "cabal_version"=? AND "package_key"=? AND "options_hash"=? AND "haddock"=?; [PersistText "x86_64-osx/",PersistText "ghc-8.6.5",PersistText "2.4.0.1",PersistText "9b2829a8c9b47bb5dcee3c6547fcd3867354ed2b0094271e01fb2df89a3fc6fd,998",PersistByteString "U7aIem\215\&6\144x<\135a\DC2l\DLE\128p\GS\133\&3=^o\188\180N\t\129\171\146X",PersistBool False]
2019-12-18 13:34:28.620063: [debug] SELECT "id", "precompiled_cache_id", "sub_lib" FROM "precompiled_cache_sub_lib" WHERE ("precompiled_cache_id"=?); [PersistInt64 719]
2019-12-18 13:34:28.759155: [debug] SELECT "id", "precompiled_cache_id", "exe" FROM "precompiled_cache_exe" WHERE ("precompiled_cache_id"=?); [PersistInt64 719]
2019-12-18 13:34:28.898278: [info] filepattern         > using precompiled package
2019-12-18 13:34:28.898628: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 unregister --force filepattern-0.1.1
2019-12-18 13:34:29.135685: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/95cfabe7f2d079269cd84fc5c6436ec5c50948d4f64bdae90023e273dc6e90ac/8.6.5/pkgdb/filepattern-0.1.1-CmUxfPfJOZ1CicvCAFCqm3.conf
2019-12-18 13:34:29.482470: [debug] Process finished in 83ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 register --force /Users/simon/.stack/snapshots/x86_64-osx/95cfabe7f2d079269cd84fc5c6436ec5c50948d4f64bdae90023e273dc6e90ac/8.6.5/pkgdb/filepattern-0.1.1-CmUxfPfJOZ1CicvCAFCqm3.conf
2019-12-18 13:34:29.569244: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output filepattern --expand-pkgroot
2019-12-18 13:34:29.831769: [debug] Process finished in 98ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output filepattern --expand-pkgroot
2019-12-18 13:34:29.913426: [debug] SELECT "id","directory","type","pkg_src","active","path_env_var","haddock" FROM "config_cache" WHERE "directory"=? AND "type"=?; [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:filepattern-0.1.1-CmUxfPfJOZ1CicvCAFCqm3"]
2019-12-18 13:34:30.069913: [debug] INSERT INTO "config_cache"("directory","type","pkg_src","active","path_env_var","haddock") VALUES(?,?,?,?,?,?); [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:filepattern-0.1.1-CmUxfPfJOZ1CicvCAFCqm3",PersistText "upstream",PersistBool True,PersistText "/Users/simon/.nix-profile/bin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/m4/bin:/Users/simon/bin.local:/Users/simon/bin:/Users/simon/adm/bin:/Users/simon/src/hledger/bin:/Users/simon/src/hledger/extra:/Users/simon/.local/bin:/Users/simon/.cabal/bin:/usr/local/bin:/usr/local/sbin:/opt/local/bin:/opt/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/Applications/splunk/bin:/Users/simon/src/PLAINTEXTACCOUNTING/beancount/bin:/Users/simon/.go/bin",PersistBool False]
2019-12-18 13:34:30.236519: [debug] SELECT "id" FROM "config_cache" WHERE _ROWID_=last_insert_rowid(); []
2019-12-18 13:34:30.399513: [debug] DELETE FROM "config_cache_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 354]
2019-12-18 13:34:30.564292: [debug] INSERT INTO "config_cache_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 354,PersistInt64 0,PersistText "--user",PersistInt64 354,PersistInt64 1,PersistText "--package-db=clear",PersistInt64 354,PersistInt64 2,PersistText "--package-db=global",PersistInt64 354,PersistInt64 3,PersistText "--package-db=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb",PersistInt64 354,PersistInt64 4,PersistText "--libdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/lib",PersistInt64 354,PersistInt64 5,PersistText "--bindir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin",PersistInt64 354,PersistInt64 6,PersistText "--datadir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/share",PersistInt64 354,PersistInt64 7,PersistText "--libexecdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/libexec",PersistInt64 354,PersistInt64 8,PersistText "--sysconfdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/etc",PersistInt64 354,PersistInt64 9,PersistText "--docdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/filepattern-0.1.1",PersistInt64 354,PersistInt64 10,PersistText "--htmldir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/filepattern-0.1.1",PersistInt64 354,PersistInt64 11,PersistText "--haddockdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/filepattern-0.1.1"]
2019-12-18 13:34:30.898905: [debug] DELETE FROM "config_cache_no_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 354]
2019-12-18 13:34:31.101458: [debug] INSERT INTO "config_cache_no_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 354,PersistInt64 0,PersistText "--dependency=base=base-4.12.0.0",PersistInt64 354,PersistInt64 1,PersistText "--dependency=directory=directory-1.3.3.0",PersistInt64 354,PersistInt64 2,PersistText "--dependency=extra=extra-1.6.18-25ZB15KWAnzD8Fk6PCWQY",PersistInt64 354,PersistInt64 3,PersistText "--dependency=filepath=filepath-1.4.2.1",PersistInt64 354,PersistInt64 4,PersistText "--exact-configuration",PersistInt64 354,PersistInt64 5,PersistText "--ghc-option=-fhide-source-paths"]
2019-12-18 13:34:31.298079: [debug] DELETE FROM "config_cache_dep" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 354]
2019-12-18 13:34:31.478370: [debug] INSERT INTO "config_cache_dep"("config_cache_id","ghc_pkg_id") VALUES (?,?),(?,?),(?,?),(?,?); [PersistInt64 354,PersistText "base-4.12.0.0",PersistInt64 354,PersistText "directory-1.3.3.0",PersistInt64 354,PersistText "extra-1.6.18-25ZB15KWAnzD8Fk6PCWQY",PersistInt64 354,PersistText "filepath-1.4.2.1"]
2019-12-18 13:34:31.642573: [debug] SELECT "id","platform_ghc_dir","compiler","cabal_version","package_key","options_hash","haddock","library" FROM "precompiled_cache" WHERE "platform_ghc_dir"=? AND "compiler"=? AND "cabal_version"=? AND "package_key"=? AND "options_hash"=? AND "haddock"=?; [PersistText "x86_64-osx/",PersistText "ghc-8.6.5",PersistText "2.4.0.1",PersistText "5fd80a72da3545009d675cdc4d47aa1b47821c448f3c2e7b9ef248b7ff4ceaf2,12063",PersistByteString "\255\231D\128\217N\133\221\232\&8\NULU\215\233\v\213\170\NAK\184\215\149\246\129\143\197\136d\191\&1J3N",PersistBool False]
2019-12-18 13:34:31.981998: [debug] SELECT "id","directory","type","pkg_src","active","path_env_var","haddock" FROM "config_cache" WHERE "directory"=? AND "type"=?; [PersistText "/private/var/folders/r7/f9j9c2zd1k97v47cr84j_qvc0000gn/T/stack10765/shake-0.18.4/",PersistText "config"]
2019-12-18 13:34:31.996962: [debug] UPDATE "config_cache" SET "active"=? WHERE ("directory"=?) AND ("type"=?); [PersistBool False,PersistText "/private/var/folders/r7/f9j9c2zd1k97v47cr84j_qvc0000gn/T/stack10765/shake-0.18.4/",PersistText "config"]
2019-12-18 13:34:32.148099: [info] shake               > configure
2019-12-18 13:34:32.149552: [debug] Run process within /private/var/folders/r7/f9j9c2zd1k97v47cr84j_qvc0000gn/T/stack10765/shake-0.18.4/: /Users/simon/.stack/setup-exe-cache/x86_64-osx/Cabal-simple_mPHDZzAJ_2.4.0.1_ghc-8.6.5 --builddir=.stack-work/dist/x86_64-osx/Cabal-2.4.0.1 configure --user --package-db=clear --package-db=global --package-db=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb --libdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/lib --bindir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin --datadir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/share --libexecdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/libexec --sysconfdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/etc --docdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/shake-0.18.4 --htmldir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/shake-0.18.4 --haddockdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/shake-0.18.4 --dependency=base=base-4.12.0.0 --dependency=binary=binary-0.8.6.0 --dependency=bytestring=bytestring-0.10.8.2 --dependency=deepseq=deepseq-1.4.4.0 --dependency=directory=directory-1.3.3.0 --dependency=extra=extra-1.6.18-25ZB15KWAnzD8Fk6PCWQY --dependency=file-embed=file-embed-0.0.11-4IE3sw0bCLQ7xXwEGMUYke --dependency=filepath=filepath-1.4.2.1 --dependency=filepattern=filepattern-0.1.1-CmUxfPfJOZ1CicvCAFCqm3 --dependency=hashable=hashable-1.2.7.0-2SI038axTEd7AEZJ275kpi --dependency=heaps=heaps-0.3.6.1-FbztQFLzLVD5oeX5TA4nUO --dependency=js-dgtable=js-dgtable-0.5.2-FqAdyplKo2t2OEsY8trwTv --dependency=js-flot=js-flot-0.8.3-LF7vQ1kAGl41Nl58RwjSyK --dependency=js-jquery=js-jquery-3.3.1-DZqkP3t9sdEKaANNNRYiKE --dependency=primitive=primitive-0.6.4.0-ILgywxtLpvnAOlEISPpP5b --dependency=process=process-1.6.5.0 --dependency=random=random-1.1-3ypV4EIycgb35PKjTYYr5q --dependency=template-haskell=template-haskell-2.14.0.0 --dependency=time=time-1.8.0.2 --dependency=transformers=transformers-0.5.6.2 --dependency=unix=unix-2.7.2.2 --dependency=unordered-containers=unordered-containers-0.2.10.0-LgoTL3wbBEY5bZIDJiyxW4 --dependency=utf8-string=utf8-string-1.0.1.1-Geq8jdOv4Q3LkcQoEOWDVv -f-cloud -f-embed-files -f-portable --exact-configuration --ghc-option=-fhide-source-paths
2019-12-18 13:34:34.188888: [info] shake               > Configuring shake-0.18.4...
2019-12-18 13:34:34.781842: [debug] Process finished in 2200ms: /Users/simon/.stack/setup-exe-cache/x86_64-osx/Cabal-simple_mPHDZzAJ_2.4.0.1_ghc-8.6.5 --builddir=.stack-work/dist/x86_64-osx/Cabal-2.4.0.1 configure --user --package-db=clear --package-db=global --package-db=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb --libdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/lib --bindir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin --datadir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/share --libexecdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/libexec --sysconfdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/etc --docdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/shake-0.18.4 --htmldir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/shake-0.18.4 --haddockdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/shake-0.18.4 --dependency=base=base-4.12.0.0 --dependency=binary=binary-0.8.6.0 --dependency=bytestring=bytestring-0.10.8.2 --dependency=deepseq=deepseq-1.4.4.0 --dependency=directory=directory-1.3.3.0 --dependency=extra=extra-1.6.18-25ZB15KWAnzD8Fk6PCWQY --dependency=file-embed=file-embed-0.0.11-4IE3sw0bCLQ7xXwEGMUYke --dependency=filepath=filepath-1.4.2.1 --dependency=filepattern=filepattern-0.1.1-CmUxfPfJOZ1CicvCAFCqm3 --dependency=hashable=hashable-1.2.7.0-2SI038axTEd7AEZJ275kpi --dependency=heaps=heaps-0.3.6.1-FbztQFLzLVD5oeX5TA4nUO --dependency=js-dgtable=js-dgtable-0.5.2-FqAdyplKo2t2OEsY8trwTv --dependency=js-flot=js-flot-0.8.3-LF7vQ1kAGl41Nl58RwjSyK --dependency=js-jquery=js-jquery-3.3.1-DZqkP3t9sdEKaANNNRYiKE --dependency=primitive=primitive-0.6.4.0-ILgywxtLpvnAOlEISPpP5b --dependency=process=process-1.6.5.0 --dependency=random=random-1.1-3ypV4EIycgb35PKjTYYr5q --dependency=template-haskell=template-haskell-2.14.0.0 --dependency=time=time-1.8.0.2 --dependency=transformers=transformers-0.5.6.2 --dependency=unix=unix-2.7.2.2 --dependency=unordered-containers=unordered-containers-0.2.10.0-LgoTL3wbBEY5bZIDJiyxW4 --dependency=utf8-string=utf8-string-1.0.1.1-Geq8jdOv4Q3LkcQoEOWDVv -f-cloud -f-embed-files -f-portable --exact-configuration --ghc-option=-fhide-source-paths
2019-12-18 13:34:35.129785: [info] shake               > build
2019-12-18 13:34:35.130100: [debug] Run process within /private/var/folders/r7/f9j9c2zd1k97v47cr84j_qvc0000gn/T/stack10765/shake-0.18.4/: /Users/simon/.stack/setup-exe-cache/x86_64-osx/Cabal-simple_mPHDZzAJ_2.4.0.1_ghc-8.6.5 --builddir=.stack-work/dist/x86_64-osx/Cabal-2.4.0.1 build --ghc-options " -fdiagnostics-color=always"
2019-12-18 13:34:35.492555: [info] shake               > Preprocessing executable 'shake' for shake-0.18.4..
2019-12-18 13:34:35.492773: [info] shake               > Building executable 'shake' for shake-0.18.4..
2019-12-18 13:34:36.688374: [info] shake               > [ 1 of 71] Compiling Development.Ninja.Env
2019-12-18 13:34:37.276860: [info] shake               > [ 2 of 71] Compiling Development.Ninja.Type
2019-12-18 13:34:38.331372: [info] shake               > [ 3 of 71] Compiling Development.Ninja.Lexer
2019-12-18 13:34:39.653863: [info] shake               > [ 4 of 71] Compiling Development.Ninja.Parse
2019-12-18 13:34:40.041113: [info] shake               > [ 5 of 71] Compiling Development.Shake.Classes
2019-12-18 13:34:40.143712: [info] shake               > [ 6 of 71] Compiling Development.Shake.FilePath
2019-12-18 13:34:40.445833: [info] shake               > [ 7 of 71] Compiling Development.Shake.Internal.CmdOption
2019-12-18 13:34:42.231799: [info] shake               > [ 8 of 71] Compiling Development.Shake.Internal.History.Bloom
2019-12-18 13:34:42.568346: [info] shake               > [ 9 of 71] Compiling Development.Shake.Internal.History.Network
2019-12-18 13:34:42.681845: [info] shake               > [10 of 71] Compiling Development.Shake.Internal.History.Types
2019-12-18 13:34:42.782152: [info] shake               > [11 of 71] Compiling General.Bilist
2019-12-18 13:34:42.946324: [info] shake               > [12 of 71] Compiling General.Binary
2019-12-18 13:34:44.788480: [info] shake               > [13 of 71] Compiling Development.Shake.Internal.FileName
2019-12-18 13:34:45.104096: [info] shake               > [14 of 71] Compiling General.Cleanup
2019-12-18 13:34:45.747032: [info] shake               > [15 of 71] Compiling General.EscCodes
2019-12-18 13:34:46.533110: [info] shake               > [16 of 71] Compiling General.Extra
2019-12-18 13:34:48.167384: [info] shake               > [17 of 71] Compiling Development.Shake.Internal.History.Symlink
2019-12-18 13:34:48.369122: [info] shake               > [18 of 71] Compiling Development.Shake.Internal.Errors
2019-12-18 13:34:48.971928: [info] shake               > [19 of 71] Compiling Development.Shake.Internal.Value
2019-12-18 13:34:49.318615: [info] shake               > [20 of 71] Compiling Development.Shake.Internal.FilePattern
2019-12-18 13:34:50.709709: [info] shake               > [21 of 71] Compiling Development.Shake.Internal.Options
2019-12-18 13:34:58.174051: [info] shake               > [22 of 71] Compiling Development.Shake.Internal.FileInfo
2019-12-18 13:34:58.491429: [info] shake               > [23 of 71] Compiling Development.Shake.Internal.Core.Monad
2019-12-18 13:34:59.024307: [info] shake               > [24 of 71] Compiling General.Fence
2019-12-18 13:34:59.330541: [info] shake               > [25 of 71] Compiling General.FileLock
2019-12-18 13:34:59.520091: [info] shake               > [26 of 71] Compiling General.GetOpt
2019-12-18 13:35:00.320381: [info] shake               > [27 of 71] Compiling General.Intern
2019-12-18 13:35:00.638253: [info] shake               > [28 of 71] Compiling General.Ids
2019-12-18 13:35:01.248291: [info] shake               > [29 of 71] Compiling Development.Shake.Internal.History.Serialise
2019-12-18 13:35:02.261778: [info] shake               > [30 of 71] Compiling Development.Shake.Internal.History.Server
2019-12-18 13:35:02.471630: [info] shake               > [31 of 71] Compiling Development.Shake.Internal.Core.Database
2019-12-18 13:35:02.835296: [info] shake               > [32 of 71] Compiling General.ListBuilder
2019-12-18 13:35:03.141238: [info] shake               > [33 of 71] Compiling General.Makefile
2019-12-18 13:35:03.425235: [info] shake               > [34 of 71] Compiling General.Process
2019-12-18 13:35:04.422479: [info] shake               > [35 of 71] Compiling General.Thread
2019-12-18 13:35:05.008389: [info] shake               > [36 of 71] Compiling General.Chunks
2019-12-18 13:35:05.623156: [info] shake               > [37 of 71] Compiling General.Timing
2019-12-18 13:35:06.032302: [info] shake               > [38 of 71] Compiling General.Pool
2019-12-18 13:35:07.478888: [info] shake               > [39 of 71] Compiling Development.Shake.Internal.Core.Storage
2019-12-18 13:35:09.056558: [info] shake               > [40 of 71] Compiling General.TypeMap
2019-12-18 13:35:10.309838: [info] shake               > [41 of 71] Compiling General.Wait
2019-12-18 13:35:10.813129: [info] shake               > [42 of 71] Compiling Development.Shake.Internal.History.Shared
2019-12-18 13:35:11.834935: [info] shake               > [43 of 71] Compiling Development.Shake.Internal.History.Cloud
2019-12-18 13:35:12.348635: [info] shake               > [44 of 71] Compiling Development.Shake.Internal.Core.Types
2019-12-18 13:35:14.932199: [info] shake               > [45 of 71] Compiling Development.Shake.Internal.Core.Rules
2019-12-18 13:35:17.528933: [info] shake               > [46 of 71] Compiling Development.Shake.Internal.Core.Pool
2019-12-18 13:35:17.773807: [info] shake               > [47 of 71] Compiling Development.Shake.Internal.Core.Action
2019-12-18 13:35:21.864657: [info] shake               > [48 of 71] Compiling Development.Shake.Internal.Resource
2019-12-18 13:35:23.278047: [info] shake               > [49 of 71] Compiling Development.Shake.Internal.Core.Build
2019-12-18 13:35:25.019999: [info] shake               > [50 of 71] Compiling Development.Shake.Internal.Rules.Rerun
2019-12-18 13:35:25.274081: [info] shake               > [51 of 71] Compiling Development.Shake.Internal.Rules.Oracle
2019-12-18 13:35:25.819620: [info] shake               > [52 of 71] Compiling Development.Shake.Internal.Rules.File
2019-12-18 13:35:28.484463: [info] shake               > [53 of 71] Compiling Development.Shake.Internal.Rules.OrderOnly
2019-12-18 13:35:28.631786: [info] shake               > [54 of 71] Compiling Development.Shake.Internal.Rules.Files
2019-12-18 13:35:30.016261: [info] shake               > [55 of 71] Compiling Development.Shake.Internal.Derived
2019-12-18 13:35:30.816335: [info] shake               > [56 of 71] Compiling Development.Shake.Command
2019-12-18 13:35:35.334454: [info] shake               > [57 of 71] Compiling Development.Shake.Internal.Rules.Directory
2019-12-18 13:35:37.644999: [info] shake               > [58 of 71] Compiling Development.Shake.Internal.Rules.Default
2019-12-18 13:35:37.761172: [info] shake               > [59 of 71] Compiling Paths_shake
2019-12-18 13:35:37.956268: [info] shake               > [60 of 71] Compiling Development.Shake.Internal.Paths
2019-12-18 13:35:38.684976: [info] shake               > [61 of 71] Compiling General.Template
2019-12-18 13:35:39.358933: [info] shake               > [62 of 71] Compiling Development.Shake.Internal.Progress
2019-12-18 13:35:40.513593: [info] shake               > [63 of 71] Compiling Development.Shake.Internal.CompactUI
2019-12-18 13:35:40.879439: [info] shake               > [64 of 71] Compiling Development.Shake.Internal.Profile
2019-12-18 13:35:43.810741: [info] shake               > [65 of 71] Compiling Development.Shake.Internal.Core.Run
2019-12-18 13:35:48.037871: [info] shake               > [66 of 71] Compiling Development.Shake.Database
2019-12-18 13:35:48.857527: [info] shake               > [67 of 71] Compiling Development.Shake.Internal.Demo
2019-12-18 13:35:49.288555: [info] shake               > [68 of 71] Compiling Development.Shake.Internal.Args
2019-12-18 13:35:51.785765: [info] shake               > [69 of 71] Compiling Development.Shake
2019-12-18 13:35:51.951950: [info] shake               > [70 of 71] Compiling Development.Ninja.All
2019-12-18 13:35:54.904633: [info] shake               > [71 of 71] Compiling Run
2019-12-18 13:35:57.953155: [info] shake               > Linking .stack-work/dist/x86_64-osx/Cabal-2.4.0.1/build/shake/shake ...
2019-12-18 13:36:02.398503: [info] shake               > Preprocessing library for shake-0.18.4..
2019-12-18 13:36:02.398648: [info] shake               > Building library for shake-0.18.4..
2019-12-18 13:36:03.998186: [info] shake               > [ 1 of 73] Compiling Development.Ninja.Env
2019-12-18 13:36:04.901630: [info] shake               > [ 2 of 73] Compiling Development.Ninja.Type
2019-12-18 13:36:06.624970: [info] shake               > [ 3 of 73] Compiling Development.Ninja.Lexer
2019-12-18 13:36:08.052826: [info] shake               > [ 4 of 73] Compiling Development.Ninja.Parse
2019-12-18 13:36:08.453954: [info] shake               > [ 5 of 73] Compiling Development.Shake.Classes
2019-12-18 13:36:08.572264: [info] shake               > [ 6 of 73] Compiling Development.Shake.FilePath
2019-12-18 13:36:08.867214: [info] shake               > [ 7 of 73] Compiling Development.Shake.Internal.CmdOption
2019-12-18 13:36:10.786478: [info] shake               > [ 8 of 73] Compiling Development.Shake.Internal.History.Bloom
2019-12-18 13:36:11.158851: [info] shake               > [ 9 of 73] Compiling Development.Shake.Internal.History.Network
2019-12-18 13:36:11.261347: [info] shake               > [10 of 73] Compiling Development.Shake.Internal.History.Types
2019-12-18 13:36:11.358106: [info] shake               > [11 of 73] Compiling General.Bilist
2019-12-18 13:36:11.548276: [info] shake               > [12 of 73] Compiling General.Binary
2019-12-18 13:36:12.619016: [info] shake               > [13 of 73] Compiling Development.Shake.Internal.FileName
2019-12-18 13:36:12.927137: [info] shake               > [14 of 73] Compiling General.Cleanup
2019-12-18 13:36:13.514007: [info] shake               > [15 of 73] Compiling General.EscCodes
2019-12-18 13:36:14.271766: [info] shake               > [16 of 73] Compiling General.Extra
2019-12-18 13:36:15.575604: [info] shake               > [17 of 73] Compiling Development.Shake.Internal.History.Symlink
2019-12-18 13:36:15.731477: [info] shake               > [18 of 73] Compiling Development.Shake.Internal.Errors
2019-12-18 13:36:16.371763: [info] shake               > [19 of 73] Compiling Development.Shake.Internal.Value
2019-12-18 13:36:17.364852: [info] shake               > [20 of 73] Compiling Development.Shake.Internal.FilePattern
2019-12-18 13:36:18.504697: [info] shake               > [21 of 73] Compiling Development.Shake.Internal.Options
2019-12-18 13:36:26.262798: [info] shake               > [22 of 73] Compiling Development.Shake.Internal.FileInfo
2019-12-18 13:36:26.641097: [info] shake               > [23 of 73] Compiling Development.Shake.Internal.Core.Monad
2019-12-18 13:36:27.241193: [info] shake               > [24 of 73] Compiling General.Fence
2019-12-18 13:36:27.533684: [info] shake               > [25 of 73] Compiling General.FileLock
2019-12-18 13:36:27.758296: [info] shake               > [26 of 73] Compiling General.GetOpt
2019-12-18 13:36:28.676569: [info] shake               > [27 of 73] Compiling General.Intern
2019-12-18 13:36:28.978606: [info] shake               > [28 of 73] Compiling General.Ids
2019-12-18 13:36:29.534564: [info] shake               > [29 of 73] Compiling Development.Shake.Internal.History.Serialise
2019-12-18 13:36:30.136612: [info] shake               > [30 of 73] Compiling Development.Shake.Internal.History.Server
2019-12-18 13:36:30.307220: [info] shake               > [31 of 73] Compiling Development.Shake.Internal.Core.Database
2019-12-18 13:36:30.706797: [info] shake               > [32 of 73] Compiling General.ListBuilder
2019-12-18 13:36:31.048044: [info] shake               > [33 of 73] Compiling General.Makefile
2019-12-18 13:36:31.335110: [info] shake               > [34 of 73] Compiling General.Process
2019-12-18 13:36:32.362315: [info] shake               > [35 of 73] Compiling General.Thread
2019-12-18 13:36:32.740683: [info] shake               > [36 of 73] Compiling General.Chunks
2019-12-18 13:36:33.177715: [info] shake               > [37 of 73] Compiling General.Timing
2019-12-18 13:36:33.520090: [info] shake               > [38 of 73] Compiling General.Pool
2019-12-18 13:36:34.885876: [info] shake               > [39 of 73] Compiling Development.Shake.Internal.Core.Storage
2019-12-18 13:36:36.551837: [info] shake               > [40 of 73] Compiling General.TypeMap
2019-12-18 13:36:37.704397: [info] shake               > [41 of 73] Compiling General.Wait
2019-12-18 13:36:38.201388: [info] shake               > [42 of 73] Compiling Development.Shake.Internal.History.Shared
2019-12-18 13:36:39.364710: [info] shake               > [43 of 73] Compiling Development.Shake.Internal.History.Cloud
2019-12-18 13:36:39.858171: [info] shake               > [44 of 73] Compiling Development.Shake.Internal.Core.Types
2019-12-18 13:36:42.380460: [info] shake               > [45 of 73] Compiling Development.Shake.Internal.Core.Rules
2019-12-18 13:36:44.928562: [info] shake               > [46 of 73] Compiling Development.Shake.Internal.Core.Pool
2019-12-18 13:36:45.189482: [info] shake               > [47 of 73] Compiling Development.Shake.Internal.Core.Action
2019-12-18 13:36:49.415434: [info] shake               > [48 of 73] Compiling Development.Shake.Internal.Resource
2019-12-18 13:36:50.092033: [info] shake               > [49 of 73] Compiling Development.Shake.Internal.Core.Build
2019-12-18 13:36:51.267349: [info] shake               > [50 of 73] Compiling Development.Shake.Rule
2019-12-18 13:36:51.375305: [info] shake               > [51 of 73] Compiling Development.Shake.Internal.Rules.Rerun
2019-12-18 13:36:51.543766: [info] shake               > [52 of 73] Compiling Development.Shake.Internal.Rules.Oracle
2019-12-18 13:36:52.059150: [info] shake               > [53 of 73] Compiling Development.Shake.Internal.Rules.File
2019-12-18 13:36:54.168787: [info] shake               > [54 of 73] Compiling Development.Shake.Internal.Rules.OrderOnly
2019-12-18 13:36:54.343456: [info] shake               > [55 of 73] Compiling Development.Shake.Internal.Rules.Files
2019-12-18 13:36:55.829064: [info] shake               > [56 of 73] Compiling Development.Shake.Internal.Derived
2019-12-18 13:36:56.522454: [info] shake               > [57 of 73] Compiling Development.Shake.Command
2019-12-18 13:36:59.843944: [info] shake               > [58 of 73] Compiling Development.Shake.Internal.Rules.Directory
2019-12-18 13:37:01.852570: [info] shake               > [59 of 73] Compiling Development.Shake.Internal.Rules.Default
2019-12-18 13:37:01.960937: [info] shake               > [60 of 73] Compiling Paths_shake
2019-12-18 13:37:02.162651: [info] shake               > [61 of 73] Compiling Development.Shake.Internal.Paths
2019-12-18 13:37:02.389672: [info] shake               > [62 of 73] Compiling General.Template
2019-12-18 13:37:02.704501: [info] shake               > [63 of 73] Compiling Development.Shake.Internal.Progress
2019-12-18 13:37:04.497091: [info] shake               > [64 of 73] Compiling Development.Shake.Internal.CompactUI
2019-12-18 13:37:04.836072: [info] shake               > [65 of 73] Compiling Development.Shake.Internal.Profile
2019-12-18 13:37:07.963857: [info] shake               > [66 of 73] Compiling Development.Shake.Internal.Core.Run
2019-12-18 13:37:10.926502: [info] shake               > [67 of 73] Compiling Development.Shake.Database
2019-12-18 13:37:11.417862: [info] shake               > [68 of 73] Compiling Development.Shake.Internal.Demo
2019-12-18 13:37:11.814970: [info] shake               > [69 of 73] Compiling Development.Shake.Internal.Args
2019-12-18 13:37:18.473682: [info] shake               > [70 of 73] Compiling Development.Shake
2019-12-18 13:37:18.718140: [info] shake               > [71 of 73] Compiling Development.Shake.Util
2019-12-18 13:37:19.117958: [info] shake               > [72 of 73] Compiling Development.Shake.Forward
2019-12-18 13:37:20.602768: [info] shake               > [73 of 73] Compiling Development.Shake.Config
2019-12-18 13:37:24.113289: [debug] Process finished in 168797ms: /Users/simon/.stack/setup-exe-cache/x86_64-osx/Cabal-simple_mPHDZzAJ_2.4.0.1_ghc-8.6.5 --builddir=.stack-work/dist/x86_64-osx/Cabal-2.4.0.1 build --ghc-options " -fdiagnostics-color=always"
2019-12-18 13:37:24.114351: [info] shake               > copy/register
2019-12-18 13:37:24.114806: [debug] Run process within /private/var/folders/r7/f9j9c2zd1k97v47cr84j_qvc0000gn/T/stack10765/shake-0.18.4/: /Users/simon/.stack/setup-exe-cache/x86_64-osx/Cabal-simple_mPHDZzAJ_2.4.0.1_ghc-8.6.5 --builddir=.stack-work/dist/x86_64-osx/Cabal-2.4.0.1 copy
2019-12-18 13:37:24.566296: [info] shake               > Installing executable shake in /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin
2019-12-18 13:37:25.622088: [info] shake               > Installing library in /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/lib/x86_64-osx-ghc-8.6.5/shake-0.18.4-5a99t8T3Y9GPI2eO7Iwa9
2019-12-18 13:37:25.631078: [debug] Process finished in 1358ms: /Users/simon/.stack/setup-exe-cache/x86_64-osx/Cabal-simple_mPHDZzAJ_2.4.0.1_ghc-8.6.5 --builddir=.stack-work/dist/x86_64-osx/Cabal-2.4.0.1 copy
2019-12-18 13:37:25.699969: [debug] Run process within /private/var/folders/r7/f9j9c2zd1k97v47cr84j_qvc0000gn/T/stack10765/shake-0.18.4/: /Users/simon/.stack/setup-exe-cache/x86_64-osx/Cabal-simple_mPHDZzAJ_2.4.0.1_ghc-8.6.5 --builddir=.stack-work/dist/x86_64-osx/Cabal-2.4.0.1 register
2019-12-18 13:37:26.220178: [info] shake               > Registering library for shake-0.18.4..
2019-12-18 13:37:26.232504: [debug] Process finished in 455ms: /Users/simon/.stack/setup-exe-cache/x86_64-osx/Cabal-simple_mPHDZzAJ_2.4.0.1_ghc-8.6.5 --builddir=.stack-work/dist/x86_64-osx/Cabal-2.4.0.1 register
2019-12-18 13:37:26.294584: [debug] Run process: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output shake --expand-pkgroot
2019-12-18 13:37:26.442930: [debug] Process finished in 75ms: /Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/bin/ghc-pkg-8.6.5 --user --no-user-package-db --package-db /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb describe --simple-output shake --expand-pkgroot
2019-12-18 13:37:26.456501: [debug] SELECT "id","platform_ghc_dir","compiler","cabal_version","package_key","options_hash","haddock","library" FROM "precompiled_cache" WHERE "platform_ghc_dir"=? AND "compiler"=? AND "cabal_version"=? AND "package_key"=? AND "options_hash"=? AND "haddock"=?; [PersistText "x86_64-osx/",PersistText "ghc-8.6.5",PersistText "2.4.0.1",PersistText "5fd80a72da3545009d675cdc4d47aa1b47821c448f3c2e7b9ef248b7ff4ceaf2,12063",PersistByteString "\255\231D\128\217N\133\221\232\&8\NULU\215\233\v\213\170\NAK\184\215\149\246\129\143\197\136d\191\&1J3N",PersistBool False]
2019-12-18 13:37:26.532560: [debug] INSERT INTO "precompiled_cache"("platform_ghc_dir","compiler","cabal_version","package_key","options_hash","haddock","library") VALUES(?,?,?,?,?,?,?); [PersistText "x86_64-osx/",PersistText "ghc-8.6.5",PersistText "2.4.0.1",PersistText "5fd80a72da3545009d675cdc4d47aa1b47821c448f3c2e7b9ef248b7ff4ceaf2,12063",PersistByteString "\255\231D\128\217N\133\221\232\&8\NULU\215\233\v\213\170\NAK\184\215\149\246\129\143\197\136d\191\&1J3N",PersistBool False,PersistText "snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb/shake-0.18.4-5a99t8T3Y9GPI2eO7Iwa9.conf"]
2019-12-18 13:37:26.621926: [debug] SELECT "id" FROM "precompiled_cache" WHERE _ROWID_=last_insert_rowid(); []
2019-12-18 13:37:26.622161: [debug] DELETE FROM "precompiled_cache_exe" WHERE ("precompiled_cache_id"=?) AND (1=2); [PersistInt64 1428]
2019-12-18 13:37:26.694385: [debug] INSERT INTO "precompiled_cache_exe"("precompiled_cache_id","exe") VALUES (?,?); [PersistInt64 1428,PersistText "snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin/shake"]
2019-12-18 13:37:27.038314: [debug] SELECT "id","directory","type","pkg_src","active","path_env_var","haddock" FROM "config_cache" WHERE "directory"=? AND "type"=?; [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:shake-0.18.4-5a99t8T3Y9GPI2eO7Iwa9"]
2019-12-18 13:37:27.038950: [debug] INSERT INTO "config_cache"("directory","type","pkg_src","active","path_env_var","haddock") VALUES(?,?,?,?,?,?); [PersistText "/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/",PersistText "lib:shake-0.18.4-5a99t8T3Y9GPI2eO7Iwa9",PersistText "upstream",PersistBool True,PersistText "/Users/simon/.nix-profile/bin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/m4/bin:/Users/simon/bin.local:/Users/simon/bin:/Users/simon/adm/bin:/Users/simon/src/hledger/bin:/Users/simon/src/hledger/extra:/Users/simon/.local/bin:/Users/simon/.cabal/bin:/usr/local/bin:/usr/local/sbin:/opt/local/bin:/opt/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/Applications/splunk/bin:/Users/simon/src/PLAINTEXTACCOUNTING/beancount/bin:/Users/simon/.go/bin",PersistBool False]
2019-12-18 13:37:27.122946: [debug] SELECT "id" FROM "config_cache" WHERE _ROWID_=last_insert_rowid(); []
2019-12-18 13:37:27.123161: [debug] DELETE FROM "config_cache_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 355]
2019-12-18 13:37:27.199287: [debug] INSERT INTO "config_cache_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 355,PersistInt64 0,PersistText "--user",PersistInt64 355,PersistInt64 1,PersistText "--package-db=clear",PersistInt64 355,PersistInt64 2,PersistText "--package-db=global",PersistInt64 355,PersistInt64 3,PersistText "--package-db=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/pkgdb",PersistInt64 355,PersistInt64 4,PersistText "--libdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/lib",PersistInt64 355,PersistInt64 5,PersistText "--bindir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin",PersistInt64 355,PersistInt64 6,PersistText "--datadir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/share",PersistInt64 355,PersistInt64 7,PersistText "--libexecdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/libexec",PersistInt64 355,PersistInt64 8,PersistText "--sysconfdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/etc",PersistInt64 355,PersistInt64 9,PersistText "--docdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/shake-0.18.4",PersistInt64 355,PersistInt64 10,PersistText "--htmldir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/shake-0.18.4",PersistInt64 355,PersistInt64 11,PersistText "--haddockdir=/Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/doc/shake-0.18.4"]
2019-12-18 13:37:27.374519: [debug] DELETE FROM "config_cache_no_dir_option" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 355]
2019-12-18 13:37:27.477927: [debug] INSERT INTO "config_cache_no_dir_option"("config_cache_id","index","option") VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?); [PersistInt64 355,PersistInt64 0,PersistText "--dependency=base=base-4.12.0.0",PersistInt64 355,PersistInt64 1,PersistText "--dependency=binary=binary-0.8.6.0",PersistInt64 355,PersistInt64 2,PersistText "--dependency=bytestring=bytestring-0.10.8.2",PersistInt64 355,PersistInt64 3,PersistText "--dependency=deepseq=deepseq-1.4.4.0",PersistInt64 355,PersistInt64 4,PersistText "--dependency=directory=directory-1.3.3.0",PersistInt64 355,PersistInt64 5,PersistText "--dependency=extra=extra-1.6.18-25ZB15KWAnzD8Fk6PCWQY",PersistInt64 355,PersistInt64 6,PersistText "--dependency=file-embed=file-embed-0.0.11-4IE3sw0bCLQ7xXwEGMUYke",PersistInt64 355,PersistInt64 7,PersistText "--dependency=filepath=filepath-1.4.2.1",PersistInt64 355,PersistInt64 8,PersistText "--dependency=filepattern=filepattern-0.1.1-CmUxfPfJOZ1CicvCAFCqm3",PersistInt64 355,PersistInt64 9,PersistText "--dependency=hashable=hashable-1.2.7.0-2SI038axTEd7AEZJ275kpi",PersistInt64 355,PersistInt64 10,PersistText "--dependency=heaps=heaps-0.3.6.1-FbztQFLzLVD5oeX5TA4nUO",PersistInt64 355,PersistInt64 11,PersistText "--dependency=js-dgtable=js-dgtable-0.5.2-FqAdyplKo2t2OEsY8trwTv",PersistInt64 355,PersistInt64 12,PersistText "--dependency=js-flot=js-flot-0.8.3-LF7vQ1kAGl41Nl58RwjSyK",PersistInt64 355,PersistInt64 13,PersistText "--dependency=js-jquery=js-jquery-3.3.1-DZqkP3t9sdEKaANNNRYiKE",PersistInt64 355,PersistInt64 14,PersistText "--dependency=primitive=primitive-0.6.4.0-ILgywxtLpvnAOlEISPpP5b",PersistInt64 355,PersistInt64 15,PersistText "--dependency=process=process-1.6.5.0",PersistInt64 355,PersistInt64 16,PersistText "--dependency=random=random-1.1-3ypV4EIycgb35PKjTYYr5q",PersistInt64 355,PersistInt64 17,PersistText "--dependency=template-haskell=template-haskell-2.14.0.0",PersistInt64 355,PersistInt64 18,PersistText "--dependency=time=time-1.8.0.2",PersistInt64 355,PersistInt64 19,PersistText "--dependency=transformers=transformers-0.5.6.2",PersistInt64 355,PersistInt64 20,PersistText "--dependency=unix=unix-2.7.2.2",PersistInt64 355,PersistInt64 21,PersistText "--dependency=unordered-containers=unordered-containers-0.2.10.0-LgoTL3wbBEY5bZIDJiyxW4",PersistInt64 355,PersistInt64 22,PersistText "--dependency=utf8-string=utf8-string-1.0.1.1-Geq8jdOv4Q3LkcQoEOWDVv",PersistInt64 355,PersistInt64 23,PersistText "-f-cloud",PersistInt64 355,PersistInt64 24,PersistText "-f-embed-files",PersistInt64 355,PersistInt64 25,PersistText "-f-portable",PersistInt64 355,PersistInt64 26,PersistText "--exact-configuration",PersistInt64 355,PersistInt64 27,PersistText "--ghc-option=-fhide-source-paths"]
2019-12-18 13:37:27.775609: [debug] DELETE FROM "config_cache_dep" WHERE ("config_cache_id"=?) AND (1=2); [PersistInt64 355]
2019-12-18 13:37:27.890830: [debug] INSERT INTO "config_cache_dep"("config_cache_id","ghc_pkg_id") VALUES (?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?),(?,?); [PersistInt64 355,PersistText "base-4.12.0.0",PersistInt64 355,PersistText "binary-0.8.6.0",PersistInt64 355,PersistText "bytestring-0.10.8.2",PersistInt64 355,PersistText "deepseq-1.4.4.0",PersistInt64 355,PersistText "directory-1.3.3.0",PersistInt64 355,PersistText "extra-1.6.18-25ZB15KWAnzD8Fk6PCWQY",PersistInt64 355,PersistText "file-embed-0.0.11-4IE3sw0bCLQ7xXwEGMUYke",PersistInt64 355,PersistText "filepath-1.4.2.1",PersistInt64 355,PersistText "filepattern-0.1.1-CmUxfPfJOZ1CicvCAFCqm3",PersistInt64 355,PersistText "hashable-1.2.7.0-2SI038axTEd7AEZJ275kpi",PersistInt64 355,PersistText "heaps-0.3.6.1-FbztQFLzLVD5oeX5TA4nUO",PersistInt64 355,PersistText "js-dgtable-0.5.2-FqAdyplKo2t2OEsY8trwTv",PersistInt64 355,PersistText "js-flot-0.8.3-LF7vQ1kAGl41Nl58RwjSyK",PersistInt64 355,PersistText "js-jquery-3.3.1-DZqkP3t9sdEKaANNNRYiKE",PersistInt64 355,PersistText "primitive-0.6.4.0-ILgywxtLpvnAOlEISPpP5b",PersistInt64 355,PersistText "process-1.6.5.0",PersistInt64 355,PersistText "random-1.1-3ypV4EIycgb35PKjTYYr5q",PersistInt64 355,PersistText "template-haskell-2.14.0.0",PersistInt64 355,PersistText "time-1.8.0.2",PersistInt64 355,PersistText "transformers-0.5.6.2",PersistInt64 355,PersistText "unix-2.7.2.2",PersistInt64 355,PersistText "unordered-containers-0.2.10.0-LgoTL3wbBEY5bZIDJiyxW4",PersistInt64 355,PersistText "utf8-string-1.0.1.1-Geq8jdOv4Q3LkcQoEOWDVv"]
2019-12-18 13:37:28.120057: [info] Completed 15 action(s).
2019-12-18 13:37:28.122759: [info] Copying from /Users/simon/.stack/snapshots/x86_64-osx/d924bc5c61e4872550406f4098aaeb7a9c283bb378dbda813c089d8a738089cf/8.6.5/bin/shake to /Users/simon/.local/bin/shake
2019-12-18 13:37:28.202102: [info] 
2019-12-18 13:37:28.250260: [info] Copied executables to /Users/simon/.local/bin:
2019-12-18 13:37:28.250420: [info] - shake
~/src/hledger$ shake --version
Shake build system, version 0.18.4

But ghc-pkg list is still showing the old version. Note the hash below is different from the one in the "Installing library in.." line above. I'm not sure why.

~/src/hledger$ stack exec -- ghc-pkg list shake
/Users/simon/.stack/programs/x86_64-osx/ghc-8.6.5/lib/ghc-8.6.5/package.conf.d
    (no packages)
/Users/simon/.stack/snapshots/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/pkgdb
    shake-0.18.3
/Users/simon/src/PLAINTEXTACCOUNTING/hledger/.stack-work/install/x86_64-osx/7aec1955a84eee7efb4ee72893253308cb85137ee3a8db46b860b6a0c948aa17/8.6.5/pkgdb
    (no packages)
simonmichael commented 4 years ago

But ghc-pkg list is still showing the old version.

Because of the default resolver in this project being lts-14.16, I suppose. Disregard this side issue then. [Maybe relevant to the main issue too ?]

andreasabel commented 2 years ago

I also came across this behavior recently: I requested package foo-4.5.6 on the command line and it built foo-1.2.3. This should never happen. Unfortunately, I cannot reconstruct this atm, will do when I stumble into it again.