On Thu, Nov 02, 2017 at 10:56:22AM +0100, Steven Mestdagh wrote: > comments welcome.
Had a similar diff in openbsd-wip on github that did not work when gcc was around. Looks like clang fixed that, OK! > > > Index: Makefile > =================================================================== > RCS file: /cvs/ports/math/octave/Makefile,v > retrieving revision 1.97 > diff -u -p -u -r1.97 Makefile > --- Makefile 30 Oct 2017 13:55:10 -0000 1.97 > +++ Makefile 2 Nov 2017 09:30:57 -0000 > @@ -2,14 +2,13 @@ > > COMMENT = high-level language for numerical computations > > -VERSION = 4.0.2 > +VERSION = 4.2.1 > DISTNAME = octave-${VERSION} > -REVISION = 6 > CATEGORIES = math > > -SHARED_LIBS += octave 7.0 # 3.0 > -SHARED_LIBS += octgui 1.0 # 1.0 > -SHARED_LIBS += octinterp 6.0 # 3.0 > +SHARED_LIBS += octave 8.0 > +SHARED_LIBS += octgui 2.0 > +SHARED_LIBS += octinterp 7.0 > > HOMEPAGE = https://www.gnu.org/software/octave/ > > @@ -19,22 +18,26 @@ MAINTAINER = Steven Mestdagh <steven@ope > PERMIT_PACKAGE_CDROM = Yes > > WANTLIB += ${MODFORTRAN_WANTLIB} > -WANTLIB += FLAC GL GLU GraphicsMagick GraphicsMagick++ ICE OSMesa QtGui > -WANTLIB += QtNetwork QtOpenGL SM X11 X11-xcb Xau Xcursor Xdamage Xdmcp > +WANTLIB += FLAC GL GLU GraphicsMagick GraphicsMagick++ ICE OSMesa > +WANTLIB += Qt5Gui Qt5Network Qt5OpenGL Qt5PrintSupport Qt5Widgets Qt5Core > +WANTLIB += qscintilla2_qt5 > +WANTLIB += SM X11 X11-xcb Xau Xcursor Xdamage Xdmcp > WANTLIB += Xext Xfixes Xft Xi Xinerama Xmu Xrandr Xrender Xt Xxf86vm amd > WANTLIB += arpack blas bz2 c camd ccolamd cholmod colamd crypto curl > WANTLIB += cxsparse drm ereadline expat fftw3 fftw3_threads fftw3f > WANTLIB += fftw3f_threads fltk fltk_gl fontconfig freetype gl2ps glapi > WANTLIB += glpk glut gmp hdf5 lapack lcms2 ltdl lzma m ncurses nghttp2 > WANTLIB += ogg pcre png portaudio pthread qhull qrupdate > -WANTLIB += qscintilla2_qt4 sndfile sndio ssl ${COMPILER_LIBCXX} > suitesparseconfig > -WANTLIB += umfpack usbhid util vorbis vorbisenc xcb xcb-dri2 xcb-glx z > +WANTLIB += sndfile sndio ssl ${COMPILER_LIBCXX} suitesparseconfig > +WANTLIB += umfpack util vorbis vorbisenc xcb xcb-dri2 xcb-glx z > +WANTLIB += execinfo glib-2.0 graphite2 gthread-2.0 harfbuzz icudata > +WANTLIB += icui18n icuuc pcre2-16 > > MASTER_SITES = ${MASTER_SITE_GNU:=octave/} > > MODULES = devel/gettext \ > fortran \ > - x11/qt4 > + x11/qt5 > > BUILD_DEPENDS = ${MODFORTRAN_BUILD_DEPENDS} \ > print/texinfo \ > @@ -52,7 +55,7 @@ LIB_DEPENDS = ${MODFORTRAN_LIB_DEPENDS} > devel/glpk \ > devel/pcre \ > devel/readline \ > - editors/qscintilla \ > + editors/qscintilla,qt5 \ > graphics/GraphicsMagick \ > math/arpack \ > math/fftw3 \ > @@ -69,12 +72,14 @@ SEPARATE_BUILD = Yes > USE_GMAKE = Yes > CONFIGURE_STYLE = gnu > # --disable-readline: needs GNU readline > -CONFIGURE_ARGS = --disable-java > +CONFIGURE_ARGS = --disable-java \ > + octave_cv_version_2_6_0=yes > CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include \ > -I${LOCALBASE}/include/ereadline" \ > LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \ > LRELEASE="${MODQT_LRELEASE}" \ > - F77=${FC} > + F77=${FC} CXXFLAGS="${CXXFLAGS} -std=gnu++11" > + > > # needed to build on amd64 > GCC_ARCH = ${MACHINE_ARCH}-unknown-openbsd${OSREV} > Index: distinfo > =================================================================== > RCS file: /cvs/ports/math/octave/distinfo,v > retrieving revision 1.17 > diff -u -p -u -r1.17 distinfo > --- distinfo 23 Apr 2016 12:44:14 -0000 1.17 > +++ distinfo 2 Nov 2017 09:30:57 -0000 > @@ -1,2 +1,2 @@ > -SHA256 (octave-4.0.2.tar.gz) = Oc2P02whj8AK2s4o10psfJxvqrcROlujxDcjJMdVvcE= > -SIZE (octave-4.0.2.tar.gz) = 22175922 > +SHA256 (octave-4.2.1.tar.gz) = gMKPY5hXa1D6yg5gLe+5WY1vcwiwkDckRCwqNaYFMzs= > +SIZE (octave-4.2.1.tar.gz) = 25409651 > Index: patches/patch-configure > =================================================================== > RCS file: /cvs/ports/math/octave/patches/patch-configure,v > retrieving revision 1.9 > diff -u -p -u -r1.9 patch-configure > --- patches/patch-configure 23 Apr 2016 12:44:14 -0000 1.9 > +++ patches/patch-configure 2 Nov 2017 09:30:57 -0000 > @@ -2,9 +2,19 @@ $OpenBSD: patch-configure,v 1.9 2016/04/ > > Use GNU readline as our base readline lacks rl_prefer_env_winsize. > > ---- configure.orig Wed Apr 20 21:02:19 2016 > -+++ configure Fri Apr 22 23:52:05 2016 > -@@ -39759,13 +39759,13 @@ fi > +Index: configure > +--- configure.orig > ++++ configure > +@@ -34701,7 +34701,7 @@ $as_echo_n "checking Qt version $ver... " >&6; } > + ;; > + 5) > + QT_MODULES="Qt5Core Qt5Gui Qt5Network Qt5OpenGL Qt5PrintSupport" > +- octave_qscintilla_libnames="qscintilla2-qt5 qt5scintilla2" > ++ octave_qscintilla_libnames="qscintilla2_qt5 qt5scintilla2" > + ;; > + *) > + as_fn_error $? "Unrecognized Qt version $qt_version" "$LINENO" 5 > +@@ -44617,13 +44617,13 @@ fi > > ac_octave_save_LIBS="$LIBS" > LIBS="$TERM_LIBS" > @@ -21,7 +31,7 @@ Use GNU readline as our base readline la > cat confdefs.h - <<_ACEOF >conftest.$ac_ext > /* end confdefs.h. */ > > -@@ -39804,7 +39804,7 @@ fi > +@@ -44662,7 +44662,7 @@ fi > { $as_echo "$as_me:${as_lineno-$LINENO}: result: > $ac_cv_lib_readline_rl_set_keyboard_input_timeout" >&5 > $as_echo "$ac_cv_lib_readline_rl_set_keyboard_input_timeout" >&6; } > if test "x$ac_cv_lib_readline_rl_set_keyboard_input_timeout" = xyes; then : > Index: patches/patch-doc_interpreter_Makefile_in > =================================================================== > RCS file: patches/patch-doc_interpreter_Makefile_in > diff -N patches/patch-doc_interpreter_Makefile_in > --- patches/patch-doc_interpreter_Makefile_in 22 Apr 2016 17:21:39 -0000 > 1.8 > +++ /dev/null 1 Jan 1970 00:00:00 -0000 > @@ -1,13 +0,0 @@ > -$OpenBSD: patch-doc_interpreter_Makefile_in,v 1.8 2016/04/22 17:21:39 steven > Exp $ > -avoid rebuilding info file > ---- doc/interpreter/Makefile.in.orig Thu Apr 21 11:13:33 2016 > -+++ doc/interpreter/Makefile.in Thu Apr 21 11:13:47 2016 > -@@ -2494,7 +2494,7 @@ install-html-am: $(HTMLS) > - done; } > - install-info: install-info-am > - > --install-info-am: $(INFO_DEPS) > -+install-info-am: > - @$(NORMAL_INSTALL) > - @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ > - list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \ > Index: patches/patch-doc_liboctave_Makefile_in > =================================================================== > RCS file: patches/patch-doc_liboctave_Makefile_in > diff -N patches/patch-doc_liboctave_Makefile_in > --- patches/patch-doc_liboctave_Makefile_in 22 Apr 2016 17:21:39 -0000 > 1.8 > +++ /dev/null 1 Jan 1970 00:00:00 -0000 > @@ -1,13 +0,0 @@ > -$OpenBSD: patch-doc_liboctave_Makefile_in,v 1.8 2016/04/22 17:21:39 steven > Exp $ > -avoid rebuilding info file > ---- doc/liboctave/Makefile.in.orig Thu Apr 21 12:39:41 2016 > -+++ doc/liboctave/Makefile.in Thu Apr 21 12:39:59 2016 > -@@ -2238,7 +2238,7 @@ install-html-am: $(HTMLS) > - done; } > - install-info: install-info-am > - > --install-info-am: $(INFO_DEPS) > -+install-info-am: > - @$(NORMAL_INSTALL) > - @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ > - list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \ > Index: patches/patch-liboctave_system_file-stat_cc > =================================================================== > RCS file: patches/patch-liboctave_system_file-stat_cc > diff -N patches/patch-liboctave_system_file-stat_cc > --- /dev/null 1 Jan 1970 00:00:00 -0000 > +++ patches/patch-liboctave_system_file-stat_cc 2 Nov 2017 09:30:57 > -0000 > @@ -0,0 +1,14 @@ > +$OpenBSD$ > + > +Index: liboctave/system/file-stat.cc > +--- liboctave/system/file-stat.cc.orig > ++++ liboctave/system/file-stat.cc > +@@ -174,7 +174,7 @@ namespace octave > + update_internal (); > + } > + > +- inline file_stat::~file_stat () { } > ++ file_stat::~file_stat () { } > + > + void > + file_stat::update_internal (bool force) > Index: patches/patch-scripts_pkg_private_configure_make_m > =================================================================== > RCS file: > /cvs/ports/math/octave/patches/patch-scripts_pkg_private_configure_make_m,v > retrieving revision 1.1 > diff -u -p -u -r1.1 patch-scripts_pkg_private_configure_make_m > --- patches/patch-scripts_pkg_private_configure_make_m 24 Jul 2015 > 14:54:01 -0000 1.1 > +++ patches/patch-scripts_pkg_private_configure_make_m 2 Nov 2017 > 09:30:57 -0000 > @@ -1,7 +1,8 @@ > -$OpenBSD: patch-scripts_pkg_private_configure_make_m,v 1.1 2015/07/24 > 14:54:01 feinerer Exp $ > ---- scripts/pkg/private/configure_make.m.orig Thu Jul 23 12:27:30 2015 > -+++ scripts/pkg/private/configure_make.m Thu Jul 23 12:27:15 2015 > -@@ -88,7 +88,7 @@ function configure_make (desc, packdir, verbose) > +$OpenBSD$ > +Index: scripts/pkg/private/configure_make.m > +--- scripts/pkg/private/configure_make.m.orig > ++++ scripts/pkg/private/configure_make.m > +@@ -87,7 +87,7 @@ function configure_make (desc, packdir, verbose) > endif > > if (exist (fullfile (src, "Makefile"), "file")) > Index: pkg/PLIST > =================================================================== > RCS file: /cvs/ports/math/octave/pkg/PLIST,v > retrieving revision 1.20 > diff -u -p -u -r1.20 PLIST > --- pkg/PLIST 19 Apr 2016 05:55:44 -0000 1.20 > +++ pkg/PLIST 2 Nov 2017 09:30:57 -0000 > @@ -19,15 +19,6 @@ include/octave-${VERSION}/octave/CNDArra > include/octave-${VERSION}/octave/CRowVector.h > include/octave-${VERSION}/octave/CSparse.h > include/octave-${VERSION}/octave/Cell.h > -include/octave-${VERSION}/octave/CmplxAEPBAL.h > -include/octave-${VERSION}/octave/CmplxCHOL.h > -include/octave-${VERSION}/octave/CmplxGEPBAL.h > -include/octave-${VERSION}/octave/CmplxHESS.h > -include/octave-${VERSION}/octave/CmplxLU.h > -include/octave-${VERSION}/octave/CmplxQR.h > -include/octave-${VERSION}/octave/CmplxQRP.h > -include/octave-${VERSION}/octave/CmplxSCHUR.h > -include/octave-${VERSION}/octave/CmplxSVD.h > include/octave-${VERSION}/octave/CollocWt.h > include/octave-${VERSION}/octave/DAE.h > include/octave-${VERSION}/octave/DAEFunc.h > @@ -45,13 +36,10 @@ include/octave-${VERSION}/octave/DiagArr > include/octave-${VERSION}/octave/EIG.h > include/octave-${VERSION}/octave/LSODE-opts.h > include/octave-${VERSION}/octave/LSODE.h > -include/octave-${VERSION}/octave/MArray-decl.h > -include/octave-${VERSION}/octave/MArray-defs.h > include/octave-${VERSION}/octave/MArray.cc > include/octave-${VERSION}/octave/MArray.h > include/octave-${VERSION}/octave/MDiagArray2.cc > include/octave-${VERSION}/octave/MDiagArray2.h > -include/octave-${VERSION}/octave/MSparse-defs.h > include/octave-${VERSION}/octave/MSparse.cc > include/octave-${VERSION}/octave/MSparse.h > include/octave-${VERSION}/octave/Matrix.h > @@ -70,41 +58,35 @@ include/octave-${VERSION}/octave/Sparse- > include/octave-${VERSION}/octave/Sparse-perm-op-defs.h > include/octave-${VERSION}/octave/Sparse.cc > include/octave-${VERSION}/octave/Sparse.h > -include/octave-${VERSION}/octave/SparseCmplxCHOL.h > -include/octave-${VERSION}/octave/SparseCmplxLU.h > -include/octave-${VERSION}/octave/SparseCmplxQR.h > -include/octave-${VERSION}/octave/SparseQR.h > -include/octave-${VERSION}/octave/SparsedbleCHOL.h > -include/octave-${VERSION}/octave/SparsedbleLU.h > include/octave-${VERSION}/octave/action-container.h > -include/octave-${VERSION}/octave/base-aepbal.h > +include/octave-${VERSION}/octave/aepbalance.h > include/octave-${VERSION}/octave/base-dae.h > include/octave-${VERSION}/octave/base-de.h > include/octave-${VERSION}/octave/base-list.h > -include/octave-${VERSION}/octave/base-lu.cc > -include/octave-${VERSION}/octave/base-lu.h > include/octave-${VERSION}/octave/base-min.h > -include/octave-${VERSION}/octave/base-qr.cc > -include/octave-${VERSION}/octave/base-qr.h > +include/octave-${VERSION}/octave/base-text-renderer.h > include/octave-${VERSION}/octave/boolMatrix.h > include/octave-${VERSION}/octave/boolNDArray.h > include/octave-${VERSION}/octave/boolSparse.h > include/octave-${VERSION}/octave/bsxfun-decl.h > include/octave-${VERSION}/octave/bsxfun-defs.cc > include/octave-${VERSION}/octave/bsxfun.h > +include/octave-${VERSION}/octave/build-env.h > include/octave-${VERSION}/octave/builtin-defun-decls.h > include/octave-${VERSION}/octave/builtins.h > include/octave-${VERSION}/octave/byte-swap.h > include/octave-${VERSION}/octave/c-file-ptr-stream.h > +include/octave-${VERSION}/octave/call-stack.h > include/octave-${VERSION}/octave/caseless-str.h > include/octave-${VERSION}/octave/cdisplay.h > include/octave-${VERSION}/octave/chMatrix.h > include/octave-${VERSION}/octave/chNDArray.h > +include/octave-${VERSION}/octave/child-list.h > +include/octave-${VERSION}/octave/chol.h > include/octave-${VERSION}/octave/cmd-edit.h > include/octave-${VERSION}/octave/cmd-hist.h > include/octave-${VERSION}/octave/comment-list.h > include/octave-${VERSION}/octave/config.h > -include/octave-${VERSION}/octave/cutils.h > include/octave-${VERSION}/octave/dColVector.h > include/octave-${VERSION}/octave/dDiagMatrix.h > include/octave-${VERSION}/octave/dMatrix.h > @@ -113,15 +95,6 @@ include/octave-${VERSION}/octave/dRowVec > include/octave-${VERSION}/octave/dSparse.h > include/octave-${VERSION}/octave/data-conv.h > include/octave-${VERSION}/octave/data.h > -include/octave-${VERSION}/octave/dbleAEPBAL.h > -include/octave-${VERSION}/octave/dbleCHOL.h > -include/octave-${VERSION}/octave/dbleGEPBAL.h > -include/octave-${VERSION}/octave/dbleHESS.h > -include/octave-${VERSION}/octave/dbleLU.h > -include/octave-${VERSION}/octave/dbleQR.h > -include/octave-${VERSION}/octave/dbleQRP.h > -include/octave-${VERSION}/octave/dbleSCHUR.h > -include/octave-${VERSION}/octave/dbleSVD.h > include/octave-${VERSION}/octave/debug.h > include/octave-${VERSION}/octave/defaults.h > include/octave-${VERSION}/octave/defun-dld.h > @@ -132,8 +105,9 @@ include/octave-${VERSION}/octave/dir-ops > include/octave-${VERSION}/octave/dirfns.h > include/octave-${VERSION}/octave/display.h > include/octave-${VERSION}/octave/dynamic-ld.h > -include/octave-${VERSION}/octave/eigs-base.cc > +include/octave-${VERSION}/octave/eigs-base.h > include/octave-${VERSION}/octave/error.h > +include/octave-${VERSION}/octave/errwarn.h > include/octave-${VERSION}/octave/event-queue.h > include/octave-${VERSION}/octave/f77-fcn.h > include/octave-${VERSION}/octave/fCColVector.h > @@ -141,15 +115,6 @@ include/octave-${VERSION}/octave/fCDiagM > include/octave-${VERSION}/octave/fCMatrix.h > include/octave-${VERSION}/octave/fCNDArray.h > include/octave-${VERSION}/octave/fCRowVector.h > -include/octave-${VERSION}/octave/fCmplxAEPBAL.h > -include/octave-${VERSION}/octave/fCmplxCHOL.h > -include/octave-${VERSION}/octave/fCmplxGEPBAL.h > -include/octave-${VERSION}/octave/fCmplxHESS.h > -include/octave-${VERSION}/octave/fCmplxLU.h > -include/octave-${VERSION}/octave/fCmplxQR.h > -include/octave-${VERSION}/octave/fCmplxQRP.h > -include/octave-${VERSION}/octave/fCmplxSCHUR.h > -include/octave-${VERSION}/octave/fCmplxSVD.h > include/octave-${VERSION}/octave/fColVector.h > include/octave-${VERSION}/octave/fDiagMatrix.h > include/octave-${VERSION}/octave/fEIG.h > @@ -159,23 +124,17 @@ include/octave-${VERSION}/octave/fRowVec > include/octave-${VERSION}/octave/file-io.h > include/octave-${VERSION}/octave/file-ops.h > include/octave-${VERSION}/octave/file-stat.h > -include/octave-${VERSION}/octave/floatAEPBAL.h > -include/octave-${VERSION}/octave/floatCHOL.h > -include/octave-${VERSION}/octave/floatGEPBAL.h > -include/octave-${VERSION}/octave/floatHESS.h > -include/octave-${VERSION}/octave/floatLU.h > -include/octave-${VERSION}/octave/floatQR.h > -include/octave-${VERSION}/octave/floatQRP.h > -include/octave-${VERSION}/octave/floatSCHUR.h > -include/octave-${VERSION}/octave/floatSVD.h > +include/octave-${VERSION}/octave/ft-text-renderer.h > include/octave-${VERSION}/octave/functor.h > +include/octave-${VERSION}/octave/gepbalance.h > include/octave-${VERSION}/octave/gl-render.h > -include/octave-${VERSION}/octave/gl2ps-renderer.h > +include/octave-${VERSION}/octave/gl2ps-print.h > include/octave-${VERSION}/octave/glob-match.h > include/octave-${VERSION}/octave/graphics-props.cc > include/octave-${VERSION}/octave/graphics.h > include/octave-${VERSION}/octave/gripes.h > include/octave-${VERSION}/octave/help.h > +include/octave-${VERSION}/octave/hess.h > include/octave-${VERSION}/octave/hook-fcn.h > include/octave-${VERSION}/octave/idx-vector.h > include/octave-${VERSION}/octave/input.h > @@ -185,19 +144,31 @@ include/octave-${VERSION}/octave/int64ND > include/octave-${VERSION}/octave/int8NDArray.h > include/octave-${VERSION}/octave/intNDArray.cc > include/octave-${VERSION}/octave/intNDArray.h > +include/octave-${VERSION}/octave/interpreter.h > include/octave-${VERSION}/octave/jit-ir.h > include/octave-${VERSION}/octave/jit-typeinfo.h > include/octave-${VERSION}/octave/jit-util.h > -include/octave-${VERSION}/octave/kpse.cc > include/octave-${VERSION}/octave/lex.h > +include/octave-${VERSION}/octave/liboctave-build-info.h > +include/octave-${VERSION}/octave/liboctinterp-build-info.h > +include/octave-${VERSION}/octave/lo-amos-proto.h > +include/octave-${VERSION}/octave/lo-arpack-proto.h > +include/octave-${VERSION}/octave/lo-array-errwarn.h > include/octave-${VERSION}/octave/lo-array-gripes.h > +include/octave-${VERSION}/octave/lo-blas-proto.h > include/octave-${VERSION}/octave/lo-cutils.h > include/octave-${VERSION}/octave/lo-error.h > +include/octave-${VERSION}/octave/lo-fftpack-proto.h > +include/octave-${VERSION}/octave/lo-hash.h > include/octave-${VERSION}/octave/lo-ieee.h > +include/octave-${VERSION}/octave/lo-lapack-proto.h > include/octave-${VERSION}/octave/lo-macros.h > include/octave-${VERSION}/octave/lo-mappers.h > include/octave-${VERSION}/octave/lo-math.h > +include/octave-${VERSION}/octave/lo-qrupdate-proto.h > +include/octave-${VERSION}/octave/lo-ranlib-proto.h > include/octave-${VERSION}/octave/lo-regexp.h > +include/octave-${VERSION}/octave/lo-slatec-proto.h > include/octave-${VERSION}/octave/lo-specfun.h > include/octave-${VERSION}/octave/lo-sysdep.h > include/octave-${VERSION}/octave/lo-traits.h > @@ -209,9 +180,10 @@ include/octave-${VERSION}/octave/ls-hdf5 > include/octave-${VERSION}/octave/ls-mat-ascii.h > include/octave-${VERSION}/octave/ls-mat4.h > include/octave-${VERSION}/octave/ls-mat5.h > -include/octave-${VERSION}/octave/ls-oct-ascii.h > include/octave-${VERSION}/octave/ls-oct-binary.h > +include/octave-${VERSION}/octave/ls-oct-text.h > include/octave-${VERSION}/octave/ls-utils.h > +include/octave-${VERSION}/octave/lu.h > include/octave-${VERSION}/octave/mach-info.h > include/octave-${VERSION}/octave/mex.h > include/octave-${VERSION}/octave/mexproto.h > @@ -551,30 +523,25 @@ include/octave-${VERSION}/octave/oct-all > include/octave-${VERSION}/octave/oct-base64.h > include/octave-${VERSION}/octave/oct-binmap.h > include/octave-${VERSION}/octave/oct-cmplx.h > -include/octave-${VERSION}/octave/oct-conf-post.h > -include/octave-${VERSION}/octave/oct-conf.h > include/octave-${VERSION}/octave/oct-convn.h > include/octave-${VERSION}/octave/oct-env.h > include/octave-${VERSION}/octave/oct-errno.h > include/octave-${VERSION}/octave/oct-fftw.h > include/octave-${VERSION}/octave/oct-fstrm.h > include/octave-${VERSION}/octave/oct-glob.h > -include/octave-${VERSION}/octave/oct-gperf.h > include/octave-${VERSION}/octave/oct-group.h > include/octave-${VERSION}/octave/oct-handle.h > -include/octave-${VERSION}/octave/oct-hdf5-id.h > -include/octave-${VERSION}/octave/oct-hdf5.h > +include/octave-${VERSION}/octave/oct-hdf5-types.h > include/octave-${VERSION}/octave/oct-hist.h > +include/octave-${VERSION}/octave/oct-inttypes-fwd.h > include/octave-${VERSION}/octave/oct-inttypes.h > include/octave-${VERSION}/octave/oct-iostrm.h > include/octave-${VERSION}/octave/oct-locbuf.h > include/octave-${VERSION}/octave/oct-lvalue.h > include/octave-${VERSION}/octave/oct-map.h > -include/octave-${VERSION}/octave/oct-md5.h > include/octave-${VERSION}/octave/oct-mutex.h > include/octave-${VERSION}/octave/oct-norm.h > include/octave-${VERSION}/octave/oct-obj.h > -include/octave-${VERSION}/octave/oct-openmp.h > include/octave-${VERSION}/octave/oct-passwd.h > include/octave-${VERSION}/octave/oct-prcstrm.h > include/octave-${VERSION}/octave/oct-procbuf.h > @@ -585,36 +552,29 @@ include/octave-${VERSION}/octave/oct-rl- > include/octave-${VERSION}/octave/oct-shlib.h > include/octave-${VERSION}/octave/oct-sort.cc > include/octave-${VERSION}/octave/oct-sort.h > -include/octave-${VERSION}/octave/oct-sparse.h > include/octave-${VERSION}/octave/oct-spparms.h > include/octave-${VERSION}/octave/oct-stdstrm.h > include/octave-${VERSION}/octave/oct-stream.h > +include/octave-${VERSION}/octave/oct-string.h > include/octave-${VERSION}/octave/oct-strstrm.h > include/octave-${VERSION}/octave/oct-syscalls.h > -include/octave-${VERSION}/octave/oct-tex-parser.h > include/octave-${VERSION}/octave/oct-time.h > include/octave-${VERSION}/octave/oct-uname.h > include/octave-${VERSION}/octave/oct.h > +include/octave-${VERSION}/octave/octave-build-info.h > +include/octave-${VERSION}/octave/octave-config.h > include/octave-${VERSION}/octave/octave-default-image.h > include/octave-${VERSION}/octave/octave-link.h > +include/octave-${VERSION}/octave/octave-preserve-stream-state.h > include/octave-${VERSION}/octave/octave.h > -include/octave-${VERSION}/octave/op-dm-template.cc > -include/octave-${VERSION}/octave/op-dms-template.cc > -include/octave-${VERSION}/octave/op-int.h > -include/octave-${VERSION}/octave/op-pm-template.cc > include/octave-${VERSION}/octave/ops.h > include/octave-${VERSION}/octave/options-usage.h > -include/octave-${VERSION}/octave/ov-base-diag.cc > include/octave-${VERSION}/octave/ov-base-diag.h > -include/octave-${VERSION}/octave/ov-base-int.cc > include/octave-${VERSION}/octave/ov-base-int.h > -include/octave-${VERSION}/octave/ov-base-mat.cc > include/octave-${VERSION}/octave/ov-base-mat.h > -include/octave-${VERSION}/octave/ov-base-scalar.cc > include/octave-${VERSION}/octave/ov-base-scalar.h > include/octave-${VERSION}/octave/ov-base-sparse.h > include/octave-${VERSION}/octave/ov-base.h > -include/octave-${VERSION}/octave/ov-bool-mat.cc > include/octave-${VERSION}/octave/ov-bool-mat.h > include/octave-${VERSION}/octave/ov-bool-sparse.h > include/octave-${VERSION}/octave/ov-bool.h > @@ -658,7 +618,6 @@ include/octave-${VERSION}/octave/ov-re-s > include/octave-${VERSION}/octave/ov-scalar.h > include/octave-${VERSION}/octave/ov-str-mat.h > include/octave-${VERSION}/octave/ov-struct.h > -include/octave-${VERSION}/octave/ov-type-conv.h > include/octave-${VERSION}/octave/ov-typeinfo.h > include/octave-${VERSION}/octave/ov-uint16.h > include/octave-${VERSION}/octave/ov-uint32.h > @@ -666,9 +625,9 @@ include/octave-${VERSION}/octave/ov-uint > include/octave-${VERSION}/octave/ov-uint8.h > include/octave-${VERSION}/octave/ov-usr-fcn.h > include/octave-${VERSION}/octave/ov.h > +include/octave-${VERSION}/octave/ovl.h > include/octave-${VERSION}/octave/pager.h > include/octave-${VERSION}/octave/parse.h > -include/octave-${VERSION}/octave/pathlen.h > include/octave-${VERSION}/octave/pathsearch.h > include/octave-${VERSION}/octave/pr-output.h > include/octave-${VERSION}/octave/procstream.h > @@ -705,12 +664,14 @@ include/octave-${VERSION}/octave/pt-stmt > include/octave-${VERSION}/octave/pt-unop.h > include/octave-${VERSION}/octave/pt-walk.h > include/octave-${VERSION}/octave/pt.h > +include/octave-${VERSION}/octave/qr.h > +include/octave-${VERSION}/octave/qrp.h > include/octave-${VERSION}/octave/quit.h > include/octave-${VERSION}/octave/randgamma.h > include/octave-${VERSION}/octave/randmtzig.h > include/octave-${VERSION}/octave/randpoisson.h > +include/octave-${VERSION}/octave/schur.h > include/octave-${VERSION}/octave/sighandlers.h > -include/octave-${VERSION}/octave/siglist.h > include/octave-${VERSION}/octave/singleton-cleanup.h > include/octave-${VERSION}/octave/smx-bm-sbm.h > include/octave-${VERSION}/octave/smx-cm-scm.h > @@ -718,6 +679,7 @@ include/octave-${VERSION}/octave/smx-cm- > include/octave-${VERSION}/octave/smx-cs-sm.h > include/octave-${VERSION}/octave/smx-m-scm.h > include/octave-${VERSION}/octave/smx-m-sm.h > +include/octave-${VERSION}/octave/smx-ops.h > include/octave-${VERSION}/octave/smx-s-scm.h > include/octave-${VERSION}/octave/smx-sbm-bm.h > include/octave-${VERSION}/octave/smx-scm-cm.h > @@ -728,25 +690,22 @@ include/octave-${VERSION}/octave/smx-sm- > include/octave-${VERSION}/octave/smx-sm-cs.h > include/octave-${VERSION}/octave/smx-sm-m.h > include/octave-${VERSION}/octave/smx-sm-scm.h > -include/octave-${VERSION}/octave/sparse-base-chol.cc > -include/octave-${VERSION}/octave/sparse-base-chol.h > -include/octave-${VERSION}/octave/sparse-base-lu.cc > -include/octave-${VERSION}/octave/sparse-base-lu.h > -include/octave-${VERSION}/octave/sparse-dmsolve.cc > +include/octave-${VERSION}/octave/sparse-chol.h > +include/octave-${VERSION}/octave/sparse-dmsolve.h > +include/octave-${VERSION}/octave/sparse-lu.h > +include/octave-${VERSION}/octave/sparse-qr.h > include/octave-${VERSION}/octave/sparse-sort.h > include/octave-${VERSION}/octave/sparse-util.h > include/octave-${VERSION}/octave/sparse-xdiv.h > include/octave-${VERSION}/octave/sparse-xpow.h > -include/octave-${VERSION}/octave/statdefs.h > include/octave-${VERSION}/octave/str-vec.h > include/octave-${VERSION}/octave/sun-utils.h > +include/octave-${VERSION}/octave/svd.h > include/octave-${VERSION}/octave/symtab.h > include/octave-${VERSION}/octave/sysdep.h > -include/octave-${VERSION}/octave/sysdir.h > -include/octave-${VERSION}/octave/syswait.h > +include/octave-${VERSION}/octave/text-renderer.h > include/octave-${VERSION}/octave/token.h > include/octave-${VERSION}/octave/toplev.h > -include/octave-${VERSION}/octave/txt-eng-ft.h > include/octave-${VERSION}/octave/txt-eng.h > include/octave-${VERSION}/octave/uint16NDArray.h > include/octave-${VERSION}/octave/uint32NDArray.h > @@ -777,6 +736,7 @@ include/octave-${VERSION}/octave/vx-frv- > include/octave-${VERSION}/octave/vx-frv-fcs.h > include/octave-${VERSION}/octave/vx-fs-fccv.h > include/octave-${VERSION}/octave/vx-fs-fcrv.h > +include/octave-${VERSION}/octave/vx-ops.h > include/octave-${VERSION}/octave/vx-rv-crv.h > include/octave-${VERSION}/octave/vx-rv-cs.h > include/octave-${VERSION}/octave/vx-s-ccv.h > @@ -797,7 +757,6 @@ lib/octave/${VERSION}/__fltk_uigetfile__ > lib/octave/${VERSION}/__glpk__.a > lib/octave/${VERSION}/__init_fltk__.a > lib/octave/${VERSION}/__init_gnuplot__.a > -lib/octave/${VERSION}/__magick_read__.a > lib/octave/${VERSION}/__osmesa_print__.a > lib/octave/${VERSION}/__voronoi__.a > lib/octave/${VERSION}/amd.a > @@ -809,6 +768,7 @@ lib/octave/${VERSION}/colamd.a > lib/octave/${VERSION}/convhulln.a > lib/octave/${VERSION}/dmperm.a > lib/octave/${VERSION}/fftw.a > +lib/octave/${VERSION}/gzip.a > lib/octave/${VERSION}/liboctave.a > lib/octave/${VERSION}/liboctave.la > @lib lib/octave/${VERSION}/liboctave.so.${LIBoctave_VERSION} > @@ -827,7 +787,6 @@ lib/octave/${VERSION}/oct/${GNU_ARCH}/PK > @bin lib/octave/${VERSION}/oct/${GNU_ARCH}/__glpk__.oct > @bin lib/octave/${VERSION}/oct/${GNU_ARCH}/__init_fltk__.oct > @bin lib/octave/${VERSION}/oct/${GNU_ARCH}/__init_gnuplot__.oct > -@bin lib/octave/${VERSION}/oct/${GNU_ARCH}/__magick_read__.oct > @bin lib/octave/${VERSION}/oct/${GNU_ARCH}/__osmesa_print__.oct > @bin lib/octave/${VERSION}/oct/${GNU_ARCH}/__voronoi__.oct > @bin lib/octave/${VERSION}/oct/${GNU_ARCH}/amd.oct > @@ -839,6 +798,7 @@ lib/octave/${VERSION}/oct/${GNU_ARCH}/PK > @bin lib/octave/${VERSION}/oct/${GNU_ARCH}/convhulln.oct > @bin lib/octave/${VERSION}/oct/${GNU_ARCH}/dmperm.oct > @bin lib/octave/${VERSION}/oct/${GNU_ARCH}/fftw.oct > +@bin lib/octave/${VERSION}/oct/${GNU_ARCH}/gzip.oct > @bin lib/octave/${VERSION}/oct/${GNU_ARCH}/qr.oct > @bin lib/octave/${VERSION}/oct/${GNU_ARCH}/symbfact.oct > @bin lib/octave/${VERSION}/oct/${GNU_ARCH}/symrcm.oct > @@ -850,8 +810,8 @@ lib/octave/${VERSION}/symbfact.a > lib/octave/${VERSION}/symrcm.a > lib/octave/site/ > lib/octave/site/oct/ > -lib/octave/site/oct/api-v50+/ > -lib/octave/site/oct/api-v50+/${GNU_ARCH}/ > +lib/octave/site/oct/api-v51/ > +lib/octave/site/oct/api-v51/${GNU_ARCH}/ > lib/octave/site/oct/${GNU_ARCH}/ > libexec/octave/ > libexec/octave/${VERSION}/ > @@ -861,10 +821,10 @@ libexec/octave/${VERSION}/exec/${GNU_ARC > libexec/octave/${VERSION}/site/ > libexec/octave/${VERSION}/site/exec/ > libexec/octave/${VERSION}/site/exec/${GNU_ARCH}/ > -libexec/octave/api-v50+/ > -libexec/octave/api-v50+/site/ > -libexec/octave/api-v50+/site/exec/ > -libexec/octave/api-v50+/site/exec/${GNU_ARCH}/ > +libexec/octave/api-v51/ > +libexec/octave/api-v51/site/ > +libexec/octave/api-v51/site/exec/ > +libexec/octave/api-v51/site/exec/${GNU_ARCH}/ > libexec/octave/site/ > libexec/octave/site/exec/ > libexec/octave/site/exec/${GNU_ARCH}/ > @@ -896,6 +856,13 @@ share/octave/${VERSION}/etc/built-in-doc > share/octave/${VERSION}/etc/default-qt-settings > share/octave/${VERSION}/etc/doc-cache > share/octave/${VERSION}/etc/macros.texi > +share/octave/${VERSION}/etc/profiler/ > +share/octave/${VERSION}/etc/profiler/flat.html > +share/octave/${VERSION}/etc/profiler/flat_entry.html > +share/octave/${VERSION}/etc/profiler/function.html > +share/octave/${VERSION}/etc/profiler/hierarchical.html > +share/octave/${VERSION}/etc/profiler/hierarchical_entry.html > +share/octave/${VERSION}/etc/profiler/style.css > share/octave/${VERSION}/etc/tests/ > share/octave/${VERSION}/etc/tests/fixed/ > share/octave/${VERSION}/etc/tests/fixed/@cell/ > @@ -946,6 +913,7 @@ share/octave/${VERSION}/etc/tests/fixed/ > share/octave/${VERSION}/etc/tests/fixed/bug-38236/bug-38236.tst > share/octave/${VERSION}/etc/tests/fixed/bug-38236/df_vr.m > share/octave/${VERSION}/etc/tests/fixed/bug-38236/u_vr.m > +share/octave/${VERSION}/etc/tests/fixed/bug-38565.tst > share/octave/${VERSION}/etc/tests/fixed/bug-38576.tst > share/octave/${VERSION}/etc/tests/fixed/bug-38691/ > share/octave/${VERSION}/etc/tests/fixed/bug-38691/bug-38691.tst > @@ -955,6 +923,11 @@ share/octave/${VERSION}/etc/tests/fixed/ > share/octave/${VERSION}/etc/tests/fixed/bug-38691/dir2/func1.m > share/octave/${VERSION}/etc/tests/fixed/bug-38691/dir2/func2.m > share/octave/${VERSION}/etc/tests/fixed/bug-38691/dir2/func3.m > +share/octave/${VERSION}/etc/tests/fixed/bug-44940/ > +share/octave/${VERSION}/etc/tests/fixed/bug-44940/bug-44940.tst > +share/octave/${VERSION}/etc/tests/fixed/bug-44940/class_bug44940.m > +share/octave/${VERSION}/etc/tests/fixed/bug-46330.tst > +share/octave/${VERSION}/etc/tests/fixed/bug-49904.tst > share/octave/${VERSION}/etc/tests/fixed/class-concat/ > share/octave/${VERSION}/etc/tests/fixed/class-concat/@foo/ > share/octave/${VERSION}/etc/tests/fixed/class-concat/@foo/foo.m > @@ -964,6 +937,9 @@ share/octave/${VERSION}/etc/tests/fixed/ > > share/octave/${VERSION}/etc/tests/fixed/classdef/foo_method_changes_property_size.m > > share/octave/${VERSION}/etc/tests/fixed/classdef/foo_static_method_constant_property.m > share/octave/${VERSION}/etc/tests/fixed/classdef/foo_value_class.m > +share/octave/${VERSION}/etc/tests/fixed/classdef/plist_t1.m > +share/octave/${VERSION}/etc/tests/fixed/classdef/plist_t2.m > +share/octave/${VERSION}/etc/tests/fixed/classdef/plist_t3.m > share/octave/${VERSION}/etc/tests/fixed/classes/ > share/octave/${VERSION}/etc/tests/fixed/classes/@Blork/ > share/octave/${VERSION}/etc/tests/fixed/classes/@Blork/Blork.m > @@ -1073,7 +1049,9 @@ share/octave/${VERSION}/etc/tests/fixed/ > share/octave/${VERSION}/etc/tests/fixed/classes/@Spork/set.m > share/octave/${VERSION}/etc/tests/fixed/classes/classes.tst > share/octave/${VERSION}/etc/tests/fixed/colormaps.tst > +share/octave/${VERSION}/etc/tests/fixed/command.tst > share/octave/${VERSION}/etc/tests/fixed/complex.tst > +share/octave/${VERSION}/etc/tests/fixed/conv.tst > share/octave/${VERSION}/etc/tests/fixed/ctor-vs-method/ > share/octave/${VERSION}/etc/tests/fixed/ctor-vs-method/@derived/ > share/octave/${VERSION}/etc/tests/fixed/ctor-vs-method/@derived/derived.m > @@ -1110,9 +1088,34 @@ share/octave/${VERSION}/etc/tests/fixed/ > share/octave/${VERSION}/etc/tests/fixed/jit.tst > share/octave/${VERSION}/etc/tests/fixed/line-continue.tst > share/octave/${VERSION}/etc/tests/fixed/logical-index.tst > +share/octave/${VERSION}/etc/tests/fixed/nest/ > +share/octave/${VERSION}/etc/tests/fixed/nest/arg_nest.m > +share/octave/${VERSION}/etc/tests/fixed/nest/arg_ret.m > +share/octave/${VERSION}/etc/tests/fixed/nest/nest.tst > +share/octave/${VERSION}/etc/tests/fixed/nest/nest_eval.m > +share/octave/${VERSION}/etc/tests/fixed/nest/no_closure.m > +share/octave/${VERSION}/etc/tests/fixed/nest/persistent_nest.m > +share/octave/${VERSION}/etc/tests/fixed/nest/recursive_nest.m > +share/octave/${VERSION}/etc/tests/fixed/nest/recursive_nest2.m > +share/octave/${VERSION}/etc/tests/fixed/nest/recursive_nest3.m > +share/octave/${VERSION}/etc/tests/fixed/nest/scope0.m > +share/octave/${VERSION}/etc/tests/fixed/nest/scope1.m > +share/octave/${VERSION}/etc/tests/fixed/nest/scope2.m > +share/octave/${VERSION}/etc/tests/fixed/nest/scope3.m > +share/octave/${VERSION}/etc/tests/fixed/nest/script_nest.m > +share/octave/${VERSION}/etc/tests/fixed/nest/script_nest_script.m > +share/octave/${VERSION}/etc/tests/fixed/nest/varg_nest.m > +share/octave/${VERSION}/etc/tests/fixed/nest/varg_nest2.m > share/octave/${VERSION}/etc/tests/fixed/null-assign.tst > share/octave/${VERSION}/etc/tests/fixed/parser.tst > share/octave/${VERSION}/etc/tests/fixed/prefer.tst > +share/octave/${VERSION}/etc/tests/fixed/publish/ > +share/octave/${VERSION}/etc/tests/fixed/publish/publish.tst > +share/octave/${VERSION}/etc/tests/fixed/publish/test_script.m > +share/octave/${VERSION}/etc/tests/fixed/publish/test_script_code_only.m > +share/octave/${VERSION}/etc/tests/fixed/publish/test_script_empty.m > +share/octave/${VERSION}/etc/tests/fixed/publish/test_script_example.m > +share/octave/${VERSION}/etc/tests/fixed/publish/test_script_head_only.m > share/octave/${VERSION}/etc/tests/fixed/range.tst > share/octave/${VERSION}/etc/tests/fixed/recursion.tst > share/octave/${VERSION}/etc/tests/fixed/return.tst > @@ -1135,6 +1138,7 @@ share/octave/${VERSION}/etc/tests/libint > share/octave/${VERSION}/etc/tests/libinterp/corefcn/__ichol__.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/__ilu__.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/__lin_interpn__.cc-tst > +share/octave/${VERSION}/etc/tests/libinterp/corefcn/__magick_read__.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/__pchip_deriv__.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/__qp__.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/besselj.cc-tst > @@ -1145,6 +1149,7 @@ share/octave/${VERSION}/etc/tests/libint > share/octave/${VERSION}/etc/tests/libinterp/corefcn/conv2.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/dassl.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/data.cc-tst > +share/octave/${VERSION}/etc/tests/libinterp/corefcn/debug.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/defaults.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/det.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/dirfns.cc-tst > @@ -1153,6 +1158,7 @@ share/octave/${VERSION}/etc/tests/libint > share/octave/${VERSION}/etc/tests/libinterp/corefcn/eig.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/ellipj.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/error.cc-tst > +share/octave/${VERSION}/etc/tests/libinterp/corefcn/errwarn.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/fft.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/fft2.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/file-io.cc-tst > @@ -1160,26 +1166,29 @@ share/octave/${VERSION}/etc/tests/libint > share/octave/${VERSION}/etc/tests/libinterp/corefcn/find.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/gammainc.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/gcd.cc-tst > +share/octave/${VERSION}/etc/tests/libinterp/corefcn/getrusage.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/givens.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/graphics.cc-tst > +share/octave/${VERSION}/etc/tests/libinterp/corefcn/hash.cc-tst > +share/octave/${VERSION}/etc/tests/libinterp/corefcn/help.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/hess.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/hex2num.cc-tst > +share/octave/${VERSION}/etc/tests/libinterp/corefcn/input.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/inv.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/kron.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/lookup.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/lsode.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/lu.cc-tst > -share/octave/${VERSION}/etc/tests/libinterp/corefcn/luinc.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/mappers.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/matrix_type.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/max.cc-tst > -share/octave/${VERSION}/etc/tests/libinterp/corefcn/md5sum.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/mgorth.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/nproc.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/oct-map.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/ordschur.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/pinv.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/pr-output.cc-tst > +share/octave/${VERSION}/etc/tests/libinterp/corefcn/psi.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/quad.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/quadcc.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/qz.cc-tst > @@ -1204,13 +1213,16 @@ share/octave/${VERSION}/etc/tests/libint > share/octave/${VERSION}/etc/tests/libinterp/corefcn/toplev.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/tril.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/tsearch.cc-tst > +share/octave/${VERSION}/etc/tests/libinterp/corefcn/typecast.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/utils.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/corefcn/variables.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/dldfcn/ > share/octave/${VERSION}/etc/tests/libinterp/dldfcn/__delaunayn__.cc-tst > +share/octave/${VERSION}/etc/tests/libinterp/dldfcn/__eigs__.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/dldfcn/__fltk_uigetfile__.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/dldfcn/__glpk__.cc-tst > -share/octave/${VERSION}/etc/tests/libinterp/dldfcn/__magick_read__.cc-tst > +share/octave/${VERSION}/etc/tests/libinterp/dldfcn/__init_fltk__.cc-tst > +share/octave/${VERSION}/etc/tests/libinterp/dldfcn/__init_gnuplot__.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/dldfcn/__osmesa_print__.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/dldfcn/__voronoi__.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/dldfcn/amd.cc-tst > @@ -1219,7 +1231,9 @@ share/octave/${VERSION}/etc/tests/libint > share/octave/${VERSION}/etc/tests/libinterp/dldfcn/convhulln.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/dldfcn/dmperm.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/dldfcn/fftw.cc-tst > +share/octave/${VERSION}/etc/tests/libinterp/dldfcn/gzip.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/dldfcn/qr.cc-tst > +share/octave/${VERSION}/etc/tests/libinterp/dldfcn/symbfact.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/octave-value/ > share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-base.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-bool-mat.cc-tst > @@ -1228,22 +1242,12 @@ share/octave/${VERSION}/etc/tests/libint > share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-cx-diag.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-fcn-handle.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-fcn-inline.cc-tst > -share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-flt-re-mat.cc-tst > -share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-int16.cc-tst > -share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-int32.cc-tst > -share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-int64.cc-tst > -share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-int8.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-java.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-null-mat.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-oncleanup.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-range.cc-tst > -share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-re-mat.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-struct.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-typeinfo.cc-tst > -share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-uint16.cc-tst > -share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-uint32.cc-tst > -share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-uint64.cc-tst > -share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-uint8.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov-usr-fcn.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/octave-value/ov.cc-tst > share/octave/${VERSION}/etc/tests/libinterp/octave.cc-tst > @@ -1279,6 +1283,7 @@ share/octave/${VERSION}/locale/be_BY.qm > share/octave/${VERSION}/locale/de_DE.qm > share/octave/${VERSION}/locale/en_US.qm > share/octave/${VERSION}/locale/es_ES.qm > +share/octave/${VERSION}/locale/eu_ES.qm > share/octave/${VERSION}/locale/fr_FR.qm > share/octave/${VERSION}/locale/it_IT.qm > share/octave/${VERSION}/locale/ja_JP.qm > @@ -1342,43 +1347,38 @@ share/octave/${VERSION}/m/audio/mu2lin.m > share/octave/${VERSION}/m/audio/record.m > share/octave/${VERSION}/m/audio/sound.m > share/octave/${VERSION}/m/audio/soundsc.m > -share/octave/${VERSION}/m/audio/wavread.m > -share/octave/${VERSION}/m/audio/wavwrite.m > share/octave/${VERSION}/m/deprecated/ > -share/octave/${VERSION}/m/deprecated/PKG_ADD > share/octave/${VERSION}/m/deprecated/bicubic.m > -share/octave/${VERSION}/m/deprecated/default_save_options.m > +share/octave/${VERSION}/m/deprecated/bitmax.m > +share/octave/${VERSION}/m/deprecated/comma.m > share/octave/${VERSION}/m/deprecated/delaunay3.m > share/octave/${VERSION}/m/deprecated/dump_prefs.m > share/octave/${VERSION}/m/deprecated/find_dir_in_path.m > share/octave/${VERSION}/m/deprecated/finite.m > share/octave/${VERSION}/m/deprecated/fmod.m > share/octave/${VERSION}/m/deprecated/fnmatch.m > -share/octave/${VERSION}/m/deprecated/gen_doc_cache.m > share/octave/${VERSION}/m/deprecated/gmap40.m > -share/octave/${VERSION}/m/deprecated/interp1q.m > -share/octave/${VERSION}/m/deprecated/isequalwithequalnans.m > share/octave/${VERSION}/m/deprecated/isstr.m > -share/octave/${VERSION}/m/deprecated/java_convert_matrix.m > -share/octave/${VERSION}/m/deprecated/java_debug.m > -share/octave/${VERSION}/m/deprecated/java_invoke.m > -share/octave/${VERSION}/m/deprecated/java_new.m > -share/octave/${VERSION}/m/deprecated/java_unsigned_conversion.m > -share/octave/${VERSION}/m/deprecated/javafields.m > -share/octave/${VERSION}/m/deprecated/javamethods.m > share/octave/${VERSION}/m/deprecated/loadaudio.m > share/octave/${VERSION}/m/deprecated/luinc.m > +share/octave/${VERSION}/m/deprecated/mahalanobis.m > +share/octave/${VERSION}/m/deprecated/md5sum.m > share/octave/${VERSION}/m/deprecated/mouse_wheel_zoom.m > share/octave/${VERSION}/m/deprecated/nfields.m > +share/octave/${VERSION}/m/deprecated/octave_config_info.m > share/octave/${VERSION}/m/deprecated/octave_tmp_file_name.m > +share/octave/${VERSION}/m/deprecated/onenormest.m > +share/octave/${VERSION}/m/deprecated/paren.m > share/octave/${VERSION}/m/deprecated/playaudio.m > -share/octave/${VERSION}/m/deprecated/re_read_readline_init_file.m > -share/octave/${VERSION}/m/deprecated/read_readline_init_file.m > share/octave/${VERSION}/m/deprecated/saveaudio.m > -share/octave/${VERSION}/m/deprecated/saving_history.m > +share/octave/${VERSION}/m/deprecated/semicolon.m > share/octave/${VERSION}/m/deprecated/setaudio.m > +share/octave/${VERSION}/m/deprecated/sleep.m > share/octave/${VERSION}/m/deprecated/syl.m > share/octave/${VERSION}/m/deprecated/usage.m > +share/octave/${VERSION}/m/deprecated/usleep.m > +share/octave/${VERSION}/m/deprecated/wavread.m > +share/octave/${VERSION}/m/deprecated/wavwrite.m > share/octave/${VERSION}/m/elfun/ > share/octave/${VERSION}/m/elfun/acosd.m > share/octave/${VERSION}/m/elfun/acot.m > @@ -1425,6 +1425,7 @@ share/octave/${VERSION}/m/general/cumtra > share/octave/${VERSION}/m/general/curl.m > share/octave/${VERSION}/m/general/dblquad.m > share/octave/${VERSION}/m/general/deal.m > +share/octave/${VERSION}/m/general/deg2rad.m > share/octave/${VERSION}/m/general/del2.m > share/octave/${VERSION}/m/general/display.m > share/octave/${VERSION}/m/general/divergence.m > @@ -1433,6 +1434,7 @@ share/octave/${VERSION}/m/general/flip.m > share/octave/${VERSION}/m/general/flipdim.m > share/octave/${VERSION}/m/general/fliplr.m > share/octave/${VERSION}/m/general/flipud.m > +share/octave/${VERSION}/m/general/grabcode.m > share/octave/${VERSION}/m/general/gradient.m > share/octave/${VERSION}/m/general/idivide.m > share/octave/${VERSION}/m/general/inputParser.m > @@ -1460,13 +1462,14 @@ share/octave/${VERSION}/m/general/postpa > share/octave/${VERSION}/m/general/prepad.m > share/octave/${VERSION}/m/general/private/ > share/octave/${VERSION}/m/general/private/__isequal__.m > +share/octave/${VERSION}/m/general/private/__publish_html_output__.m > +share/octave/${VERSION}/m/general/private/__publish_latex_output__.m > share/octave/${VERSION}/m/general/private/__splinen__.m > -share/octave/${VERSION}/m/general/profexplore.m > -share/octave/${VERSION}/m/general/profile.m > -share/octave/${VERSION}/m/general/profshow.m > +share/octave/${VERSION}/m/general/publish.m > share/octave/${VERSION}/m/general/quadgk.m > share/octave/${VERSION}/m/general/quadl.m > share/octave/${VERSION}/m/general/quadv.m > +share/octave/${VERSION}/m/general/rad2deg.m > share/octave/${VERSION}/m/general/randi.m > share/octave/${VERSION}/m/general/rat.m > share/octave/${VERSION}/m/general/repmat.m > @@ -1497,6 +1500,7 @@ share/octave/${VERSION}/m/geometry/tsear > share/octave/${VERSION}/m/geometry/voronoi.m > share/octave/${VERSION}/m/geometry/voronoin.m > share/octave/${VERSION}/m/gui/ > +share/octave/${VERSION}/m/gui/dialog.m > share/octave/${VERSION}/m/gui/errordlg.m > share/octave/${VERSION}/m/gui/guidata.m > share/octave/${VERSION}/m/gui/guihandles.m > @@ -1513,8 +1517,8 @@ share/octave/${VERSION}/m/gui/private/__ > share/octave/${VERSION}/m/gui/private/__uigetfile_fltk__.m > share/octave/${VERSION}/m/gui/private/__uiobject_split_args__.m > share/octave/${VERSION}/m/gui/private/__uiputfile_fltk__.m > -share/octave/${VERSION}/m/gui/private/message_dialog.m > share/octave/${VERSION}/m/gui/questdlg.m > +share/octave/${VERSION}/m/gui/uibuttongroup.m > share/octave/${VERSION}/m/gui/uicontextmenu.m > share/octave/${VERSION}/m/gui/uicontrol.m > share/octave/${VERSION}/m/gui/uigetdir.m > @@ -1534,8 +1538,10 @@ share/octave/${VERSION}/m/help/ > share/octave/${VERSION}/m/help/__gripe_missing_component__.m > share/octave/${VERSION}/m/help/__makeinfo__.m > share/octave/${VERSION}/m/help/__unimplemented__.m > +share/octave/${VERSION}/m/help/ans.m > share/octave/${VERSION}/m/help/doc.m > share/octave/${VERSION}/m/help/doc_cache_create.m > +share/octave/${VERSION}/m/help/error_ids.m > share/octave/${VERSION}/m/help/get_first_help_sentence.m > share/octave/${VERSION}/m/help/help.m > share/octave/${VERSION}/m/help/lookfor.m > @@ -1544,9 +1550,9 @@ share/octave/${VERSION}/m/help/private/ > share/octave/${VERSION}/m/help/private/__additional_help_message__.m > share/octave/${VERSION}/m/help/private/__strip_html_tags__.m > share/octave/${VERSION}/m/help/type.m > +share/octave/${VERSION}/m/help/warning_ids.m > share/octave/${VERSION}/m/help/which.m > share/octave/${VERSION}/m/image/ > -share/octave/${VERSION}/m/image/PKG_ADD > share/octave/${VERSION}/m/image/autumn.m > share/octave/${VERSION}/m/image/bone.m > share/octave/${VERSION}/m/image/brighten.m > @@ -1559,11 +1565,14 @@ share/octave/${VERSION}/m/image/cool.m > share/octave/${VERSION}/m/image/copper.m > share/octave/${VERSION}/m/image/cubehelix.m > share/octave/${VERSION}/m/image/flag.m > +share/octave/${VERSION}/m/image/frame2im.m > share/octave/${VERSION}/m/image/gray.m > share/octave/${VERSION}/m/image/gray2ind.m > share/octave/${VERSION}/m/image/hot.m > share/octave/${VERSION}/m/image/hsv.m > share/octave/${VERSION}/m/image/hsv2rgb.m > +share/octave/${VERSION}/m/image/im2double.m > +share/octave/${VERSION}/m/image/im2frame.m > share/octave/${VERSION}/m/image/image.m > share/octave/${VERSION}/m/image/imagesc.m > share/octave/${VERSION}/m/image/imfinfo.m > @@ -1584,6 +1593,8 @@ share/octave/${VERSION}/m/image/private/ > share/octave/${VERSION}/m/image/private/__imfinfo__.m > share/octave/${VERSION}/m/image/private/__imread__.m > share/octave/${VERSION}/m/image/private/__imwrite__.m > +share/octave/${VERSION}/m/image/private/colorspace_conversion_input_check.m > +share/octave/${VERSION}/m/image/private/colorspace_conversion_revert.m > share/octave/${VERSION}/m/image/private/imageIO.m > share/octave/${VERSION}/m/image/private/imwrite_filename.m > share/octave/${VERSION}/m/image/private/ind2x.m > @@ -1595,6 +1606,7 @@ share/octave/${VERSION}/m/image/rgbplot. > share/octave/${VERSION}/m/image/spinmap.m > share/octave/${VERSION}/m/image/spring.m > share/octave/${VERSION}/m/image/summer.m > +share/octave/${VERSION}/m/image/viridis.m > share/octave/${VERSION}/m/image/white.m > share/octave/${VERSION}/m/image/winter.m > share/octave/${VERSION}/m/io/ > @@ -1607,7 +1619,6 @@ share/octave/${VERSION}/m/io/importdata. > share/octave/${VERSION}/m/io/is_valid_file_id.m > share/octave/${VERSION}/m/io/strread.m > share/octave/${VERSION}/m/io/textread.m > -share/octave/${VERSION}/m/io/textscan.m > share/octave/${VERSION}/m/java/ > share/octave/${VERSION}/m/java/javaArray.m > share/octave/${VERSION}/m/java/java_get.m > @@ -1622,6 +1633,7 @@ share/octave/${VERSION}/m/linear-algebra > share/octave/${VERSION}/m/linear-algebra/bandwidth.m > share/octave/${VERSION}/m/linear-algebra/commutation_matrix.m > share/octave/${VERSION}/m/linear-algebra/cond.m > +share/octave/${VERSION}/m/linear-algebra/condeig.m > share/octave/${VERSION}/m/linear-algebra/condest.m > share/octave/${VERSION}/m/linear-algebra/cross.m > share/octave/${VERSION}/m/linear-algebra/duplication_matrix.m > @@ -1638,8 +1650,8 @@ share/octave/${VERSION}/m/linear-algebra > share/octave/${VERSION}/m/linear-algebra/linsolve.m > share/octave/${VERSION}/m/linear-algebra/logm.m > share/octave/${VERSION}/m/linear-algebra/normest.m > +share/octave/${VERSION}/m/linear-algebra/normest1.m > share/octave/${VERSION}/m/linear-algebra/null.m > -share/octave/${VERSION}/m/linear-algebra/onenormest.m > share/octave/${VERSION}/m/linear-algebra/orth.m > share/octave/${VERSION}/m/linear-algebra/planerot.m > share/octave/${VERSION}/m/linear-algebra/qzhess.m > @@ -1649,13 +1661,10 @@ share/octave/${VERSION}/m/linear-algebra > share/octave/${VERSION}/m/linear-algebra/trace.m > share/octave/${VERSION}/m/linear-algebra/vech.m > share/octave/${VERSION}/m/miscellaneous/ > -share/octave/${VERSION}/m/miscellaneous/ans.m > share/octave/${VERSION}/m/miscellaneous/bug_report.m > share/octave/${VERSION}/m/miscellaneous/bunzip2.m > -share/octave/${VERSION}/m/miscellaneous/bzip2.m > share/octave/${VERSION}/m/miscellaneous/cast.m > share/octave/${VERSION}/m/miscellaneous/citation.m > -share/octave/${VERSION}/m/miscellaneous/comma.m > share/octave/${VERSION}/m/miscellaneous/compare_versions.m > share/octave/${VERSION}/m/miscellaneous/computer.m > share/octave/${VERSION}/m/miscellaneous/copyfile.m > @@ -1665,7 +1674,6 @@ share/octave/${VERSION}/m/miscellaneous/ > share/octave/${VERSION}/m/miscellaneous/dir.m > share/octave/${VERSION}/m/miscellaneous/dos.m > share/octave/${VERSION}/m/miscellaneous/edit.m > -share/octave/${VERSION}/m/miscellaneous/error_ids.m > share/octave/${VERSION}/m/miscellaneous/fact.m > share/octave/${VERSION}/m/miscellaneous/fileattrib.m > share/octave/${VERSION}/m/miscellaneous/fileparts.m > @@ -1674,7 +1682,6 @@ share/octave/${VERSION}/m/miscellaneous/ > share/octave/${VERSION}/m/miscellaneous/getappdata.m > share/octave/${VERSION}/m/miscellaneous/getfield.m > share/octave/${VERSION}/m/miscellaneous/gunzip.m > -share/octave/${VERSION}/m/miscellaneous/gzip.m > share/octave/${VERSION}/m/miscellaneous/info.m > share/octave/${VERSION}/m/miscellaneous/inputname.m > share/octave/${VERSION}/m/miscellaneous/isappdata.m > @@ -1689,6 +1696,7 @@ share/octave/${VERSION}/m/miscellaneous/ > share/octave/${VERSION}/m/miscellaneous/menu.m > share/octave/${VERSION}/m/miscellaneous/mex.m > share/octave/${VERSION}/m/miscellaneous/mexext.m > +share/octave/${VERSION}/m/miscellaneous/mkdir.m > share/octave/${VERSION}/m/miscellaneous/mkoctfile.m > share/octave/${VERSION}/m/miscellaneous/movefile.m > share/octave/${VERSION}/m/miscellaneous/namelengthmax.m > @@ -1696,18 +1704,15 @@ share/octave/${VERSION}/m/miscellaneous/ > share/octave/${VERSION}/m/miscellaneous/open.m > share/octave/${VERSION}/m/miscellaneous/orderfields.m > share/octave/${VERSION}/m/miscellaneous/pack.m > -share/octave/${VERSION}/m/miscellaneous/paren.m > share/octave/${VERSION}/m/miscellaneous/parseparams.m > share/octave/${VERSION}/m/miscellaneous/perl.m > share/octave/${VERSION}/m/miscellaneous/private/ > share/octave/${VERSION}/m/miscellaneous/private/__w2mpth__.m > -share/octave/${VERSION}/m/miscellaneous/private/__xzip__.m > share/octave/${VERSION}/m/miscellaneous/private/display_info_file.m > share/octave/${VERSION}/m/miscellaneous/python.m > share/octave/${VERSION}/m/miscellaneous/recycle.m > share/octave/${VERSION}/m/miscellaneous/rmappdata.m > share/octave/${VERSION}/m/miscellaneous/run.m > -share/octave/${VERSION}/m/miscellaneous/semicolon.m > share/octave/${VERSION}/m/miscellaneous/setappdata.m > share/octave/${VERSION}/m/miscellaneous/setfield.m > share/octave/${VERSION}/m/miscellaneous/substruct.m > @@ -1722,10 +1727,26 @@ share/octave/${VERSION}/m/miscellaneous/ > share/octave/${VERSION}/m/miscellaneous/unzip.m > share/octave/${VERSION}/m/miscellaneous/ver.m > share/octave/${VERSION}/m/miscellaneous/version.m > -share/octave/${VERSION}/m/miscellaneous/warning_ids.m > share/octave/${VERSION}/m/miscellaneous/what.m > share/octave/${VERSION}/m/miscellaneous/xor.m > share/octave/${VERSION}/m/miscellaneous/zip.m > +share/octave/${VERSION}/m/ode/ > +share/octave/${VERSION}/m/ode/ode23.m > +share/octave/${VERSION}/m/ode/ode45.m > +share/octave/${VERSION}/m/ode/odeget.m > +share/octave/${VERSION}/m/ode/odeplot.m > +share/octave/${VERSION}/m/ode/odeset.m > +share/octave/${VERSION}/m/ode/private/ > +share/octave/${VERSION}/m/ode/private/AbsRel_norm.m > +share/octave/${VERSION}/m/ode/private/integrate_adaptive.m > +share/octave/${VERSION}/m/ode/private/kahan.m > +share/octave/${VERSION}/m/ode/private/ode_event_handler.m > +share/octave/${VERSION}/m/ode/private/odedefaults.m > +share/octave/${VERSION}/m/ode/private/odemergeopts.m > +share/octave/${VERSION}/m/ode/private/runge_kutta_23.m > +share/octave/${VERSION}/m/ode/private/runge_kutta_45_dorpri.m > +share/octave/${VERSION}/m/ode/private/runge_kutta_interpolate.m > +share/octave/${VERSION}/m/ode/private/starting_stepsize.m > share/octave/${VERSION}/m/optimization/ > share/octave/${VERSION}/m/optimization/PKG_ADD > share/octave/${VERSION}/m/optimization/__all_opts__.m > @@ -1754,42 +1775,24 @@ share/octave/${VERSION}/m/pkg/pkg.m > share/octave/${VERSION}/m/pkg/private/ > share/octave/${VERSION}/m/pkg/private/build.m > share/octave/${VERSION}/m/pkg/private/configure_make.m > -share/octave/${VERSION}/m/pkg/private/copy_files.m > -share/octave/${VERSION}/m/pkg/private/create_pkgadddel.m > share/octave/${VERSION}/m/pkg/private/default_prefix.m > share/octave/${VERSION}/m/pkg/private/describe.m > share/octave/${VERSION}/m/pkg/private/dirempty.m > -share/octave/${VERSION}/m/pkg/private/extract_pkg.m > -share/octave/${VERSION}/m/pkg/private/finish_installation.m > -share/octave/${VERSION}/m/pkg/private/fix_depends.m > -share/octave/${VERSION}/m/pkg/private/fix_version.m > -share/octave/${VERSION}/m/pkg/private/generate_lookfor_cache.m > share/octave/${VERSION}/m/pkg/private/get_description.m > share/octave/${VERSION}/m/pkg/private/get_forge_download.m > share/octave/${VERSION}/m/pkg/private/get_forge_pkg.m > share/octave/${VERSION}/m/pkg/private/get_unsatisfied_deps.m > share/octave/${VERSION}/m/pkg/private/getarch.m > share/octave/${VERSION}/m/pkg/private/getarchdir.m > -share/octave/${VERSION}/m/pkg/private/getarchprefix.m > share/octave/${VERSION}/m/pkg/private/install.m > share/octave/${VERSION}/m/pkg/private/installed_packages.m > -share/octave/${VERSION}/m/pkg/private/is_architecture_dependent.m > share/octave/${VERSION}/m/pkg/private/list_forge_packages.m > -share/octave/${VERSION}/m/pkg/private/load_package_dirs.m > share/octave/${VERSION}/m/pkg/private/load_packages.m > share/octave/${VERSION}/m/pkg/private/load_packages_and_dependencies.m > -share/octave/${VERSION}/m/pkg/private/packinfo_copy_file.m > -share/octave/${VERSION}/m/pkg/private/parse_pkg_idx.m > -share/octave/${VERSION}/m/pkg/private/prepare_installation.m > -share/octave/${VERSION}/m/pkg/private/print_package_description.m > share/octave/${VERSION}/m/pkg/private/rebuild.m > -share/octave/${VERSION}/m/pkg/private/repackage.m > share/octave/${VERSION}/m/pkg/private/save_order.m > -share/octave/${VERSION}/m/pkg/private/shell.m > share/octave/${VERSION}/m/pkg/private/uninstall.m > share/octave/${VERSION}/m/pkg/private/unload_packages.m > -share/octave/${VERSION}/m/pkg/private/verify_directory.m > -share/octave/${VERSION}/m/pkg/private/write_index.m > share/octave/${VERSION}/m/plot/ > share/octave/${VERSION}/m/plot/appearance/ > share/octave/${VERSION}/m/plot/appearance/__clabel__.m > @@ -1806,6 +1809,8 @@ share/octave/${VERSION}/m/plot/appearanc > share/octave/${VERSION}/m/plot/appearance/gtext.m > share/octave/${VERSION}/m/plot/appearance/hidden.m > share/octave/${VERSION}/m/plot/appearance/legend.m > +share/octave/${VERSION}/m/plot/appearance/lighting.m > +share/octave/${VERSION}/m/plot/appearance/material.m > share/octave/${VERSION}/m/plot/appearance/orient.m > share/octave/${VERSION}/m/plot/appearance/pbaspect.m > share/octave/${VERSION}/m/plot/appearance/private/ > @@ -1827,6 +1832,7 @@ share/octave/${VERSION}/m/plot/draw/ > share/octave/${VERSION}/m/plot/draw/area.m > share/octave/${VERSION}/m/plot/draw/bar.m > share/octave/${VERSION}/m/plot/draw/barh.m > +share/octave/${VERSION}/m/plot/draw/camlight.m > share/octave/${VERSION}/m/plot/draw/colorbar.m > share/octave/${VERSION}/m/plot/draw/comet.m > share/octave/${VERSION}/m/plot/draw/comet3.m > @@ -1851,9 +1857,11 @@ share/octave/${VERSION}/m/plot/draw/feat > share/octave/${VERSION}/m/plot/draw/fill.m > share/octave/${VERSION}/m/plot/draw/fplot.m > share/octave/${VERSION}/m/plot/draw/hist.m > +share/octave/${VERSION}/m/plot/draw/isocaps.m > share/octave/${VERSION}/m/plot/draw/isocolors.m > share/octave/${VERSION}/m/plot/draw/isonormals.m > share/octave/${VERSION}/m/plot/draw/isosurface.m > +share/octave/${VERSION}/m/plot/draw/light.m > share/octave/${VERSION}/m/plot/draw/line.m > share/octave/${VERSION}/m/plot/draw/loglog.m > share/octave/${VERSION}/m/plot/draw/loglogerr.m > @@ -1874,8 +1882,8 @@ share/octave/${VERSION}/m/plot/draw/pola > share/octave/${VERSION}/m/plot/draw/private/ > share/octave/${VERSION}/m/plot/draw/private/__add_datasource__.m > share/octave/${VERSION}/m/plot/draw/private/__bar__.m > +share/octave/${VERSION}/m/plot/draw/private/__calc_isovalue_from_data__.m > share/octave/${VERSION}/m/plot/draw/private/__contour__.m > -share/octave/${VERSION}/m/plot/draw/private/__errcomm__.m > share/octave/${VERSION}/m/plot/draw/private/__errplot__.m > share/octave/${VERSION}/m/plot/draw/private/__ezplot__.m > share/octave/${VERSION}/m/plot/draw/private/__interp_cube__.m > @@ -1885,11 +1893,15 @@ share/octave/${VERSION}/m/plot/draw/priv > share/octave/${VERSION}/m/plot/draw/private/__pie__.m > share/octave/${VERSION}/m/plot/draw/private/__plt__.m > share/octave/${VERSION}/m/plot/draw/private/__quiver__.m > +share/octave/${VERSION}/m/plot/draw/private/__rotate_around_axis__.m > share/octave/${VERSION}/m/plot/draw/private/__scatter__.m > share/octave/${VERSION}/m/plot/draw/private/__stem__.m > +share/octave/${VERSION}/m/plot/draw/private/__unite_shared_vertices__.m > share/octave/${VERSION}/m/plot/draw/quiver.m > share/octave/${VERSION}/m/plot/draw/quiver3.m > share/octave/${VERSION}/m/plot/draw/rectangle.m > +share/octave/${VERSION}/m/plot/draw/reducepatch.m > +share/octave/${VERSION}/m/plot/draw/reducevolume.m > share/octave/${VERSION}/m/plot/draw/ribbon.m > share/octave/${VERSION}/m/plot/draw/rose.m > share/octave/${VERSION}/m/plot/draw/scatter.m > @@ -1900,6 +1912,7 @@ share/octave/${VERSION}/m/plot/draw/semi > share/octave/${VERSION}/m/plot/draw/semilogyerr.m > share/octave/${VERSION}/m/plot/draw/shrinkfaces.m > share/octave/${VERSION}/m/plot/draw/slice.m > +share/octave/${VERSION}/m/plot/draw/smooth3.m > share/octave/${VERSION}/m/plot/draw/sombrero.m > share/octave/${VERSION}/m/plot/draw/sphere.m > share/octave/${VERSION}/m/plot/draw/stairs.m > @@ -1922,6 +1935,7 @@ share/octave/${VERSION}/m/plot/util/__de > share/octave/${VERSION}/m/plot/util/__gnuplot_drawnow__.m > share/octave/${VERSION}/m/plot/util/__next_line_color__.m > share/octave/${VERSION}/m/plot/util/__next_line_style__.m > +share/octave/${VERSION}/m/plot/util/__opengl_info__.m > share/octave/${VERSION}/m/plot/util/__plt_get_axis_arg__.m > share/octave/${VERSION}/m/plot/util/__pltopt__.m > share/octave/${VERSION}/m/plot/util/allchild.m > @@ -1937,7 +1951,6 @@ share/octave/${VERSION}/m/plot/util/figu > share/octave/${VERSION}/m/plot/util/findall.m > share/octave/${VERSION}/m/plot/util/findfigs.m > share/octave/${VERSION}/m/plot/util/findobj.m > -share/octave/${VERSION}/m/plot/util/frame2im.m > share/octave/${VERSION}/m/plot/util/gca.m > share/octave/${VERSION}/m/plot/util/gcbf.m > share/octave/${VERSION}/m/plot/util/gcbo.m > @@ -1951,7 +1964,6 @@ share/octave/${VERSION}/m/plot/util/hggr > share/octave/${VERSION}/m/plot/util/hgload.m > share/octave/${VERSION}/m/plot/util/hgsave.m > share/octave/${VERSION}/m/plot/util/hold.m > -share/octave/${VERSION}/m/plot/util/im2frame.m > share/octave/${VERSION}/m/plot/util/isaxes.m > share/octave/${VERSION}/m/plot/util/isfigure.m > share/octave/${VERSION}/m/plot/util/ishghandle.m > @@ -1968,6 +1980,8 @@ share/octave/${VERSION}/m/plot/util/prin > share/octave/${VERSION}/m/plot/util/private/ > share/octave/${VERSION}/m/plot/util/private/__add_default_menu__.m > share/octave/${VERSION}/m/plot/util/private/__ghostscript__.m > +share/octave/${VERSION}/m/plot/util/private/__gnuplot_draw_axes__.m > +share/octave/${VERSION}/m/plot/util/private/__gnuplot_draw_figure__.m > share/octave/${VERSION}/m/plot/util/private/__gnuplot_get_var__.m > share/octave/${VERSION}/m/plot/util/private/__gnuplot_ginput__.m > share/octave/${VERSION}/m/plot/util/private/__gnuplot_has_feature__.m > @@ -1975,11 +1989,8 @@ share/octave/${VERSION}/m/plot/util/priv > share/octave/${VERSION}/m/plot/util/private/__gnuplot_open_stream__.m > share/octave/${VERSION}/m/plot/util/private/__gnuplot_print__.m > share/octave/${VERSION}/m/plot/util/private/__gnuplot_version__.m > -share/octave/${VERSION}/m/plot/util/private/__go_draw_axes__.m > -share/octave/${VERSION}/m/plot/util/private/__go_draw_figure__.m > share/octave/${VERSION}/m/plot/util/private/__opengl_print__.m > share/octave/${VERSION}/m/plot/util/private/__print_parse_opts__.m > -share/octave/${VERSION}/m/plot/util/private/__tight_eps_bbox__.m > share/octave/${VERSION}/m/plot/util/refresh.m > share/octave/${VERSION}/m/plot/util/refreshdata.m > share/octave/${VERSION}/m/plot/util/rotate.m > @@ -1995,6 +2006,7 @@ share/octave/${VERSION}/m/polynomial/con > share/octave/${VERSION}/m/polynomial/deconv.m > share/octave/${VERSION}/m/polynomial/mkpp.m > share/octave/${VERSION}/m/polynomial/mpoles.m > +share/octave/${VERSION}/m/polynomial/padecoef.m > share/octave/${VERSION}/m/polynomial/pchip.m > share/octave/${VERSION}/m/polynomial/poly.m > share/octave/${VERSION}/m/polynomial/polyaffine.m > @@ -2030,6 +2042,11 @@ share/octave/${VERSION}/m/prefs/private/ > share/octave/${VERSION}/m/prefs/private/saveprefs.m > share/octave/${VERSION}/m/prefs/rmpref.m > share/octave/${VERSION}/m/prefs/setpref.m > +share/octave/${VERSION}/m/profiler/ > +share/octave/${VERSION}/m/profiler/profexplore.m > +share/octave/${VERSION}/m/profiler/profexport.m > +share/octave/${VERSION}/m/profiler/profile.m > +share/octave/${VERSION}/m/profiler/profshow.m > share/octave/${VERSION}/m/set/ > share/octave/${VERSION}/m/set/intersect.m > share/octave/${VERSION}/m/set/ismember.m > @@ -2093,7 +2110,7 @@ share/octave/${VERSION}/m/sparse/nonzero > share/octave/${VERSION}/m/sparse/pcg.m > share/octave/${VERSION}/m/sparse/pcr.m > share/octave/${VERSION}/m/sparse/private/ > -share/octave/${VERSION}/m/sparse/private/__sprand_impl__.m > +share/octave/${VERSION}/m/sparse/private/__sprand__.m > share/octave/${VERSION}/m/sparse/qmr.m > share/octave/${VERSION}/m/sparse/spaugment.m > share/octave/${VERSION}/m/sparse/spconvert.m > @@ -2157,7 +2174,6 @@ share/octave/${VERSION}/m/statistics/bas > share/octave/${VERSION}/m/statistics/base/kurtosis.m > share/octave/${VERSION}/m/statistics/base/logit.m > share/octave/${VERSION}/m/statistics/base/lscov.m > -share/octave/${VERSION}/m/statistics/base/mahalanobis.m > share/octave/${VERSION}/m/statistics/base/mean.m > share/octave/${VERSION}/m/statistics/base/meansq.m > share/octave/${VERSION}/m/statistics/base/median.m > @@ -2342,6 +2358,11 @@ share/octave/${VERSION}/m/testfun/assert > share/octave/${VERSION}/m/testfun/demo.m > share/octave/${VERSION}/m/testfun/example.m > share/octave/${VERSION}/m/testfun/fail.m > +share/octave/${VERSION}/m/testfun/private/ > +share/octave/${VERSION}/m/testfun/private/compare_plot_demos.m > +share/octave/${VERSION}/m/testfun/private/dump_demos.m > +share/octave/${VERSION}/m/testfun/private/html_compare_plot_demos.m > +share/octave/${VERSION}/m/testfun/private/html_plot_demos_template.html > share/octave/${VERSION}/m/testfun/rundemos.m > share/octave/${VERSION}/m/testfun/runtests.m > share/octave/${VERSION}/m/testfun/speed.m > @@ -2364,8 +2385,8 @@ share/octave/${VERSION}/m/time/weekday.m > share/octave/${VERSION}/site/ > share/octave/${VERSION}/site/m/ > share/octave/site/ > -share/octave/site/api-v50+/ > -share/octave/site/api-v50+/m/ > +share/octave/site/api-v51/ > +share/octave/site/api-v51/m/ > share/octave/site/m/ > share/octave/site/m/startup/ > share/octave/site/m/startup/octaverc