Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hackage-repo-tool/hackage-repo-tool.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ executable hackage-repo-tool
build-depends: microlens >= 0.4.9.1 && < 0.5,
-- microlens-0.4.9.1 is the version in Stackage LTS-12.26 (GHC 8.4)
optparse-applicative >= 0.13 && < 0.20,
tar >= 0.5 && < 0.7,
tar >= 0.5 && < 0.8,
zlib >= 0.6 && < 0.8,
hackage-security >= 0.6 && < 0.7

Expand Down
2 changes: 1 addition & 1 deletion hackage-security/hackage-security.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ library
pretty >= 1.0 && < 1.2,
-- 0.4.2 introduces TarIndex, 0.4.4 introduces more
-- functionality, 0.5.0 changes type of serialise
tar >= 0.5 && < 0.7,
tar >= 0.5 && < 0.8,
template-haskell >= 2.13 && < 2.25,
time >= 1.8.0.2 && < 1.16,
transformers >= 0.3 && < 0.7,
Expand Down
5 changes: 4 additions & 1 deletion hackage-security/tests/TestSuite.hs
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,10 @@ testRepoIndex inMemRepo repo = do
_ -> fail "unexpected index entry content"
_ -> fail "unexpected index path"

#if MIN_VERSION_tar(0,6,0)

#if MIN_VERSION_tar(0,7,0)
testEntries1 :: [Tar.GenEntry BS.ByteString Tar.TarPath linkTarget]
#elif MIN_VERSION_tar(0,6,0)
testEntries1 :: [Tar.GenEntry Tar.TarPath linkTarget]
#else
testEntries1 :: [Tar.Entry]
Expand Down
2 changes: 1 addition & 1 deletion precompute-fileinfo/precompute-fileinfo.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ executable precompute-fileinfo
filepath >= 1.4.2 && < 1.6,
optparse-applicative >= 0.13 && < 0.20,
SHA >= 1.6.4 && < 1.7,
tar >= 0.5.0.2 && < 0.7,
tar >= 0.5.0.2 && < 0.8,
-- tar-0.5.0.2 is the version in Stackage LTS-12.26 (GHC 8.4)
zlib >= 0.6.2 && < 0.8
-- zlib-0.6.2 is the version in Stackage LTS-12.26 (GHC 8.4)
Expand Down
Loading