Import of pkgsrc-2015Q3

This commit is contained in:
2015-10-03 03:37:01 -07:00
committed by Lionel Sambuc
parent f641581404
commit 9d819b6d54
7578 changed files with 228314 additions and 80018 deletions

View File

@@ -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/

View File

@@ -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

View File

@@ -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 {

View File

@@ -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;