pkgsrc/math
maya 4e3fbdc176 Octave: update to 4.2.0
pkgsrc changes: removed all patches to do with qt5 support, upstream
code does it now. blindly moved some patches that were replacing
INSTALL_PROGRAM to INSTALL_LIB as the build changed. added patch
replacing struct tm_zone with timezone_t to accommodate for missing
type in NetBSD - same as libgnu does.

ok adam

Summary of important user-visible changes for version 4.2:
---------------------------------------------------------

 ** The parser has been extended to accept, but ignore, underscore
    characters in numbers.  This facilitates writing more legible code
    by using '_' as a thousands separator or to group nibbles into bytes
    in hex constants.

    Examples: 1_000_000 == 1e6  or  0xDE_AD_BE_EF

 ** The parser has been extended to understand binary numbers which
    begin with the prefix '0b' or '0B'.  The value returned is Octave's
    default numeric class of double, not at unsigned integer class.
    Therefore numbers greater than flintmax, i.e., 2^53, will lose some
    precision.

    Examples: 0b101 == 5  or  0B1100_0001 == 0xC1

 ** gnuplot 4.4 is now the minimum version supported by Octave.

 ** The default set of colors used to plot lines has been updated to be
    compatible with Matlab's new default color scheme.  The line plot
    color scheme can be set with the axes property "ColorOrder".

 ** The default colormap is now set to "viridis" which is also the
    default colormap in matplotlib.  This new colormap fixes some of the
    main issues with the old default colormap "jet" such as its bad
    "luminance profile" and is also more similar to Matlab's new default
    colormap "parula".

 ** The colormap function no longer supports the input argument "list"
    to show built-in colormaps.  Use "help colormap" to find the
    built-in colormaps.

 ** The graphics command "hold on" now ensures that each new plot added
    to an existing plot has a different color or linestyle according to
    the "ColorOrder" and/or "LineStyleOrder" properties.  This is
    equivalent to the old command "hold all" and was made for Matlab
    compatibility.  Existing code *may* produce differently colored
    plots if it did not specify the color for a plot and relied on each
    new plot having the default first color in the "ColorOrder"
    property.

 ** When starting, Octave now looks in the function path for a file
    startup.m and executes any commands found there.  This change was
    made to accommodate Matlab users.  Octave has it's own configuration
    system based on the file .octaverc which is preferred.

 ** Octal ('\NNN') and hex ('\xNN') escape sequences in single quoted
    strings are now interpreted by the function do_string_escapes().
    The *printf family of functions now supports octal and hex escape
    sequences in single-quoted strings for Matlab compatibility.

 ** Special octal and hex escape sequences for the pattern and
    replacement strings in regular expressions are now interpreted for
    Matlab compatibility.

    octal: '\oNNN' or '\o{NNN}'
    hex  : '\xNN'  or '\x{NN}'

 ** Unknown escape sequences in the replacement string for regexprep are
    now substituted with their unescaped version and no warning is
    emitted.  This change was made for Matlab compatibility.

    Example: regexprep ('a', 'a', 'x\yz')
             => 'xyz'

 ** mkfifo now interprets the MODE argument as an octal, not decimal,
    integer.  This is consistent with the equivalent shell command.

 ** linspace now returns an empty matrix if the number of requested
    points is 0 or a negative number.  This change was made to be
    compatible with Matlab releases newer than 2011.  In addition,
    Octave no longer supports matrix inputs for A or B.

 ** The cov function now returns the complex conjugate of the result
    from previous versions of Octave.  This change was made for
    compatibility with Matlab.

 ** condest now works with a normest1 compatible syntax.

 ** The griddata function no longer plots the interpolated mesh if no
    output argument is requested, instead the vector or array of
    interpolated values is always returned for Matlab compatibility.

 ** The new function "light" and the corresponding graphics object
    provide light and shadow effects for patch and surface objects.

 ** The surfnorm function now returns unnormalized (magnitude != 1)
    normal vectors for compatibility with Matlab.

 ** The normal vectors returned from isonormals have been reversed to
    point towards smaller values for compatibility with Matlab.

 ** The quadl function now uses an absolute, rather than relative,
    tolerance for Matlab compatibility.  The default tolerance is 1e-6
    which may result in lower precision results than previous versions
    of Octave which used eps as the relative tolerance.  The quadl
    function has also been extended to return a second output with the
    total number of function evaluations.

 ** The textscan function is now built-in and is much faster and much
    more Matlab-compatible than the previous m-file version.

 ** Dialog boxes--errordlg, helpdlg, inputdlg, listdlg, msgbox,
    questdlg, and warndlg--now exclusively use Qt for rendering.
    Java based versions have been removed.

 ** The axes properties "TitleFontSizeMultiplier" and "TitleFontWeight"
    are now implemented which control the default appearance of text
    created with title().
    The axes property "LabelFontSizeMultiplier" is now implemented
    which controls the default appearance of text created with
    xlabel(), ylabel(), or zlabel().

 ** The graphics property "box" for axes now defaults to "off".
    To obtain equivalent plots to previous versions of Octave use
      set (0, "DefaultAxesBox", "on");
    in your .octaverc file.

 ** The graphics property "boxstyle" has been implemented.  The default
    is "back" which draws only the back planes in a 3-D view.  If the
    option is "full" then all planes are drawn.

 ** The graphics property "erasemode" has been hidden, and will
    eventually be removed.  This property has also been removed
    from Matlab, and was never implemented in Octave.

 ** The graphics property "graphicssmoothing" for figures now controls
    whether anti-aliasing will be used for lines.  The default is "on".

 ** The value "zero" for the axes properties "xaxislocation" and
    "yaxislocation" has been deprecated and will be removed from
    Octave 4.6.  Use "origin" instead.

 ** The publish function allows easy publication of Octave script files
    in HTML or other formats, including figures and output created by
    this script.  It comes with its counterpart grabcode, which lets one
    literally grab the HTML published code from a remote website, for
    example.

 ** The value of the MEX variable TrapFlag now defaults to 0, which will
    cause Octave to abort execution of a MEX file and return to the
    prompt if an error is encountered in mexCallMATLAB.

 ** The MEX API now includes the function mexCallMATLABWithTrap.  This
    function will not abort if an error occurs during mexCallMATLAB, but
    instead will return execution to the MEX function for error
    handling.

 ** The MEX API functions for input validation that begin with "mxIs"
    (e.g., mxIsDouble, mxIsEmpty, etc.) now return type bool rather than
    type int.

 ** The functions mxAssert and mxAssertS for checking assertions have
    been added.  In order to avoid a performance penalty they are only
    compiled in to debug versions of a MEX file, i.e., that are produced
    when the '-g' option is given to mex or mkoctfile.

 ** Other new MEX API functions include mexEvalStringWithTrap,
    mxIsScalar, mxCreateUninitNumericArray, mxCreateUninitNumericMatrix.

 ** Other new functions added in 4.2:

      audioformats
      camlight
      condeig
      deg2rad
      dialog
      evalc
      hash
      im2double
      isocaps
      lighting
      localfunctions
      material
      normest1
      ode23
      ode45
      odeget
      odeplot
      odeset
      padecoef
      profexport
      psi
      rad2deg
      reducepatch
      reducevolume
      smooth3
      uibuttongroup

 ** Deprecated functions.

    The following functions have been deprecated in Octave 4.2 and will
    be removed from Octave 4.6 (or whatever version is the second major
    release after 4.2):

      Function             | Replacement
      ---------------------|------------------
      bitmax               | flintmax
      mahalanobis          | mahal in Octave-Forge statistics pkg
      md5sum               | hash
      octve_config_info    | __octave_config_info__
      onenormest           | normest1
      sleep                | pause
      usleep               | pause
      wavread              | audioread
      wavwrite             | audiowrite

 ** The following functions were deprecated in Octave 3.8 and have been
    removed from Octave 4.2.

      default_save_options    java_new
      gen_doc_cache           java_unsigned_conversion
      interp1q                javafields
      isequalwithequalnans    javamethods
      java_convert_matrix     re_read_readline_init_file
      java_debug              read_readline_init_file
      java_invoke             saving_history

 ** The global error_state variable in Octave's C++ API has been
    deprecated and will be removed in a future version.  Now the error
    and print_usage functions throw an exception
    (octave::execution_exception) after displaying the error message.
    This makes the error and print_usage functions in C++ work more like
    the corresponding functions in the scripting language.

 ** The default error handlers in liboctave have been updated to use
    exceptions.  After displaying an error message they no longer return
    control to the calling program.  The error handler function can be
    customized through the global variables
    "current_liboctave_error_handler" and
    "current_liboctave_error_with_id_handler".  If a programmer has
    installed their own custom error handling routines when directly
    linking with liboctave then these must be updated to throw an
    exception and not return to the calling program.

 ** The system for common errors and warnings has been renamed from
    gripe_XXX to either err_XXX if error is called or warn_XXX if
    warning is called.  The gripe_XXX functions are deprecated and will
    be removed in version 4.6.

 ** New configure option, --enable-address-sanitizer-flags, to build
    Octave with memory allocator checks (similar to those in valgrind)
    built in.
2016-11-19 21:53:12 +00:00
..
aamath Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
abs Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
admesh Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
algae Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
analitza Revbump post boost update 2016-10-07 18:25:29 +00:00
antixls Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
aribas Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
arpack Libtoolize to provide shared libraries. Fixes parallel build as side 2016-03-25 21:08:09 +00:00
bc Update bc to 1.06.95 2015-12-12 19:50:36 +00:00
blas Update blas to 3.6.1 as well. 2016-10-18 14:08:48 +00:00
blitz++ Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
boolstuff Import boolstuff-0.1.16 as math/boolstuff 2016-07-28 23:56:40 +00:00
calc Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
calcoo Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
cantor Revbump post boost update 2016-10-07 18:25:29 +00:00
capc-calc Use PKGMANDIR. 2016-04-01 22:29:36 +00:00
cgal Revbump post boost update 2016-10-07 18:25:29 +00:00
classias Imported from WIP 2016-07-22 02:45:44 +00:00
clisp-pari sort 2016-06-11 23:29:35 +00:00
cln Use OPSYSVARS. 2016-02-25 15:26:55 +00:00
cloog Updated cloog to 0.18.4. 2016-10-09 19:46:52 +00:00
coinmp Fix build when coinmp is already installed and using pkgconf. 2016-04-12 22:04:30 +00:00
crfsuite Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
dcdflib.c Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
dcdflib.f Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
dfftpack
dieharder Update dieharder to 3.31.1 2015-10-26 05:52:06 +00:00
djbfft Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
eigen2 Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
eigen3 Update eigen3 to 3.2.9 2016-09-13 14:57:39 +00:00
eispack
ess Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
eukleides Remove mk/find-prefix.mk usage from the math category. 2015-11-25 12:51:41 +00:00
eukleides10 Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
euler Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
extcalc Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
fftpack
ffts Initial import of ffts. 2016-01-22 14:57:41 +00:00
fftw Update fftw{,f} to 3.3.5. 2016-08-19 12:40:18 +00:00
fftw2 Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
fftwf Update fftw{,f} to 3.3.5. 2016-08-19 12:40:18 +00:00
fgmp Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
fityk Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
fricas Update to FriCAS 1.2.7 2016-03-12 20:54:23 +00:00
galculator Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gap Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
gcalctool Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
geg Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
genius Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
glpk GLPK 4.60: 2016-04-12 21:40:47 +00:00
gnome-calculator Update gnome-calculator to 3.21.90 2016-08-21 07:42:18 +00:00
gnumeric Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gnumeric110 Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gnumeric112 Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gp-autpgrp Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
gp-factint Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
gp-fplsa Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
gp-grape Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
gp-grpconst Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
gp-lag Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
grace Revbump post boost update 2016-10-07 18:25:29 +00:00
graphopt Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
grpn Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gsl Updated gsl to 2.2.1. 2016-09-04 09:27:18 +00:00
gtklife Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
harminv Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
heirloom-factor
heirloom-units
herisvm import herisvm-0.7.0 2016-07-25 09:18:51 +00:00
hs-distributive Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
hs-mwc-random Update to 0.13.3.2 2015-12-13 14:10:14 +00:00
hs-nats Bump PKGREVISION for hs-text-1.2.2.0 || hs-hashable-1.2.3.3 2016-01-10 11:49:09 +00:00
hs-scientific Bump PKGREVISION for hs-text-1.2.2.0 || hs-hashable-1.2.3.3 2016-01-10 11:49:09 +00:00
hs-semigroups Bump PKGREVISION for hs-text-1.2.2.0 || hs-hashable-1.2.3.3 2016-01-10 11:49:09 +00:00
ipopt Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
isl Updated isl to 0.17.1. 2016-10-06 22:03:56 +00:00
itpp Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
kalgebra Revbump post boost update 2016-10-07 18:25:29 +00:00
kcalc Revbump post boost update 2016-10-07 18:25:29 +00:00
kseg Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
lapack Updated lapack to 3.6.1. 2016-10-18 14:08:14 +00:00
libffm Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
libint Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
libixion Revbump post boost update 2016-10-07 18:25:29 +00:00
liblbfgs Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
liblinear Build blas.a using libtool, fixes build on SunOS. Bump PKGREVISION. 2016-01-28 11:34:48 +00:00
libmatheval Note error message from building with guile 2.0 2016-09-16 00:37:02 +00:00
libshorttext Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
libsvm Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
linpack
lp_solve Update to lp_solve_5.5.2.3 and indicate a 64-bit platform for aarch64 2016-09-08 05:12:39 +00:00
ltm Use INSTALLATION_DIRS. 2016-10-04 09:34:01 +00:00
mapm Use OPSYSVARS. 2016-02-25 15:26:55 +00:00
mathomatic Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
maxima Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
mcsim Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
meschach Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
metis Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
minisat Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
minpack
mpcomplex Don't clean intermediate files after checksum/patch phase. 2015-09-15 20:56:33 +00:00
mpfr Updated mpfr to 3.1.5. 2016-10-03 12:35:18 +00:00
mprime-bin Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
mtl Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
muparser Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
newmat Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
nickle Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
nlopt Import nlopt-2.4.2 as math/nlopt. 2015-11-28 07:33:38 +00:00
ntl Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
ocaml-zarith Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
octave Octave: update to 4.2.0 2016-11-19 21:53:12 +00:00
odepack
openaxiom Bump PKGREVISION for boehm-gc default-on threads, just to be on 2014-04-30 14:19:40 +00:00
openfst Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
ordCalc Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
otter Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
p5-Algorithm-Cluster Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Algorithm-Munkres Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Excel-Template Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Excel-Template-Plus Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-Base-Convert Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-Base36 Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-Base85 Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-BaseCnv Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-Bezier Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-BigInt Update to 1.999800 2016-11-17 15:28:50 +00:00
p5-Math-BigInt-GMP Update to 1.51 2016-08-09 00:01:14 +00:00
p5-Math-BigInt-Pari Update to 1.27 2016-08-09 00:08:22 +00:00
p5-Math-BigInteger Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-Complex Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-Derivative Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-FFT Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-GMP Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-Interpolate Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-MatrixReal Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-Pari Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-Permute-List Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-Prime-Util Update to 0.59 2016-08-09 00:14:33 +00:00
p5-Math-Random Update to 0.72 2016-07-09 06:37:16 +00:00
p5-Math-Random-ISAAC Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-Random-ISAAC-XS Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-Random-MT Update to 1.17 2016-07-26 06:32:22 +00:00
p5-Math-Random-MT-Auto Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-Random-MT-Perl Update to 1.15 2016-07-26 06:35:40 +00:00
p5-Math-Round Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-Spline Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Math-VecStat Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Number-Compare Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Number-Latin Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Number-Range Update to 0.12 2016-07-15 03:42:04 +00:00
p5-Number-Tolerant Update to 1.708 2016-07-15 03:12:22 +00:00
p5-Roman Update to 1.24 2016-08-09 00:19:49 +00:00
p5-Set-Crontab Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Set-Infinite Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Spreadsheet-ParseExcel Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Spreadsheet-Read Update to 0.66 2016-07-24 08:30:28 +00:00
p5-Spreadsheet-ReadSXC Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Spreadsheet-WriteExcel Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Spreadsheet-XLSX Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Statistics-Descriptive Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Statistics-Distributions Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Statistics-TTest Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Test-Number-Delta Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
pari Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
pari-galdata Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
pari23 Standardize dependency pattern. 2016-08-15 18:44:10 +00:00
pcg Add pcg version 0.94 to the packages collection 2015-12-29 02:04:08 +00:00
pear-Math_BigInteger Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
pear-Numbers_Roman Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
pear-Numbers_Words Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
php-bcmath
php-stats Limit to php70 and php71, php55 and php56 require php-stats 1.0.5. 2016-09-08 03:26:09 +00:00
ppl Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
prng Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
pspp Recursive bump for all users of pgsql now that the default is 95. 2016-10-09 21:41:55 +00:00
py-abcpmc Don't include py-funcsig for Python older than 3.3. 2016-10-12 19:51:45 +00:00
py-almost Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-autograd Add py-autograd 1.1.5 2016-08-24 23:50:12 +00:00
py-cdecimal Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-ephem Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-ephem3 Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-fftw Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-fpconst Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-gmpy Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided 2016-08-28 15:48:28 +00:00
py-infinity Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-intervals Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-lmfit Add py-lmfit 0.9.5 2016-09-16 15:20:31 +00:00
py-mpmath Fix MASTER_SITES. 2016-06-10 09:06:41 +00:00
py-munkres Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-networkx This package does in fact support python-3.x. 2016-09-11 16:55:17 +00:00
py-noise Import py-noise-1.2.2 as math/py-noise. 2016-08-20 07:15:06 +00:00
py-numarray Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-Numeric Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-numexpr Update to 2.6.1. 2016-11-17 07:26:47 +00:00
py-numpy Updated py-numpy to 1.11.2. 2016-10-31 16:26:57 +00:00
py-pandas Prefer egg.mk to distutils.mk. Clean up. Add missing dependency on 2016-08-19 07:57:26 +00:00
py-patsy Import py-patsy-0.4.1 as math/py-patsy. 2016-07-15 07:33:54 +00:00
py-pytables py-pytables: remove quick hack for netbsds new compiler choice claiming 2016-11-03 00:07:52 +00:00
py-roman Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-rpy Remove some dead code, python-3.3 is no more. 2016-10-03 12:25:36 +00:00
py-Scientific Revbump post boost update 2016-10-07 18:25:29 +00:00
py-Scientific-doc Moved documentation from share/doc/html to share/doc/py-Scientific. 2016-07-24 20:44:51 +00:00
py-scipy Updated py-scipy to 0.18.0. 2016-08-19 10:54:12 +00:00
py-simpleeval Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-statsmodels Import py-statsmodels-0.8.0rc1 as math/py-statsmodels. 2016-07-15 07:35:50 +00:00
py-sympy Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided 2016-08-28 15:48:28 +00:00
qalculate gcc6 build fix 2016-07-16 03:49:56 +00:00
qalculate-bases Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
qalculate-currency Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
qalculate-gtk Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
qalculate-kde Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
qalculate-units Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
qhull Updated qhull to version 2015.2. 2016-02-03 16:05:56 +00:00
quadpack
R Update to 3.3.2 2016-11-06 02:08:16 +00:00
R-abind Update to 1.4.5 2016-07-27 02:37:10 +00:00
R-akima Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-bitops Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-car Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-CGIwithR Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
R-chron Update math/R-chron to 2.3-47. 2016-02-25 19:33:05 +00:00
R-circular Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-classInt Update to 0.1.23 2016-01-01 12:25:21 +00:00
R-clim.pact Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-combinat Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-DAAG Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-date Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-DBI Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-e1071 Update to 1.6.7 2016-01-01 12:03:03 +00:00
R-FNN Import FNN-1.1 as math/R-FNN. 2016-02-25 01:09:37 +00:00
R-gdata Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
R-genetics Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
R-geoR Update to 1.7.5.1 2016-02-24 06:41:46 +00:00
R-geoRglm Update to 0.9.8 2016-02-24 06:46:39 +00:00
R-GRASS Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-gstat Update to 1.1.2 2016-02-25 01:59:08 +00:00
R-gtools Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-httpRequest Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-hwde Update to 0.67 2016-04-09 11:14:28 +00:00
R-intervals Update to 0.15.1 2016-04-29 14:29:10 +00:00
R-ISwR Update to 2.0.7 2016-04-09 11:23:40 +00:00
R-lmm Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-mapproj Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-maps Instruct Makefile how to find AWK 2016-09-29 12:10:50 +00:00
R-MatrixModels Import MatrixModels 0.4-1 as math/R-MatrixModels. 2016-01-01 05:38:54 +00:00
R-minqa Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-mvtnorm Update to 1.0.5 2016-04-13 14:23:29 +00:00
R-ncdf Revbump post boost update 2016-10-07 18:25:29 +00:00
R-nloptr Import nloptr-1.0.4 as math/R-nloptr. 2016-04-17 04:09:44 +00:00
R-PHYLOGR Update to 1.0.8 2016-01-09 14:12:48 +00:00
R-pixmap Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-plyr Update to 1.8.3 2016-04-09 08:30:36 +00:00
R-quantreg Update to 5.21 2016-04-09 11:08:45 +00:00
R-R2HTML Update to 2.3.1 2016-01-09 14:17:37 +00:00
R-RandomFields Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-randomForest Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-RArcInfo Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-Rcmdr Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-RColorBrewer Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-RcppEigen Import RcppEigen-0.3.2.8.1 as math/R-RcppEigen. 2016-07-27 03:53:50 +00:00
R-RPostgreSQL Recursive bump for all users of pgsql now that the default is 95. 2016-10-09 21:41:55 +00:00
R-sgeostat Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-shapefiles Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-sp Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-spacetime Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-SparseM Some basic linear algebra functionality for sparse matrices is provided: 2016-01-01 05:23:13 +00:00
R-splancs Update to 2.01.39 2016-11-06 03:03:16 +00:00
R-statmod Update to 1.4.26 2016-11-06 02:54:08 +00:00
R-wle Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-XML Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-xts Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
R-zoo Update to 1.7.13 2016-11-06 02:43:56 +00:00
randlib
ranger Fix pthread use. 2016-08-26 17:17:22 +00:00
ruby-gsl Update ruby-gsl to 2.1.0.1. 2016-10-15 14:42:10 +00:00
ruby-narray Update ruby-narray to 0.6.1.2. 2016-03-09 15:07:35 +00:00
ruby-roo Update ruby-roo to 2.5.1. 2016-10-15 14:45:17 +00:00
ruby-spreadsheet Update ruby-spreadsheet to 1.1.3. 2016-10-15 14:46:54 +00:00
sc Remove unneeded patch files. 2016-03-24 10:56:20 +00:00
scilab Recursive revbump associated with ocaml update. 2016-05-05 11:45:36 +00:00
slatec Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
snns Fix missing X11BASE rpath. Bump revision. 2016-05-07 10:04:00 +00:00
speedcrunch Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
statist Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
superlu Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
svmlin Import svmlin, semi-supervised machine learning tool 2016-07-30 15:13:57 +00:00
tasp-vsipl Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
teapot Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
tex-apnum Updated to TexLive 2016: 2016-06-16 04:01:58 +00:00
tex-apnum-doc Updated to TexLive 2016: 2016-06-16 04:01:58 +00:00
tex-fp Add LICENSE 2016-01-30 04:05:49 +00:00
tex-fp-doc Add LICENSE 2016-01-30 04:05:49 +00:00
tex-kastrup Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
tex-kastrup-doc Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
texdrive Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
TinySVM Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
tochnog Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
udunits Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
units Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
vista Sort. 2015-12-29 06:23:20 +00:00
vowpal_wabbit Revbump post boost update 2016-10-07 18:25:29 +00:00
wxmaxima Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
xeukleides10 Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
xfractint Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
xgap Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
xldlas Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
xlife Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
xlispstat Use OPSYSVARS. 2016-02-25 15:26:55 +00:00
xmgr Revbump post boost update 2016-10-07 18:25:29 +00:00
xylib Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
yacas Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
yorick Add SHA512 digests for distfiles for math category 2015-11-03 23:33:26 +00:00
z3 gcc6 build fix 2016-07-16 04:02:13 +00:00
Makefile Added math/py-abcpmc 2016-10-12 00:28:44 +00:00