pkgsrc-Changes archive

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

CVS commit: pkgsrc/math/octave



Module Name:    pkgsrc
Committed By:   maya
Date:           Sun Aug 12 08:33:55 UTC 2018

Modified Files:
        pkgsrc/math/octave: Makefile PLIST distinfo
        pkgsrc/math/octave/patches: patch-configure patch-configure.ac
            patch-libinterp_dldfcn_config-module.awk
            patch-libinterp_dldfcn_module.mk
            patch-liboctave_operators_mx-inlines.cc

Log Message:
Octave: update to 4.4.1

Remove hack that had a high chance of resulting in a dysfunctional package
qttools can't be a build dependency because we link against something
in it.

XXX pkgsrc claims this package has work directory references

Summary of important user-visible changes for version 4.4 (2018-04-30):
----------------------------------------------------------------------

 ** A graphical Variable Editor has been added to the GUI interface.
    It uses a spreadsheet-like interface for quick, intuitive editing
    of variables.  The Variable Editor is launched by double-clicking
    on a variable name in the Workspace Window or by typing
    "openvar VARIABLE_NAME" in the Command Window.

 ** On systems with 64-bit pointers, --enable-64 is now the default and
    Octave always uses 64-bit indexing.  However, if the configure
    script determines that the BLAS library uses 32-bit integers, then
    operations using the following libraries are limited to arrays with
    dimensions that are smaller than 2^31 elements:

      BLAS  LAPACK  QRUPDATE  SuiteSparse  ARPACK

    Additionally, the following libraries use "int" internally, so
    maximum problem sizes are always limited:

      glpk  Qhull

 ** The octave command no longer starts the GUI by default.  Most users
    starting Octave from a shell were expecting the command line
    interface, and desktop launchers already required the `--force-gui'
    option.  With this change, desktop launchers should be modified to
    use the new option `--gui'.  The previous `--force-gui' option will
    continue to work, and maps to `--gui', but it will be removed in
    Octave 6.

 ** A known bug in Qt (https://bugreports.qt.io/browse/QTBUG-55357) is
    addressed by limiting GUI sub-panel relocation capabilities for Qt
    versions in the range >= 5.6.1 and < 5.7.1.  However, this may not
    thoroughly avoid issues on all platforms.

 ** A new container data type--containers.Map--is available.  Map is a
    key/value storage container (a.k.a, a hash) that efficiently allows
    storing and retrieving values by name, rather than by position which
    is how arrays work.

 ** The bareword "import" is now recognized in scripts and functions.
    However, the functionality to import functions and classes from
    other namespaces into the local scope has not yet been implemented.
    Attempting to use "import" will provoke an error message.

 ** hex2num and num2hex now work for integer and char types and num2hex
    may optionally return a cell array of strings instead of a character
    array.  If given a cell array of strings, hex2num now returns a
    numeric array of the same size as the input cell array.  Previously,
    hex2num would accept a cell array of strings of arbitrary dimension
    but would always return a column vector.

 ** New special functions cosint, sinint, and gammaincinv have been added.

 ** Special functions in Octave have been rewritten for larger input
    domains, better accuracy, and additional options.
    * gammainc now accepts negative real values for X.
    * improved accuracy for gammainc, betainc, betaincinv, expint.
    * gammainc has new options "scaledlower" and "scaledupper".
    * betainc, betaincinv have new option "upper".

 ** The "names" option used in regular expressions now returns a struct
    array, rather than a struct with a cell array for each field.  This
    change was made for Matlab compatibility.

 ** The quadcc function now uses both absolute tolerance and relative
    tolerance to determine the stopping criteria for an integration.
    To be compatible with other quadXXX functions, such as quadgk, the
    calling syntax has changed to

      quadcc (f, a, b, [AbsTol, [RelTol]])

    To update existing code, change instances of RelTol to [0, RelTol].

      quadcc (f, a, b, tol) => quadcc (f, a, b, [0, tol])

    A warning that a single tolerance input is now interpreted as an
    absolute tolerance will be issued in Octave versions 4.4 and 5,
    after which it will be removed.  The warning has ID
    "Octave:quadcc:RelTol-conversion" and can be disabled with

      warning ("off", "Octave:quadcc:RelTol-conversion")

 ** The qr function now returns a standard factorization unless
    explicitly instructed to perform an economy factorization by using a
    final argument of 0.

 ** The Qt graphics toolkit now supports offscreen printing without osmesa
    if Octave was built with Qt >= 5.1.

 ** The built-in pager for display of large data is now disabled by
    default.  To re-enable it for every Octave session add the following
    to your .octaverc file:

      more on;

 ** The FLTK toolkit is no longer prioritized for development.  The
    number of Octave Maintainers is too small to support three different
    graphic toolkits.  New development will target the Qt toolkit.
    While no longer prioritized, the FLTK toolkit is not deprecated and
    there is no schedule for its removal.

 ** The graphic object property "PickableParts" has been implemented
    which controls whether an object can accept mouse clicks.

 ** The graphic object property "Interruptible" has been fully
    implemented which controls whether a running callback function can
    be interrupted by another callback function.

 ** The graphic object property "HitTest" has been updated to be fully
    compatible with Matlab.

 ** Text objects now implement the properties "BackgroundColor",
    "EdgeColor", "LineStyle", "LineWidth", and "Margin".

 ** An initial implementation of alpha transparency has been made for
    patch and surface objects.  Printing to svg and pdf is supported.

 ** ishandle now returns true for both graphics handle objects and
    Java objects.  The latter change was made for Matlab compatibility.
    Use ishghandle or isgraphics if it is important not to include Java
    objects.

 ** The pkg command now accepts a URL as an argument, allowing a valid
    Octave package to be installed from any remote host with one command,
    for example

      pkg install https://example.org/download/example-package.tar.gz

 ** The following statistical functions have been moved from core
    Octave to the statistics package available from Octave Forge.

    BASE
      cloglog
      logit
      prctile
      probit
      qqplot
      table  (renamed to crosstab)

    DISTRIBUTIONS
      betacdf
      betainv
      betapdf
      betarnd
      binocdf
      binoinv
      binopdf
      binornd
      cauchy_cdf
      cauchy_inv
      cauchy_pdf
      cauchy_rnd
      chi2cdf
      chi2inv
      chi2pdf
      chi2rnd
      expcdf
      expinv
      exppdf
      exprnd
      fcdf
      finv
      fpdf
      frnd
      gamcdf
      gaminv
      gampdf
      gamrnd
      geocdf
      geoinv
      geopdf
      geornd
      hygecdf
      hygeinv
      hygepdf
      hygernd
      kolmogorov_smirnov_cdf
      laplace_cdf
      laplace_inv
      laplace_pdf
      laplace_rnd
      logistic_cdf
      logistic_inv
      logistic_pdf
      logistic_rnd
      logncdf
      logninv
      lognpdf
      lognrnd
      nbincdf
      nbininv
      nbinpdf
      nbinrnd
      normcdf
      norminv
      normpdf
      normrnd
      poisscdf
      poissinv
      poisspdf
      poissrnd
      stdnormal_cdf
      stdnormal_inv
      stdnormal_pdf
      stdnormal_rnd
      tcdf
      tinv
      tpdf
      trnd
      unidcdf
      unidinv
      unidpdf
      unidrnd
      unifcdf
      unifinv
      unifpdf
      unifrnd
      wblcdf
      wblinv
      wblpdf
      wblrnd
      wienrnd

    MODELS
      logistic_regression

    TESTS
      anova
      bartlett_test
      chisquare_test_homogeneity
      chisquare_test_independence
      cor_test
      f_test_regression
      hotelling_test
      hotelling_test_2
      kolmogorov_smirnov_test
      kolmogorov_smirnov_test_2
      kruskal_wallis_test
      manova
      mcnemar_test
      prop_test_2
      run_test
      sign_test
      t_test
      t_test_2
      t_test_regression
      u_test
      var_test
      welch_test
      wilcoxon_test
      z_test
      z_test_2

 ** The following image functions have been moved from core Octave to
    the image package available from Octave Forge.

      ntsc2rgb
      rgb2ntsc

 ** Other new functions added in 4.4:

      bounds
      camlookat
      camorbit
      campos
      camroll
      camtarget
      camup
      camva
      camzoom
      corrcoef
      cosint
      decic
      erase
      gammaincinv
      getframe
      groot
      gsvd
      hgtransform
      humps
      integral
      integral2
      integral3
      isgraphics
      isstring
      mad
      ode15i
      ode15s
      openvar
      quad2d
      repelem
      rgb2gray
      rticks
      sinint
      tfqmr
      thetaticks
      vecnorm
      winqueryreg
      xticklabels
      xticks
      yticklabels
      yticks
      zticklabels
      zticks

 ** Deprecated functions.

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

      Function             | Replacement
      ---------------------|------------------
      chop                 | sprintf for visual results
      desktop              | isguirunning
      tmpnam               | tempname
      toascii              | double
      java2mat             | __java2mat__

 ** The following functions were deprecated in Octave 4.0 and have been
    removed from Octave 4.4.

      allow_noninteger_range_as_index
      bicubic
      delaunay3
      do_braindead_shortcircuit_evaluation
      dump_prefs
      find_dir_in_path
      finite
      fmod
      fnmatch
      gmap40
      loadaudio
      luinc
      mouse_wheel_zoom
      nfields
      octave_tmp_file_name
      playaudio
      saveaudio
      setaudio
      syl
      usage

 ** The "Octave:undefined-return-values" warning ID is obsolete.  Octave
    now throws an error for any attempts to assign undefined values that
    might be returned from functions.

 ** Deprecated graphics properties.

    The following properties or allowed corresponding values have been
    deprecated in Octave 4.4 and will be removed from Octave 6 (or whatever
    version is the second major release after 4.4):

      Object               | Property                | Value
      ---------------------|-------------------------|-------------------
      figure               | doublebuffer            |
                           | mincolormap             |
                           | wvisual                 |
                           | wvisualmode             |
                           | xdisplay                |
                           | xvisual                 |
                           | xvisualmode             |
      axes                 | drawmode                |
      annotation           | edgecolor ("rectangle") |
      text                 | fontweight              | "demi" and "light"
      uicontrol            | fontweight              | "demi" and "light"
      uipanel              | fontweight              | "demi" and "light"
      uibuttongroup        | fontweight              | "demi" and "light"

 ** The rectangle and ellipse annotation property "edgecolor" has been
    deprecated and will be removed from Octave 6 (or whatever version
    is the second major release after 4.4).  Use the property "color"
    instead.

 ** The header file oct-alloc.h has been removed along with the macros
    that it defined (DECLARE_OCTAVE_ALLOCATOR, DEFINE_OCTAVE_ALLOCATOR,
    and DEFINE_OCTAVE_ALLOCATOR2).


To generate a diff of this commit:
cvs rdiff -u -r1.173 -r1.174 pkgsrc/math/octave/Makefile
cvs rdiff -u -r1.30 -r1.31 pkgsrc/math/octave/PLIST
cvs rdiff -u -r1.53 -r1.54 pkgsrc/math/octave/distinfo
cvs rdiff -u -r1.6 -r1.7 pkgsrc/math/octave/patches/patch-configure
cvs rdiff -u -r1.4 -r1.5 pkgsrc/math/octave/patches/patch-configure.ac
cvs rdiff -u -r1.2 -r1.3 \
    pkgsrc/math/octave/patches/patch-libinterp_dldfcn_config-module.awk \
    pkgsrc/math/octave/patches/patch-libinterp_dldfcn_module.mk
cvs rdiff -u -r1.3 -r1.4 \
    pkgsrc/math/octave/patches/patch-liboctave_operators_mx-inlines.cc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/math/octave/Makefile
diff -u pkgsrc/math/octave/Makefile:1.173 pkgsrc/math/octave/Makefile:1.174
--- pkgsrc/math/octave/Makefile:1.173   Fri Jul 20 03:34:20 2018
+++ pkgsrc/math/octave/Makefile Sun Aug 12 08:33:55 2018
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.173 2018/07/20 03:34:20 ryoon Exp $
+# $NetBSD: Makefile,v 1.174 2018/08/12 08:33:55 maya Exp $
 
-DISTNAME=      octave-4.2.0
-PKGREVISION=   27
+DISTNAME=      octave-4.4.1
 CATEGORIES=    math
 MASTER_SITES=  ${MASTER_SITE_GNU:=octave/}
 
@@ -53,9 +52,6 @@ CONFIGURE_ARGS.Darwin+=       --without-OSMesa
 # We use this to install .oct files so it doesn't strip them.
 CONFIGURE_ENV+=                INSTALL_LIB=${INSTALL_LIB:Q}
 
-# XXX Shared object "libgfortran.so.3" not found
-CONFIGURE_ENV+=                octave_cv_sizeof_fortran_integer=yes
-
 .include "options.mk"
 
 INFO_FILES=    yes
@@ -122,7 +118,6 @@ post-install:
 .include "../../x11/libX11/buildlink3.mk"
 .endif
 .include "../../x11/qt5-qtbase/buildlink3.mk"
-BUILDLINK_DEPMETHOD.qt5-qttools?=build
 .include "../../x11/qt5-qttools/buildlink3.mk"
 BUILDLINK_DEPMETHOD.gperf?=build
 .include "../../devel/gperf/buildlink3.mk"

Index: pkgsrc/math/octave/PLIST
diff -u pkgsrc/math/octave/PLIST:1.30 pkgsrc/math/octave/PLIST:1.31
--- pkgsrc/math/octave/PLIST:1.30       Mon Jul  3 13:40:00 2017
+++ pkgsrc/math/octave/PLIST    Sun Aug 12 08:33:55 2018
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.30 2017/07/03 13:40:00 maya Exp $
+@comment $NetBSD: PLIST,v 1.31 2018/08/12 08:33:55 maya Exp $
 bin/mkoctfile
 bin/mkoctfile-${PKGVERSION}
 bin/octave
@@ -66,12 +66,12 @@ include/${PKGNAME}/octave/base-text-rend
 include/${PKGNAME}/octave/boolMatrix.h
 include/${PKGNAME}/octave/boolNDArray.h
 include/${PKGNAME}/octave/boolSparse.h
+include/${PKGNAME}/octave/bp-table.h
 include/${PKGNAME}/octave/bsxfun-decl.h
 include/${PKGNAME}/octave/bsxfun-defs.cc
 include/${PKGNAME}/octave/bsxfun.h
 include/${PKGNAME}/octave/build-env.h
 include/${PKGNAME}/octave/builtin-defun-decls.h
-include/${PKGNAME}/octave/builtins.h
 include/${PKGNAME}/octave/byte-swap.h
 include/${PKGNAME}/octave/c-file-ptr-stream.h
 include/${PKGNAME}/octave/call-stack.h
@@ -84,7 +84,6 @@ include/${PKGNAME}/octave/chol.h
 include/${PKGNAME}/octave/cmd-edit.h
 include/${PKGNAME}/octave/cmd-hist.h
 include/${PKGNAME}/octave/comment-list.h
-include/${PKGNAME}/octave/config.h
 include/${PKGNAME}/octave/dColVector.h
 include/${PKGNAME}/octave/dDiagMatrix.h
 include/${PKGNAME}/octave/dMatrix.h
@@ -93,7 +92,6 @@ include/${PKGNAME}/octave/dRowVector.h
 include/${PKGNAME}/octave/dSparse.h
 include/${PKGNAME}/octave/data-conv.h
 include/${PKGNAME}/octave/data.h
-include/${PKGNAME}/octave/debug.h
 include/${PKGNAME}/octave/defaults.h
 include/${PKGNAME}/octave/defun-dld.h
 include/${PKGNAME}/octave/defun-int.h
@@ -104,6 +102,7 @@ include/${PKGNAME}/octave/dirfns.h
 include/${PKGNAME}/octave/display.h
 include/${PKGNAME}/octave/dynamic-ld.h
 include/${PKGNAME}/octave/eigs-base.h
+include/${PKGNAME}/octave/environment.h
 include/${PKGNAME}/octave/error.h
 include/${PKGNAME}/octave/errwarn.h
 include/${PKGNAME}/octave/event-queue.h
@@ -119,6 +118,8 @@ include/${PKGNAME}/octave/fEIG.h
 include/${PKGNAME}/octave/fMatrix.h
 include/${PKGNAME}/octave/fNDArray.h
 include/${PKGNAME}/octave/fRowVector.h
+include/${PKGNAME}/octave/fcn-info.h
+include/${PKGNAME}/octave/file-info.h
 include/${PKGNAME}/octave/file-io.h
 include/${PKGNAME}/octave/file-ops.h
 include/${PKGNAME}/octave/file-stat.h
@@ -128,9 +129,13 @@ include/${PKGNAME}/octave/gepbalance.h
 include/${PKGNAME}/octave/gl-render.h
 include/${PKGNAME}/octave/gl2ps-print.h
 include/${PKGNAME}/octave/glob-match.h
+include/${PKGNAME}/octave/graphics-handle.h
 include/${PKGNAME}/octave/graphics-props.cc
+include/${PKGNAME}/octave/graphics-toolkit.h
 include/${PKGNAME}/octave/graphics.h
 include/${PKGNAME}/octave/gripes.h
+include/${PKGNAME}/octave/gsvd.h
+include/${PKGNAME}/octave/gtk-manager.h
 include/${PKGNAME}/octave/help.h
 include/${PKGNAME}/octave/hess.h
 include/${PKGNAME}/octave/hook-fcn.h
@@ -160,15 +165,14 @@ include/${PKGNAME}/octave/lo-fftpack-pro
 include/${PKGNAME}/octave/lo-hash.h
 include/${PKGNAME}/octave/lo-ieee.h
 include/${PKGNAME}/octave/lo-lapack-proto.h
-include/${PKGNAME}/octave/lo-macros.h
 include/${PKGNAME}/octave/lo-mappers.h
-include/${PKGNAME}/octave/lo-math.h
 include/${PKGNAME}/octave/lo-qrupdate-proto.h
 include/${PKGNAME}/octave/lo-ranlib-proto.h
 include/${PKGNAME}/octave/lo-regexp.h
 include/${PKGNAME}/octave/lo-slatec-proto.h
 include/${PKGNAME}/octave/lo-specfun.h
 include/${PKGNAME}/octave/lo-sysdep.h
+include/${PKGNAME}/octave/lo-sysinfo.h
 include/${PKGNAME}/octave/lo-traits.h
 include/${PKGNAME}/octave/lo-utils.h
 include/${PKGNAME}/octave/load-path.h
@@ -517,7 +521,6 @@ include/${PKGNAME}/octave/mx-ui8nda-ui32
 include/${PKGNAME}/octave/mx-ui8nda-ui64.h
 include/${PKGNAME}/octave/mx-ui8nda-ui64nda.h
 include/${PKGNAME}/octave/mxarray.h
-include/${PKGNAME}/octave/oct-alloc.h
 include/${PKGNAME}/octave/oct-base64.h
 include/${PKGNAME}/octave/oct-binmap.h
 include/${PKGNAME}/octave/oct-cmplx.h
@@ -566,7 +569,6 @@ include/${PKGNAME}/octave/octave-link.h
 include/${PKGNAME}/octave/octave-preserve-stream-state.h
 include/${PKGNAME}/octave/octave.h
 include/${PKGNAME}/octave/ops.h
-include/${PKGNAME}/octave/options-usage.h
 include/${PKGNAME}/octave/ov-base-diag.h
 include/${PKGNAME}/octave/ov-base-int.h
 include/${PKGNAME}/octave/ov-base-mat.h
@@ -627,6 +629,7 @@ include/${PKGNAME}/octave/ovl.h
 include/${PKGNAME}/octave/pager.h
 include/${PKGNAME}/octave/parse.h
 include/${PKGNAME}/octave/pathsearch.h
+include/${PKGNAME}/octave/pr-flt-fmt.h
 include/${PKGNAME}/octave/pr-output.h
 include/${PKGNAME}/octave/procstream.h
 include/${PKGNAME}/octave/profiler.h
@@ -659,6 +662,7 @@ include/${PKGNAME}/octave/pt-misc.h
 include/${PKGNAME}/octave/pt-pr-code.h
 include/${PKGNAME}/octave/pt-select.h
 include/${PKGNAME}/octave/pt-stmt.h
+include/${PKGNAME}/octave/pt-tm-const.h
 include/${PKGNAME}/octave/pt-unop.h
 include/${PKGNAME}/octave/pt-walk.h
 include/${PKGNAME}/octave/pt.h
@@ -697,8 +701,9 @@ include/${PKGNAME}/octave/sparse-util.h
 include/${PKGNAME}/octave/sparse-xdiv.h
 include/${PKGNAME}/octave/sparse-xpow.h
 include/${PKGNAME}/octave/str-vec.h
-include/${PKGNAME}/octave/sun-utils.h
 include/${PKGNAME}/octave/svd.h
+include/${PKGNAME}/octave/symrec.h
+include/${PKGNAME}/octave/symscope.h
 include/${PKGNAME}/octave/symtab.h
 include/${PKGNAME}/octave/sysdep.h
 include/${PKGNAME}/octave/text-renderer.h
@@ -710,6 +715,7 @@ include/${PKGNAME}/octave/uint32NDArray.
 include/${PKGNAME}/octave/uint64NDArray.h
 include/${PKGNAME}/octave/uint8NDArray.h
 include/${PKGNAME}/octave/unwind-prot.h
+include/${PKGNAME}/octave/url-handle-manager.h
 include/${PKGNAME}/octave/url-transfer.h
 include/${PKGNAME}/octave/utils.h
 include/${PKGNAME}/octave/variables.h
@@ -739,19 +745,17 @@ include/${PKGNAME}/octave/vx-rv-crv.h
 include/${PKGNAME}/octave/vx-rv-cs.h
 include/${PKGNAME}/octave/vx-s-ccv.h
 include/${PKGNAME}/octave/vx-s-crv.h
-include/${PKGNAME}/octave/workspace-element.h
 include/${PKGNAME}/octave/xdiv.h
 include/${PKGNAME}/octave/xnorm.h
 include/${PKGNAME}/octave/xpow.h
 include/${PKGNAME}/octave/zfstream.h
-info/liboctave.info
-info/octave.info
 lib/octave/${PKGVERSION}/__delaunayn__.a
 lib/octave/${PKGVERSION}/__eigs__.a
 lib/octave/${PKGVERSION}/__fltk_uigetfile__.a
 lib/octave/${PKGVERSION}/__glpk__.a
 lib/octave/${PKGVERSION}/__init_fltk__.a
 lib/octave/${PKGVERSION}/__init_gnuplot__.a
+lib/octave/${PKGVERSION}/__ode15__.a
 lib/octave/${PKGVERSION}/__osmesa_print__.a
 lib/octave/${PKGVERSION}/__voronoi__.a
 lib/octave/${PKGVERSION}/amd.a
@@ -767,38 +771,34 @@ lib/octave/${PKGVERSION}/gzip.a
 lib/octave/${PKGVERSION}/liboctave.la
 lib/octave/${PKGVERSION}/liboctgui.la
 lib/octave/${PKGVERSION}/liboctinterp.la
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/PKG_ADD
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__delaunayn__.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__eigs__.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__fltk_uigetfile__.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__glpk__.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__init_fltk__.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__init_gnuplot__.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__osmesa_print__.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__voronoi__.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/amd.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/audiodevinfo.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/audioread.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/ccolamd.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/chol.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/colamd.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/convhulln.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/dmperm.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/fftw.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/gzip.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/qr.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/symbfact.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/symrcm.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/PKG_ADD
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/__delaunayn__.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/__eigs__.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/__fltk_uigetfile__.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/__glpk__.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/__init_fltk__.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/__init_gnuplot__.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/__ode15__.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/__osmesa_print__.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/__voronoi__.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/amd.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/audiodevinfo.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/audioread.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/ccolamd.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/chol.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/colamd.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/convhulln.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/dmperm.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/fftw.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/gzip.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/qr.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/symbfact.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/symrcm.oct
 lib/octave/${PKGVERSION}/qr.a
 lib/octave/${PKGVERSION}/symbfact.a
 lib/octave/${PKGVERSION}/symrcm.a
-libexec/octave/${PKGVERSION}/exec/${MACHINE_GNU_PLATFORM}/octave-gui
-man/man1/mkoctfile.1
-man/man1/octave-cli.1
-man/man1/octave-config.1
-man/man1/octave.1
-share/appdata/www.octave.org-octave.appdata.xml
-share/applications/www.octave.org-octave.desktop
+libexec/octave/${PKGVERSION}/exec/x86_64--netbsd/octave-gui
+share/applications/org.octave.Octave.desktop
 share/icons/hicolor/128x128/apps/octave.png
 share/icons/hicolor/16x16/apps/octave.png
 share/icons/hicolor/22x22/apps/octave.png
@@ -809,9 +809,12 @@ share/icons/hicolor/48x48/apps/octave.pn
 share/icons/hicolor/512x512/apps/octave.png
 share/icons/hicolor/64x64/apps/octave.png
 share/icons/hicolor/scalable/apps/octave.svg
+share/metainfo/org.octave.Octave.appdata.xml
 share/octave/${PKGVERSION}/data/penny.mat
 share/octave/${PKGVERSION}/doc/liboctave.pdf
 share/octave/${PKGVERSION}/doc/octave.pdf
+share/octave/${PKGVERSION}/doc/octave_interpreter.qch
+share/octave/${PKGVERSION}/doc/octave_interpreter.qhc
 share/octave/${PKGVERSION}/doc/refcard-a4.pdf
 share/octave/${PKGVERSION}/doc/refcard-legal.pdf
 share/octave/${PKGVERSION}/doc/refcard-letter.pdf
@@ -849,6 +852,8 @@ share/octave/${PKGVERSION}/etc/tests/fix
 share/octave/${PKGVERSION}/etc/tests/fixed/bug-35448/fA.m
 share/octave/${PKGVERSION}/etc/tests/fixed/bug-35448/fB.m
 share/octave/${PKGVERSION}/etc/tests/fixed/bug-35448/fC.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-35881/bug-35881.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-35881/bug35881.m
 share/octave/${PKGVERSION}/etc/tests/fixed/bug-36025/@testclass/one.m
 share/octave/${PKGVERSION}/etc/tests/fixed/bug-36025/@testclass/testclass.m
 share/octave/${PKGVERSION}/etc/tests/fixed/bug-36025/@testclass/two.m
@@ -863,15 +868,68 @@ share/octave/${PKGVERSION}/etc/tests/fix
 share/octave/${PKGVERSION}/etc/tests/fixed/bug-38691/dir2/func1.m
 share/octave/${PKGVERSION}/etc/tests/fixed/bug-38691/dir2/func2.m
 share/octave/${PKGVERSION}/etc/tests/fixed/bug-38691/dir2/func3.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-41723/bug-41723.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-41723/class_bug41723.m
 share/octave/${PKGVERSION}/etc/tests/fixed/bug-44940/bug-44940.tst
 share/octave/${PKGVERSION}/etc/tests/fixed/bug-44940/class_bug44940.m
 share/octave/${PKGVERSION}/etc/tests/fixed/bug-46330.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-46660/bug-46660.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-46660/class_bug46660.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-49904.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/bug-50014.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_nested_function.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_nested_in_subfunction_ok.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_nested_parent_function.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_parent_nested2.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_parent_nested_function.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_primary_nested_function.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_primary_subfunction.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_primary_subfunction_old_syntax.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_subfunction.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_subfunction_old_syntax.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_subfunction_separate_scope_ok.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50035/@bug50035/bug50035.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50035/@bug50035/display.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50035/bug-50035.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50716/bug-50716.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50716/myclass.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-51192/bug-51192.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-51192/class_bug51192.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-51532/+package_bug51532/foo.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-51532/bug-51532.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-51534/bug-51534.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-51534/child_bug51534.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-51534/parent_bug51534.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-51599/bug-51599.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-51599/class_bug51599.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-52075/bug-52075.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-52075/class_bug52075.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-52722/bug-52722.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-52722/define_globals.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-52722/include_globals.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-53027/bug-53027.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-53027/globals53027.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-53027/gtest53027.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-53027/ntest53027a.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-53027/ntest53027b.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-53027/ntest53027c.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-53579.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-53599.tst
 share/octave/${PKGVERSION}/etc/tests/fixed/class-concat/@foo/foo.m
 share/octave/${PKGVERSION}/etc/tests/fixed/class-concat/class-concat.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/classdef-multiple-inheritance/base_1.m
+share/octave/${PKGVERSION}/etc/tests/fixed/classdef-multiple-inheritance/base_2.m
+share/octave/${PKGVERSION}/etc/tests/fixed/classdef-multiple-inheritance/child_from_base_1.m
+share/octave/${PKGVERSION}/etc/tests/fixed/classdef-multiple-inheritance/child_from_base_1_and_2.m
+share/octave/${PKGVERSION}/etc/tests/fixed/classdef-multiple-inheritance/classdef-multiple-inheritance.tst
 share/octave/${PKGVERSION}/etc/tests/fixed/classdef/classdef.tst
 share/octave/${PKGVERSION}/etc/tests/fixed/classdef/foo_method_changes_property_size.m
 share/octave/${PKGVERSION}/etc/tests/fixed/classdef/foo_static_method_constant_property.m
 share/octave/${PKGVERSION}/etc/tests/fixed/classdef/foo_value_class.m
+share/octave/${PKGVERSION}/etc/tests/fixed/classdef/plist_t1.m
+share/octave/${PKGVERSION}/etc/tests/fixed/classdef/plist_t2.m
+share/octave/${PKGVERSION}/etc/tests/fixed/classdef/plist_t3.m
+share/octave/${PKGVERSION}/etc/tests/fixed/classdef/struct_wrapper.m
 share/octave/${PKGVERSION}/etc/tests/fixed/classes/@Blork/Blork.m
 share/octave/${PKGVERSION}/etc/tests/fixed/classes/@Blork/bleek.m
 share/octave/${PKGVERSION}/etc/tests/fixed/classes/@Blork/display.m
@@ -975,6 +1033,7 @@ share/octave/${PKGVERSION}/etc/tests/fix
 share/octave/${PKGVERSION}/etc/tests/fixed/ctor-vs-method/@parent/parent.m
 share/octave/${PKGVERSION}/etc/tests/fixed/ctor-vs-method/__trace__.m
 share/octave/${PKGVERSION}/etc/tests/fixed/ctor-vs-method/ctor-vs-method.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/deprecate-props.tst
 share/octave/${PKGVERSION}/etc/tests/fixed/diag-perm.tst
 share/octave/${PKGVERSION}/etc/tests/fixed/error.tst
 share/octave/${PKGVERSION}/etc/tests/fixed/eval-catch.tst
@@ -993,7 +1052,10 @@ share/octave/${PKGVERSION}/etc/tests/fix
 share/octave/${PKGVERSION}/etc/tests/fixed/index.tst
 share/octave/${PKGVERSION}/etc/tests/fixed/io.tst
 share/octave/${PKGVERSION}/etc/tests/fixed/jit.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/leftdiv.tst
 share/octave/${PKGVERSION}/etc/tests/fixed/line-continue.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/local-functions/local_function_eval.m
+share/octave/${PKGVERSION}/etc/tests/fixed/local-functions/local_functions.tst
 share/octave/${PKGVERSION}/etc/tests/fixed/logical-index.tst
 share/octave/${PKGVERSION}/etc/tests/fixed/nest/arg_nest.m
 share/octave/${PKGVERSION}/etc/tests/fixed/nest/arg_ret.m
@@ -1024,6 +1086,7 @@ share/octave/${PKGVERSION}/etc/tests/fix
 share/octave/${PKGVERSION}/etc/tests/fixed/range.tst
 share/octave/${PKGVERSION}/etc/tests/fixed/recursion.tst
 share/octave/${PKGVERSION}/etc/tests/fixed/return.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/single-index.tst
 share/octave/${PKGVERSION}/etc/tests/fixed/slice.tst
 share/octave/${PKGVERSION}/etc/tests/fixed/sparse.tst
 share/octave/${PKGVERSION}/etc/tests/fixed/struct.tst
@@ -1036,7 +1099,6 @@ share/octave/${PKGVERSION}/etc/tests/fix
 share/octave/${PKGVERSION}/etc/tests/fixed/while.tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/Cell.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/__contourc__.cc-tst
-share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/__dispatch__.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/__dsearchn__.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/__ichol__.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/__ilu__.cc-tst
@@ -1045,10 +1107,11 @@ share/octave/${PKGVERSION}/etc/tests/lib
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/__pchip_deriv__.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/__qp__.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/besselj.cc-tst
-share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/betainc.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/bitfcns.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/bsxfun.cc-tst
+share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/call-stack.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/cellfun.cc-tst
+share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/colloc.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/conv2.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/dassl.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/data.cc-tst
@@ -1060,6 +1123,7 @@ share/octave/${PKGVERSION}/etc/tests/lib
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/dot.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/eig.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/ellipj.cc-tst
+share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/environment.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/error.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/errwarn.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/fft.cc-tst
@@ -1067,11 +1131,11 @@ share/octave/${PKGVERSION}/etc/tests/lib
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/file-io.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/filter.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/find.cc-tst
-share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/gammainc.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/gcd.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/getrusage.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/givens.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/graphics.cc-tst
+share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/gsvd.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/hash.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/help.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/hess.cc-tst
@@ -1088,6 +1152,7 @@ share/octave/${PKGVERSION}/etc/tests/lib
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/mgorth.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/nproc.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/oct-map.cc-tst
+share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/octave-link.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/ordschur.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/pinv.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/corefcn/pr-output.cc-tst
@@ -1129,6 +1194,7 @@ share/octave/${PKGVERSION}/etc/tests/lib
 share/octave/${PKGVERSION}/etc/tests/libinterp/dldfcn/__voronoi__.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/dldfcn/amd.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/dldfcn/audiodevinfo.cc-tst
+share/octave/${PKGVERSION}/etc/tests/libinterp/dldfcn/audioread.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/dldfcn/chol.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/dldfcn/convhulln.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/dldfcn/dmperm.cc-tst
@@ -1144,9 +1210,9 @@ share/octave/${PKGVERSION}/etc/tests/lib
 share/octave/${PKGVERSION}/etc/tests/libinterp/octave-value/ov-fcn-handle.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/octave-value/ov-fcn-inline.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/octave-value/ov-java.cc-tst
+share/octave/${PKGVERSION}/etc/tests/libinterp/octave-value/ov-lazy-idx.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/octave-value/ov-null-mat.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/octave-value/ov-oncleanup.cc-tst
-share/octave/${PKGVERSION}/etc/tests/libinterp/octave-value/ov-range.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/octave-value/ov-struct.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/octave-value/ov-typeinfo.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/octave-value/ov-usr-fcn.cc-tst
@@ -1155,7 +1221,6 @@ share/octave/${PKGVERSION}/etc/tests/lib
 share/octave/${PKGVERSION}/etc/tests/libinterp/parse-tree/lex.ll-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/parse-tree/oct-parse.in.yy-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/parse-tree/pt-assign.cc-tst
-share/octave/${PKGVERSION}/etc/tests/libinterp/parse-tree/pt-binop.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/parse-tree/pt-eval.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/parse-tree/pt-fcn-handle.cc-tst
 share/octave/${PKGVERSION}/etc/tests/libinterp/parse-tree/pt-idx.cc-tst
@@ -1170,11 +1235,16 @@ share/octave/${PKGVERSION}/etc/tests/lib
 share/octave/${PKGVERSION}/etc/tests/liboctave/array/fMatrix.cc-tst
 share/octave/${PKGVERSION}/etc/tests/liboctave/array/idx-vector.cc-tst
 share/octave/${PKGVERSION}/etc/tests/liboctave/util/oct-inttypes.cc-tst
+share/octave/${PKGVERSION}/fonts/FreeSans.otf
+share/octave/${PKGVERSION}/fonts/FreeSansBold.otf
+share/octave/${PKGVERSION}/fonts/FreeSansBoldOblique.otf
+share/octave/${PKGVERSION}/fonts/FreeSansOblique.otf
 share/octave/${PKGVERSION}/imagelib/default.img
 share/octave/${PKGVERSION}/imagelib/octave-logo.ico
 share/octave/${PKGVERSION}/imagelib/octave-logo.svg
 share/octave/${PKGVERSION}/imagelib/octave-sombrero.png
 share/octave/${PKGVERSION}/locale/be_BY.qm
+share/octave/${PKGVERSION}/locale/ca_ES.qm
 share/octave/${PKGVERSION}/locale/de_DE.qm
 share/octave/${PKGVERSION}/locale/en_US.qm
 share/octave/${PKGVERSION}/locale/es_ES.qm
@@ -1188,13 +1258,14 @@ share/octave/${PKGVERSION}/locale/pt_PT.
 share/octave/${PKGVERSION}/locale/ru_RU.qm
 share/octave/${PKGVERSION}/locale/uk_UA.qm
 share/octave/${PKGVERSION}/locale/zh_CN.qm
+share/octave/${PKGVERSION}/m/+containers/Map.m
 share/octave/${PKGVERSION}/m/@ftp/ascii.m
 share/octave/${PKGVERSION}/m/@ftp/binary.m
 share/octave/${PKGVERSION}/m/@ftp/cd.m
 share/octave/${PKGVERSION}/m/@ftp/close.m
 share/octave/${PKGVERSION}/m/@ftp/delete.m
 share/octave/${PKGVERSION}/m/@ftp/dir.m
-share/octave/${PKGVERSION}/m/@ftp/display.m
+share/octave/${PKGVERSION}/m/@ftp/disp.m
 share/octave/${PKGVERSION}/m/@ftp/ftp.m
 share/octave/${PKGVERSION}/m/@ftp/loadobj.m
 share/octave/${PKGVERSION}/m/@ftp/mget.m
@@ -1205,7 +1276,7 @@ share/octave/${PKGVERSION}/m/@ftp/rmdir.
 share/octave/${PKGVERSION}/m/@ftp/saveobj.m
 share/octave/${PKGVERSION}/m/audio/@audioplayer/__get_properties__.m
 share/octave/${PKGVERSION}/m/audio/@audioplayer/audioplayer.m
-share/octave/${PKGVERSION}/m/audio/@audioplayer/display.m
+share/octave/${PKGVERSION}/m/audio/@audioplayer/disp.m
 share/octave/${PKGVERSION}/m/audio/@audioplayer/get.m
 share/octave/${PKGVERSION}/m/audio/@audioplayer/isplaying.m
 share/octave/${PKGVERSION}/m/audio/@audioplayer/pause.m
@@ -1218,7 +1289,7 @@ share/octave/${PKGVERSION}/m/audio/@audi
 share/octave/${PKGVERSION}/m/audio/@audioplayer/subsref.m
 share/octave/${PKGVERSION}/m/audio/@audiorecorder/__get_properties__.m
 share/octave/${PKGVERSION}/m/audio/@audiorecorder/audiorecorder.m
-share/octave/${PKGVERSION}/m/audio/@audiorecorder/display.m
+share/octave/${PKGVERSION}/m/audio/@audiorecorder/disp.m
 share/octave/${PKGVERSION}/m/audio/@audiorecorder/get.m
 share/octave/${PKGVERSION}/m/audio/@audiorecorder/getaudiodata.m
 share/octave/${PKGVERSION}/m/audio/@audiorecorder/getplayer.m
@@ -1237,34 +1308,22 @@ share/octave/${PKGVERSION}/m/audio/mu2li
 share/octave/${PKGVERSION}/m/audio/record.m
 share/octave/${PKGVERSION}/m/audio/sound.m
 share/octave/${PKGVERSION}/m/audio/soundsc.m
-share/octave/${PKGVERSION}/m/deprecated/bicubic.m
 share/octave/${PKGVERSION}/m/deprecated/bitmax.m
+share/octave/${PKGVERSION}/m/deprecated/chop.m
 share/octave/${PKGVERSION}/m/deprecated/comma.m
-share/octave/${PKGVERSION}/m/deprecated/delaunay3.m
-share/octave/${PKGVERSION}/m/deprecated/dump_prefs.m
-share/octave/${PKGVERSION}/m/deprecated/find_dir_in_path.m
-share/octave/${PKGVERSION}/m/deprecated/finite.m
-share/octave/${PKGVERSION}/m/deprecated/fmod.m
-share/octave/${PKGVERSION}/m/deprecated/fnmatch.m
-share/octave/${PKGVERSION}/m/deprecated/gmap40.m
+share/octave/${PKGVERSION}/m/deprecated/desktop.m
 share/octave/${PKGVERSION}/m/deprecated/isstr.m
-share/octave/${PKGVERSION}/m/deprecated/loadaudio.m
-share/octave/${PKGVERSION}/m/deprecated/luinc.m
+share/octave/${PKGVERSION}/m/deprecated/java2mat.m
 share/octave/${PKGVERSION}/m/deprecated/mahalanobis.m
 share/octave/${PKGVERSION}/m/deprecated/md5sum.m
-share/octave/${PKGVERSION}/m/deprecated/mouse_wheel_zoom.m
-share/octave/${PKGVERSION}/m/deprecated/nfields.m
 share/octave/${PKGVERSION}/m/deprecated/octave_config_info.m
-share/octave/${PKGVERSION}/m/deprecated/octave_tmp_file_name.m
 share/octave/${PKGVERSION}/m/deprecated/onenormest.m
 share/octave/${PKGVERSION}/m/deprecated/paren.m
-share/octave/${PKGVERSION}/m/deprecated/playaudio.m
-share/octave/${PKGVERSION}/m/deprecated/saveaudio.m
 share/octave/${PKGVERSION}/m/deprecated/semicolon.m
-share/octave/${PKGVERSION}/m/deprecated/setaudio.m
+share/octave/${PKGVERSION}/m/deprecated/setstr.m
 share/octave/${PKGVERSION}/m/deprecated/sleep.m
-share/octave/${PKGVERSION}/m/deprecated/syl.m
-share/octave/${PKGVERSION}/m/deprecated/usage.m
+share/octave/${PKGVERSION}/m/deprecated/tmpnam.m
+share/octave/${PKGVERSION}/m/deprecated/toascii.m
 share/octave/${PKGVERSION}/m/deprecated/usleep.m
 share/octave/${PKGVERSION}/m/deprecated/wavread.m
 share/octave/${PKGVERSION}/m/deprecated/wavwrite.m
@@ -1304,7 +1363,6 @@ share/octave/${PKGVERSION}/m/general/car
 share/octave/${PKGVERSION}/m/general/cart2sph.m
 share/octave/${PKGVERSION}/m/general/cell2mat.m
 share/octave/${PKGVERSION}/m/general/celldisp.m
-share/octave/${PKGVERSION}/m/general/chop.m
 share/octave/${PKGVERSION}/m/general/circshift.m
 share/octave/${PKGVERSION}/m/general/common_size.m
 share/octave/${PKGVERSION}/m/general/cplxpair.m
@@ -1314,54 +1372,43 @@ share/octave/${PKGVERSION}/m/general/dbl
 share/octave/${PKGVERSION}/m/general/deal.m
 share/octave/${PKGVERSION}/m/general/deg2rad.m
 share/octave/${PKGVERSION}/m/general/del2.m
-share/octave/${PKGVERSION}/m/general/display.m
 share/octave/${PKGVERSION}/m/general/divergence.m
-share/octave/${PKGVERSION}/m/general/fieldnames.m
 share/octave/${PKGVERSION}/m/general/flip.m
 share/octave/${PKGVERSION}/m/general/flipdim.m
 share/octave/${PKGVERSION}/m/general/fliplr.m
 share/octave/${PKGVERSION}/m/general/flipud.m
-share/octave/${PKGVERSION}/m/general/grabcode.m
 share/octave/${PKGVERSION}/m/general/gradient.m
 share/octave/${PKGVERSION}/m/general/idivide.m
-share/octave/${PKGVERSION}/m/general/inputParser.m
 share/octave/${PKGVERSION}/m/general/int2str.m
+share/octave/${PKGVERSION}/m/general/integral.m
+share/octave/${PKGVERSION}/m/general/integral2.m
+share/octave/${PKGVERSION}/m/general/integral3.m
 share/octave/${PKGVERSION}/m/general/interp1.m
 share/octave/${PKGVERSION}/m/general/interp2.m
 share/octave/${PKGVERSION}/m/general/interp3.m
 share/octave/${PKGVERSION}/m/general/interpft.m
 share/octave/${PKGVERSION}/m/general/interpn.m
-share/octave/${PKGVERSION}/m/general/isdir.m
 share/octave/${PKGVERSION}/m/general/isequal.m
 share/octave/${PKGVERSION}/m/general/isequaln.m
-share/octave/${PKGVERSION}/m/general/loadobj.m
 share/octave/${PKGVERSION}/m/general/logspace.m
-share/octave/${PKGVERSION}/m/general/methods.m
-share/octave/${PKGVERSION}/m/general/nargchk.m
-share/octave/${PKGVERSION}/m/general/narginchk.m
-share/octave/${PKGVERSION}/m/general/nargoutchk.m
 share/octave/${PKGVERSION}/m/general/nextpow2.m
-share/octave/${PKGVERSION}/m/general/nthargout.m
 share/octave/${PKGVERSION}/m/general/num2str.m
 share/octave/${PKGVERSION}/m/general/pol2cart.m
 share/octave/${PKGVERSION}/m/general/polyarea.m
 share/octave/${PKGVERSION}/m/general/postpad.m
 share/octave/${PKGVERSION}/m/general/prepad.m
-share/octave/${PKGVERSION}/m/general/private/__isequal__.m
-share/octave/${PKGVERSION}/m/general/private/__publish_html_output__.m
-share/octave/${PKGVERSION}/m/general/private/__publish_latex_output__.m
 share/octave/${PKGVERSION}/m/general/private/__splinen__.m
-share/octave/${PKGVERSION}/m/general/publish.m
+share/octave/${PKGVERSION}/m/general/quad2d.m
 share/octave/${PKGVERSION}/m/general/quadgk.m
 share/octave/${PKGVERSION}/m/general/quadl.m
 share/octave/${PKGVERSION}/m/general/quadv.m
 share/octave/${PKGVERSION}/m/general/rad2deg.m
 share/octave/${PKGVERSION}/m/general/randi.m
 share/octave/${PKGVERSION}/m/general/rat.m
+share/octave/${PKGVERSION}/m/general/repelem.m
 share/octave/${PKGVERSION}/m/general/repmat.m
 share/octave/${PKGVERSION}/m/general/rot90.m
 share/octave/${PKGVERSION}/m/general/rotdim.m
-share/octave/${PKGVERSION}/m/general/saveobj.m
 share/octave/${PKGVERSION}/m/general/shift.m
 share/octave/${PKGVERSION}/m/general/shiftdim.m
 share/octave/${PKGVERSION}/m/general/sortrows.m
@@ -1370,7 +1417,7 @@ share/octave/${PKGVERSION}/m/general/str
 share/octave/${PKGVERSION}/m/general/subsindex.m
 share/octave/${PKGVERSION}/m/general/trapz.m
 share/octave/${PKGVERSION}/m/general/triplequad.m
-share/octave/${PKGVERSION}/m/general/validateattributes.m
+share/octave/${PKGVERSION}/m/general/xor.m
 share/octave/${PKGVERSION}/m/geometry/convhull.m
 share/octave/${PKGVERSION}/m/geometry/delaunay.m
 share/octave/${PKGVERSION}/m/geometry/delaunayn.m
@@ -1386,10 +1433,12 @@ share/octave/${PKGVERSION}/m/geometry/vo
 share/octave/${PKGVERSION}/m/geometry/voronoin.m
 share/octave/${PKGVERSION}/m/gui/dialog.m
 share/octave/${PKGVERSION}/m/gui/errordlg.m
+share/octave/${PKGVERSION}/m/gui/getappdata.m
 share/octave/${PKGVERSION}/m/gui/guidata.m
 share/octave/${PKGVERSION}/m/gui/guihandles.m
 share/octave/${PKGVERSION}/m/gui/helpdlg.m
 share/octave/${PKGVERSION}/m/gui/inputdlg.m
+share/octave/${PKGVERSION}/m/gui/isappdata.m
 share/octave/${PKGVERSION}/m/gui/listdlg.m
 share/octave/${PKGVERSION}/m/gui/msgbox.m
 share/octave/${PKGVERSION}/m/gui/private/__file_filter__.m
@@ -1401,6 +1450,8 @@ share/octave/${PKGVERSION}/m/gui/private
 share/octave/${PKGVERSION}/m/gui/private/__uiobject_split_args__.m
 share/octave/${PKGVERSION}/m/gui/private/__uiputfile_fltk__.m
 share/octave/${PKGVERSION}/m/gui/questdlg.m
+share/octave/${PKGVERSION}/m/gui/rmappdata.m
+share/octave/${PKGVERSION}/m/gui/setappdata.m
 share/octave/${PKGVERSION}/m/gui/uibuttongroup.m
 share/octave/${PKGVERSION}/m/gui/uicontextmenu.m
 share/octave/${PKGVERSION}/m/gui/uicontrol.m
@@ -1421,6 +1472,8 @@ share/octave/${PKGVERSION}/m/help/__grip
 share/octave/${PKGVERSION}/m/help/__makeinfo__.m
 share/octave/${PKGVERSION}/m/help/__unimplemented__.m
 share/octave/${PKGVERSION}/m/help/ans.m
+share/octave/${PKGVERSION}/m/help/bessel.m
+share/octave/${PKGVERSION}/m/help/debug.m
 share/octave/${PKGVERSION}/m/help/doc.m
 share/octave/${PKGVERSION}/m/help/doc_cache_create.m
 share/octave/${PKGVERSION}/m/help/error_ids.m
@@ -1430,6 +1483,7 @@ share/octave/${PKGVERSION}/m/help/lookfo
 share/octave/${PKGVERSION}/m/help/print_usage.m
 share/octave/${PKGVERSION}/m/help/private/__additional_help_message__.m
 share/octave/${PKGVERSION}/m/help/private/__strip_html_tags__.m
+share/octave/${PKGVERSION}/m/help/slash.m
 share/octave/${PKGVERSION}/m/help/type.m
 share/octave/${PKGVERSION}/m/help/warning_ids.m
 share/octave/${PKGVERSION}/m/help/which.m
@@ -1445,12 +1499,15 @@ share/octave/${PKGVERSION}/m/image/cool.
 share/octave/${PKGVERSION}/m/image/copper.m
 share/octave/${PKGVERSION}/m/image/cubehelix.m
 share/octave/${PKGVERSION}/m/image/flag.m
+share/octave/${PKGVERSION}/m/image/frame2im.m
+share/octave/${PKGVERSION}/m/image/getframe.m
 share/octave/${PKGVERSION}/m/image/gray.m
 share/octave/${PKGVERSION}/m/image/gray2ind.m
 share/octave/${PKGVERSION}/m/image/hot.m
 share/octave/${PKGVERSION}/m/image/hsv.m
 share/octave/${PKGVERSION}/m/image/hsv2rgb.m
 share/octave/${PKGVERSION}/m/image/im2double.m
+share/octave/${PKGVERSION}/m/image/im2frame.m
 share/octave/${PKGVERSION}/m/image/image.m
 share/octave/${PKGVERSION}/m/image/imagesc.m
 share/octave/${PKGVERSION}/m/image/imfinfo.m
@@ -1463,7 +1520,6 @@ share/octave/${PKGVERSION}/m/image/ind2r
 share/octave/${PKGVERSION}/m/image/iscolormap.m
 share/octave/${PKGVERSION}/m/image/jet.m
 share/octave/${PKGVERSION}/m/image/lines.m
-share/octave/${PKGVERSION}/m/image/ntsc2rgb.m
 share/octave/${PKGVERSION}/m/image/ocean.m
 share/octave/${PKGVERSION}/m/image/pink.m
 share/octave/${PKGVERSION}/m/image/prism.m
@@ -1476,9 +1532,9 @@ share/octave/${PKGVERSION}/m/image/priva
 share/octave/${PKGVERSION}/m/image/private/imwrite_filename.m
 share/octave/${PKGVERSION}/m/image/private/ind2x.m
 share/octave/${PKGVERSION}/m/image/rainbow.m
+share/octave/${PKGVERSION}/m/image/rgb2gray.m
 share/octave/${PKGVERSION}/m/image/rgb2hsv.m
 share/octave/${PKGVERSION}/m/image/rgb2ind.m
-share/octave/${PKGVERSION}/m/image/rgb2ntsc.m
 share/octave/${PKGVERSION}/m/image/rgbplot.m
 share/octave/${PKGVERSION}/m/image/spinmap.m
 share/octave/${PKGVERSION}/m/image/spring.m
@@ -1512,6 +1568,7 @@ share/octave/${PKGVERSION}/m/linear-alge
 share/octave/${PKGVERSION}/m/linear-algebra/cross.m
 share/octave/${PKGVERSION}/m/linear-algebra/duplication_matrix.m
 share/octave/${PKGVERSION}/m/linear-algebra/expm.m
+share/octave/${PKGVERSION}/m/linear-algebra/gls.m
 share/octave/${PKGVERSION}/m/linear-algebra/housh.m
 share/octave/${PKGVERSION}/m/linear-algebra/isbanded.m
 share/octave/${PKGVERSION}/m/linear-algebra/isdefinite.m
@@ -1523,9 +1580,11 @@ share/octave/${PKGVERSION}/m/linear-alge
 share/octave/${PKGVERSION}/m/linear-algebra/krylov.m
 share/octave/${PKGVERSION}/m/linear-algebra/linsolve.m
 share/octave/${PKGVERSION}/m/linear-algebra/logm.m
+share/octave/${PKGVERSION}/m/linear-algebra/lscov.m
 share/octave/${PKGVERSION}/m/linear-algebra/normest.m
 share/octave/${PKGVERSION}/m/linear-algebra/normest1.m
 share/octave/${PKGVERSION}/m/linear-algebra/null.m
+share/octave/${PKGVERSION}/m/linear-algebra/ols.m
 share/octave/${PKGVERSION}/m/linear-algebra/orth.m
 share/octave/${PKGVERSION}/m/linear-algebra/planerot.m
 share/octave/${PKGVERSION}/m/linear-algebra/qzhess.m
@@ -1534,6 +1593,7 @@ share/octave/${PKGVERSION}/m/linear-alge
 share/octave/${PKGVERSION}/m/linear-algebra/subspace.m
 share/octave/${PKGVERSION}/m/linear-algebra/trace.m
 share/octave/${PKGVERSION}/m/linear-algebra/vech.m
+share/octave/${PKGVERSION}/m/linear-algebra/vecnorm.m
 share/octave/${PKGVERSION}/m/miscellaneous/bug_report.m
 share/octave/${PKGVERSION}/m/miscellaneous/bunzip2.m
 share/octave/${PKGVERSION}/m/miscellaneous/cast.m
@@ -1541,73 +1601,84 @@ share/octave/${PKGVERSION}/m/miscellaneo
 share/octave/${PKGVERSION}/m/miscellaneous/compare_versions.m
 share/octave/${PKGVERSION}/m/miscellaneous/computer.m
 share/octave/${PKGVERSION}/m/miscellaneous/copyfile.m
-share/octave/${PKGVERSION}/m/miscellaneous/debug.m
 share/octave/${PKGVERSION}/m/miscellaneous/delete.m
-share/octave/${PKGVERSION}/m/miscellaneous/desktop.m
 share/octave/${PKGVERSION}/m/miscellaneous/dir.m
 share/octave/${PKGVERSION}/m/miscellaneous/dos.m
 share/octave/${PKGVERSION}/m/miscellaneous/edit.m
 share/octave/${PKGVERSION}/m/miscellaneous/fact.m
+share/octave/${PKGVERSION}/m/miscellaneous/fieldnames.m
 share/octave/${PKGVERSION}/m/miscellaneous/fileattrib.m
 share/octave/${PKGVERSION}/m/miscellaneous/fileparts.m
 share/octave/${PKGVERSION}/m/miscellaneous/fullfile.m
 share/octave/${PKGVERSION}/m/miscellaneous/genvarname.m
-share/octave/${PKGVERSION}/m/miscellaneous/getappdata.m
 share/octave/${PKGVERSION}/m/miscellaneous/getfield.m
+share/octave/${PKGVERSION}/m/miscellaneous/grabcode.m
 share/octave/${PKGVERSION}/m/miscellaneous/gunzip.m
 share/octave/${PKGVERSION}/m/miscellaneous/info.m
+share/octave/${PKGVERSION}/m/miscellaneous/inputParser.m
 share/octave/${PKGVERSION}/m/miscellaneous/inputname.m
-share/octave/${PKGVERSION}/m/miscellaneous/isappdata.m
 share/octave/${PKGVERSION}/m/miscellaneous/isdeployed.m
+share/octave/${PKGVERSION}/m/miscellaneous/isdir.m
 share/octave/${PKGVERSION}/m/miscellaneous/ismac.m
 share/octave/${PKGVERSION}/m/miscellaneous/ispc.m
 share/octave/${PKGVERSION}/m/miscellaneous/isunix.m
 share/octave/${PKGVERSION}/m/miscellaneous/license.m
 share/octave/${PKGVERSION}/m/miscellaneous/list_primes.m
+share/octave/${PKGVERSION}/m/miscellaneous/loadobj.m
 share/octave/${PKGVERSION}/m/miscellaneous/ls.m
 share/octave/${PKGVERSION}/m/miscellaneous/ls_command.m
 share/octave/${PKGVERSION}/m/miscellaneous/menu.m
+share/octave/${PKGVERSION}/m/miscellaneous/methods.m
 share/octave/${PKGVERSION}/m/miscellaneous/mex.m
 share/octave/${PKGVERSION}/m/miscellaneous/mexext.m
 share/octave/${PKGVERSION}/m/miscellaneous/mkdir.m
 share/octave/${PKGVERSION}/m/miscellaneous/mkoctfile.m
 share/octave/${PKGVERSION}/m/miscellaneous/movefile.m
 share/octave/${PKGVERSION}/m/miscellaneous/namelengthmax.m
+share/octave/${PKGVERSION}/m/miscellaneous/nargchk.m
+share/octave/${PKGVERSION}/m/miscellaneous/narginchk.m
+share/octave/${PKGVERSION}/m/miscellaneous/nargoutchk.m
 share/octave/${PKGVERSION}/m/miscellaneous/news.m
+share/octave/${PKGVERSION}/m/miscellaneous/nthargout.m
 share/octave/${PKGVERSION}/m/miscellaneous/open.m
 share/octave/${PKGVERSION}/m/miscellaneous/orderfields.m
 share/octave/${PKGVERSION}/m/miscellaneous/pack.m
 share/octave/${PKGVERSION}/m/miscellaneous/parseparams.m
 share/octave/${PKGVERSION}/m/miscellaneous/perl.m
+share/octave/${PKGVERSION}/m/miscellaneous/private/__publish_html_output__.m
+share/octave/${PKGVERSION}/m/miscellaneous/private/__publish_latex_output__.m
 share/octave/${PKGVERSION}/m/miscellaneous/private/__w2mpth__.m
 share/octave/${PKGVERSION}/m/miscellaneous/private/display_info_file.m
+share/octave/${PKGVERSION}/m/miscellaneous/publish.m
 share/octave/${PKGVERSION}/m/miscellaneous/python.m
 share/octave/${PKGVERSION}/m/miscellaneous/recycle.m
-share/octave/${PKGVERSION}/m/miscellaneous/rmappdata.m
 share/octave/${PKGVERSION}/m/miscellaneous/run.m
-share/octave/${PKGVERSION}/m/miscellaneous/setappdata.m
+share/octave/${PKGVERSION}/m/miscellaneous/saveobj.m
 share/octave/${PKGVERSION}/m/miscellaneous/setfield.m
 share/octave/${PKGVERSION}/m/miscellaneous/substruct.m
 share/octave/${PKGVERSION}/m/miscellaneous/swapbytes.m
 share/octave/${PKGVERSION}/m/miscellaneous/symvar.m
 share/octave/${PKGVERSION}/m/miscellaneous/tar.m
 share/octave/${PKGVERSION}/m/miscellaneous/tempdir.m
-share/octave/${PKGVERSION}/m/miscellaneous/tmpnam.m
 share/octave/${PKGVERSION}/m/miscellaneous/unix.m
 share/octave/${PKGVERSION}/m/miscellaneous/unpack.m
 share/octave/${PKGVERSION}/m/miscellaneous/untar.m
 share/octave/${PKGVERSION}/m/miscellaneous/unzip.m
+share/octave/${PKGVERSION}/m/miscellaneous/validateattributes.m
 share/octave/${PKGVERSION}/m/miscellaneous/ver.m
 share/octave/${PKGVERSION}/m/miscellaneous/version.m
 share/octave/${PKGVERSION}/m/miscellaneous/what.m
-share/octave/${PKGVERSION}/m/miscellaneous/xor.m
 share/octave/${PKGVERSION}/m/miscellaneous/zip.m
+share/octave/${PKGVERSION}/m/ode/decic.m
+share/octave/${PKGVERSION}/m/ode/ode15i.m
+share/octave/${PKGVERSION}/m/ode/ode15s.m
 share/octave/${PKGVERSION}/m/ode/ode23.m
 share/octave/${PKGVERSION}/m/ode/ode45.m
 share/octave/${PKGVERSION}/m/ode/odeget.m
 share/octave/${PKGVERSION}/m/ode/odeplot.m
 share/octave/${PKGVERSION}/m/ode/odeset.m
 share/octave/${PKGVERSION}/m/ode/private/AbsRel_norm.m
+share/octave/${PKGVERSION}/m/ode/private/check_default_input.m
 share/octave/${PKGVERSION}/m/ode/private/integrate_adaptive.m
 share/octave/${PKGVERSION}/m/ode/private/kahan.m
 share/octave/${PKGVERSION}/m/ode/private/ode_event_handler.m
@@ -1625,6 +1696,7 @@ share/octave/${PKGVERSION}/m/optimizatio
 share/octave/${PKGVERSION}/m/optimization/fsolve.m
 share/octave/${PKGVERSION}/m/optimization/fzero.m
 share/octave/${PKGVERSION}/m/optimization/glpk.m
+share/octave/${PKGVERSION}/m/optimization/humps.m
 share/octave/${PKGVERSION}/m/optimization/lsqnonneg.m
 share/octave/${PKGVERSION}/m/optimization/optimget.m
 share/octave/${PKGVERSION}/m/optimization/optimset.m
@@ -1632,6 +1704,7 @@ share/octave/${PKGVERSION}/m/optimizatio
 share/octave/${PKGVERSION}/m/optimization/private/__fdjac__.m
 share/octave/${PKGVERSION}/m/optimization/qp.m
 share/octave/${PKGVERSION}/m/optimization/sqp.m
+share/octave/${PKGVERSION}/m/path/import.m
 share/octave/${PKGVERSION}/m/path/matlabroot.m
 share/octave/${PKGVERSION}/m/path/pathdef.m
 share/octave/${PKGVERSION}/m/path/private/getsavepath.m
@@ -1659,9 +1732,18 @@ share/octave/${PKGVERSION}/m/pkg/private
 share/octave/${PKGVERSION}/m/pkg/private/unload_packages.m
 share/octave/${PKGVERSION}/m/plot/appearance/__clabel__.m
 share/octave/${PKGVERSION}/m/plot/appearance/__getlegenddata__.m
+share/octave/${PKGVERSION}/m/plot/appearance/__rotate_around_axis__.m
 share/octave/${PKGVERSION}/m/plot/appearance/annotation.m
 share/octave/${PKGVERSION}/m/plot/appearance/axis.m
 share/octave/${PKGVERSION}/m/plot/appearance/box.m
+share/octave/${PKGVERSION}/m/plot/appearance/camlookat.m
+share/octave/${PKGVERSION}/m/plot/appearance/camorbit.m
+share/octave/${PKGVERSION}/m/plot/appearance/campos.m
+share/octave/${PKGVERSION}/m/plot/appearance/camroll.m
+share/octave/${PKGVERSION}/m/plot/appearance/camtarget.m
+share/octave/${PKGVERSION}/m/plot/appearance/camup.m
+share/octave/${PKGVERSION}/m/plot/appearance/camva.m
+share/octave/${PKGVERSION}/m/plot/appearance/camzoom.m
 share/octave/${PKGVERSION}/m/plot/appearance/caxis.m
 share/octave/${PKGVERSION}/m/plot/appearance/clabel.m
 share/octave/${PKGVERSION}/m/plot/appearance/daspect.m
@@ -1677,18 +1759,26 @@ share/octave/${PKGVERSION}/m/plot/appear
 share/octave/${PKGVERSION}/m/plot/appearance/pbaspect.m
 share/octave/${PKGVERSION}/m/plot/appearance/private/__axis_label__.m
 share/octave/${PKGVERSION}/m/plot/appearance/private/__axis_limits__.m
+share/octave/${PKGVERSION}/m/plot/appearance/rticks.m
 share/octave/${PKGVERSION}/m/plot/appearance/shading.m
 share/octave/${PKGVERSION}/m/plot/appearance/specular.m
 share/octave/${PKGVERSION}/m/plot/appearance/text.m
+share/octave/${PKGVERSION}/m/plot/appearance/thetaticks.m
 share/octave/${PKGVERSION}/m/plot/appearance/title.m
 share/octave/${PKGVERSION}/m/plot/appearance/view.m
 share/octave/${PKGVERSION}/m/plot/appearance/whitebg.m
 share/octave/${PKGVERSION}/m/plot/appearance/xlabel.m
 share/octave/${PKGVERSION}/m/plot/appearance/xlim.m
+share/octave/${PKGVERSION}/m/plot/appearance/xticklabels.m
+share/octave/${PKGVERSION}/m/plot/appearance/xticks.m
 share/octave/${PKGVERSION}/m/plot/appearance/ylabel.m
 share/octave/${PKGVERSION}/m/plot/appearance/ylim.m
+share/octave/${PKGVERSION}/m/plot/appearance/yticklabels.m
+share/octave/${PKGVERSION}/m/plot/appearance/yticks.m
 share/octave/${PKGVERSION}/m/plot/appearance/zlabel.m
 share/octave/${PKGVERSION}/m/plot/appearance/zlim.m
+share/octave/${PKGVERSION}/m/plot/appearance/zticklabels.m
+share/octave/${PKGVERSION}/m/plot/appearance/zticks.m
 share/octave/${PKGVERSION}/m/plot/draw/area.m
 share/octave/${PKGVERSION}/m/plot/draw/bar.m
 share/octave/${PKGVERSION}/m/plot/draw/barh.m
@@ -1752,7 +1842,6 @@ share/octave/${PKGVERSION}/m/plot/draw/p
 share/octave/${PKGVERSION}/m/plot/draw/private/__pie__.m
 share/octave/${PKGVERSION}/m/plot/draw/private/__plt__.m
 share/octave/${PKGVERSION}/m/plot/draw/private/__quiver__.m
-share/octave/${PKGVERSION}/m/plot/draw/private/__rotate_around_axis__.m
 share/octave/${PKGVERSION}/m/plot/draw/private/__scatter__.m
 share/octave/${PKGVERSION}/m/plot/draw/private/__stem__.m
 share/octave/${PKGVERSION}/m/plot/draw/private/__unite_shared_vertices__.m
@@ -1809,7 +1898,6 @@ share/octave/${PKGVERSION}/m/plot/util/f
 share/octave/${PKGVERSION}/m/plot/util/findall.m
 share/octave/${PKGVERSION}/m/plot/util/findfigs.m
 share/octave/${PKGVERSION}/m/plot/util/findobj.m
-share/octave/${PKGVERSION}/m/plot/util/frame2im.m
 share/octave/${PKGVERSION}/m/plot/util/gca.m
 share/octave/${PKGVERSION}/m/plot/util/gcbf.m
 share/octave/${PKGVERSION}/m/plot/util/gcbo.m
@@ -1818,15 +1906,17 @@ share/octave/${PKGVERSION}/m/plot/util/g
 share/octave/${PKGVERSION}/m/plot/util/ginput.m
 share/octave/${PKGVERSION}/m/plot/util/gnuplot_binary.m
 share/octave/${PKGVERSION}/m/plot/util/graphics_toolkit.m
+share/octave/${PKGVERSION}/m/plot/util/groot.m
 share/octave/${PKGVERSION}/m/plot/util/hdl2struct.m
 share/octave/${PKGVERSION}/m/plot/util/hggroup.m
 share/octave/${PKGVERSION}/m/plot/util/hgload.m
 share/octave/${PKGVERSION}/m/plot/util/hgsave.m
+share/octave/${PKGVERSION}/m/plot/util/hgtransform.m
 share/octave/${PKGVERSION}/m/plot/util/hold.m
-share/octave/${PKGVERSION}/m/plot/util/im2frame.m
 share/octave/${PKGVERSION}/m/plot/util/isaxes.m
 share/octave/${PKGVERSION}/m/plot/util/isfigure.m
-share/octave/${PKGVERSION}/m/plot/util/ishghandle.m
+share/octave/${PKGVERSION}/m/plot/util/isgraphics.m
+share/octave/${PKGVERSION}/m/plot/util/ishandle.m
 share/octave/${PKGVERSION}/m/plot/util/ishold.m
 share/octave/${PKGVERSION}/m/plot/util/isprop.m
 share/octave/${PKGVERSION}/m/plot/util/linkaxes.m
@@ -1850,6 +1940,7 @@ share/octave/${PKGVERSION}/m/plot/util/p
 share/octave/${PKGVERSION}/m/plot/util/private/__gnuplot_version__.m
 share/octave/${PKGVERSION}/m/plot/util/private/__opengl_print__.m
 share/octave/${PKGVERSION}/m/plot/util/private/__print_parse_opts__.m
+share/octave/${PKGVERSION}/m/plot/util/private/__set_default_mouse_modes__.m
 share/octave/${PKGVERSION}/m/plot/util/refresh.m
 share/octave/${PKGVERSION}/m/plot/util/refreshdata.m
 share/octave/${PKGVERSION}/m/plot/util/rotate.m
@@ -1958,6 +2049,8 @@ share/octave/${PKGVERSION}/m/sparse/ilu.
 share/octave/${PKGVERSION}/m/sparse/nonzeros.m
 share/octave/${PKGVERSION}/m/sparse/pcg.m
 share/octave/${PKGVERSION}/m/sparse/pcr.m
+share/octave/${PKGVERSION}/m/sparse/private/__alltohandles__.m
+share/octave/${PKGVERSION}/m/sparse/private/__default__input__.m
 share/octave/${PKGVERSION}/m/sparse/private/__sprand__.m
 share/octave/${PKGVERSION}/m/sparse/qmr.m
 share/octave/${PKGVERSION}/m/sparse/spaugment.m
@@ -1972,15 +2065,20 @@ share/octave/${PKGVERSION}/m/sparse/spra
 share/octave/${PKGVERSION}/m/sparse/spstats.m
 share/octave/${PKGVERSION}/m/sparse/spy.m
 share/octave/${PKGVERSION}/m/sparse/svds.m
+share/octave/${PKGVERSION}/m/sparse/tfqmr.m
 share/octave/${PKGVERSION}/m/sparse/treelayout.m
 share/octave/${PKGVERSION}/m/sparse/treeplot.m
-share/octave/${PKGVERSION}/m/specfun/bessel.m
 share/octave/${PKGVERSION}/m/specfun/beta.m
+share/octave/${PKGVERSION}/m/specfun/betainc.m
+share/octave/${PKGVERSION}/m/specfun/betaincinv.m
 share/octave/${PKGVERSION}/m/specfun/betaln.m
+share/octave/${PKGVERSION}/m/specfun/cosint.m
 share/octave/${PKGVERSION}/m/specfun/ellipke.m
 share/octave/${PKGVERSION}/m/specfun/expint.m
 share/octave/${PKGVERSION}/m/specfun/factor.m
 share/octave/${PKGVERSION}/m/specfun/factorial.m
+share/octave/${PKGVERSION}/m/specfun/gammainc.m
+share/octave/${PKGVERSION}/m/specfun/gammaincinv.m
 share/octave/${PKGVERSION}/m/specfun/isprime.m
 share/octave/${PKGVERSION}/m/specfun/lcm.m
 share/octave/${PKGVERSION}/m/specfun/legendre.m
@@ -1992,6 +2090,7 @@ share/octave/${PKGVERSION}/m/specfun/pri
 share/octave/${PKGVERSION}/m/specfun/reallog.m
 share/octave/${PKGVERSION}/m/specfun/realpow.m
 share/octave/${PKGVERSION}/m/specfun/realsqrt.m
+share/octave/${PKGVERSION}/m/specfun/sinint.m
 share/octave/${PKGVERSION}/m/special-matrix/gallery.m
 share/octave/${PKGVERSION}/m/special-matrix/hadamard.m
 share/octave/${PKGVERSION}/m/special-matrix/hankel.m
@@ -2006,157 +2105,41 @@ share/octave/${PKGVERSION}/m/special-mat
 share/octave/${PKGVERSION}/m/startup/__finish__.m
 share/octave/${PKGVERSION}/m/startup/inputrc
 share/octave/${PKGVERSION}/m/startup/octaverc
-share/octave/${PKGVERSION}/m/statistics/base/center.m
-share/octave/${PKGVERSION}/m/statistics/base/cloglog.m
-share/octave/${PKGVERSION}/m/statistics/base/corr.m
-share/octave/${PKGVERSION}/m/statistics/base/cov.m
-share/octave/${PKGVERSION}/m/statistics/base/gls.m
-share/octave/${PKGVERSION}/m/statistics/base/histc.m
-share/octave/${PKGVERSION}/m/statistics/base/iqr.m
-share/octave/${PKGVERSION}/m/statistics/base/kendall.m
-share/octave/${PKGVERSION}/m/statistics/base/kurtosis.m
-share/octave/${PKGVERSION}/m/statistics/base/logit.m
-share/octave/${PKGVERSION}/m/statistics/base/lscov.m
-share/octave/${PKGVERSION}/m/statistics/base/mean.m
-share/octave/${PKGVERSION}/m/statistics/base/meansq.m
-share/octave/${PKGVERSION}/m/statistics/base/median.m
-share/octave/${PKGVERSION}/m/statistics/base/mode.m
-share/octave/${PKGVERSION}/m/statistics/base/moment.m
-share/octave/${PKGVERSION}/m/statistics/base/ols.m
-share/octave/${PKGVERSION}/m/statistics/base/ppplot.m
-share/octave/${PKGVERSION}/m/statistics/base/prctile.m
-share/octave/${PKGVERSION}/m/statistics/base/probit.m
-share/octave/${PKGVERSION}/m/statistics/base/qqplot.m
-share/octave/${PKGVERSION}/m/statistics/base/quantile.m
-share/octave/${PKGVERSION}/m/statistics/base/range.m
-share/octave/${PKGVERSION}/m/statistics/base/ranks.m
-share/octave/${PKGVERSION}/m/statistics/base/run_count.m
-share/octave/${PKGVERSION}/m/statistics/base/runlength.m
-share/octave/${PKGVERSION}/m/statistics/base/skewness.m
-share/octave/${PKGVERSION}/m/statistics/base/spearman.m
-share/octave/${PKGVERSION}/m/statistics/base/statistics.m
-share/octave/${PKGVERSION}/m/statistics/base/std.m
-share/octave/${PKGVERSION}/m/statistics/base/table.m
-share/octave/${PKGVERSION}/m/statistics/base/var.m
-share/octave/${PKGVERSION}/m/statistics/base/zscore.m
-share/octave/${PKGVERSION}/m/statistics/distributions/betacdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/betainv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/betapdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/betarnd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/binocdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/binoinv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/binopdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/binornd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/cauchy_cdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/cauchy_inv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/cauchy_pdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/cauchy_rnd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/chi2cdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/chi2inv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/chi2pdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/chi2rnd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/discrete_cdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/discrete_inv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/discrete_pdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/discrete_rnd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/empirical_cdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/empirical_inv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/empirical_pdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/empirical_rnd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/expcdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/expinv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/exppdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/exprnd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/fcdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/finv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/fpdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/frnd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/gamcdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/gaminv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/gampdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/gamrnd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/geocdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/geoinv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/geopdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/geornd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/hygecdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/hygeinv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/hygepdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/hygernd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/kolmogorov_smirnov_cdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/laplace_cdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/laplace_inv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/laplace_pdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/laplace_rnd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/logistic_cdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/logistic_inv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/logistic_pdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/logistic_rnd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/logncdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/logninv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/lognpdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/lognrnd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/nbincdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/nbininv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/nbinpdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/nbinrnd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/normcdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/norminv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/normpdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/normrnd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/poisscdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/poissinv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/poisspdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/poissrnd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/stdnormal_cdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/stdnormal_inv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/stdnormal_pdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/stdnormal_rnd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/tcdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/tinv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/tpdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/trnd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/unidcdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/unidinv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/unidpdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/unidrnd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/unifcdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/unifinv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/unifpdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/unifrnd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/wblcdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/wblinv.m
-share/octave/${PKGVERSION}/m/statistics/distributions/wblpdf.m
-share/octave/${PKGVERSION}/m/statistics/distributions/wblrnd.m
-share/octave/${PKGVERSION}/m/statistics/distributions/wienrnd.m
-share/octave/${PKGVERSION}/m/statistics/models/logistic_regression.m
-share/octave/${PKGVERSION}/m/statistics/models/private/logistic_regression_derivatives.m
-share/octave/${PKGVERSION}/m/statistics/models/private/logistic_regression_likelihood.m
-share/octave/${PKGVERSION}/m/statistics/tests/anova.m
-share/octave/${PKGVERSION}/m/statistics/tests/bartlett_test.m
-share/octave/${PKGVERSION}/m/statistics/tests/chisquare_test_homogeneity.m
-share/octave/${PKGVERSION}/m/statistics/tests/chisquare_test_independence.m
-share/octave/${PKGVERSION}/m/statistics/tests/cor_test.m
-share/octave/${PKGVERSION}/m/statistics/tests/f_test_regression.m
-share/octave/${PKGVERSION}/m/statistics/tests/hotelling_test.m
-share/octave/${PKGVERSION}/m/statistics/tests/hotelling_test_2.m
-share/octave/${PKGVERSION}/m/statistics/tests/kolmogorov_smirnov_test.m
-share/octave/${PKGVERSION}/m/statistics/tests/kolmogorov_smirnov_test_2.m
-share/octave/${PKGVERSION}/m/statistics/tests/kruskal_wallis_test.m
-share/octave/${PKGVERSION}/m/statistics/tests/manova.m
-share/octave/${PKGVERSION}/m/statistics/tests/mcnemar_test.m
-share/octave/${PKGVERSION}/m/statistics/tests/prop_test_2.m
-share/octave/${PKGVERSION}/m/statistics/tests/run_test.m
-share/octave/${PKGVERSION}/m/statistics/tests/sign_test.m
-share/octave/${PKGVERSION}/m/statistics/tests/t_test.m
-share/octave/${PKGVERSION}/m/statistics/tests/t_test_2.m
-share/octave/${PKGVERSION}/m/statistics/tests/t_test_regression.m
-share/octave/${PKGVERSION}/m/statistics/tests/u_test.m
-share/octave/${PKGVERSION}/m/statistics/tests/var_test.m
-share/octave/${PKGVERSION}/m/statistics/tests/welch_test.m
-share/octave/${PKGVERSION}/m/statistics/tests/wilcoxon_test.m
-share/octave/${PKGVERSION}/m/statistics/tests/z_test.m
-share/octave/${PKGVERSION}/m/statistics/tests/z_test_2.m
+share/octave/${PKGVERSION}/m/statistics/bounds.m
+share/octave/${PKGVERSION}/m/statistics/center.m
+share/octave/${PKGVERSION}/m/statistics/corr.m
+share/octave/${PKGVERSION}/m/statistics/corrcoef.m
+share/octave/${PKGVERSION}/m/statistics/cov.m
+share/octave/${PKGVERSION}/m/statistics/discrete_cdf.m
+share/octave/${PKGVERSION}/m/statistics/discrete_inv.m
+share/octave/${PKGVERSION}/m/statistics/discrete_pdf.m
+share/octave/${PKGVERSION}/m/statistics/discrete_rnd.m
+share/octave/${PKGVERSION}/m/statistics/empirical_cdf.m
+share/octave/${PKGVERSION}/m/statistics/empirical_inv.m
+share/octave/${PKGVERSION}/m/statistics/empirical_pdf.m
+share/octave/${PKGVERSION}/m/statistics/empirical_rnd.m
+share/octave/${PKGVERSION}/m/statistics/histc.m
+share/octave/${PKGVERSION}/m/statistics/iqr.m
+share/octave/${PKGVERSION}/m/statistics/kendall.m
+share/octave/${PKGVERSION}/m/statistics/kurtosis.m
+share/octave/${PKGVERSION}/m/statistics/mad.m
+share/octave/${PKGVERSION}/m/statistics/mean.m
+share/octave/${PKGVERSION}/m/statistics/meansq.m
+share/octave/${PKGVERSION}/m/statistics/median.m
+share/octave/${PKGVERSION}/m/statistics/mode.m
+share/octave/${PKGVERSION}/m/statistics/moment.m
+share/octave/${PKGVERSION}/m/statistics/prctile.m
+share/octave/${PKGVERSION}/m/statistics/quantile.m
+share/octave/${PKGVERSION}/m/statistics/range.m
+share/octave/${PKGVERSION}/m/statistics/ranks.m
+share/octave/${PKGVERSION}/m/statistics/run_count.m
+share/octave/${PKGVERSION}/m/statistics/runlength.m
+share/octave/${PKGVERSION}/m/statistics/skewness.m
+share/octave/${PKGVERSION}/m/statistics/spearman.m
+share/octave/${PKGVERSION}/m/statistics/statistics.m
+share/octave/${PKGVERSION}/m/statistics/std.m
+share/octave/${PKGVERSION}/m/statistics/var.m
+share/octave/${PKGVERSION}/m/statistics/zscore.m
 share/octave/${PKGVERSION}/m/strings/base2dec.m
 share/octave/${PKGVERSION}/m/strings/bin2dec.m
 share/octave/${PKGVERSION}/m/strings/blanks.m
@@ -2165,12 +2148,15 @@ share/octave/${PKGVERSION}/m/strings/deb
 share/octave/${PKGVERSION}/m/strings/dec2base.m
 share/octave/${PKGVERSION}/m/strings/dec2bin.m
 share/octave/${PKGVERSION}/m/strings/dec2hex.m
+share/octave/${PKGVERSION}/m/strings/erase.m
 share/octave/${PKGVERSION}/m/strings/findstr.m
 share/octave/${PKGVERSION}/m/strings/hex2dec.m
 share/octave/${PKGVERSION}/m/strings/index.m
 share/octave/${PKGVERSION}/m/strings/isletter.m
+share/octave/${PKGVERSION}/m/strings/isstring.m
 share/octave/${PKGVERSION}/m/strings/isstrprop.m
 share/octave/${PKGVERSION}/m/strings/mat2str.m
+share/octave/${PKGVERSION}/m/strings/native2unicode.m
 share/octave/${PKGVERSION}/m/strings/ostrsplit.m
 share/octave/${PKGVERSION}/m/strings/regexptranslate.m
 share/octave/${PKGVERSION}/m/strings/rindex.m
@@ -2185,6 +2171,7 @@ share/octave/${PKGVERSION}/m/strings/str
 share/octave/${PKGVERSION}/m/strings/strtrim.m
 share/octave/${PKGVERSION}/m/strings/strtrunc.m
 share/octave/${PKGVERSION}/m/strings/substr.m
+share/octave/${PKGVERSION}/m/strings/unicode2native.m
 share/octave/${PKGVERSION}/m/strings/untabify.m
 share/octave/${PKGVERSION}/m/strings/validatestring.m
 share/octave/${PKGVERSION}/m/testfun/__have_feature__.m
@@ -2218,11 +2205,11 @@ share/octave/${PKGVERSION}/m/time/is_lea
 share/octave/${PKGVERSION}/m/time/now.m
 share/octave/${PKGVERSION}/m/time/weekday.m
 share/octave/site/m/startup/octaverc
-@pkgdir share/octave/site/api-v51/m
+@pkgdir share/octave/site/api-v52/m
 @pkgdir share/octave/${PKGVERSION}/site/m
-@pkgdir libexec/octave/site/exec/${MACHINE_GNU_PLATFORM}
-@pkgdir libexec/octave/api-v51/site/exec/${MACHINE_GNU_PLATFORM}
-@pkgdir libexec/octave/${PKGVERSION}/site/exec/${MACHINE_GNU_PLATFORM}
-@pkgdir lib/octave/site/oct/${MACHINE_GNU_PLATFORM}
-@pkgdir lib/octave/site/oct/api-v51/${MACHINE_GNU_PLATFORM}
-@pkgdir lib/octave/${PKGVERSION}/site/oct/${MACHINE_GNU_PLATFORM}
+@pkgdir libexec/octave/site/exec/x86_64--netbsd
+@pkgdir libexec/octave/api-v52/site/exec/x86_64--netbsd
+@pkgdir libexec/octave/${PKGVERSION}/site/exec/x86_64--netbsd
+@pkgdir lib/octave/site/oct/x86_64--netbsd
+@pkgdir lib/octave/site/oct/api-v52/x86_64--netbsd
+@pkgdir lib/octave/${PKGVERSION}/site/oct/x86_64--netbsd

Index: pkgsrc/math/octave/distinfo
diff -u pkgsrc/math/octave/distinfo:1.53 pkgsrc/math/octave/distinfo:1.54
--- pkgsrc/math/octave/distinfo:1.53    Tue Jul 17 09:55:36 2018
+++ pkgsrc/math/octave/distinfo Sun Aug 12 08:33:55 2018
@@ -1,21 +1,18 @@
-$NetBSD: distinfo,v 1.53 2018/07/17 09:55:36 maya Exp $
+$NetBSD: distinfo,v 1.54 2018/08/12 08:33:55 maya Exp $
 
-SHA1 (octave-4.2.0.tar.gz) = 9fac578c08a7efabd79ccc38bc196b9627e3212f
-RMD160 (octave-4.2.0.tar.gz) = 07ff9bae3a0128c93f9113ebf952dea129b58284
-SHA512 (octave-4.2.0.tar.gz) = 5d16665d4ef8f218320f471704f8702f3a2911cc4a083cae318c1df0f787d50dddbc511dc91e11379314d65cecac6d521abac026860feca19d11ffdb52d3e678
-Size (octave-4.2.0.tar.gz) = 25320153 bytes
-SHA1 (patch-configure) = fe31eb2e1b0f15ff77838c2514d4a434f4e59360
-SHA1 (patch-configure.ac) = 0dba5f4b862e9862687021f985109451ea2672e7
+SHA1 (octave-4.4.1.tar.gz) = 693fe46fdf49c62dec9f81100050ba2d2c1e4067
+RMD160 (octave-4.4.1.tar.gz) = 45d1efbd217308ff9a7b3354ccc004f37785a270
+SHA512 (octave-4.4.1.tar.gz) = 21a1f13e2145fa530f2169254d19442b572745d65b91453ba1f552f6eda6aecfead57dbe0260b3293a29db0aa0f27cfd4f26df332e6d640848a822b20c1232f8
+Size (octave-4.4.1.tar.gz) = 28626462 bytes
+SHA1 (patch-configure) = 4226f9c717ff13bff8508f14c229704388193057
+SHA1 (patch-configure.ac) = df35493bc99f8b133865d96f079f603a33ef5cc4
 SHA1 (patch-fseeko-fpos_t.c) = b38e7a38be2e0b323cd7f168f1d22d3df998691c
 SHA1 (patch-libgnu_stdio.in.h) = 112a424655d46c75fb68531fe7a84d9a0e97a984
 SHA1 (patch-libgui_src_settings-dialog.h) = 5bf82e5d313e06ec470a1da1a615c39f74bb880f
-SHA1 (patch-libinterp_build-env.in.cc) = 09431962403996d0f979c7dcd080b721dad55055
-SHA1 (patch-libinterp_dldfcn_config-module.awk) = 0746cca7f69995abbe3af793181b96a99cf866c3
-SHA1 (patch-libinterp_dldfcn_module.mk) = a38b2b70780d33ed7e5c0f586fc9521367be0e28
+SHA1 (patch-libinterp_dldfcn_config-module.awk) = 4a6c7ee86a626a43b1c0c3514a5909cb6b663719
+SHA1 (patch-libinterp_dldfcn_module.mk) = 1ec48eb2115da9095a8d8fe9497b25c2bc41bd91
 SHA1 (patch-libinterp_module.mk) = 26889c064497eb2bcbd77199e96925f61359c128
-SHA1 (patch-liboctave_operators_mx-inlines.cc) = e74ea202f89c1a6a394f8fd3d86397dfa2121d7e
-SHA1 (patch-liboctave_wrappers_strftime-wrapper.c) = 1b8645c00e6db0d6d7045fa0bbef13661cd2aa84
-SHA1 (patch-liboctave_wrappers_strftime-wrapper.h) = f1453aa44ea5b3600c5ed13acc2d10800f538959
+SHA1 (patch-liboctave_operators_mx-inlines.cc) = 67e9c8e9a3afe0339343087d68967ac6d9159bd5
 SHA1 (patch-m4_acinclude.m4) = 194b8c3cf6f5e45a0251b229af9b3a47c12aa608
 SHA1 (patch-scripts_miscellaneous_unpack.m) = 82c9ca170762e223c8e5a6f88a7dd9fe2a2a33d0
 SHA1 (patch-scripts_pkg_private_configure__make.m) = 7d4b620f889faa66c4c9c581ef8a7e7692b68c94

Index: pkgsrc/math/octave/patches/patch-configure
diff -u pkgsrc/math/octave/patches/patch-configure:1.6 pkgsrc/math/octave/patches/patch-configure:1.7
--- pkgsrc/math/octave/patches/patch-configure:1.6      Tue Aug  1 11:06:18 2017
+++ pkgsrc/math/octave/patches/patch-configure  Sun Aug 12 08:33:55 2018
@@ -1,4 +1,6 @@
-$NetBSD: patch-configure,v 1.6 2017/08/01 11:06:18 maya Exp $
+$NetBSD: patch-configure,v 1.7 2018/08/12 08:33:55 maya Exp $
+
+Regen.
 
 install .oct loadable modules with INSTALL_LIB to avoid stripping them
 
@@ -11,51 +13,100 @@ https://mail-index.netbsd.org/pkgsrc-use
 Allow overriding MKOCTFILE_F77 so we can provide the full path to gfortran
 (for building octave-forge packages like control)
 
---- configure.orig     2016-11-13 15:22:50.000000000 +0000
+Additional changes are due to autoconf changes.
+
+--- configure.orig     2018-08-09 18:20:32.000000000 +0000
 +++ configure
-@@ -1971,6 +1971,7 @@ DEFAULT_PAGER
+@@ -1733,6 +1733,7 @@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE
+ INCLUDE_NEXT
+ LIB_CRYPTO
+ pkglibexecdir
++runstatedir
+ lispdir
+ REPLACE_FDOPENDIR
+ REPLACE_DIRFD
+@@ -2092,6 +2093,7 @@ PYTHON
+ DEFAULT_PAGER
  GNUPLOT
  GHOSTSCRIPT
- DESKTOP_FILE_INSTALL
 +INSTALL_LIB
  LN_S
+ REPRODUCIBLE_TAR_FLAGS
  TEXI2PDF
- TEXI2DVI
-@@ -5938,7 +5939,7 @@ case $host_os in *\ *) host_os=`echo "$h
-     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: configuring Octave for unknown system type" >&5
- $as_echo "$as_me: WARNING: configuring Octave for unknown system type" >&2;}
-   fi
--  canonical_host_type=$host
-+  canonical_host_type=$host_alias
- 
-   if test -z "$host_cpu"; then
-     host_cpu=unknown
-@@ -9211,8 +9212,9 @@ fi
+@@ -2221,7 +2223,6 @@ infodir
+ docdir
+ oldincludedir
+ includedir
+-runstatedir
+ localstatedir
+ sharedstatedir
+ sysconfdir
+@@ -2446,7 +2447,6 @@ datadir='${datarootdir}'
+ sysconfdir='${prefix}/etc'
+ sharedstatedir='${prefix}/com'
+ localstatedir='${prefix}/var'
+-runstatedir='${localstatedir}/run'
+ includedir='${prefix}/include'
+ oldincludedir='/usr/include'
+ docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
+@@ -2699,15 +2699,6 @@ do
+   | -silent | --silent | --silen | --sile | --sil)
+     silent=yes ;;
+ 
+-  -runstatedir | --runstatedir | --runstatedi | --runstated \
+-  | --runstate | --runstat | --runsta | --runst | --runs \
+-  | --run | --ru | --r)
+-    ac_prev=runstatedir ;;
+-  -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \
+-  | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \
+-  | --run=* | --ru=* | --r=*)
+-    runstatedir=$ac_optarg ;;
+-
+   -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
+     ac_prev=sbindir ;;
+   -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
+@@ -2845,7 +2836,7 @@ fi
+ for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
+               datadir sysconfdir sharedstatedir localstatedir includedir \
+               oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
+-              libdir localedir mandir runstatedir
++              libdir localedir mandir
+ do
+   eval ac_val=\$$ac_var
+   # Remove trailing slashes.
+@@ -2998,7 +2989,6 @@ Fine tuning of the installation director
+   --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
+   --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
+   --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
+-  --runstatedir=DIR       modifiable per-process data [LOCALSTATEDIR/run]
+   --libdir=DIR            object code libraries [EPREFIX/lib]
+   --includedir=DIR        C header files [PREFIX/include]
+   --oldincludedir=DIR     C header files for non-gcc [/usr/include]
+@@ -9414,7 +9404,10 @@ fi
  
  
  
-+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
- 
 -INSTALL_SCRIPT="${INSTALL}"
++test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
++
 +test -z "$INSTALL_LIB" && INSTALL_LIB='${INSTALL_SCRIPT}'
++
  
  
- 
-@@ -28323,7 +28325,12 @@ else
- fi
+ ## Programs used when running Octave.
+@@ -12974,6 +12967,11 @@ fi
          done
          ;;
--      -[lLR]*)
-+      -R*)
-+        ac_arg="-Wl,$ac_arg"
-+        shift
-+        set X $ac_arg "$@"
-+        ;;
-+      -[lLR]*|-Wl*)
+       -[lLR]*)
++          case $ac_arg in
++          -R*)
++              ac_arg="-Wl,$ac_arg"
++              ;;
++          esac
            ac_exists=false
    for ac_i in $ac_cv_f77_libs; do
      if test x"$ac_arg" = x"$ac_i"; then
-@@ -29516,13 +29523,13 @@ if test "$cross_compiling" = yes && test
+@@ -34971,13 +34969,13 @@ if test "$cross_compiling" = yes && test
    MKOCTFILE_LD_CXX=`echo "$LD_CXX" | $SED "s,$CROSS_TOOL_PREFIX,,"`
    MKOCTFILE_RANLIB=`echo "$RANLIB" | $SED "s,$CROSS_TOOL_PREFIX,,"`
  else
@@ -76,3 +127,12 @@ Allow overriding MKOCTFILE_F77 so we can
  fi
  { $as_echo "$as_me:${as_lineno-$LINENO}: defining CROSS_TOOL_PREFIX to be $CROSS_TOOL_PREFIX" >&5
  $as_echo "$as_me: defining CROSS_TOOL_PREFIX to be $CROSS_TOOL_PREFIX" >&6;}
+@@ -36091,6 +36089,8 @@ else
+ # ifdef _MSC_VER
+ #  include <malloc.h>
+ #  define alloca _alloca
++# elif defined(__NetBSD__) || defined(__FreeBSD__) || defined(__DragonFly__) || defined(__OpenBSD__)
++#   include <stdlib.h>
+ # else
+ #  ifdef HAVE_ALLOCA_H
+ #   include <alloca.h>

Index: pkgsrc/math/octave/patches/patch-configure.ac
diff -u pkgsrc/math/octave/patches/patch-configure.ac:1.4 pkgsrc/math/octave/patches/patch-configure.ac:1.5
--- pkgsrc/math/octave/patches/patch-configure.ac:1.4   Tue Aug  1 11:06:18 2017
+++ pkgsrc/math/octave/patches/patch-configure.ac       Sun Aug 12 08:33:55 2018
@@ -1,4 +1,4 @@
-$NetBSD: patch-configure.ac,v 1.4 2017/08/01 11:06:18 maya Exp $
+$NetBSD: patch-configure.ac,v 1.5 2018/08/12 08:33:55 maya Exp $
 
 install .oct loadable modules with INSTALL_LIB to avoid stripping them
 
@@ -7,7 +7,7 @@ Allow overriding MKOCTFILE_F77 so we can
 
 --- configure.ac.orig  2016-11-13 15:19:37.000000000 +0000
 +++ configure.ac
-@@ -208,8 +208,11 @@ AC_PROG_LN_S
+@@ -215,8 +215,11 @@ AC_PROG_LN_S
  AC_PROG_MKDIR_P
  
  AC_PROG_INSTALL
@@ -18,9 +18,9 @@ Allow overriding MKOCTFILE_F77 so we can
 +AC_SUBST(INSTALL_LIB)
 +
  
- OCTAVE_PROG_DESKTOP_FILE_INSTALL
- 
-@@ -1074,13 +1077,13 @@ if test "$cross_compiling" = yes && test
+ ## Programs used when running Octave.
+ OCTAVE_PROG_GHOSTSCRIPT
+@@ -933,13 +936,13 @@ if test "$cross_compiling" = yes && test
    MKOCTFILE_LD_CXX=`echo "$LD_CXX" | $SED "s,$CROSS_TOOL_PREFIX,,"`
    MKOCTFILE_RANLIB=`echo "$RANLIB" | $SED "s,$CROSS_TOOL_PREFIX,,"`
  else

Index: pkgsrc/math/octave/patches/patch-libinterp_dldfcn_config-module.awk
diff -u pkgsrc/math/octave/patches/patch-libinterp_dldfcn_config-module.awk:1.2 pkgsrc/math/octave/patches/patch-libinterp_dldfcn_config-module.awk:1.3
--- pkgsrc/math/octave/patches/patch-libinterp_dldfcn_config-module.awk:1.2     Sat Nov 19 21:53:12 2016
+++ pkgsrc/math/octave/patches/patch-libinterp_dldfcn_config-module.awk Sun Aug 12 08:33:55 2018
@@ -1,15 +1,15 @@
-$NetBSD: patch-libinterp_dldfcn_config-module.awk,v 1.2 2016/11/19 21:53:12 maya Exp $
+$NetBSD: patch-libinterp_dldfcn_config-module.awk,v 1.3 2018/08/12 08:33:55 maya Exp $
 
 install .oct loadable modules with INSTALL_LIB to avoid stripping them
 
---- libinterp/dldfcn/config-module.awk.orig    2016-11-13 15:16:10.000000000 +0000
+--- libinterp/dldfcn/config-module.awk.orig    2018-08-09 18:20:32.000000000 +0000
 +++ libinterp/dldfcn/config-module.awk
-@@ -39,7 +39,7 @@ BEGIN {
+@@ -57,7 +57,7 @@ BEGIN {
    print "## of symbolic links";
    print "";
    print "%.oct : %.la"
--  print "     $(AM_V_GEN)$(INSTALL_PROGRAM) libinterp/dldfcn/.libs/$(shell $(SED) -n -e \"s/dlname='\\([^']*\\)'/\\1/p\" < $<) $@"
-+  print "     $(AM_V_GEN)$(INSTALL_LIB) libinterp/dldfcn/.libs/$(shell $(SED) -n -e \"s/dlname='\\([^']*\\)'/\\1/p\" < $<) $@"
+-  print "\t$(AM_V_GEN)$(INSTALL_PROGRAM) %reldir%/.libs/$(shell $(SED) -n -e \"s/dlname='\\([^']*\\)'/\\1/p\" < $<) $@"
++  print "\t$(AM_V_GEN)$(INSTALL_LIB) %reldir%/.libs/$(shell $(SED) -n -e \"s/dlname='\\([^']*\\)'/\\1/p\" < $<) $@"
    print ""
    print "else";
    print "";
Index: pkgsrc/math/octave/patches/patch-libinterp_dldfcn_module.mk
diff -u pkgsrc/math/octave/patches/patch-libinterp_dldfcn_module.mk:1.2 pkgsrc/math/octave/patches/patch-libinterp_dldfcn_module.mk:1.3
--- pkgsrc/math/octave/patches/patch-libinterp_dldfcn_module.mk:1.2     Sat Nov 19 21:53:12 2016
+++ pkgsrc/math/octave/patches/patch-libinterp_dldfcn_module.mk Sun Aug 12 08:33:55 2018
@@ -1,15 +1,15 @@
-$NetBSD: patch-libinterp_dldfcn_module.mk,v 1.2 2016/11/19 21:53:12 maya Exp $
+$NetBSD: patch-libinterp_dldfcn_module.mk,v 1.3 2018/08/12 08:33:55 maya Exp $
 
 install .oct loadable modules with INSTALL_LIB to avoid stripping them
 
---- libinterp/dldfcn/module.mk.orig    2016-11-13 15:22:17.000000000 +0000
+--- libinterp/dldfcn/module.mk.orig    2018-08-09 18:20:32.000000000 +0000
 +++ libinterp/dldfcn/module.mk
-@@ -39,7 +39,7 @@ octlib_LTLIBRARIES += $(DLDFCN_LIBS)
+@@ -40,7 +40,7 @@ octlib_LTLIBRARIES += $(DLDFCN_LIBS)
  ## of symbolic links
  
  %.oct : %.la
--      $(AM_V_GEN)$(INSTALL_PROGRAM) libinterp/dldfcn/.libs/$(shell $(SED) -n -e "s/dlname='\([^']*\)'/\1/p" < $<) $@
-+      $(AM_V_GEN)$(INSTALL_LIB) libinterp/dldfcn/.libs/$(shell $(SED) -n -e "s/dlname='\([^']*\)'/\1/p" < $<) $@
+-      $(AM_V_GEN)$(INSTALL_PROGRAM) %reldir%/.libs/$(shell $(SED) -n -e "s/dlname='\([^']*\)'/\1/p" < $<) $@
++      $(AM_V_GEN)$(INSTALL_LIB) %reldir%/.libs/$(shell $(SED) -n -e "s/dlname='\([^']*\)'/\1/p" < $<) $@
  
  else
  

Index: pkgsrc/math/octave/patches/patch-liboctave_operators_mx-inlines.cc
diff -u pkgsrc/math/octave/patches/patch-liboctave_operators_mx-inlines.cc:1.3 pkgsrc/math/octave/patches/patch-liboctave_operators_mx-inlines.cc:1.4
--- pkgsrc/math/octave/patches/patch-liboctave_operators_mx-inlines.cc:1.3      Sat Nov 19 21:53:12 2016
+++ pkgsrc/math/octave/patches/patch-liboctave_operators_mx-inlines.cc  Sun Aug 12 08:33:55 2018
@@ -1,4 +1,4 @@
-$NetBSD: patch-liboctave_operators_mx-inlines.cc,v 1.3 2016/11/19 21:53:12 maya Exp $
+$NetBSD: patch-liboctave_operators_mx-inlines.cc,v 1.4 2018/08/12 08:33:55 maya Exp $
 
 std::pow is required to promote numeric arguments to the smallest
 common float type. octave_int<> provides another test of template
@@ -8,13 +8,13 @@ The combination of both leads to ambiguo
 https://savannah.gnu.org/bugs/?43298
 https://llvm.org/bugs/show_bug.cgi?id=21083
 
---- liboctave/operators/mx-inlines.cc.orig     2016-11-13 15:16:10.000000000 +0000
+--- liboctave/operators/mx-inlines.cc.orig     2018-08-09 18:20:32.000000000 +0000
 +++ liboctave/operators/mx-inlines.cc
-@@ -398,7 +398,6 @@ DEFMINMAXSPEC (float, mx_inline_xmax, >=
+@@ -412,7 +412,6 @@ template <typename R, typename X, typena
+ inline void
+ mx_inline_pow (size_t n, R *r, const X *x, const Y *y)
+ {
+-  using std::pow;
  
- // Let the compiler decide which pow to use, whichever best matches the
- // arguments provided.
--using std::pow;
- DEFMXMAPPER2X (mx_inline_pow, pow)
- 
- // Arbitrary function appliers.
+   for (size_t i = 0; i < n; i++)
+     r[i] = pow (x[i], y[i]);



Home | Main Index | Thread Index | Old Index