diff options
author | Kavon Farvardin <kavon@farvard.in> | 2018-09-23 15:29:37 -0500 |
---|---|---|
committer | Kavon Farvardin <kavon@farvard.in> | 2018-09-23 15:29:37 -0500 |
commit | 84c2ad99582391005b5e873198b15e9e9eb4f78d (patch) | |
tree | caa8c2f2ec7e97fbb4977263c6817c9af5025cf4 /libraries/integer-gmp/integer-gmp.cabal | |
parent | 8ddb47cfcf5776e9a3c55fd37947c8a95e00fa12 (diff) | |
parent | e68b439fe5de61b9a2ca51af472185c62ccb8b46 (diff) | |
download | haskell-wip/T13904.tar.gz |
update to current master againwip/T13904
Diffstat (limited to 'libraries/integer-gmp/integer-gmp.cabal')
-rw-r--r-- | libraries/integer-gmp/integer-gmp.cabal | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/libraries/integer-gmp/integer-gmp.cabal b/libraries/integer-gmp/integer-gmp.cabal index 2f32b34627..5d2f89039c 100644 --- a/libraries/integer-gmp/integer-gmp.cabal +++ b/libraries/integer-gmp/integer-gmp.cabal @@ -1,5 +1,7 @@ +cabal-version: 2.0 name: integer-gmp -version: 1.0.1.0 +version: 1.0.2.0 + synopsis: Integer library based on GMP license: BSD3 license-file: LICENSE @@ -7,7 +9,14 @@ author: Herbert Valerio Riedel maintainer: hvr@gnu.org category: Numeric, Algebra build-type: Configure -cabal-version: >=1.10 +description: + This package provides the low-level implementation of the standard + 'Integer' type based on the + <http://gmplib.org/ GNU Multiple Precision Arithmetic Library (GMP)>. + . + This package provides access to the internal representation of + 'Integer' as well as primitive operations with no proper error + handling, and should only be used directly with the utmost care. extra-source-files: aclocal.m4 @@ -17,16 +26,19 @@ extra-source-files: config.sub configure configure.ac - gmp/config.mk.in + config.mk.in include/HsIntegerGmp.h.in install-sh integer-gmp.buildinfo.in +-- NB: Many of these tmp files no longer ever actually get plopped in +-- the root directory post Cabal 2.4, thanks to a change that causes +-- autoconf/configure to get run inside the dist directory. extra-tmp-files: autom4te.cache config.log config.status - gmp/config.mk + config.mk integer-gmp.buildinfo include/HsIntegerGmp.h @@ -46,7 +58,7 @@ library StandaloneDeriving UnboxedTuples UnliftedFFITypes - build-depends: ghc-prim + build-depends: ghc-prim ^>= 0.5.1.0 hs-source-dirs: src/ ghc-options: -this-unit-id integer-gmp -Wall cc-options: -std=c99 -Wall |