Skip to content

Commit

Permalink
Update from Hackage at 2020-08-21T20:35:58Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Aug 21, 2020
1 parent 2bfaa47 commit 645d135
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 0 deletions.
84 changes: 84 additions & 0 deletions extra/1.7.6/extra.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
cabal-version: >= 1.18
build-type: Simple
name: extra
version: 1.7.6
license: BSD3
license-file: LICENSE
category: Development
author: Neil Mitchell <ndmitchell@gmail.com>
maintainer: Neil Mitchell <ndmitchell@gmail.com>
copyright: Neil Mitchell 2014-2020
synopsis: Extra functions I use.
description:
A library of extra functions for the standard Haskell libraries. Most functions are simple additions, filling out missing functionality. A few functions are available in later versions of GHC, but this package makes them available back to GHC 7.2.
.
The module "Extra" documents all functions provided by this library. Modules such as "Data.List.Extra" provide extra functions over "Data.List" and also reexport "Data.List". Users are recommended to replace "Data.List" imports with "Data.List.Extra" if they need the extra functionality.
homepage: https://github.com/ndmitchell/extra#readme
bug-reports: https://github.com/ndmitchell/extra/issues
tested-with: GHC==8.10, GHC==8.8, GHC==8.6, GHC==8.4, GHC==8.2, GHC==8.0

extra-doc-files:
CHANGES.txt
README.md
extra-source-files:
Generate.hs

source-repository head
type: git
location: https://github.com/ndmitchell/extra.git

library
default-language: Haskell2010
hs-source-dirs: src
build-depends:
base >= 4.9 && < 5,
directory,
filepath,
process,
clock >= 0.7,
time
if !os(windows)
build-depends: unix

other-modules:
Partial
exposed-modules:
Extra
Control.Concurrent.Extra
Control.Exception.Extra
Control.Monad.Extra
Data.Either.Extra
Data.IORef.Extra
Data.List.Extra
Data.List.NonEmpty.Extra
Data.Tuple.Extra
Data.Typeable.Extra
Data.Version.Extra
Numeric.Extra
System.Directory.Extra
System.Environment.Extra
System.Info.Extra
System.IO.Extra
System.Process.Extra
System.Time.Extra
Text.Read.Extra

test-suite extra-test
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends:
base == 4.*,
directory,
filepath,
extra,
QuickCheck >= 2.10,
quickcheck-instances >= 0.3.17
if !os(windows)
build-depends: unix
hs-source-dirs: test
ghc-options: -main-is Test -threaded "-with-rtsopts=-N4 -K1K"
main-is: Test.hs
other-modules:
TestCustom
TestGen
TestUtil
1 change: 1 addition & 0 deletions extra/1.7.6/extra.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"34afad0e881550d641fd87069ac94762","Skein512_512":"004abd68b981df67b23eceea507fc73e8a3cef315509f98a23c76ed7920cb935eb040b975e4da058b8e56951a8179d8da7b7403a3fdcb086814de132bc4707fb","SHA1":"1a10349ac523dcad09575b68bafd580ae85ac5de","SHA512":"1b8bdab361807aafe3ea0048904d17984330f4b3ac137053d95957de89b4ed00e1e52c8828e26cbdd4ddb216244a21b0dc07f0c0f56b7cded96a9dd527443699","SHA256":"53abe2e7b5c28b6143805c5e2b6dbe85ce6b381f003d4d7e5f8aaecc10e2b8d5"},"package-locations":["https://hackage.haskell.org/package/extra-1.7.6/extra-1.7.6.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/extra-1.7.6.tar.gz"],"package-size":43033}

0 comments on commit 645d135

Please sign in to comment.