Cabal revisions of hblas-0.4.0.1
Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.
revision 1
--- Initial hblas.cabal generated by cabal init. For further--- documentation, see http://haskell.org/cabal/users-guide/---- The name of the package.-name: hblas---- 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.4.0.1---- A short (one-line) description of the package.-synopsis: Human friendly BLAS and Lapack bindings for Haskell.---- A longer description of the package.-description:- User friendly, simple bindings to BLAS and Lapack. Easy to extend and use.- .- HBLAS assumes you have BLAS and LAPACK installed. Users on OSX already- have a BLAS and LAPACK installed for them. Users on LINUX and similar- platforms will need to do the system equivalent of @sudo apt-get install libblas liblapack@.- .- HBLAS is not intended to be a library for end user array operations,- but rather an easy adaptor for calling BLAS and LAPACK routines in their- full generality from your end-user haskell linear algebra / array library- of choice.- .- HBLAS roughly mirrors the naming conventions and datatype names of the standard- BLAS and LAPACK libraries. Those of you who are familiar with these conventions- and moderately comfortable with haskell will feel right at home.- .- If you are not familiar with the the operations and conventions of BLAS and- Lapack, please read the- <https://software.intel.com/sites/products/documentation/hpc/mkl/mklman/index.htm Intel MKL BLAS and LAPACK documention>,- you'll learn a lot about what BLAS and LAPACK can do.- .- HBLAS doesn't provide every BLAS and LAPACK operation currently, but- is designed so that adding support for new operations is quite easy!----homepage: http://github.com/wellposed/hblas/-bug-reports: http://github.com/wellposed/hblas/issues---- The license under which the package is released.-license: BSD3---- The file containing the license text.-license-file: LICENSE---- The package author(s).-author: Carter Tazio Schonwald---- An email address to which users can send suggestions, bug reports, and--- patches.-maintainer: carter at wellposed dot com---- A copyright notice.--- copyright:-cabal-version: >=1.10-category: Math--build-type: Simple--tested-with:-- GHC == 7.10.3- GHC == 8.0.1- GHC == 8.0.2- GHC == 8.2.1- GHC == 8.3.*---extra-source-files:- readme.md,- changelog.md---source-repository head- type: git- location: http://github.com/wellposed/hblas.git---- Extra files to be distributed with the package, such as examples or a--- README.--flag OpenBLAS- default: False- manual: True--- Constraint on the version of Cabal needed to build this package.--- flag lib-Werror--- default: False--- manual: True--- flag lib-Wall--- default: False--- manual: True--flag CBLAS- default: False- manual: True- description: Use on platforms when libcblas isn't part of libblas--library-- -- Modules exported by the library.- exposed-modules: Numerical.HBLAS.BLAS.FFI- Numerical.HBLAS.BLAS.FFI.Level1- Numerical.HBLAS.BLAS.FFI.Level2- Numerical.HBLAS.BLAS.FFI.Level3- Numerical.HBLAS.MatrixTypes- Numerical.HBLAS.UtilsFFI- --Numerical.HBLAS.BLAS.Level1- Numerical.HBLAS.BLAS.Level2- Numerical.HBLAS.BLAS.Level3- --Numerical.HBLAS.BLAS.Internal.Level1- Numerical.HBLAS.BLAS.Internal.Level2- Numerical.HBLAS.BLAS.Internal.Level3- Numerical.HBLAS.BLAS.Internal.Utility- Numerical.HBLAS.Lapack- Numerical.HBLAS.Lapack.FFI- Numerical.HBLAS.Constants- -- Modules included in this library but not exported.- -- other-modules:-- -- LANGUAGE extensions used by modules in this package.- -- other-extensions:- --- if flag(lib-Werror)- --- ghc-options: -Werror- --- if flag(lib-Wall)- --- ghc-options: -Wall- -- -Wall no wall for now- -- Other library packages from which modules are imported.- build-depends:- base >= 4.6 && < 4.12,- storable-complex >= 0.2.0 && < 0.3.0,- primitive >= 0.5 && < 0.7 ,- vector >= 0.10 && < 0.13--- if flag(OpenBLAS)- extra-libraries: openblas pthread-- if flag(OpenBLAS) && os(OSX)- extra-lib-dirs: /usr/local/lib-- if os(OSX) && !flag(OpenBLAS)- frameworks: Accelerate- -- extra-libraries: cblas lapack-- if os(windows) && !flag(OpenBLAS)- extra-libraries: blas lapack-- if !os(windows) && !os(OSX) && !flag(OpenBLAS)- -- extra-libraries: blas lapack- extra-libraries: blas, lapack-- if flag(CBLAS)- extra-libraries: cblas- if impl(ghc >= 8.0.1) && impl(ghc < 8.0.2)- ghc-options: -Wno-redundant-constraints--- -- Directories containing source files.- hs-source-dirs: src-- -- Base language which the package is written in.- default-language: Haskell2010- ghc-options: -Wall -fno-warn-name-shadowing----Test-suite unit-testsuite- default-language: Haskell2010- type: exitcode-stdio-1.0- other-modules:- -- HBLAS.BLAS.Level1Spec- HBLAS.BLAS.Level2Spec- HBLAS.BLAS.Level3Spec- HBLAS.MatrixTypesSpec-- build-depends:- hblas- , base- , vector- , hspec >= 2.0- , primitive- hs-source-dirs: tests- main-is: Spec.hs-+-- Initial hblas.cabal generated by cabal init. For further +-- documentation, see http://haskell.org/cabal/users-guide/ + +-- The name of the package. +name: hblas + +-- 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.4.0.1 +x-revision: 1 + +-- A short (one-line) description of the package. +synopsis: Human friendly BLAS and Lapack bindings for Haskell. + +-- A longer description of the package. +description: + User friendly, simple bindings to BLAS and Lapack. Easy to extend and use. + . + HBLAS assumes you have BLAS and LAPACK installed. Users on OSX already + have a BLAS and LAPACK installed for them. Users on LINUX and similar + platforms will need to do the system equivalent of @sudo apt-get install libblas liblapack@. + . + HBLAS is not intended to be a library for end user array operations, + but rather an easy adaptor for calling BLAS and LAPACK routines in their + full generality from your end-user haskell linear algebra / array library + of choice. + . + HBLAS roughly mirrors the naming conventions and datatype names of the standard + BLAS and LAPACK libraries. Those of you who are familiar with these conventions + and moderately comfortable with haskell will feel right at home. + . + If you are not familiar with the the operations and conventions of BLAS and + Lapack, please read the + <https://software.intel.com/sites/products/documentation/hpc/mkl/mklman/index.htm Intel MKL BLAS and LAPACK documention>, + you'll learn a lot about what BLAS and LAPACK can do. + . + HBLAS doesn't provide every BLAS and LAPACK operation currently, but + is designed so that adding support for new operations is quite easy! + + + +homepage: http://github.com/wellposed/hblas/ +bug-reports: http://github.com/wellposed/hblas/issues + +-- The license under which the package is released. +license: BSD3 + +-- The file containing the license text. +license-file: LICENSE + +-- The package author(s). +author: Carter Tazio Schonwald + +-- An email address to which users can send suggestions, bug reports, and +-- patches. +maintainer: carter at wellposed dot com + +-- A copyright notice. +-- copyright: +cabal-version: >=1.10 +category: Math + +build-type: Simple + +tested-with: + + GHC == 7.10.3 + GHC == 8.0.1 + GHC == 8.0.2 + GHC == 8.2.1 + GHC == 8.3.* + + +extra-source-files: + readme.md, + changelog.md + + +source-repository head + type: git + location: http://github.com/wellposed/hblas.git + +-- Extra files to be distributed with the package, such as examples or a +-- README. + +flag OpenBLAS + default: False + manual: True +-- Constraint on the version of Cabal needed to build this package. +-- flag lib-Werror +-- default: False +-- manual: True +-- flag lib-Wall +-- default: False +-- manual: True + +flag CBLAS + default: False + manual: True + description: Use on platforms when libcblas isn't part of libblas + +library + + -- Modules exported by the library. + exposed-modules: Numerical.HBLAS.BLAS.FFI + Numerical.HBLAS.BLAS.FFI.Level1 + Numerical.HBLAS.BLAS.FFI.Level2 + Numerical.HBLAS.BLAS.FFI.Level3 + Numerical.HBLAS.MatrixTypes + Numerical.HBLAS.UtilsFFI + --Numerical.HBLAS.BLAS.Level1 + Numerical.HBLAS.BLAS.Level2 + Numerical.HBLAS.BLAS.Level3 + --Numerical.HBLAS.BLAS.Internal.Level1 + Numerical.HBLAS.BLAS.Internal.Level2 + Numerical.HBLAS.BLAS.Internal.Level3 + Numerical.HBLAS.BLAS.Internal.Utility + Numerical.HBLAS.Lapack + Numerical.HBLAS.Lapack.FFI + Numerical.HBLAS.Constants + -- Modules included in this library but not exported. + -- other-modules: + + -- LANGUAGE extensions used by modules in this package. + -- other-extensions: + --- if flag(lib-Werror) + --- ghc-options: -Werror + --- if flag(lib-Wall) + --- ghc-options: -Wall + -- -Wall no wall for now + -- Other library packages from which modules are imported. + build-depends: + base >= 4.6 && < 4.14, + storable-complex >= 0.2.0 && < 0.3.0, + primitive >= 0.5 && < 0.7 , + vector >= 0.10 && < 0.13 + + + if flag(OpenBLAS) + extra-libraries: openblas pthread + + if flag(OpenBLAS) && os(OSX) + extra-lib-dirs: /usr/local/lib + + if os(OSX) && !flag(OpenBLAS) + frameworks: Accelerate + -- extra-libraries: cblas lapack + + if os(windows) && !flag(OpenBLAS) + extra-libraries: blas lapack + + if !os(windows) && !os(OSX) && !flag(OpenBLAS) + -- extra-libraries: blas lapack + extra-libraries: blas, lapack + + if flag(CBLAS) + extra-libraries: cblas + if impl(ghc >= 8.0.1) && impl(ghc < 8.0.2) + ghc-options: -Wno-redundant-constraints + + + -- Directories containing source files. + hs-source-dirs: src + + -- Base language which the package is written in. + default-language: Haskell2010 + ghc-options: -Wall -fno-warn-name-shadowing + + + +Test-suite unit-testsuite + default-language: Haskell2010 + type: exitcode-stdio-1.0 + other-modules: + -- HBLAS.BLAS.Level1Spec + HBLAS.BLAS.Level2Spec + HBLAS.BLAS.Level3Spec + HBLAS.MatrixTypesSpec + + build-depends: + hblas + , base + , vector + , hspec >= 2.0 + , primitive + hs-source-dirs: tests + main-is: Spec.hs +