I'm trying to build my Hakyll site using Travis-CI. However, before I even get that far, I have a dependencies error when trying to install Hakyll as a dependency.
I can build Hakyll locally on my machine with no problems. What might be causing the dependency error, and how can it be resolved? Is there a way to resolve it without actually hard-coding each dependency version?
Here's the output that comes from TravisCI.
travis_fold:end:git.5
$ export PATH=/usr/local/ghc/$(ghc_find 7.6)/bin/:$PATH
travis_fold:start:cabal
$ cabal update
Config file path source is default config file.
Config file /home/travis/.cabal/config not found.
Writing default configuration to /home/travis/.cabal/config
Downloading the latest package list from hackage.haskell.org
Note: there is a new version of cabal-install available.
To upgrade, run: cabal install cabal-install
travis_fold:end:cabal
$ ghc --version
The Glorious Glasgow Haskell Compilation System, version 7.6.3
$ cabal --version
cabal-install version 1.18.0.2
using version 1.18.1 of the Cabal library
travis_fold:start:before_install.1
$ cabal update
Downloading the latest package list from hackage.haskell.org
Note: there is a new version of cabal-install available.
To upgrade, run: cabal install cabal-install
travis_fold:end:before_install.1
travis_fold:start:before_install.2
$ cabal install hakyll pandoc
Resolving dependencies...
cabal: Could not resolve dependencies:
trying: hakyll-4.5.3.0 (user goal)
trying: base-4.6.0.1/installed-8aa... (dependency of hakyll-4.5.3.0)
trying: hakyll-4.5.3.0:+checkexternal
trying: http-conduit-2.1.2.3 (dependency of hakyll-4.5.3.0:+checkexternal)
trying: http-client-0.3.3.2 (dependency of http-conduit-2.1.2.3)
trying: exceptions-0.6.1 (dependency of http-client-0.3.3.2)
trying: transformers-0.4.1.0 (dependency of http-conduit-2.1.2.3)
next goal: mtl (dependency of hakyll-4.5.3.0)
rejecting: mtl-2.2.1, 2.2.0.1, 2.2 (conflict: hakyll => mtl>=1 && <2.2)
rejecting: mtl-2.1.3.1, 2.1.2 (conflict: transformers==0.4.1.0, mtl =>
transformers==0.3.*)
rejecting: mtl-2.1.1, 2.1 (conflict: base==4.6.0.1/installed-8aa..., mtl =>
base<4.6)
rejecting: mtl-2.0.1.1 (conflict: transformers==0.4.1.0, mtl =>
transformers==0.2.*)
rejecting: mtl-2.0.1.0, 2.0.0.0 (conflict: base==4.6.0.1/installed-8aa..., mtl
=> base<4.6)
rejecting: mtl-1.1.1.1, 1.1.1.0, 1.1.0.2, 1.1.0.1, 1.1.0.0, 1.0 (conflict:
exceptions => mtl>=2.0 && <2.3)
Backjump limit reached (change with --max-backjumps).
[31;1mThe command "cabal install hakyll pandoc" failed and exited with 1 during .[0m
Your build has been stopped.
If there's any other output that would be useful, let me know and I can provide it.
The first thing to try if you get Backjump limit reached from cabal-install is to try again with the option --max-backjumps=-1 which means "search exhaustively", though if it then ends up taking tens of minutes you'd need to interrupt it or rely on the Travis-CI timeout. You can also use 500 or 1000 rather than -1 for a large but limited search - the default is 200.
If that doesn't work then try to pick out specific projects to constrain to a specific version with the option --constraint 'foo==0.1.0.0, preferably one that you actually know should be installable with the same GHC version.
In this particular case, the following two lines suggest that hakyll itself was at the root of the problem:
rejecting: mtl-2.2.1, 2.2.0.1, 2.2 (conflict: hakyll => mtl>=1 && <2.2)
rejecting: mtl-2.1.1, 2.1 (conflict: base==4.6.0.1/installed..., mtl => base<4.6)
In other words, base, which is tied to the GHC version, seems to require mtl>=2.2 (or perhaps less than 2.1 but I suspect that wouldn't have worked either). hakyll was requiring mtl<2.2, so there seemed to be a fundamental conflict implying that this version of hakyll wouldn't work this version of base.
Related
I am trying to install the specific version template-haskell-2.17.0.0. I run this command, but get an error during dependency resolution:
❯ cabal install template-haskell-2.17.0.0 --lib
Resolving dependencies...
cabal: Could not resolve dependencies:
[__0] next goal: template-haskell (user goal)
[__0] rejecting: template-haskell-2.18.0.0 (constraint from user target
requires ==2.17.0.0)
[__0] rejecting: template-haskell-2.17.0.0 (constraint from user target
requires ==2.16.0.0)
[__0] rejecting: template-haskell-2.16.0.0/installed-2.16.0.0,
template-haskell-2.16.0.0, template-haskell-2.15.0.0,
template-haskell-2.14.0.0, template-haskell-2.13.0.0,
template-haskell-2.12.0.0, template-haskell-2.11.1.0,
template-haskell-2.11.0.0, template-haskell-2.10.0.0,
template-haskell-2.9.0.0, template-haskell-2.8.0.0, template-haskell-2.7.0.0,
template-haskell-2.6.0.0, template-haskell-2.5.0.0, template-haskell-2.4.0.1,
template-haskell-2.4.0.0, template-haskell-2.3.0.1, template-haskell-2.3.0.0,
template-haskell-2.2.0.0 (constraint from user target requires ==2.17.0.0)
[__0] fail (backjumping, conflict set: template-haskell)
After searching the rest of the dependency tree exhaustively, these were the
goals I've had most trouble fulfilling: template-haskell
I'm using the latest cabal version:
❯ cabal --version
cabal-install version 3.6.2.0
compiled using version 3.6.3.0 of the Cabal library
Some packages come with GHC and cannot be reinstalled. These are known as "boot" packages. The template-haskell package is one of these boot packages. You can find a complete list of them here: https://gitlab.haskell.org/ghc/ghc/-/wikis/commentary/libraries/version-history.
For your particular case, template-haskell-2.17.0.0 is part of GHC 9.0.2 (or 9.0.1). The only way to install that version of template-haskell is to use the appropriate version of GHC.
Based on the error output, I'm guessing that you're using some version of GHC 8.10.x, probably 8.10.7. You don't mention how you installed GHC, so I don't know exactly how to tell you to upgrade. If you used GHCup, then you should be able to upgrade GHC with this command:
ghcup install ghc 9.0.2 --set
I'm trying to compile a haskell project using cabal, but when I execute
cabal configure appears:
Could not resolve dependencies:
[__0] trying: MM-0.1.0.0 (user goal)
[__1] next goal: base (dependency of MM)
[__1] rejecting: base-4.12.0.0/installed-4.1... (conflict: MM => base>=4.9 &&
<4.10)
[__1] fail (backjumping, conflict set: MM, base)
After searching the rest of the dependency tree exhaustively, these were the
goals I've had most trouble fulfilling: MM, base
Trying configure anyway.
Configuring MM-0.1.0.0...
cabal: Encountered missing dependencies:
base ==4.9.*, cassava ==0.5.*, containers ==0.5.*, time ==1.6.*
I tried using cabal new-build and cabal install --only-dependencies but it still doesn´t work.
The program you're installing needs base 4.9.x.x, which means GHC 8.0.x. Your GHC is too new. Downgrade to 8.0.2, or look for a newer version of the program you're trying to install.
In the past I tried to install Clipboard via Cabal, unknowing it only works on 32-bit Windows, so it failed. Now, I'm trying to install utf8-string via Cabal, but when I run the command cabal new-install utf8-string I get the following:
Resolving dependencies...
cabal.exe: Could not resolve dependencies:
[__0] trying: Clipboard-2.3.2.0 (user goal)
[__1] next goal: Win32 (dependency of Clipboard)
[__1] rejecting: Win32-2.6.1.0/installed-2.6..., Win32-2.8.5.0, Win32-2.8.4.0,
Win32-2.8.3.0, Win32-2.8.2.0, Win32-2.8.1.0, Win32-2.8.0.0, Win32-2.7.0.0,
Win32-2.6.2.0, Win32-2.6.1.0, Win32-2.6.0.0, Win32-2.5.4.1, Win32-2.5.3.0,
Win32-2.5.2.0, Win32-2.5.1.0, Win32-2.5.0.0, Win32-2.4.0.0 (conflict:
Clipboard => Win32>=2.2.0.0 && <2.4)
[__1] trying: Win32-2.3.1.1
[__2] trying: base-4.12.0.0/installed-4.1... (user goal)
[__3] next goal: ghc (user goal)
[__3] rejecting: ghc-8.6.5/installed-8.6... (conflict: Win32==2.3.1.1, ghc =>
Win32==2.6.1.0/installed-2.6...)
[__3] rejecting: ghc-8.6.5 (conflict: base==4.12.0.0/installed-4.1..., ghc =>
base<0 && ==4.12.*)
[__3] rejecting: ghc-8.6.4, ghc-8.6.1, ghc-8.4.4, ghc-8.4.3, ghc-8.4.1,
ghc-8.2.2, ghc-8.2.1 (constraint from user target requires ==8.6.5)
[__3] fail (backjumping, conflict set: Win32, base, ghc)
After searching the rest of the dependency tree exhaustively, these were the
goals I've had most trouble fulfilling: ghc, Win32, base, Clipboard
In case it's important, I'm running Windows 10 64-bit, and I'm using Cygwin64 Terminal.
Cabal Dependency Failure: A story of two tools
You: Cabal! Install something old.
Cabal: Can do. And for my buddy GHC I will also record this something old in $HOME/.ghc/$arch-$ghc_version/environments/default.
You: Cabal! Install something else.
Cabal: Ok. Let me check what packages I should install for that. Yeah now I have that list... it says here I should install new thing - but an old version of new thing is mandated by the default environment.
Finding your way out
The Terminator
Screw the old environment, I don't care.
rm $HOME/.ghc/*/environments/default
The Librarian
I like my old environment, let's build this package with a new environment.
cabal install --package-env some-new-named-package-environment utf8-string
The Programmer
I like directory-based workflows and don't really want to think about environments, how about you think about that for me, cabal.
cabal install --lib utf8-string --package-env .
The Programmer (Summer 2020, I hope)
I like directory-based workflows and don't want to talk about environments. Luckily someone fixed the underlying issue https://github.com/haskell/cabal/issues/5559 so now I can just type cabal install --lib utf8-string.
When I try
$ cabal install gi-cairo
(One of the long list of dependencies to install leksah) I get the following error:
Resolving dependencies...
Configuring haskell-gi-base-0.9...
Building haskell-gi-base-0.9...
Failed to install haskell-gi-base-0.9
Build log ( /home/brandon/.cabal/logs/haskell-gi-base-0.9.log ):
Configuring haskell-gi-base-0.9...
Building haskell-gi-base-0.9...
Preprocessing library haskell-gi-base-0.9...
src/Data/GI/Base/Attributes.hs:105:8:
Could not find module `Data.Proxy'
It is a member of the hidden package `tagged-0.8.5'.
Perhaps you need to add `tagged' to the build-depends in your .cabal file.
Use -v to see a list of the files searched for.
cabal: Error: some packages failed to install:
gi-cairo-0.1.14.8 depends on haskell-gi-base-0.9 which failed to install.
haskell-gi-base-0.9 failed during the building phase. The exception was:
ExitFailure 1
I see the part about tagged, but where is this .cabal file ? On my machine it's a directory at ~/.cabal/, not a file. And what do I add to this supposed file ?
By the way, the output of cabal --version:
cabal-install version 1.20.0.3
using version 1.20.0.2 of the Cabal library
My goal is to install the dependencies output by leksah.sh when I run it:
gi-cairo >=1.0.6 && <1.1,
gi-gdk >=3.0.6 && <3.1,
gi-gdkpixbuf >=2.0.6 && <2.1,
gi-gio >=2.0.6 && <2.1,
gi-glib >=2.0.6 && <2.1,
gi-gobject >=2.0.6 && <2.1,
gi-gtk >=3.0.6 && <3.1,
gi-gtk-hs >=0.3.1.0 && <0.4,
gi-gtksource >=3.0.6 && <3.1,
gi-pango >=1.0.6 && <1.1,
gi-webkit2 >=4.0.6 && <4.1,
haskell-gi-base >=0.18 && <0.21,
haskell-src-exts >=1.13.5 && <1.19,
leksah-server >=0.16.1.0 && <0.17,
ltk >=0.16.0.0 && <0.17,
regex-tdfa >=1.1 && <1.3,
regex-tdfa-text -any,
vcsgui >=0.2.0 && <0.3
I've been trying to solve this since last night, but I don't see anything like this documented anywhere when I Google.
UPDATE: When I try running cabal install leksah, I get the following errors:
Resolving dependencies...
cabal: Could not resolve dependencies:
trying: leksah-0.15.2.0 (user goal)
trying: vcswrapper-0.1.1/installed-1eQ... (dependency of leksah-0.15.2.0)
next goal: transformers (dependency of leksah-0.15.2.0)
rejecting: transformers-0.5.2.0/installed-3Es... (conflict: leksah =>
transformers>=0.2.2.0 && <0.5)
rejecting: transformers-0.3.0.0/installed-ff2... (conflict:
transformers-compat-0.5.1.4:three => transformers>=0.4.1 && <0.6)
rejecting: transformers-0.5.2.0, 0.5.1.0, 0.5.0.1, 0.5.0.0 (conflict: leksah
=> transformers>=0.2.2.0 && <0.5)
trying: transformers-0.4.3.0
next goal: mtl (dependency of leksah-0.15.2.0)
rejecting: mtl-2.2.1/installed-4vs... (conflict: transformers==0.4.3.0, mtl =>
transformers==0.5.2.0/installed-3Es...)
rejecting: mtl-2.1.2/installed-94c..., 2.2.1, 2.2.0.1, 2.2, 2.1.3.1, 2.1.2,
2.1.1, 2.1, 2.0.1.1, 2.0.1.0, 2.0.0.0, 1.1.1.1, 1.1.1.0, 1.1.0.2, 1.1.0.1,
1.1.0.0, 1.0 (conflict: vcswrapper => mtl==2.2.1/installed-4vs...)
Backjump limit reached (change with --max-backjumps).
So I tried cabal install leksah --max-backjumps -1 per the manpage of cabal and after about 10 minutes it's now consuming >40% of the memory of my machine, so I simply can't continue on that route.
The Data.Proxy module moved to the base package in base-4.7.0.0 which was part of the ghc-7.6 series. The haskell-gi-base you are trying to install is also quite old. I expect that it was selected because the newest version that could satisfy the version constraints, but that those version constraints are wrong. Your version of GHC must be older than this.
The solution is to update your GHC and cabal-install. Current version of GHC 8.0.2 and the current version of cabal-install is 1.24.0.2. You need at least version 1.24 of cabal-install when you upgrade to GHC 8. Fortunately the Minimal Haskell Platform comes with an up-to-date GHC, cabal-install, and even stack!
Lets assume that I have updated to the all the package index of my cabal using
cabal update
Now, let's say I have an old project (Yesod in my case) which I get and want to work upon.
So, I go inside the directory and issue the following commands:
cd project
cabal sandbox init
cabal configure
The above command throws a lot of dependency problems like this:
cabal: At least the following dependencies are missing:
aeson >=0.6 && <0.8,
attoparsec >=0.11 && <1.0,
.......... This goes on
Then I try this command:
cabal install --only-dependencies
This doesn't help much either and throws the following error:
trying: yesod-static-1.2.4 (dependency of project-0.0.1.0)
trying: wai-app-static-3.0.0 (dependency of yesod-static-1.2.4)
next goal: warp (dependency of project-0.0.1.0)
rejecting: warp-3.0.0.1, 3.0.0 (conflict: project => warp>=2.1 && <2.2)
rejecting: warp-2.1.5.2, 2.1.5.1, 2.1.5, 2.1.4.1, 2.1.4, 2.1.3.3, 2.1.3.2,
2.1.3.1, 2.1.3, 2.1.2.1, 2.1.2, 2.1.1.2, 2.1.1.1, 2.1.1, 2.1.0 (conflict:
wai-app-static => warp>=3.0 && <3.1)
------------ This goes on
What is the general approach to solve this type of problem ?