Open l29ah opened 8 months ago
even though in Gentoo base-orphans is shipped with ghc exclusively
Are you sure about that? I haven't seen this unless it's with newer GHC versions, but I don't see it here:
https://downloads.haskell.org/ghc/9.8.2/docs/libraries/index.html
Oops. Maybe i made a typo or otherwise i didn't notice there's an ebuild for it, and it got pulled through somehow. Interestingly, some-1.0.6 was satisfied when i just dropped the dependency in the ebuild (and i had base-orphans-0.9 installed that doesn't satisfy the hackport-generated requirement).
Interestingly, some-1.0.6 was satisfied when i just dropped the dependency in the ebuild
It looks like it's because base-orphans
is only required for ghc-9.6 and below
if !impl(ghc >= 9.8)
build-depends:
base-orphans >= 0.9.1 && <0.10
For some-1.0.6 the following dep is generated:
>=dev-haskell/base-orphans-0.9.1:=[profile?] <dev-haskell/base-orphans-0.10:=[profile?]
, even though in Gentoobase-orphans
is shipped with ghc exclusively.