summaryrefslogtreecommitdiff
path: root/math/cln
diff options
context:
space:
mode:
authorwen <wen@pkgsrc.org>2015-06-30 07:56:44 +0000
committerwen <wen@pkgsrc.org>2015-06-30 07:56:44 +0000
commitfaca1c032080ae088a8714ba4095c546092eb098 (patch)
tree208416ba1e9f3de755652385b5f106e4066487e9 /math/cln
parent8c9908a3506faf7dbab83ab7d8520897251c7672 (diff)
downloadpkgsrc-faca1c032080ae088a8714ba4095c546092eb098.tar.gz
Update to 1.3.4
Upstream changes: 2014-10-16, version 1.3.4 ========================= Implementation changes ---------------------- * Fix input of huge floats. Other changes ------------- * Support the AArch64 and the Mips64 ABIs. 2013-07-21, version 1.3.3 ========================= Implementation changes ---------------------- * Fix integer input of leading zeros in power-of-two base. * Fix several floating-poing conversion bugs involving huge numbers. * Fix bug that would set input stream fail state when reading a number at EOF. Other changes ------------- * Support the x32 ABI.
Diffstat (limited to 'math/cln')
-rw-r--r--math/cln/Makefile5
-rw-r--r--math/cln/distinfo10
-rw-r--r--math/cln/patches/patch-include_cln_exception.h12
-rw-r--r--math/cln/patches/patch-include_cln_types.h31
4 files changed, 6 insertions, 52 deletions
diff --git a/math/cln/Makefile b/math/cln/Makefile
index 92cb6c88752..5b31e1ead4f 100644
--- a/math/cln/Makefile
+++ b/math/cln/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.25 2015/05/15 09:17:03 joerg Exp $
+# $NetBSD: Makefile,v 1.26 2015/06/30 07:56:44 wen Exp $
-DISTNAME= cln-1.3.2
-PKGREVISION= 2
+DISTNAME= cln-1.3.4
CATEGORIES= math
MASTER_SITES= http://www.ginac.de/CLN/ \
ftp://ftpthep.physik.uni-mainz.de/pub/gnu/
diff --git a/math/cln/distinfo b/math/cln/distinfo
index 21d2cfe7217..ae8891bf129 100644
--- a/math/cln/distinfo
+++ b/math/cln/distinfo
@@ -1,8 +1,6 @@
-$NetBSD: distinfo,v 1.14 2015/05/15 09:17:03 joerg Exp $
+$NetBSD: distinfo,v 1.15 2015/06/30 07:56:44 wen Exp $
-SHA1 (cln-1.3.2.tar.bz2) = c30dca80e75f45e2107f233075e6d0339ea884b0
-RMD160 (cln-1.3.2.tar.bz2) = 8644a278e99c3e15ebf83f5e641758bdecad8b23
-Size (cln-1.3.2.tar.bz2) = 1275638 bytes
-SHA1 (patch-include_cln_exception.h) = 2d7ec63ee174793ad69ae3b54599f1c347b20c9f
-SHA1 (patch-include_cln_types.h) = 2e685a55babc03756ff2c170ad23b86c8888f7dc
+SHA1 (cln-1.3.4.tar.bz2) = 76f73071236ead72ba5c9ee892f29ca24e557b8c
+RMD160 (cln-1.3.4.tar.bz2) = 81c83ca070425627d248579ff6e9d168aae12a85
+Size (cln-1.3.4.tar.bz2) = 1281348 bytes
SHA1 (patch-src_base_cl__low.h) = 385d1bf88b8b80104da9a9e006a1b87edc3a0e84
diff --git a/math/cln/patches/patch-include_cln_exception.h b/math/cln/patches/patch-include_cln_exception.h
deleted file mode 100644
index 79bea78edcb..00000000000
--- a/math/cln/patches/patch-include_cln_exception.h
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-include_cln_exception.h,v 1.1 2013/05/04 12:59:47 joerg Exp $
-
---- include/cln/exception.h.orig 2013-05-04 00:51:47.000000000 +0000
-+++ include/cln/exception.h
-@@ -4,6 +4,7 @@
- #define _CL_EXCEPTION_H
-
- #include <stdexcept>
-+#include <string>
-
- namespace cln {
-
diff --git a/math/cln/patches/patch-include_cln_types.h b/math/cln/patches/patch-include_cln_types.h
deleted file mode 100644
index 3f572aa8a68..00000000000
--- a/math/cln/patches/patch-include_cln_types.h
+++ /dev/null
@@ -1,31 +0,0 @@
-$NetBSD: patch-include_cln_types.h,v 1.2 2015/02/07 20:18:06 jdc Exp $
-
---- include/cln/types.h.orig 2009-06-14 20:49:32.000000000 +0100
-+++ include/cln/types.h 2015-02-07 20:03:43.000000000 +0000
-@@ -76,7 +76,7 @@
-
- // Integer type used for counters.
- // Constraint: sizeof(uintC) >= sizeof(uintL)
-- #if (defined(HAVE_FAST_LONGLONG) && (defined(__alpha__) || defined(__ia64__) || defined(__powerpc64__) || defined(__x86_64__)))
-+ #if (defined(HAVE_FAST_LONGLONG) && (defined(__alpha__) || defined(__ia64__) || defined(__powerpc64__) || defined(__x86_64__) || defined(__sparc64__)))
- #define intCsize long_bitsize
- typedef long sintC;
- typedef unsigned long uintC;
-@@ -88,7 +88,7 @@
-
- // Integer type used for lfloat exponents.
- // Constraint: sizeof(uintE) >= sizeof(uintC)
--#if (defined(HAVE_LONGLONG) && (defined(__alpha__) || defined(__ia64__) || defined(__powerpc64__) || defined(__x86_64__) || defined(__i386__) || defined(__mips__) || defined(__rs6000__)))
-+#if (defined(HAVE_LONGLONG) && (defined(__alpha__) || defined(__ia64__) || defined(__powerpc64__) || defined(__x86_64__) || defined(__i386__) || defined(__mips__) || defined(__rs6000__) || defined(__sparc64__)))
- #define intEsize 64
- typedef sint64 sintE;
- typedef uint64 uintE;
-@@ -127,7 +127,7 @@
- typedef int sintD;
- typedef unsigned int uintD;
- #else // we are not using GMP, so just guess something reasonable
-- #if (defined(HAVE_FAST_LONGLONG) && (defined(__alpha__) || defined(__ia64__) || defined(__powerpc64__) || defined(__x86_64__)))
-+ #if (defined(HAVE_FAST_LONGLONG) && (defined(__alpha__) || defined(__ia64__) || defined(__powerpc64__) || defined(__x86_64__) || defined(__sparc64__)))
- #define intDsize 64
- typedef sint64 sintD;
- typedef uint64 uintD;