Skip to content

Commit

Permalink
Update from Hackage at 2016-04-23T17:27:22+0000
Browse files Browse the repository at this point in the history
  • Loading branch information
Commercial Haskell all-cabal-hashes Travis job committed Apr 23, 2016
1 parent 5bd3865 commit e8b3512
Show file tree
Hide file tree
Showing 4 changed files with 186 additions and 0 deletions.
108 changes: 108 additions & 0 deletions hindley-milner/0.1.0.0/hindley-milner.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
-- Initial hindley-milner.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/

-- The name of the package.
name: hindley-milner

-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.0

-- A short (one-line) description of the package.
synopsis: Template for Hindley-Milner based languages

-- A longer description of the package.
description:
This package contains an implemention of Hindley-Milner and Algorithm W as
a starting point for derived languages.

-- The license under which the package is released.
license: MIT

-- The file containing the license text.
-- license-file: LICENSE

-- The package author(s).
author: Michael B. Gale

-- An email address to which users can send suggestions, bug reports, and
-- patches.
maintainer: michael.gale@cl.cam.ac.uk

-- A copyright notice.
-- copyright:

category: Language

build-type: Simple

-- Extra files to be distributed with the package, such as examples or a
-- README.
-- extra-source-files:

-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.10

source-repository head
type: git
location: https://github.com/mbg/hindley-milner

library
exposed-modules:
Language.HM,
Language.HM.AlgorithmW,
Language.HM.Alpha,
Language.HM.Term,
Language.HM.Theta,
Language.HM.Type,
Language.HM.TypeError

other-modules:


-- LANGUAGE extensions used by modules in this package.
-- other-extensions:

-- Other library packages from which modules are imported.
build-depends:
base >=4.8 && <4.9,
containers >=0.5,
data-fix,
mtl,
transformers

-- Directories containing source files.
hs-source-dirs: src

-- Base language which the package is written in.
default-language: Haskell2010

default-extensions:
DeriveFunctor,
DeriveFoldable,
DeriveTraversable,
TypeSynonymInstances,
FlexibleInstances

test-suite spec
type: exitcode-stdio-1.0

main-is: Spec.hs

other-modules:
Language.HM.AlgorithmWSpec,
Language.HM.TypeSpec

build-depends:
base >=4.8 && <4.9,
hindley-milner,
hspec,
containers >= 0.5

hs-source-dirs: test

default-language: Haskell2010
1 change: 1 addition & 0 deletions hindley-milner/0.1.0.0/hindley-milner.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"ba32bace282c27b0733059488e04dd5b","Skein512_512":"cab5b6cd9edb25d83809b458c7f1b8c0b7060f8807a8573eab58dd1e288d8478d003f74095d1beda74ea12faa2822afbef0ec5cdcaa27dba5d11f7bd3a5ee003","SHA1":"9cbd3de91c0ee4e1e68bcfe2f2e2af54e280c0e3","SHA512":"7787f85edf5925af26ffcb20dcdf0d2daa13f896a6e98452de930b93c3de64f7587364ed9260d071d9fdf27eb62f23dd927f13e5bb3ef51bfb1d413022dd645e","SHA256":"d29f6fd4871c953fa016dd8cb8dadcf0ed0535947bb8e89c8acb12a78d6964ac"},"package-locations":["https://hackage.haskell.org/package/hindley-milner-0.1.0.0/hindley-milner-0.1.0.0.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/hindley-milner-0.1.0.0.tar.gz"],"package-size":6438}
76 changes: 76 additions & 0 deletions math-functions/0.1.6.0/math-functions.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
name: math-functions
version: 0.1.6.0
cabal-version: >= 1.8
license: BSD3
license-file: LICENSE
author: Bryan O'Sullivan <bos@serpentine.com>,
Aleksey Khudyakov <alexey.skladnoy@gmail.com>
maintainer: Bryan O'Sullivan <bos@serpentine.com>
homepage: https://github.com/bos/math-functions
bug-reports: https://github.com/bos/math-functions/issues
category: Math, Numeric
build-type: Simple
synopsis: Special functions and Chebyshev polynomials
description:
This library provides implementations of special mathematical
functions and Chebyshev polynomials. These functions are often
useful in statistical and numerical computing.

extra-source-files:
changelog.md
README.markdown
benchmark/*.hs
tests/*.hs
tests/Tests/*.hs
tests/Tests/SpecFunctions/gen.py
doc/sinc.hs

library
ghc-options: -Wall
build-depends: base >=3 && <5,
deepseq,
erf >= 2,
vector >= 0.7,
vector-th-unbox
exposed-modules:
Numeric.MathFunctions.Constants
Numeric.Polynomial
Numeric.Polynomial.Chebyshev
Numeric.SpecFunctions
Numeric.SpecFunctions.Extra
Numeric.Sum
other-modules:
Numeric.SpecFunctions.Internal

test-suite tests
type: exitcode-stdio-1.0
ghc-options: -Wall -threaded
if arch(i386)
-- The Sum tests require SSE2 on i686 to pass (because of excess precision)
ghc-options: -msse2
hs-source-dirs: tests
main-is: tests.hs
other-modules:
Tests.Helpers
Tests.Chebyshev
Tests.SpecFunctions
Tests.SpecFunctions.Tables
Tests.Sum
build-depends:
math-functions,
base >=3 && <5,
vector >= 0.7,
ieee754 >= 0.7.3,
HUnit >= 1.2,
QuickCheck >= 2.4,
test-framework,
test-framework-hunit,
test-framework-quickcheck2

source-repository head
type: git
location: https://github.com/bos/math-functions

source-repository head
type: mercurial
location: https://bitbucket.org/bos/math-functions
1 change: 1 addition & 0 deletions math-functions/0.1.6.0/math-functions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"aaac1de06f0f5df57060be5721af4d68","Skein512_512":"3e21b9e2ac158f5ff10861b36f58b965c1a8262276b7e3e76a557828816e1475ebef47e755bcb13e27ba84a1329cb476ba3d8f4364f99f90a585484240e9b5c3","SHA1":"95bc572e5499ee1f1960e29e808a6ed47207f108","SHA512":"b1f0df7b7b99bb41e6ca232bfabd0f0db07b98be1bb3d9c64235b283efd3a5441f02829e637e71cccf70917413e7145afd0dc23686732d4797ab7351c3d3e060","SHA256":"3cb90fc750d28c8f6096ee083aff77dfa4dcf4a4938497957860d222e4436199"},"package-locations":["https://hackage.haskell.org/package/math-functions-0.1.6.0/math-functions-0.1.6.0.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/math-functions-0.1.6.0.tar.gz"],"package-size":30734}

0 comments on commit e8b3512

Please sign in to comment.