Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

View File

@@ -1,24 +0,0 @@
$NetBSD: patch-lib_matplotlib_tri___tri.cpp,v 1.1 2014/02/26 10:36:58 wiedi Exp $
Rename C++ variables to avoid use of reserved identifiers
See: https://github.com/matplotlib/matplotlib/issues/2463
--- lib/matplotlib/tri/_tri.cpp.orig 2013-10-10 12:42:48.000000000 +0000
+++ lib/matplotlib/tri/_tri.cpp
@@ -2177,14 +2177,14 @@ TrapezoidMapTriFinder::Trapezoid::set_up
RandomNumberGenerator::RandomNumberGenerator(unsigned long seed)
- : _M(21870), _A(1291), _C(4621), _seed(seed % _M)
+ : _m(21870), _a(1291), _c(4621), _seed(seed % _m)
{}
unsigned long
RandomNumberGenerator::operator()(unsigned long max_value)
{
- _seed = (_seed*_A + _C) % _M;
- return (_seed*max_value) / _M;
+ _seed = (_seed*_a + _c) % _m;
+ return (_seed*max_value) / _m;
}

View File

@@ -1,15 +0,0 @@
$NetBSD: patch-lib_matplotlib_tri___tri.h,v 1.1 2014/02/26 10:36:58 wiedi Exp $
Rename C++ variables to avoid use of reserved identifiers
See: https://github.com/matplotlib/matplotlib/issues/2463
--- lib/matplotlib/tri/_tri.h.orig 2013-10-10 12:42:48.000000000 +0000
+++ lib/matplotlib/tri/_tri.h
@@ -818,7 +818,7 @@ public:
unsigned long operator()(unsigned long max_value);
private:
- const unsigned long _M, _A, _C;
+ const unsigned long _m, _a, _c;
unsigned long _seed;
};

View File

@@ -1,10 +1,10 @@
$NetBSD: patch-ab,v 1.7 2014/01/21 21:14:06 drochner Exp $
$NetBSD: patch-setup.py,v 1.1 2016/08/04 00:04:19 kamil Exp $
--- setup.py.orig 2013-10-10 12:42:48.000000000 +0000
--- setup.py.orig 2016-07-03 15:37:10.000000000 +0000
+++ setup.py
@@ -88,12 +88,12 @@ mpl_packages = [
# work will be selected as the default backend.
@@ -97,12 +97,12 @@ mpl_packages = [
setupext.BackendMacOSX(),
setupext.BackendQt5(),
setupext.BackendQt4(),
- setupext.BackendGtk3Agg(),
- setupext.BackendGtk3Cairo(),