Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37513752
en ru br
ALT Linux repos
S:1.12-alt2

Group :: Development/ML
RPM: ocaml-zarith

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

%{?optflags_lto:%global optflags_lto %optflags_lto -ffat-lto-objects}
%global pkgname zarith
%define ocamlstublib %_ocamldir/stublibs/
Name: ocaml-%pkgname
Version: 1.12
Release: alt2
Summary: OCaml interface to GMP
Group: Development/ML
# The license has a static linking exception
License: LGPLv2 with OCaml-LGPL-linking-exception
Url: https://github.com/ocaml/Zarith
Source0: %name-%version.tar

BuildRequires: libgmp-devel
BuildRequires: ocaml
BuildRequires: ocaml-findlib
BuildRequires: ocaml-ocamldoc

%description
This library implements arithmetic and logical operations over
arbitrary-precision integers.

The module is simply named "Z".  Its interface is similar to that of the
Int32, Int64 and Nativeint modules from the OCaml standard library, with
some additional functions.  See the file z.mlip for documentation.

The implementation uses GMP (the GNU Multiple Precision arithmetic
library) to compute over big integers.  However, small integers are
represented as unboxed Caml integers, to save space and improve
performance.  Big integers are allocated in the Caml heap, bypassing
GMP's memory management and achieving better GC behavior than e.g. the
MLGMP library.  Computations on small integers use a special, faster
path (coded in assembly for some platforms and functions) eschewing
calls to GMP, while computations on large integers use the low-level
MPN functions from GMP.

Arbitrary-precision integers can be compared correctly using OCaml's
polymorphic comparison operators (=, <, >, etc.).

Additional features include:
- a module Q for rationals, built on top of Z (see q.mli)
- a compatibility layer Big_int_Z that implements the same API as Big_int,
 but uses Z internally

%package devel
Summary: Development files for %name
Requires: %name = %version-%release
Group: Development/ML
Requires: libgmp-devel

%description devel
The %name-devel package contains libraries and signature files for
developing applications that use %name.

%prep
%setup

# Fix compilation flags

sed -i "s|^asopt=''|asopt='%optflags'|" configure
sed -i "s|-ccopt|-g &|;s|-shared|-linkall -g &|" project.mak

%build
export CC="gcc -Wa,--noexecstack"
export CFLAGS="%optflags"
export OCAMLFLAGS="-g"
export OCAMLOPTFLAGS="-g"
# This is NOT an autoconf-generated configure script; %%configure doesn't work
./configure
make
make doc

%install
mkdir -p %buildroot%ocamlstublib
mkdir -p %buildroot%_ocamldir
make install INSTALLDIR=%buildroot%_libdir/ocaml

%files
%doc Changes
%_ocamldir/%pkgname
%exclude %_ocamldir/%pkgname/*.mli
%exclude %_ocamldir/%pkgname/*.h
%exclude %_ocamldir/%pkgname/*.a
%exclude %_ocamldir/%pkgname/*.cmx
%exclude %_ocamldir/%pkgname/*.cmxa
%ocamlstublib/*.so
%ocamlstublib/*.so.owner

%files devel
%doc README.md html
%_ocamldir/%pkgname/*.mli
%_ocamldir/%pkgname/*.h
%_ocamldir/%pkgname/*.a
%_ocamldir/%pkgname/*.cmx
%_ocamldir/%pkgname/*.cmxa

%changelog

Full changelog you can see here

 
design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
current maintainer: Michael Shigorin