Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update so that it actually builds. #16

Open
wants to merge 4 commits into
base: hpack-convert
Choose a base branch
from
Open
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
90 changes: 47 additions & 43 deletions hpack-convert.cabal
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
-- This file has been generated from package.yaml by hpack version 0.17.0.
cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 525f13497c3d93541a38db7fa16b1f5ce04bb27bb9e880250fcf5f1588599bbf

name: hpack-convert
version: 1.0.1
version: 1.0.3
synopsis: Convert Cabal manifests into hpack's package.yamls
category: Development
homepage: https://github.com/yamadapc/hpack-convert#readme
Expand All @@ -12,8 +16,6 @@ maintainer: Pedro Tacla Yamada <[email protected]>
license: MIT
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10

extra-source-files:
./test/data/cabal-init-minimal.cabal
./test/data/cabal-init-minimal.cabal.yaml
Expand Down Expand Up @@ -60,22 +62,22 @@ library
src
ghc-options: -Wall -fcontext-stack=100
build-depends:
base >= 4.7 && < 5
, base-compat >= 0.8
, Cabal >= 1.22
, pretty
Cabal >=1.22
, Glob
, aeson
, base >=4.7 && <5
, base-compat >=0.8
, bytestring
, containers
, deepseq
, directory
, filepath
, Glob
, pretty
, split
, text
, containers
, unordered-containers >= 0.2.7.1
, yaml
, bytestring
, unordered-containers >=0.2.7.1
, vector
, aeson
, split
, yaml
exposed-modules:
Hpack.Convert
other-modules:
Expand All @@ -99,22 +101,22 @@ executable hpack-convert
src
ghc-options: -Wall -fcontext-stack=100
build-depends:
base >= 4.7 && < 5
, base-compat >= 0.8
, Cabal >= 1.22
, pretty
Cabal >=1.22
, Glob
, aeson
, base >=4.7 && <5
, base-compat >=0.8
, bytestring
, containers
, deepseq
, directory
, filepath
, Glob
, pretty
, split
, text
, containers
, unordered-containers >= 0.2.7.1
, yaml
, bytestring
, unordered-containers >=0.2.7.1
, vector
, aeson
, split
, yaml
other-modules:
Hpack
Hpack.Config
Expand All @@ -127,6 +129,7 @@ executable hpack-convert
Hpack.Run
Hpack.Util
Hpack.Yaml
Paths_hpack_convert
default-language: Haskell2010

test-suite spec
Expand All @@ -138,28 +141,28 @@ test-suite spec
ghc-options: -Wall -fcontext-stack=100
cpp-options: -DTEST
build-depends:
base >= 4.7 && < 5
, base-compat >= 0.8
, Cabal >= 1.22
, pretty
Cabal >=1.22
, Glob
, QuickCheck
, aeson
, aeson-qq
, base >=4.7 && <5
, base-compat >=0.8
, bytestring
, containers
, deepseq
, directory
, filepath
, Glob
, text
, containers
, unordered-containers >= 0.2.7.1
, yaml
, bytestring
, vector
, aeson
, hspec ==2.*
, interpolate
, mockery >=0.3
, pretty
, split
, hspec == 2.*
, QuickCheck
, temporary
, mockery >= 0.3
, interpolate
, aeson-qq
, text
, unordered-containers >=0.2.7.1
, vector
, yaml
other-modules:
Helper
Hpack.ConfigSpec
Expand All @@ -182,4 +185,5 @@ test-suite spec
Hpack.Run
Hpack.Util
Hpack.Yaml
Paths_hpack_convert
default-language: Haskell2010
3 changes: 1 addition & 2 deletions package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: hpack-convert
version: '1.0.1'
version: '1.0.3'
synopsis: Convert Cabal manifests into hpack's package.yamls
maintainer: Pedro Tacla Yamada <[email protected]>
license: MIT
Expand Down Expand Up @@ -30,7 +30,6 @@ dependencies:

library:
source-dirs: src
dependencies:
exposed-modules:
- Hpack.Convert

Expand Down
Loading