pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/math/cln Changes 1.1.13:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c710e4518f94
branches:  trunk
changeset: 523265:c710e4518f94
user:      adam <adam%pkgsrc.org@localhost>
date:      Thu Jan 04 21:20:57 2007 +0000

description:
Changes 1.1.13:
* Compilation fixes for 64-bit brokenness introduced in last release.

Changes 1.1.12:
* Fix rare assertion when printing quite large floats.
* Compilation fixes for several platforms: *BSD, Intel Mac, and MinGW.

diffstat:

 math/cln/Makefile         |   6 +++---
 math/cln/distinfo         |  11 +++++------
 math/cln/patches/patch-aa |  22 ----------------------
 math/cln/patches/patch-ab |  13 +++++--------
 4 files changed, 13 insertions(+), 39 deletions(-)

diffs (99 lines):

diff -r bf1307a37bf0 -r c710e4518f94 math/cln/Makefile
--- a/math/cln/Makefile Thu Jan 04 19:37:51 2007 +0000
+++ b/math/cln/Makefile Thu Jan 04 21:20:57 2007 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2006/07/07 15:49:32 jlam Exp $
+# $NetBSD: Makefile,v 1.15 2007/01/04 21:20:57 adam Exp $
 
-DISTNAME=      cln-1.1.11
+DISTNAME=      cln-1.1.13
 CATEGORIES=    math
 MASTER_SITES=  ftp://ftpthep.physik.uni-mainz.de/pub/gnu/ \
                ftp://ftp.santafe.edu/pub/gnu/ \
@@ -16,6 +16,6 @@
 USE_LIBTOOL=           yes
 GNU_CONFIGURE=         yes
 PKGCONFIG_OVERRIDE=    cln.pc.in
-INFO_FILES=            # PLIST
+INFO_FILES=            yes
 
 .include "../../mk/bsd.pkg.mk"
diff -r bf1307a37bf0 -r c710e4518f94 math/cln/distinfo
--- a/math/cln/distinfo Thu Jan 04 19:37:51 2007 +0000
+++ b/math/cln/distinfo Thu Jan 04 21:20:57 2007 +0000
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.5 2006/04/06 19:46:33 adam Exp $
+$NetBSD: distinfo,v 1.6 2007/01/04 21:20:57 adam Exp $
 
-SHA1 (cln-1.1.11.tar.bz2) = ff9a02430e700afd990fc89d06cd8adcff32af67
-RMD160 (cln-1.1.11.tar.bz2) = 1ceca5e74bd7a6179d22a9ffd78bbe8fc7ce2e08
-Size (cln-1.1.11.tar.bz2) = 1710717 bytes
-SHA1 (patch-aa) = 5081352b902de9065e7c6645442823ab297bef09
-SHA1 (patch-ab) = 90c93f8b2269a23e8310e8e40ddabf6d8659de43
+SHA1 (cln-1.1.13.tar.bz2) = 61c130cbb00ed95a19ee9dffc136b2823e452647
+RMD160 (cln-1.1.13.tar.bz2) = 798e8e2a8d4aa81b770b6606ae1fe617bcb0cbc3
+Size (cln-1.1.13.tar.bz2) = 1708927 bytes
+SHA1 (patch-ab) = d1fc5f290b8838af030f968fbba26e51be177100
 SHA1 (patch-ac) = d93e47d81cb010f0eb21b3a98d5ce9b9a6150623
diff -r bf1307a37bf0 -r c710e4518f94 math/cln/patches/patch-aa
--- a/math/cln/patches/patch-aa Thu Jan 04 19:37:51 2007 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,22 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2004/03/05 14:46:23 adam Exp $
-
---- src/base/random/cl_random_from.cc.orig     2003-12-29 19:04:08.000000000 +0000
-+++ src/base/random/cl_random_from.cc
-@@ -12,7 +12,7 @@
- #include "cl_base_config.h"
- #include "cl_low.h"
- 
--#if defined(unix) || defined(__unix) || defined(_AIX) || defined(sinix) || (defined(__MACH__) && defined(__APPLE__)) || (defined(_WIN32) && defined(__GNUC__)) || defined(__BEOS__)
-+#if defined(unix) || defined(__unix) || defined(_AIX) || defined(sinix) || (defined(__MACH__) && defined(__APPLE__)) || (defined(_WIN32) && defined(__GNUC__)) || defined(__BEOS__) || 
defined(__NetBSD__)
- 
- #include <sys/types.h>
- #include <unistd.h> // declares getpid()
-@@ -64,7 +64,7 @@ random_state::random_state ()
- {
-       var uint32 seed_hi;
-       var uint32 seed_lo;
--#if defined(unix) || defined(__unix) || defined(_AIX) || defined(sinix) || (defined(__MACH__) && defined(__APPLE__)) || (defined(_WIN32) && defined(__GNUC__)) || defined(__BEOS__)
-+#if defined(unix) || defined(__unix) || defined(_AIX) || defined(sinix) || (defined(__MACH__) && defined(__APPLE__)) || (defined(_WIN32) && defined(__GNUC__)) || defined(__BEOS__) || 
defined(__NetBSD__)
-       seed_lo = ::get_seed();
-       seed_hi = (rand() // zufällige 31 Bit (bei UNIX_BSD) bzw. 16 Bit (bei UNIX_SYSV)
-                           << 8) ^ (uintL)(getpid()); // ca. 8 Bit von der Process ID
diff -r bf1307a37bf0 -r c710e4518f94 math/cln/patches/patch-ab
--- a/math/cln/patches/patch-ab Thu Jan 04 19:37:51 2007 +0000
+++ b/math/cln/patches/patch-ab Thu Jan 04 21:20:57 2007 +0000
@@ -1,11 +1,8 @@
-$NetBSD: patch-ab,v 1.3 2006/03/12 16:33:32 rillig Exp $
+$NetBSD: patch-ab,v 1.4 2007/01/04 21:20:57 adam Exp $
 
-HTML documentation is installed to share/doc/cln/html, DVI and
-PostScript are left out.
-
---- doc/Makefile.in.orig       2004-10-26 21:29:16.000000000 +0000
+--- doc/Makefile.in.orig       2006-08-06 14:14:20.000000000 +0200
 +++ doc/Makefile.in
-@@ -12,7 +12,7 @@ exec_prefix = @exec_prefix@
+@@ -13,7 +13,7 @@ datarootdir = @datarootdir@
  datadir = @datadir@
  infodir = @infodir@
  mandir = @mandir@
@@ -14,7 +11,7 @@
  dvidir = $(datadir)/dvi
  DESTDIR =
  
-@@ -42,7 +42,7 @@ SHELL = /bin/sh
+@@ -43,7 +43,7 @@ SHELL = /bin/sh
  
  VPATH = $(srcdir)
  
@@ -23,7 +20,7 @@
  
  
  info : $(srcdir)/$(PACKAGE).info
-@@ -87,13 +87,11 @@ install : all installdirs force
+@@ -88,13 +88,11 @@ install : all installdirs force
          install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$(PACKAGE).info || :;\
        else : ; fi
        $(INSTALL_DATA) $(srcdir)/$(PACKAGE)_*.html $(DESTDIR)$(htmldir)



Home | Main Index | Thread Index | Old Index