Skip to content

Commit

Permalink
Prepare for hackage-repo-tool 1.1.1.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
hvr committed Nov 30, 2019
1 parent 4cf6304 commit 2e6db81
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 20 deletions.
4 changes: 4 additions & 0 deletions hackage-repo-tool/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.1.1.2
-------
* Compat release for `hackage-security-0.6`

0.1.1.1
-------
* Make `hackage-repo-tool` buildable on Windows (#175)
Expand Down
33 changes: 13 additions & 20 deletions hackage-repo-tool/hackage-repo-tool.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 1.12
name: hackage-repo-tool
version: 0.1.1.1
version: 0.1.1.2

synopsis: Manage secure file-based package repositories
description: This utility can be used to manage secure file-based package
Expand Down Expand Up @@ -28,7 +28,7 @@ tested-with: GHC==8.8.1, GHC==8.6.5, GHC==8.4.4, GHC==8.2.2, GHC==8.0.2,
GHC==7.10.3, GHC==7.8.4, GHC==7.6.3, GHC==7.4.2

extra-source-files:
ChangeLog.md
ChangeLog.md README.md

source-repository head
type: git
Expand All @@ -38,10 +38,6 @@ flag use-network-uri
description: Are we using @network-uri@?
manual: False

flag use-old-time
description: Are we using @old-time@?
manual: False

executable hackage-repo-tool
hs-source-dirs: src
main-is: Main.hs
Expand All @@ -52,30 +48,27 @@ executable hackage-repo-tool
Hackage.Security.RepoTool.Util.IO
Prelude

build-depends: base >= 4.5 && < 5,
Cabal >= 1.14 && < 3.1,
build-depends: base >= 4.5 && < 4.14,
Cabal >= 1.14 && < 1.26
|| >= 2.0 && < 2.6
|| >= 3.0 && < 3.2,
bytestring >= 0.9 && < 0.11,
directory >= 1.1 && < 1.4,
filepath >= 1.2 && < 1.5,
filepath >= 1.3 && < 1.5,
microlens >= 0.4.11.2 && < 0.5,
optparse-applicative >= 0.11 && < 0.16,
tar >= 0.4 && < 0.6,
time >= 1.2 && < 1.10,
zlib >= 0.5 && < 0.7,
hackage-security >= 0.5 && < 0.7
tar >= 0.5 && < 0.6,
time >= 1.4 && < 1.10,
zlib >= 0.6 && < 0.7,
hackage-security >= 0.6 && < 0.7
if !os(windows)
build-depends: unix >= 2.5 && < 2.8

if flag(use-old-time)
build-depends: directory < 1.2
, old-time == 1.1.*
else
build-depends: directory >= 1.2

-- see comments in hackage-security.cabal
if flag(use-network-uri)
build-depends: network-uri >= 2.6 && < 2.7,
network >= 2.6 && < 3.2
network >= 2.6 && < 2.9
|| >= 3.0 && < 3.2
else
build-depends: network >= 2.5 && < 2.6

Expand Down

0 comments on commit 2e6db81

Please sign in to comment.