aboutsummaryrefslogtreecommitdiffstats
path: root/math
diff options
context:
space:
mode:
authorStephen Montgomery-Smith <stephen@FreeBSD.org>2018-02-25 05:52:31 +0800
committerStephen Montgomery-Smith <stephen@FreeBSD.org>2018-02-25 05:52:31 +0800
commit03c2ec3f734d52fc9368414092415b9c8c18b229 (patch)
treef773722a040bd218b0ba3f3c82d37344f1925115 /math
parent6d1f05d3d7886a2ffcc0eb522e93684366d17141 (diff)
downloadfreebsd-ports-gnome-03c2ec3f734d52fc9368414092415b9c8c18b229.tar.gz
freebsd-ports-gnome-03c2ec3f734d52fc9368414092415b9c8c18b229.tar.zst
freebsd-ports-gnome-03c2ec3f734d52fc9368414092415b9c8c18b229.zip
- Update to 4.2.1.
- Maintainership to stephen@. PR: ports/225073 Submitted by: Ben Lauwens <ben.lauwens@gmail.com>
Diffstat (limited to 'math')
-rw-r--r--math/octave/Makefile18
-rw-r--r--math/octave/distinfo6
-rw-r--r--math/octave/files/patch-build-aux_find-defun-files.sh11
-rw-r--r--math/octave/files/patch-build-aux_find-files-with-tests.sh11
-rw-r--r--math/octave/files/patch-build-aux_mk-builtins.sh11
-rw-r--r--math/octave/files/patch-build-aux_mk-octave-config-h.sh11
-rw-r--r--math/octave/files/patch-configure334
-rw-r--r--math/octave/files/patch-gsed88
-rw-r--r--math/octave/files/patch-libgnu-math.in.h6
-rw-r--r--math/octave/files/patch-libinterp_mk-pkg-add11
-rw-r--r--math/octave/files/patch-libinterp_mkops11
-rw-r--r--math/octave/files/patch-liboctave-numeric-eigs-base.cc11
-rw-r--r--math/octave/files/patch-liboctave_system_file-stat.cc11
-rw-r--r--math/octave/files/patch-scripts_mk-pkg-add11
-rw-r--r--math/octave/files/patch-scripts_pkg_private_configure__make.m (renamed from math/octave/files/patch-scripts+pkg+private+configure__make.m)6
-rw-r--r--math/octave/pkg-plist540
16 files changed, 712 insertions, 385 deletions
diff --git a/math/octave/Makefile b/math/octave/Makefile
index 41414bb47c46..515c6df6b895 100644
--- a/math/octave/Makefile
+++ b/math/octave/Makefile
@@ -2,12 +2,11 @@
# $FreeBSD$
PORTNAME= octave
-PORTVERSION= 4.0.3
-PORTREVISION= 10
-CATEGORIES= math
+PORTVERSION= 4.2.1
+CATEGORIES= math java
MASTER_SITES= GNU
-MAINTAINER= maho@FreeBSD.org
+MAINTAINER= stephen@FreeBSD.org
COMMENT= High-level interactive language for numerical computations
LICENSE= GPLv3
@@ -37,16 +36,17 @@ LIB_DEPENDS= libGraphicsMagick.so:graphics/GraphicsMagick \
libfontconfig.so:x11-fonts/fontconfig \
libfreetype.so:print/freetype2
-USES= charsetfix fortran gmake libtool perl5 pkgconfig readline tar:xz
+USES= charsetfix fortran gmake libtool perl5 pkgconfig readline \
+ tar:xz compiler:c++14-lang
USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME}/${PORTVERSION}
USE_PERL5= build
-USE_TEX= dvipsk:build
+USE_TEX= dvipsk:build formats:build
GNU_CONFIGURE= yes
USE_JAVA= yes
JAVA_VERSION= 1.7+
-USE_QT4= corelib gui network opengl uic_build moc_build rcc_build linguist_build
+USE_QT4= corelib gui network opengl moc_build qmake_build rcc_build uic_build linguist_build
USE_XORG= x11 xext xfixes xft
-USE_GL= gl glu
+USE_GL= gl glu
OCTAVE_VERSION= ${PORTVERSION}
GNU_HOST= ${ARCH}-portbld-freebsd${OSREL}
@@ -84,7 +84,7 @@ post-patch:
post-install:
${INSTALL_DATA} ${WRKSRC}/etc/icons/octave.desktop \
${STAGEDIR}${DESKTOPDIR}/www.octave.org-octave.desktop
- (cd ${STAGEDIR}${DATADIR} && ln -s ${PORTVERSION}/imagelib .)
+ (cd ${STAGEDIR}${DATADIR} && ${LN} -s ${PORTVERSION}/imagelib .)
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
diff --git a/math/octave/distinfo b/math/octave/distinfo
index 89dee916d394..83006fe404fa 100644
--- a/math/octave/distinfo
+++ b/math/octave/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1469103365
-SHA256 (octave-4.0.3.tar.xz) = dc2bec8c68fa5733a5847563634b1729356a84f3a5071008ecdb793293f0aa85
-SIZE (octave-4.0.3.tar.xz) = 15697064
+TIMESTAMP = 1514843358
+SHA256 (octave-4.2.1.tar.xz) = d1771c47c1ee2cf49e3f75d64c8de8c5b2d0625b3836c62969a627792330ab58
+SIZE (octave-4.2.1.tar.xz) = 18033792
diff --git a/math/octave/files/patch-build-aux_find-defun-files.sh b/math/octave/files/patch-build-aux_find-defun-files.sh
new file mode 100644
index 000000000000..215f42db564b
--- /dev/null
+++ b/math/octave/files/patch-build-aux_find-defun-files.sh
@@ -0,0 +1,11 @@
+--- build-aux/find-defun-files.sh.orig 2017-02-22 17:15:26 UTC
++++ build-aux/find-defun-files.sh
+@@ -2,7 +2,7 @@
+
+ set -e
+
+-SED=${SED:-sed}
++SED=gsed
+ EGREP=${EGREP:-egrep}
+
+ # Some stupid egreps don't like empty elements in alternation patterns,
diff --git a/math/octave/files/patch-build-aux_find-files-with-tests.sh b/math/octave/files/patch-build-aux_find-files-with-tests.sh
new file mode 100644
index 000000000000..fa5305c90b13
--- /dev/null
+++ b/math/octave/files/patch-build-aux_find-files-with-tests.sh
@@ -0,0 +1,11 @@
+--- build-aux/find-files-with-tests.sh.orig 2017-02-22 18:01:55 UTC
++++ build-aux/find-files-with-tests.sh
+@@ -21,7 +21,7 @@
+ set -e
+
+ GREP=${GREP:-grep}
+-SED=${SED:-sed}
++SED=gsed
+
+ srcdir="$1"
+ if [ "$1" ]; then
diff --git a/math/octave/files/patch-build-aux_mk-builtins.sh b/math/octave/files/patch-build-aux_mk-builtins.sh
new file mode 100644
index 000000000000..2ae147889b47
--- /dev/null
+++ b/math/octave/files/patch-build-aux_mk-builtins.sh
@@ -0,0 +1,11 @@
+--- build-aux/mk-builtins.sh.orig 2017-02-22 18:01:55 UTC
++++ build-aux/mk-builtins.sh
+@@ -20,7 +20,7 @@
+
+ set -e
+
+-SED=${SED:-sed}
++SED=gsed
+
+ defun_dld_are_built_in=false
+ make_header=false
diff --git a/math/octave/files/patch-build-aux_mk-octave-config-h.sh b/math/octave/files/patch-build-aux_mk-octave-config-h.sh
new file mode 100644
index 000000000000..c2213d9d6090
--- /dev/null
+++ b/math/octave/files/patch-build-aux_mk-octave-config-h.sh
@@ -0,0 +1,11 @@
+--- build-aux/mk-octave-config-h.sh.orig 2017-02-22 18:01:55 UTC
++++ build-aux/mk-octave-config-h.sh
+@@ -22,7 +22,7 @@
+ # autoconf-generated config.h file. See the notes at the top of the
+ # generated octave-config.h file for more details.
+
+-SED=${SED:-sed}
++SED=gsed
+
+ if [ $# -ne 1 ]; then
+ echo "usage: mk-octave-config-h.sh CONFIG-FILE" 1>&2
diff --git a/math/octave/files/patch-configure b/math/octave/files/patch-configure
index 933bf2e05c39..d230604579da 100644
--- a/math/octave/files/patch-configure
+++ b/math/octave/files/patch-configure
@@ -1,16 +1,340 @@
---- configure.orig 2014-01-21 15:52:33.000000000 -0700
-+++ configure 2014-01-21 15:54:59.000000000 -0700
-@@ -68380,6 +68380,13 @@
+--- configure.orig 2017-02-22 18:18:36 UTC
++++ configure
+@@ -17857,7 +17857,7 @@ $as_echo_n "checking whether the $compil
+ hardcode_minus_L=no
+ hardcode_shlibpath_var=unsupported
+ inherit_rpath=no
+- link_all_deplibs=unknown
++ link_all_deplibs=no
+ module_cmds=
+ module_expsym_cmds=
+ old_archive_from_new_cmds=
+@@ -18159,7 +18159,7 @@ _LT_EOF
+ wlarc=
+ else
+ archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
+- archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
++ archive_expsym_cmds='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$lib-ver -o $lib'
+ fi
+ ;;
+
+@@ -18178,7 +18178,7 @@ _LT_EOF
+ _LT_EOF
+ elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
+ archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
+- archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
++ archive_expsym_cmds='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$lib-ver -o $lib'
+ else
+ ld_shlibs=no
+ fi
+@@ -18207,7 +18207,7 @@ _LT_EOF
+ if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
+ hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'
+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
+- archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
++ archive_expsym_cmds='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$lib-ver -o $lib'
+ else
+ ld_shlibs=no
+ fi
+@@ -18225,7 +18225,7 @@ _LT_EOF
+ *)
+ if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
+ archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
+- archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
++ archive_expsym_cmds='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$lib-ver -o $lib'
+ else
+ ld_shlibs=no
+ fi
+@@ -18874,7 +18874,7 @@ $as_echo "$lt_cv_irix_exported_symbol" >
+ hardcode_direct_absolute=yes
+ if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then
+ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
+- archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols'
++ archive_expsym_cmds='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-version-script,$lib-ver'
+ hardcode_libdir_flag_spec='$wl-rpath,$libdir'
+ export_dynamic_flag_spec='$wl-E'
+ else
+@@ -19723,7 +19723,7 @@ freebsd* | dragonfly*)
+ version_type=freebsd-$objformat
+ case $version_type in
+ freebsd-elf*)
+- library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
++ library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major'
+ soname_spec='$libname$release$shared_ext$major'
+ need_version=no
+ need_lib_prefix=no
+@@ -20867,7 +20867,7 @@ striplib=
+ old_striplib=
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5
+ $as_echo_n "checking whether stripping libraries is possible... " >&6; }
+-if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
++if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "strip" >/dev/null; then
+ test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
+ test -z "$striplib" && striplib="$STRIP --strip-unneeded"
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+@@ -21119,7 +21119,7 @@ hardcode_automatic_CXX=no
+ inherit_rpath_CXX=no
+ module_cmds_CXX=
+ module_expsym_cmds_CXX=
+-link_all_deplibs_CXX=unknown
++link_all_deplibs_CXX=no
+ old_archive_cmds_CXX=$old_archive_cmds
+ reload_flag_CXX=$reload_flag
+ reload_cmds_CXX=$reload_cmds
+@@ -21330,7 +21330,7 @@ with_gnu_ld=$lt_cv_prog_gnu_ld
+ # archiving commands below assume that GNU ld is being used.
+ if test yes = "$with_gnu_ld"; then
+ archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'
+- archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
++ archive_expsym_cmds_CXX='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$lib-ver -o $lib'
+
+ hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir'
+ export_dynamic_flag_spec_CXX='$wl--export-dynamic'
+@@ -22022,7 +22022,7 @@ fi
+ case `$CC -V 2>&1` in
+ *"Version 7."*)
+ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'
+- archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
++ archive_expsym_cmds_CXX='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$lib-ver -o $lib'
+ ;;
+ *) # Version 8.0 or newer
+ tmp_idyn=
+@@ -22030,7 +22030,7 @@ fi
+ ia64*) tmp_idyn=' -i_dynamic';;
+ esac
+ archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
+- archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
++ archive_expsym_cmds_CXX='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$lib-ver -o $lib'
+ ;;
+ esac
+ archive_cmds_need_lc_CXX=no
+@@ -22062,7 +22062,7 @@ fi
+ ;;
+ *) # Version 6 and above use weak symbols
+ archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'
+- archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
++ archive_expsym_cmds_CXX='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$lib-ver -o $lib'
+ ;;
+ esac
+
+@@ -22073,7 +22073,7 @@ fi
+ cxx*)
+ # Compaq C++
+ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'
+- archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols'
++ archive_expsym_cmds_CXX='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-version-script $wl$lib-ver'
+
+ runpath_var=LD_RUN_PATH
+ hardcode_libdir_flag_spec_CXX='-rpath $libdir'
+@@ -22107,7 +22107,7 @@ fi
+ # Sun C++ 5.9
+ no_undefined_flag_CXX=' -zdefs'
+ archive_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
+- archive_expsym_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols'
++ archive_expsym_cmds_CXX='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-version-script $wl$lib-ver'
+ hardcode_libdir_flag_spec_CXX='-R$libdir'
+ whole_archive_flag_spec_CXX='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
+ compiler_needs_object_CXX=yes
+@@ -22175,7 +22175,7 @@ fi
+ archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
+ hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir'
+ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then
+- archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib'
++ archive_expsym_cmds_CXX='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-version-script,$lib-ver -o $lib'
+ export_dynamic_flag_spec_CXX='$wl-E'
+ whole_archive_flag_spec_CXX=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive'
+ fi
+@@ -23700,7 +23700,7 @@ freebsd* | dragonfly*)
+ version_type=freebsd-$objformat
+ case $version_type in
+ freebsd-elf*)
+- library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
++ library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major'
+ soname_spec='$libname$release$shared_ext$major'
+ need_version=no
+ need_lib_prefix=no
+@@ -24891,7 +24891,7 @@ hardcode_automatic_F77=no
+ inherit_rpath_F77=no
+ module_cmds_F77=
+ module_expsym_cmds_F77=
+-link_all_deplibs_F77=unknown
++link_all_deplibs_F77=no
+ old_archive_cmds_F77=$old_archive_cmds
+ reload_flag_F77=$reload_flag
+ reload_cmds_F77=$reload_cmds
+@@ -25618,7 +25618,7 @@ $as_echo_n "checking whether the $compil
+ hardcode_minus_L_F77=no
+ hardcode_shlibpath_var_F77=unsupported
+ inherit_rpath_F77=no
+- link_all_deplibs_F77=unknown
++ link_all_deplibs_F77=no
+ module_cmds_F77=
+ module_expsym_cmds_F77=
+ old_archive_from_new_cmds_F77=
+@@ -25920,7 +25920,7 @@ _LT_EOF
+ wlarc=
+ else
+ archive_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
+- archive_expsym_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
++ archive_expsym_cmds_F77='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$lib-ver -o $lib'
+ fi
+ ;;
+
+@@ -25939,7 +25939,7 @@ _LT_EOF
+ _LT_EOF
+ elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
+ archive_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
+- archive_expsym_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
++ archive_expsym_cmds_F77='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$lib-ver -o $lib'
+ else
+ ld_shlibs_F77=no
+ fi
+@@ -25968,7 +25968,7 @@ _LT_EOF
+ if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
+ hardcode_libdir_flag_spec_F77='$wl-rpath $wl$libdir'
+ archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
+- archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
++ archive_expsym_cmds_F77='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$lib-ver -o $lib'
+ else
+ ld_shlibs_F77=no
+ fi
+@@ -25986,7 +25986,7 @@ _LT_EOF
+ *)
+ if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
+ archive_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
+- archive_expsym_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
++ archive_expsym_cmds_F77='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$lib-ver -o $lib'
+ else
+ ld_shlibs_F77=no
+ fi
+@@ -26585,7 +26585,7 @@ $as_echo "$lt_cv_irix_exported_symbol" >
+ hardcode_direct_absolute_F77=yes
+ if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then
+ archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
+- archive_expsym_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols'
++ archive_expsym_cmds_F77='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-version-script,$lib-ver'
+ hardcode_libdir_flag_spec_F77='$wl-rpath,$libdir'
+ export_dynamic_flag_spec_F77='$wl-E'
+ else
+@@ -27262,7 +27262,7 @@ freebsd* | dragonfly*)
+ version_type=freebsd-$objformat
+ case $version_type in
+ freebsd-elf*)
+- library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
++ library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major'
+ soname_spec='$libname$release$shared_ext$major'
+ need_version=no
+ need_lib_prefix=no
+@@ -35738,7 +35738,7 @@ esac
+ fi
+
+ if test -n "$QTCHOOSER"; then
+- LRELEASEFLAGS="-qt$qt_version"
++ LRELEASEFLAGS=""
+ fi
+ fi
+ fi
+@@ -38632,7 +38632,7 @@ fi
+ fi
+
+ # Generic LAPACK library?
+-for lapack in lapack lapack_rs6k; do
++for lapack in openblasp; do
+ if test $ax_lapack_ok = no; then
+ save_LIBS="$LIBS"; LIBS="$BLAS_LIBS $LIBS"
+ as_ac_Lib=`$as_echo "ac_cv_lib_$lapack''_$cheev" | $as_tr_sh`
+@@ -40410,7 +40410,7 @@ fi
+ fi
+
+ # Generic LAPACK library?
+-for lapack in lapack lapack_rs6k; do
++for lapack in openblasp; do
+ if test $ax_lapack_ok = no; then
+ save_LIBS="$LIBS"; LIBS="$BLAS_LIBS $LIBS"
+ as_ac_Lib=`$as_echo "ac_cv_lib_$lapack''_$cheev" | $as_tr_sh`
+@@ -42216,7 +42216,7 @@ fi
+ fi
+
+ # Generic LAPACK library?
+-for lapack in lapack lapack_rs6k; do
++for lapack in openblasp; do
+ if test $ax_lapack_ok = no; then
+ save_LIBS="$LIBS"; LIBS="$BLAS_LIBS $LIBS"
+ as_ac_Lib=`$as_echo "ac_cv_lib_$lapack''_$cheev" | $as_tr_sh`
+@@ -43161,7 +43161,7 @@ $as_echo "$as_me: WARNING: $warn_ccolamd
+
+ ### Check for CHOLMOD library.
+ ### If your cholmod library requires cblas, then you will need to
+-### configure with --with-cholmod="-lcholmod -lcblas".
++### configure with --with-cholmod="-lumfpack -lsuitesparseconfig -lamd -lcholmod -lcolamd -lopenblasp -lcblas".
+
+ save_LIBS="$LIBS"
+ LIBS="$COLAMD_LDFLAGS $COLAMD_LIBS $AMD_LDFLAGS $AMD_LIBS $LAPACK_LIBS $BLAS_LIBS $FLIBS $LIBS"
+@@ -43201,7 +43201,7 @@ fi
+ ;;
+ yes | "")
+ ac_octave_cholmod_pkg_check=yes
+- CHOLMOD_LIBS="-lcholmod"
++ CHOLMOD_LIBS="-lumfpack -lsuitesparseconfig -lamd -lcholmod -lcolamd -lopenblasp"
+ ;;
+ -* | */* | *.a | *.so | *.so.* | *.o)
+ CHOLMOD_LIBS="$with_cholmod"
+@@ -43602,7 +43602,7 @@ fi
+ ;;
+ yes | "")
+ ac_octave_umfpack_pkg_check=yes
+- UMFPACK_LIBS="-lumfpack"
++ UMFPACK_LIBS="-lumfpack -lsuitesparseconfig -lamd -lumfpack -lsuitesparseconfig -lamd -lcholmod -lcolamd -lopenblasp -lcolamd -lopenblasp"
+ ;;
+ -* | */* | *.a | *.so | *.so.* | *.o)
+ UMFPACK_LIBS="$with_umfpack"
+@@ -43767,7 +43767,7 @@ fi
+ ;;
+ yes | "")
+ ac_octave_umfpack_pkg_check=yes
+- UMFPACK_LIBS="-lumfpack"
++ UMFPACK_LIBS="-lumfpack -lsuitesparseconfig -lamd -lumfpack -lsuitesparseconfig -lamd -lcholmod -lcolamd -lopenblasp -lcolamd -lopenblasp"
+ ;;
+ -* | */* | *.a | *.so | *.so.* | *.o)
+ UMFPACK_LIBS="$with_umfpack"
+@@ -54704,7 +54704,7 @@ else
+ *-gnu*) gl_cv_func_snprintf_retval_c99="guessing yes";;
+ # Guess yes on FreeBSD >= 5.
+ freebsd[1-4].*) gl_cv_func_snprintf_retval_c99="guessing no";;
+- freebsd* | kfreebsd*) gl_cv_func_snprintf_retval_c99="guessing yes";;
++dragonfly* | freebsd* | kfreebsd*) gl_cv_func_snprintf_retval_c99="guessing yes";;
+ # Guess yes on Mac OS X >= 10.3.
+ darwin[1-6].*) gl_cv_func_snprintf_retval_c99="guessing no";;
+ darwin*) gl_cv_func_snprintf_retval_c99="guessing yes";;
+@@ -59551,7 +59551,7 @@ $as_echo "#define FLEXIBLE_ARRAY_MEMBER
+ aix* | beos* | openbsd* | mirbsd* | irix*)
+ FLOAT_H=float.h
+ ;;
+- freebsd*)
++dragonfly* | freebsd*)
+ case "$host_cpu" in
+ i[34567]86 )
+ FLOAT_H=float.h
+@@ -65648,7 +65648,7 @@ else
+ if test "$cross_compiling" = yes; then :
+
+ case "$host_os" in
+- freebsd* | aix* | hpux* | solaris2.[0-9] | solaris2.[0-9].*)
++dragonfly* | freebsd* | aix* | hpux* | solaris2.[0-9] | solaris2.[0-9].*)
+ gl_cv_func_open_slash="guessing no" ;;
+ *)
+ gl_cv_func_open_slash="guessing yes" ;;
+@@ -74358,6 +74358,13 @@ $as_echo_n "checking for include file <j
fi
JAVA_LIBS="-framework JavaVM"
;;
+ freebsd*)
+ if test -n "$JAVA_CPPFLAGS"; then
-+ JAVA_CPPFLAGS="-I${JAVA_CPPFLAGS}/include -I${JAVA_CPPFLAGS}/include/freebsd"
++ JAVA_CPPFLAGS="-I${JAVA_CPPFLAGS} -I${JAVA_CPPFLAGS}/freebsd"
+ else
+ JAVA_CPPFLAGS="-I${JAVA_HOME}/include -I${JAVA_HOME}/include/freebsd"
+ fi
+ ;;
*)
if test -n "$JAVA_CPPFLAGS"; then
- JAVA_CPPFLAGS="-I${JAVA_CPPFLAGS}/include -I${JAVA_CPPFLAGS}/include/linux"
+ JAVA_CPPFLAGS="-I${JAVA_CPPFLAGS} -I${JAVA_CPPFLAGS}/linux"
diff --git a/math/octave/files/patch-gsed b/math/octave/files/patch-gsed
deleted file mode 100644
index 60baf64ae811..000000000000
--- a/math/octave/files/patch-gsed
+++ /dev/null
@@ -1,88 +0,0 @@
---- build-aux/find-files-with-tests.sh.orig 2014-01-20 20:35:29.000000000 -0700
-+++ build-aux/find-files-with-tests.sh 2014-01-20 20:36:30.000000000 -0700
-@@ -2,7 +2,7 @@
-
- set -e
- GREP=${GREP:-grep}
--SED=${SED:-sed}
-+SED=gsed
-
- srcdir="$1"
- shift
---- libinterp/find-defun-files.sh.orig 2014-01-20 20:08:01.000000000 -0700
-+++ libinterp/find-defun-files.sh 2014-01-20 20:08:20.000000000 -0700
-@@ -1,7 +1,7 @@
- #! /bin/sh
-
- set -e
--SED=${SED:-sed}
-+SED=gsed
- EGREP=${EGREP:-egrep}
-
- # Some stupid egreps don't like empty elements in alternation patterns,
---- libinterp/mk-pkg-add.orig 2014-01-20 20:04:33.000000000 -0700
-+++ libinterp/mk-pkg-add 2014-01-20 20:05:01.000000000 -0700
-@@ -20,7 +20,7 @@
-
- set -e
-
--SED=${SED:-'sed'}
-+SED=gsed
-
- for f in "$@"; do
- if [ -f $f ]; then
---- libinterp/mkbuiltins.orig 2014-01-20 19:17:57.000000000 -0700
-+++ libinterp/mkbuiltins 2014-01-20 19:18:24.000000000 -0700
-@@ -23,7 +23,7 @@
- exit 1
- fi
-
--SED=${SED:-'sed'}
-+SED=gsed
-
- make_header=false
- make_source=false
---- libinterp/mkdefs.orig 2014-01-20 20:17:00.000000000 -0700
-+++ libinterp/mkdefs 2014-01-20 20:17:15.000000000 -0700
-@@ -18,7 +18,7 @@
- # along with Octave; see the file COPYING. If not, see
- # <http://www.gnu.org/licenses/>.
-
--SED=${SED:-'sed'}
-+SED=gsed
-
- if [ $# -ne 2 ]; then
- echo "usage: mkdefs srcdir file < preprocessed-file-contents" 1>&2
---- libinterp/mkops.orig 2014-01-20 20:26:24.000000000 -0700
-+++ libinterp/mkops 2014-01-20 20:26:50.000000000 -0700
-@@ -18,7 +18,7 @@
- # along with Octave; see the file COPYING. If not, see
- # <http://www.gnu.org/licenses/>.
-
--SED=${SED:-'sed'}
-+SED=gsed
-
- cat << \EOF
- // DO NOT EDIT! Generated automatically by mkops.
---- liboctave/cruft/mkf77def.in.orig 2014-01-20 05:27:13.000000000 -0700
-+++ liboctave/cruft/mkf77def.in 2014-01-20 05:27:28.000000000 -0700
-@@ -18,7 +18,7 @@
- # along with Octave; see the file COPYING. If not, see
- # <http://www.gnu.org/licenses/>.
-
--SED=${SED:-'sed'}
-+SED=gsed
- AWK=${AWK:-'awk'}
-
- F77_TOLOWER="@F77_APPEND_UNDERSCORE@"
---- scripts/mk-pkg-add.orig 2014-01-20 20:30:14.000000000 -0700
-+++ scripts/mk-pkg-add 2014-01-20 20:30:36.000000000 -0700
-@@ -24,7 +24,7 @@
-
- set -e
-
--SED=${SED:-'sed'}
-+SED=gsed
-
- prefix="$1/"
- shift
diff --git a/math/octave/files/patch-libgnu-math.in.h b/math/octave/files/patch-libgnu-math.in.h
index e6e185025978..0a1794f1f8ee 100644
--- a/math/octave/files/patch-libgnu-math.in.h
+++ b/math/octave/files/patch-libgnu-math.in.h
@@ -1,6 +1,6 @@
---- libgnu/math.in.h.orig 2013-02-21 21:21:17.000000000 +0100
-+++ libgnu/math.in.h 2013-11-22 12:35:47.000000000 +0100
-@@ -17,7 +17,7 @@
+--- libgnu/math.in.h.orig 2017-02-22 18:17:36 UTC
++++ libgnu/math.in.h
+@@ -15,7 +15,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
diff --git a/math/octave/files/patch-libinterp_mk-pkg-add b/math/octave/files/patch-libinterp_mk-pkg-add
new file mode 100644
index 000000000000..df7bee3ef4ed
--- /dev/null
+++ b/math/octave/files/patch-libinterp_mk-pkg-add
@@ -0,0 +1,11 @@
+--- libinterp/mk-pkg-add.orig 2017-02-22 18:01:55 UTC
++++ libinterp/mk-pkg-add
+@@ -20,7 +20,7 @@
+
+ set -e
+
+-SED=${SED:-sed}
++SED=gsed
+
+ srcdir="$1"
+ shift
diff --git a/math/octave/files/patch-libinterp_mkops b/math/octave/files/patch-libinterp_mkops
new file mode 100644
index 000000000000..fcb52de86241
--- /dev/null
+++ b/math/octave/files/patch-libinterp_mkops
@@ -0,0 +1,11 @@
+--- libinterp/mkops.orig 2017-02-22 18:01:55 UTC
++++ libinterp/mkops
+@@ -18,7 +18,7 @@
+ # along with Octave; see the file COPYING. If not, see
+ # <http://www.gnu.org/licenses/>.
+
+-SED=${SED:-sed}
++SED=gsed
+
+ cat << \EOF
+ // DO NOT EDIT! Generated automatically by mkops.
diff --git a/math/octave/files/patch-liboctave-numeric-eigs-base.cc b/math/octave/files/patch-liboctave-numeric-eigs-base.cc
deleted file mode 100644
index 216faa85df43..000000000000
--- a/math/octave/files/patch-liboctave-numeric-eigs-base.cc
+++ /dev/null
@@ -1,11 +0,0 @@
---- liboctave/numeric/eigs-base.cc.orig 2014-01-20 05:36:55.000000000 -0700
-+++ liboctave/numeric/eigs-base.cc 2014-01-20 05:37:23.000000000 -0700
-@@ -3849,7 +3849,7 @@
- int disp = 0, int maxit = 300);
- #endif
-
--#ifndef _MSC_VER
-+#if !defined(_MSC_VER) && !defined(__clang__)
- template octave_idx_type
- lusolve (const SparseMatrix&, const SparseMatrix&, Matrix&);
-
diff --git a/math/octave/files/patch-liboctave_system_file-stat.cc b/math/octave/files/patch-liboctave_system_file-stat.cc
new file mode 100644
index 000000000000..05d15738d832
--- /dev/null
+++ b/math/octave/files/patch-liboctave_system_file-stat.cc
@@ -0,0 +1,11 @@
+--- liboctave/system/file-stat.cc.orig 2017-02-22 18:01:55 UTC
++++ 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)
diff --git a/math/octave/files/patch-scripts_mk-pkg-add b/math/octave/files/patch-scripts_mk-pkg-add
new file mode 100644
index 000000000000..56b78e04f53a
--- /dev/null
+++ b/math/octave/files/patch-scripts_mk-pkg-add
@@ -0,0 +1,11 @@
+--- scripts/mk-pkg-add.orig 2017-02-22 18:01:55 UTC
++++ scripts/mk-pkg-add
+@@ -24,7 +24,7 @@
+
+ set -e
+
+-SED=${SED:-sed}
++SED=gsed
+
+ prefix="$1/"
+ if [ "$1" ]; then
diff --git a/math/octave/files/patch-scripts+pkg+private+configure__make.m b/math/octave/files/patch-scripts_pkg_private_configure__make.m
index 5719849538a9..1e6b0b6bce61 100644
--- a/math/octave/files/patch-scripts+pkg+private+configure__make.m
+++ b/math/octave/files/patch-scripts_pkg_private_configure__make.m
@@ -1,6 +1,6 @@
---- scripts/pkg/private/configure_make.m~ 2016-01-08 13:18:07.395384102 +0900
-+++ scripts/pkg/private/configure_make.m 2016-01-08 13:18:53.562389185 +0900
-@@ -88,7 +88,7 @@
+--- scripts/pkg/private/configure_make.m.orig 2017-02-22 18:01:55 UTC
++++ scripts/pkg/private/configure_make.m
+@@ -87,7 +87,7 @@ function configure_make (desc, packdir,
endif
if (exist (fullfile (src, "Makefile"), "file"))
diff --git a/math/octave/pkg-plist b/math/octave/pkg-plist
index 729dd571f87d..b71f3c15250a 100644
--- a/math/octave/pkg-plist
+++ b/math/octave/pkg-plist
@@ -6,140 +6,132 @@ bin/octave-cli
bin/octave-cli-%%OCTAVE_VERSION%%
bin/octave-config
bin/octave-config-%%OCTAVE_VERSION%%
-include/octave-%%OCTAVE_VERSION%%/octave/action-container.h
include/octave-%%OCTAVE_VERSION%%/octave/Array-util.h
include/octave-%%OCTAVE_VERSION%%/octave/Array.cc
include/octave-%%OCTAVE_VERSION%%/octave/Array.h
-include/octave-%%OCTAVE_VERSION%%/octave/base-aepbal.h
+include/octave-%%OCTAVE_VERSION%%/octave/CColVector.h
+include/octave-%%OCTAVE_VERSION%%/octave/CDiagMatrix.h
+include/octave-%%OCTAVE_VERSION%%/octave/CMatrix.h
+include/octave-%%OCTAVE_VERSION%%/octave/CNDArray.h
+include/octave-%%OCTAVE_VERSION%%/octave/CRowVector.h
+include/octave-%%OCTAVE_VERSION%%/octave/CSparse.h
+include/octave-%%OCTAVE_VERSION%%/octave/Cell.h
+include/octave-%%OCTAVE_VERSION%%/octave/CollocWt.h
+include/octave-%%OCTAVE_VERSION%%/octave/DAE.h
+include/octave-%%OCTAVE_VERSION%%/octave/DAEFunc.h
+include/octave-%%OCTAVE_VERSION%%/octave/DAERT.h
+include/octave-%%OCTAVE_VERSION%%/octave/DAERTFunc.h
+include/octave-%%OCTAVE_VERSION%%/octave/DASPK-opts.h
+include/octave-%%OCTAVE_VERSION%%/octave/DASPK.h
+include/octave-%%OCTAVE_VERSION%%/octave/DASRT-opts.h
+include/octave-%%OCTAVE_VERSION%%/octave/DASRT.h
+include/octave-%%OCTAVE_VERSION%%/octave/DASSL-opts.h
+include/octave-%%OCTAVE_VERSION%%/octave/DASSL.h
+include/octave-%%OCTAVE_VERSION%%/octave/DET.h
+include/octave-%%OCTAVE_VERSION%%/octave/DiagArray2.cc
+include/octave-%%OCTAVE_VERSION%%/octave/DiagArray2.h
+include/octave-%%OCTAVE_VERSION%%/octave/EIG.h
+include/octave-%%OCTAVE_VERSION%%/octave/LSODE-opts.h
+include/octave-%%OCTAVE_VERSION%%/octave/LSODE.h
+include/octave-%%OCTAVE_VERSION%%/octave/MArray.cc
+include/octave-%%OCTAVE_VERSION%%/octave/MArray.h
+include/octave-%%OCTAVE_VERSION%%/octave/MDiagArray2.cc
+include/octave-%%OCTAVE_VERSION%%/octave/MDiagArray2.h
+include/octave-%%OCTAVE_VERSION%%/octave/MSparse.cc
+include/octave-%%OCTAVE_VERSION%%/octave/MSparse.h
+include/octave-%%OCTAVE_VERSION%%/octave/Matrix.h
+include/octave-%%OCTAVE_VERSION%%/octave/MatrixType.h
+include/octave-%%OCTAVE_VERSION%%/octave/ODE.h
+include/octave-%%OCTAVE_VERSION%%/octave/ODEFunc.h
+include/octave-%%OCTAVE_VERSION%%/octave/ODES.h
+include/octave-%%OCTAVE_VERSION%%/octave/ODESFunc.h
+include/octave-%%OCTAVE_VERSION%%/octave/PermMatrix.h
+include/octave-%%OCTAVE_VERSION%%/octave/Quad-opts.h
+include/octave-%%OCTAVE_VERSION%%/octave/Quad.h
+include/octave-%%OCTAVE_VERSION%%/octave/Range.h
+include/octave-%%OCTAVE_VERSION%%/octave/Sparse-diag-op-defs.h
+include/octave-%%OCTAVE_VERSION%%/octave/Sparse-op-decls.h
+include/octave-%%OCTAVE_VERSION%%/octave/Sparse-op-defs.h
+include/octave-%%OCTAVE_VERSION%%/octave/Sparse-perm-op-defs.h
+include/octave-%%OCTAVE_VERSION%%/octave/Sparse.cc
+include/octave-%%OCTAVE_VERSION%%/octave/Sparse.h
+include/octave-%%OCTAVE_VERSION%%/octave/action-container.h
+include/octave-%%OCTAVE_VERSION%%/octave/aepbalance.h
include/octave-%%OCTAVE_VERSION%%/octave/base-dae.h
include/octave-%%OCTAVE_VERSION%%/octave/base-de.h
include/octave-%%OCTAVE_VERSION%%/octave/base-list.h
-include/octave-%%OCTAVE_VERSION%%/octave/base-lu.cc
-include/octave-%%OCTAVE_VERSION%%/octave/base-lu.h
include/octave-%%OCTAVE_VERSION%%/octave/base-min.h
-include/octave-%%OCTAVE_VERSION%%/octave/base-qr.cc
-include/octave-%%OCTAVE_VERSION%%/octave/base-qr.h
+include/octave-%%OCTAVE_VERSION%%/octave/base-text-renderer.h
include/octave-%%OCTAVE_VERSION%%/octave/boolMatrix.h
include/octave-%%OCTAVE_VERSION%%/octave/boolNDArray.h
include/octave-%%OCTAVE_VERSION%%/octave/boolSparse.h
include/octave-%%OCTAVE_VERSION%%/octave/bsxfun-decl.h
include/octave-%%OCTAVE_VERSION%%/octave/bsxfun-defs.cc
include/octave-%%OCTAVE_VERSION%%/octave/bsxfun.h
+include/octave-%%OCTAVE_VERSION%%/octave/build-env.h
include/octave-%%OCTAVE_VERSION%%/octave/builtin-defun-decls.h
include/octave-%%OCTAVE_VERSION%%/octave/builtins.h
include/octave-%%OCTAVE_VERSION%%/octave/byte-swap.h
include/octave-%%OCTAVE_VERSION%%/octave/c-file-ptr-stream.h
+include/octave-%%OCTAVE_VERSION%%/octave/call-stack.h
include/octave-%%OCTAVE_VERSION%%/octave/caseless-str.h
-include/octave-%%OCTAVE_VERSION%%/octave/CColVector.h
-include/octave-%%OCTAVE_VERSION%%/octave/CDiagMatrix.h
include/octave-%%OCTAVE_VERSION%%/octave/cdisplay.h
-include/octave-%%OCTAVE_VERSION%%/octave/Cell.h
include/octave-%%OCTAVE_VERSION%%/octave/chMatrix.h
include/octave-%%OCTAVE_VERSION%%/octave/chNDArray.h
-include/octave-%%OCTAVE_VERSION%%/octave/CMatrix.h
+include/octave-%%OCTAVE_VERSION%%/octave/child-list.h
+include/octave-%%OCTAVE_VERSION%%/octave/chol.h
include/octave-%%OCTAVE_VERSION%%/octave/cmd-edit.h
include/octave-%%OCTAVE_VERSION%%/octave/cmd-hist.h
-include/octave-%%OCTAVE_VERSION%%/octave/CmplxAEPBAL.h
-include/octave-%%OCTAVE_VERSION%%/octave/CmplxCHOL.h
-include/octave-%%OCTAVE_VERSION%%/octave/CmplxGEPBAL.h
-include/octave-%%OCTAVE_VERSION%%/octave/CmplxHESS.h
-include/octave-%%OCTAVE_VERSION%%/octave/CmplxLU.h
-include/octave-%%OCTAVE_VERSION%%/octave/CmplxQR.h
-include/octave-%%OCTAVE_VERSION%%/octave/CmplxQRP.h
-include/octave-%%OCTAVE_VERSION%%/octave/CmplxSCHUR.h
-include/octave-%%OCTAVE_VERSION%%/octave/CmplxSVD.h
-include/octave-%%OCTAVE_VERSION%%/octave/CNDArray.h
-include/octave-%%OCTAVE_VERSION%%/octave/CollocWt.h
include/octave-%%OCTAVE_VERSION%%/octave/comment-list.h
include/octave-%%OCTAVE_VERSION%%/octave/config.h
-include/octave-%%OCTAVE_VERSION%%/octave/CRowVector.h
-include/octave-%%OCTAVE_VERSION%%/octave/CSparse.h
-include/octave-%%OCTAVE_VERSION%%/octave/cutils.h
-include/octave-%%OCTAVE_VERSION%%/octave/DAE.h
-include/octave-%%OCTAVE_VERSION%%/octave/DAEFunc.h
-include/octave-%%OCTAVE_VERSION%%/octave/DAERT.h
-include/octave-%%OCTAVE_VERSION%%/octave/DAERTFunc.h
-include/octave-%%OCTAVE_VERSION%%/octave/DASPK-opts.h
-include/octave-%%OCTAVE_VERSION%%/octave/DASPK.h
-include/octave-%%OCTAVE_VERSION%%/octave/DASRT-opts.h
-include/octave-%%OCTAVE_VERSION%%/octave/DASRT.h
-include/octave-%%OCTAVE_VERSION%%/octave/DASSL-opts.h
-include/octave-%%OCTAVE_VERSION%%/octave/DASSL.h
-include/octave-%%OCTAVE_VERSION%%/octave/data-conv.h
-include/octave-%%OCTAVE_VERSION%%/octave/data.h
-include/octave-%%OCTAVE_VERSION%%/octave/dbleAEPBAL.h
-include/octave-%%OCTAVE_VERSION%%/octave/dbleCHOL.h
-include/octave-%%OCTAVE_VERSION%%/octave/dbleGEPBAL.h
-include/octave-%%OCTAVE_VERSION%%/octave/dbleHESS.h
-include/octave-%%OCTAVE_VERSION%%/octave/dbleLU.h
-include/octave-%%OCTAVE_VERSION%%/octave/dbleQR.h
-include/octave-%%OCTAVE_VERSION%%/octave/dbleQRP.h
-include/octave-%%OCTAVE_VERSION%%/octave/dbleSCHUR.h
-include/octave-%%OCTAVE_VERSION%%/octave/dbleSVD.h
include/octave-%%OCTAVE_VERSION%%/octave/dColVector.h
include/octave-%%OCTAVE_VERSION%%/octave/dDiagMatrix.h
+include/octave-%%OCTAVE_VERSION%%/octave/dMatrix.h
+include/octave-%%OCTAVE_VERSION%%/octave/dNDArray.h
+include/octave-%%OCTAVE_VERSION%%/octave/dRowVector.h
+include/octave-%%OCTAVE_VERSION%%/octave/dSparse.h
+include/octave-%%OCTAVE_VERSION%%/octave/data-conv.h
+include/octave-%%OCTAVE_VERSION%%/octave/data.h
include/octave-%%OCTAVE_VERSION%%/octave/debug.h
include/octave-%%OCTAVE_VERSION%%/octave/defaults.h
include/octave-%%OCTAVE_VERSION%%/octave/defun-dld.h
include/octave-%%OCTAVE_VERSION%%/octave/defun-int.h
include/octave-%%OCTAVE_VERSION%%/octave/defun.h
-include/octave-%%OCTAVE_VERSION%%/octave/DET.h
-include/octave-%%OCTAVE_VERSION%%/octave/DiagArray2.cc
-include/octave-%%OCTAVE_VERSION%%/octave/DiagArray2.h
include/octave-%%OCTAVE_VERSION%%/octave/dim-vector.h
include/octave-%%OCTAVE_VERSION%%/octave/dir-ops.h
include/octave-%%OCTAVE_VERSION%%/octave/dirfns.h
include/octave-%%OCTAVE_VERSION%%/octave/display.h
-include/octave-%%OCTAVE_VERSION%%/octave/dMatrix.h
-include/octave-%%OCTAVE_VERSION%%/octave/dNDArray.h
-include/octave-%%OCTAVE_VERSION%%/octave/dRowVector.h
-include/octave-%%OCTAVE_VERSION%%/octave/dSparse.h
include/octave-%%OCTAVE_VERSION%%/octave/dynamic-ld.h
-include/octave-%%OCTAVE_VERSION%%/octave/EIG.h
-include/octave-%%OCTAVE_VERSION%%/octave/eigs-base.cc
+include/octave-%%OCTAVE_VERSION%%/octave/eigs-base.h
include/octave-%%OCTAVE_VERSION%%/octave/error.h
+include/octave-%%OCTAVE_VERSION%%/octave/errwarn.h
include/octave-%%OCTAVE_VERSION%%/octave/event-queue.h
include/octave-%%OCTAVE_VERSION%%/octave/f77-fcn.h
include/octave-%%OCTAVE_VERSION%%/octave/fCColVector.h
include/octave-%%OCTAVE_VERSION%%/octave/fCDiagMatrix.h
include/octave-%%OCTAVE_VERSION%%/octave/fCMatrix.h
-include/octave-%%OCTAVE_VERSION%%/octave/fCmplxAEPBAL.h
-include/octave-%%OCTAVE_VERSION%%/octave/fCmplxCHOL.h
-include/octave-%%OCTAVE_VERSION%%/octave/fCmplxGEPBAL.h
-include/octave-%%OCTAVE_VERSION%%/octave/fCmplxHESS.h
-include/octave-%%OCTAVE_VERSION%%/octave/fCmplxLU.h
-include/octave-%%OCTAVE_VERSION%%/octave/fCmplxQR.h
-include/octave-%%OCTAVE_VERSION%%/octave/fCmplxQRP.h
-include/octave-%%OCTAVE_VERSION%%/octave/fCmplxSCHUR.h
-include/octave-%%OCTAVE_VERSION%%/octave/fCmplxSVD.h
include/octave-%%OCTAVE_VERSION%%/octave/fCNDArray.h
-include/octave-%%OCTAVE_VERSION%%/octave/fColVector.h
include/octave-%%OCTAVE_VERSION%%/octave/fCRowVector.h
+include/octave-%%OCTAVE_VERSION%%/octave/fColVector.h
include/octave-%%OCTAVE_VERSION%%/octave/fDiagMatrix.h
include/octave-%%OCTAVE_VERSION%%/octave/fEIG.h
-include/octave-%%OCTAVE_VERSION%%/octave/file-io.h
-include/octave-%%OCTAVE_VERSION%%/octave/file-ops.h
-include/octave-%%OCTAVE_VERSION%%/octave/file-stat.h
-include/octave-%%OCTAVE_VERSION%%/octave/floatAEPBAL.h
-include/octave-%%OCTAVE_VERSION%%/octave/floatCHOL.h
-include/octave-%%OCTAVE_VERSION%%/octave/floatGEPBAL.h
-include/octave-%%OCTAVE_VERSION%%/octave/floatHESS.h
-include/octave-%%OCTAVE_VERSION%%/octave/floatLU.h
-include/octave-%%OCTAVE_VERSION%%/octave/floatQR.h
-include/octave-%%OCTAVE_VERSION%%/octave/floatQRP.h
-include/octave-%%OCTAVE_VERSION%%/octave/floatSCHUR.h
-include/octave-%%OCTAVE_VERSION%%/octave/floatSVD.h
include/octave-%%OCTAVE_VERSION%%/octave/fMatrix.h
include/octave-%%OCTAVE_VERSION%%/octave/fNDArray.h
include/octave-%%OCTAVE_VERSION%%/octave/fRowVector.h
+include/octave-%%OCTAVE_VERSION%%/octave/file-io.h
+include/octave-%%OCTAVE_VERSION%%/octave/file-ops.h
+include/octave-%%OCTAVE_VERSION%%/octave/file-stat.h
+include/octave-%%OCTAVE_VERSION%%/octave/ft-text-renderer.h
include/octave-%%OCTAVE_VERSION%%/octave/functor.h
+include/octave-%%OCTAVE_VERSION%%/octave/gepbalance.h
include/octave-%%OCTAVE_VERSION%%/octave/gl-render.h
-include/octave-%%OCTAVE_VERSION%%/octave/gl2ps-renderer.h
+include/octave-%%OCTAVE_VERSION%%/octave/gl2ps-print.h
include/octave-%%OCTAVE_VERSION%%/octave/glob-match.h
include/octave-%%OCTAVE_VERSION%%/octave/graphics-props.cc
include/octave-%%OCTAVE_VERSION%%/octave/graphics.h
include/octave-%%OCTAVE_VERSION%%/octave/gripes.h
include/octave-%%OCTAVE_VERSION%%/octave/help.h
+include/octave-%%OCTAVE_VERSION%%/octave/hess.h
include/octave-%%OCTAVE_VERSION%%/octave/hook-fcn.h
include/octave-%%OCTAVE_VERSION%%/octave/idx-vector.h
include/octave-%%OCTAVE_VERSION%%/octave/input.h
@@ -149,19 +141,31 @@ include/octave-%%OCTAVE_VERSION%%/octave/int64NDArray.h
include/octave-%%OCTAVE_VERSION%%/octave/int8NDArray.h
include/octave-%%OCTAVE_VERSION%%/octave/intNDArray.cc
include/octave-%%OCTAVE_VERSION%%/octave/intNDArray.h
+include/octave-%%OCTAVE_VERSION%%/octave/interpreter.h
include/octave-%%OCTAVE_VERSION%%/octave/jit-ir.h
include/octave-%%OCTAVE_VERSION%%/octave/jit-typeinfo.h
include/octave-%%OCTAVE_VERSION%%/octave/jit-util.h
-include/octave-%%OCTAVE_VERSION%%/octave/kpse.cc
include/octave-%%OCTAVE_VERSION%%/octave/lex.h
+include/octave-%%OCTAVE_VERSION%%/octave/liboctave-build-info.h
+include/octave-%%OCTAVE_VERSION%%/octave/liboctinterp-build-info.h
+include/octave-%%OCTAVE_VERSION%%/octave/lo-amos-proto.h
+include/octave-%%OCTAVE_VERSION%%/octave/lo-arpack-proto.h
+include/octave-%%OCTAVE_VERSION%%/octave/lo-array-errwarn.h
include/octave-%%OCTAVE_VERSION%%/octave/lo-array-gripes.h
+include/octave-%%OCTAVE_VERSION%%/octave/lo-blas-proto.h
include/octave-%%OCTAVE_VERSION%%/octave/lo-cutils.h
include/octave-%%OCTAVE_VERSION%%/octave/lo-error.h
+include/octave-%%OCTAVE_VERSION%%/octave/lo-fftpack-proto.h
+include/octave-%%OCTAVE_VERSION%%/octave/lo-hash.h
include/octave-%%OCTAVE_VERSION%%/octave/lo-ieee.h
+include/octave-%%OCTAVE_VERSION%%/octave/lo-lapack-proto.h
include/octave-%%OCTAVE_VERSION%%/octave/lo-macros.h
include/octave-%%OCTAVE_VERSION%%/octave/lo-mappers.h
include/octave-%%OCTAVE_VERSION%%/octave/lo-math.h
+include/octave-%%OCTAVE_VERSION%%/octave/lo-qrupdate-proto.h
+include/octave-%%OCTAVE_VERSION%%/octave/lo-ranlib-proto.h
include/octave-%%OCTAVE_VERSION%%/octave/lo-regexp.h
+include/octave-%%OCTAVE_VERSION%%/octave/lo-slatec-proto.h
include/octave-%%OCTAVE_VERSION%%/octave/lo-specfun.h
include/octave-%%OCTAVE_VERSION%%/octave/lo-sysdep.h
include/octave-%%OCTAVE_VERSION%%/octave/lo-traits.h
@@ -174,24 +178,12 @@ include/octave-%%OCTAVE_VERSION%%/octave/ls-mat-ascii.h
include/octave-%%OCTAVE_VERSION%%/octave/ls-mat4.h
include/octave-%%OCTAVE_VERSION%%/octave/ls-mat5.h
include/octave-%%OCTAVE_VERSION%%/octave/ls-oct-binary.h
-include/octave-%%OCTAVE_VERSION%%/octave/ls-oct-ascii.h
+include/octave-%%OCTAVE_VERSION%%/octave/ls-oct-text.h
include/octave-%%OCTAVE_VERSION%%/octave/ls-utils.h
-include/octave-%%OCTAVE_VERSION%%/octave/LSODE-opts.h
-include/octave-%%OCTAVE_VERSION%%/octave/LSODE.h
+include/octave-%%OCTAVE_VERSION%%/octave/lu.h
include/octave-%%OCTAVE_VERSION%%/octave/mach-info.h
-include/octave-%%OCTAVE_VERSION%%/octave/MArray-decl.h
-include/octave-%%OCTAVE_VERSION%%/octave/MArray-defs.h
-include/octave-%%OCTAVE_VERSION%%/octave/MArray.cc
-include/octave-%%OCTAVE_VERSION%%/octave/MArray.h
-include/octave-%%OCTAVE_VERSION%%/octave/Matrix.h
-include/octave-%%OCTAVE_VERSION%%/octave/MatrixType.h
-include/octave-%%OCTAVE_VERSION%%/octave/MDiagArray2.cc
-include/octave-%%OCTAVE_VERSION%%/octave/MDiagArray2.h
include/octave-%%OCTAVE_VERSION%%/octave/mex.h
include/octave-%%OCTAVE_VERSION%%/octave/mexproto.h
-include/octave-%%OCTAVE_VERSION%%/octave/MSparse-defs.h
-include/octave-%%OCTAVE_VERSION%%/octave/MSparse.cc
-include/octave-%%OCTAVE_VERSION%%/octave/MSparse.h
include/octave-%%OCTAVE_VERSION%%/octave/mx-base.h
include/octave-%%OCTAVE_VERSION%%/octave/mx-cdm-cm.h
include/octave-%%OCTAVE_VERSION%%/octave/mx-cdm-dm.h
@@ -524,34 +516,29 @@ include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-ui32nda.h
include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-ui64.h
include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-ui64nda.h
include/octave-%%OCTAVE_VERSION%%/octave/mxarray.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-binmap.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-alloc.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-base64.h
+include/octave-%%OCTAVE_VERSION%%/octave/oct-binmap.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-cmplx.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-conf-post.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-conf.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-convn.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-env.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-errno.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-fftw.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-fstrm.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-glob.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-gperf.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-group.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-handle.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-hdf5-id.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-hdf5.h
+include/octave-%%OCTAVE_VERSION%%/octave/oct-hdf5-types.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-hist.h
+include/octave-%%OCTAVE_VERSION%%/octave/oct-inttypes-fwd.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-inttypes.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-iostrm.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-locbuf.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-lvalue.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-map.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-md5.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-mutex.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-norm.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-obj.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-openmp.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-passwd.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-prcstrm.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-procbuf.h
@@ -562,40 +549,29 @@ include/octave-%%OCTAVE_VERSION%%/octave/oct-rl-hist.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-shlib.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-sort.cc
include/octave-%%OCTAVE_VERSION%%/octave/oct-sort.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-sparse.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-spparms.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-stdstrm.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-stream.h
+include/octave-%%OCTAVE_VERSION%%/octave/oct-string.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-strstrm.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-syscalls.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-tex-parser.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-time.h
include/octave-%%OCTAVE_VERSION%%/octave/oct-uname.h
include/octave-%%OCTAVE_VERSION%%/octave/oct.h
+include/octave-%%OCTAVE_VERSION%%/octave/octave-build-info.h
+include/octave-%%OCTAVE_VERSION%%/octave/octave-config.h
include/octave-%%OCTAVE_VERSION%%/octave/octave-default-image.h
include/octave-%%OCTAVE_VERSION%%/octave/octave-link.h
+include/octave-%%OCTAVE_VERSION%%/octave/octave-preserve-stream-state.h
include/octave-%%OCTAVE_VERSION%%/octave/octave.h
-include/octave-%%OCTAVE_VERSION%%/octave/ODE.h
-include/octave-%%OCTAVE_VERSION%%/octave/ODEFunc.h
-include/octave-%%OCTAVE_VERSION%%/octave/ODES.h
-include/octave-%%OCTAVE_VERSION%%/octave/ODESFunc.h
-include/octave-%%OCTAVE_VERSION%%/octave/op-dm-template.cc
-include/octave-%%OCTAVE_VERSION%%/octave/op-dms-template.cc
-include/octave-%%OCTAVE_VERSION%%/octave/op-int.h
-include/octave-%%OCTAVE_VERSION%%/octave/op-pm-template.cc
include/octave-%%OCTAVE_VERSION%%/octave/ops.h
include/octave-%%OCTAVE_VERSION%%/octave/options-usage.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-base-diag.cc
include/octave-%%OCTAVE_VERSION%%/octave/ov-base-diag.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-base-int.cc
include/octave-%%OCTAVE_VERSION%%/octave/ov-base-int.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-base-mat.cc
include/octave-%%OCTAVE_VERSION%%/octave/ov-base-mat.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-base-scalar.cc
include/octave-%%OCTAVE_VERSION%%/octave/ov-base-scalar.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-base-sparse.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-base.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-bool-mat.cc
include/octave-%%OCTAVE_VERSION%%/octave/ov-bool-mat.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-bool-sparse.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-bool.h
@@ -639,7 +615,6 @@ include/octave-%%OCTAVE_VERSION%%/octave/ov-re-sparse.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-scalar.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-str-mat.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-struct.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-type-conv.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-typeinfo.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-uint16.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-uint32.h
@@ -647,19 +622,18 @@ include/octave-%%OCTAVE_VERSION%%/octave/ov-uint64.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-uint8.h
include/octave-%%OCTAVE_VERSION%%/octave/ov-usr-fcn.h
include/octave-%%OCTAVE_VERSION%%/octave/ov.h
+include/octave-%%OCTAVE_VERSION%%/octave/ovl.h
include/octave-%%OCTAVE_VERSION%%/octave/pager.h
include/octave-%%OCTAVE_VERSION%%/octave/parse.h
-include/octave-%%OCTAVE_VERSION%%/octave/pathlen.h
include/octave-%%OCTAVE_VERSION%%/octave/pathsearch.h
-include/octave-%%OCTAVE_VERSION%%/octave/PermMatrix.h
include/octave-%%OCTAVE_VERSION%%/octave/pr-output.h
include/octave-%%OCTAVE_VERSION%%/octave/procstream.h
include/octave-%%OCTAVE_VERSION%%/octave/profiler.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-binop.h
include/octave-%%OCTAVE_VERSION%%/octave/pt-all.h
include/octave-%%OCTAVE_VERSION%%/octave/pt-arg-list.h
include/octave-%%OCTAVE_VERSION%%/octave/pt-array-list.h
include/octave-%%OCTAVE_VERSION%%/octave/pt-assign.h
+include/octave-%%OCTAVE_VERSION%%/octave/pt-binop.h
include/octave-%%OCTAVE_VERSION%%/octave/pt-bp.h
include/octave-%%OCTAVE_VERSION%%/octave/pt-cbinop.h
include/octave-%%OCTAVE_VERSION%%/octave/pt-cell.h
@@ -687,15 +661,14 @@ include/octave-%%OCTAVE_VERSION%%/octave/pt-stmt.h
include/octave-%%OCTAVE_VERSION%%/octave/pt-unop.h
include/octave-%%OCTAVE_VERSION%%/octave/pt-walk.h
include/octave-%%OCTAVE_VERSION%%/octave/pt.h
-include/octave-%%OCTAVE_VERSION%%/octave/Quad-opts.h
-include/octave-%%OCTAVE_VERSION%%/octave/Quad.h
+include/octave-%%OCTAVE_VERSION%%/octave/qr.h
+include/octave-%%OCTAVE_VERSION%%/octave/qrp.h
include/octave-%%OCTAVE_VERSION%%/octave/quit.h
include/octave-%%OCTAVE_VERSION%%/octave/randgamma.h
include/octave-%%OCTAVE_VERSION%%/octave/randmtzig.h
include/octave-%%OCTAVE_VERSION%%/octave/randpoisson.h
-include/octave-%%OCTAVE_VERSION%%/octave/Range.h
+include/octave-%%OCTAVE_VERSION%%/octave/schur.h
include/octave-%%OCTAVE_VERSION%%/octave/sighandlers.h
-include/octave-%%OCTAVE_VERSION%%/octave/siglist.h
include/octave-%%OCTAVE_VERSION%%/octave/singleton-cleanup.h
include/octave-%%OCTAVE_VERSION%%/octave/smx-bm-sbm.h
include/octave-%%OCTAVE_VERSION%%/octave/smx-cm-scm.h
@@ -703,6 +676,7 @@ include/octave-%%OCTAVE_VERSION%%/octave/smx-cm-sm.h
include/octave-%%OCTAVE_VERSION%%/octave/smx-cs-sm.h
include/octave-%%OCTAVE_VERSION%%/octave/smx-m-scm.h
include/octave-%%OCTAVE_VERSION%%/octave/smx-m-sm.h
+include/octave-%%OCTAVE_VERSION%%/octave/smx-ops.h
include/octave-%%OCTAVE_VERSION%%/octave/smx-s-scm.h
include/octave-%%OCTAVE_VERSION%%/octave/smx-sbm-bm.h
include/octave-%%OCTAVE_VERSION%%/octave/smx-scm-cm.h
@@ -713,37 +687,22 @@ include/octave-%%OCTAVE_VERSION%%/octave/smx-sm-cm.h
include/octave-%%OCTAVE_VERSION%%/octave/smx-sm-cs.h
include/octave-%%OCTAVE_VERSION%%/octave/smx-sm-m.h
include/octave-%%OCTAVE_VERSION%%/octave/smx-sm-scm.h
-include/octave-%%OCTAVE_VERSION%%/octave/sparse-base-chol.cc
-include/octave-%%OCTAVE_VERSION%%/octave/sparse-base-chol.h
-include/octave-%%OCTAVE_VERSION%%/octave/sparse-base-lu.cc
-include/octave-%%OCTAVE_VERSION%%/octave/sparse-base-lu.h
-include/octave-%%OCTAVE_VERSION%%/octave/Sparse-diag-op-defs.h
-include/octave-%%OCTAVE_VERSION%%/octave/sparse-dmsolve.cc
-include/octave-%%OCTAVE_VERSION%%/octave/Sparse-op-decls.h
-include/octave-%%OCTAVE_VERSION%%/octave/Sparse-op-defs.h
-include/octave-%%OCTAVE_VERSION%%/octave/Sparse-perm-op-defs.h
+include/octave-%%OCTAVE_VERSION%%/octave/sparse-chol.h
+include/octave-%%OCTAVE_VERSION%%/octave/sparse-dmsolve.h
+include/octave-%%OCTAVE_VERSION%%/octave/sparse-lu.h
+include/octave-%%OCTAVE_VERSION%%/octave/sparse-qr.h
include/octave-%%OCTAVE_VERSION%%/octave/sparse-sort.h
include/octave-%%OCTAVE_VERSION%%/octave/sparse-util.h
include/octave-%%OCTAVE_VERSION%%/octave/sparse-xdiv.h
include/octave-%%OCTAVE_VERSION%%/octave/sparse-xpow.h
-include/octave-%%OCTAVE_VERSION%%/octave/Sparse.cc
-include/octave-%%OCTAVE_VERSION%%/octave/Sparse.h
-include/octave-%%OCTAVE_VERSION%%/octave/SparseCmplxCHOL.h
-include/octave-%%OCTAVE_VERSION%%/octave/SparseCmplxLU.h
-include/octave-%%OCTAVE_VERSION%%/octave/SparseCmplxQR.h
-include/octave-%%OCTAVE_VERSION%%/octave/SparsedbleCHOL.h
-include/octave-%%OCTAVE_VERSION%%/octave/SparsedbleLU.h
-include/octave-%%OCTAVE_VERSION%%/octave/SparseQR.h
-include/octave-%%OCTAVE_VERSION%%/octave/statdefs.h
include/octave-%%OCTAVE_VERSION%%/octave/str-vec.h
include/octave-%%OCTAVE_VERSION%%/octave/sun-utils.h
+include/octave-%%OCTAVE_VERSION%%/octave/svd.h
include/octave-%%OCTAVE_VERSION%%/octave/symtab.h
include/octave-%%OCTAVE_VERSION%%/octave/sysdep.h
-include/octave-%%OCTAVE_VERSION%%/octave/sysdir.h
-include/octave-%%OCTAVE_VERSION%%/octave/syswait.h
+include/octave-%%OCTAVE_VERSION%%/octave/text-renderer.h
include/octave-%%OCTAVE_VERSION%%/octave/token.h
include/octave-%%OCTAVE_VERSION%%/octave/toplev.h
-include/octave-%%OCTAVE_VERSION%%/octave/txt-eng-ft.h
include/octave-%%OCTAVE_VERSION%%/octave/txt-eng.h
include/octave-%%OCTAVE_VERSION%%/octave/uint16NDArray.h
include/octave-%%OCTAVE_VERSION%%/octave/uint32NDArray.h
@@ -774,6 +733,7 @@ include/octave-%%OCTAVE_VERSION%%/octave/vx-frv-fcrv.h
include/octave-%%OCTAVE_VERSION%%/octave/vx-frv-fcs.h
include/octave-%%OCTAVE_VERSION%%/octave/vx-fs-fccv.h
include/octave-%%OCTAVE_VERSION%%/octave/vx-fs-fcrv.h
+include/octave-%%OCTAVE_VERSION%%/octave/vx-ops.h
include/octave-%%OCTAVE_VERSION%%/octave/vx-rv-crv.h
include/octave-%%OCTAVE_VERSION%%/octave/vx-rv-cs.h
include/octave-%%OCTAVE_VERSION%%/octave/vx-s-ccv.h
@@ -784,14 +744,15 @@ include/octave-%%OCTAVE_VERSION%%/octave/xnorm.h
include/octave-%%OCTAVE_VERSION%%/octave/xpow.h
include/octave-%%OCTAVE_VERSION%%/octave/zfstream.h
lib/octave/%%OCTAVE_VERSION%%/liboctave.so
-lib/octave/%%OCTAVE_VERSION%%/liboctave.so.3
-lib/octave/%%OCTAVE_VERSION%%/liboctave.so.3.0.2
+lib/octave/%%OCTAVE_VERSION%%/liboctave.so.4
+lib/octave/%%OCTAVE_VERSION%%/liboctave.so.4.0.0
lib/octave/%%OCTAVE_VERSION%%/liboctgui.so
-lib/octave/%%OCTAVE_VERSION%%/liboctgui.so.1
-lib/octave/%%OCTAVE_VERSION%%/liboctgui.so.1.1.0
+lib/octave/%%OCTAVE_VERSION%%/liboctgui.so.2
+lib/octave/%%OCTAVE_VERSION%%/liboctgui.so.2.0.0
lib/octave/%%OCTAVE_VERSION%%/liboctinterp.so
-lib/octave/%%OCTAVE_VERSION%%/liboctinterp.so.3
-lib/octave/%%OCTAVE_VERSION%%/liboctinterp.so.3.1.1
+lib/octave/%%OCTAVE_VERSION%%/liboctinterp.so.4
+lib/octave/%%OCTAVE_VERSION%%/liboctinterp.so.4.0.0
+lib/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/PKG_ADD
lib/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__delaunayn__.oct
lib/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__eigs__.oct
lib/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__fltk_uigetfile__.oct
@@ -809,7 +770,7 @@ lib/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/colamd.oct
lib/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/convhulln.oct
lib/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/dmperm.oct
lib/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/fftw.oct
-lib/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/PKG_ADD
+lib/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/gzip.oct
lib/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/qr.oct
lib/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/symbfact.oct
lib/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/symrcm.oct
@@ -823,12 +784,18 @@ share/applications/www.octave.org-octave.desktop
share/icons/hicolor/scalable/apps/octave.svg
share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/data/penny.mat
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/built-in-docstrings
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/CITATION
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/NEWS
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/built-in-docstrings
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/default-qt-settings
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/doc-cache
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/macros.texi
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/NEWS
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/profiler/flat.html
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/profiler/flat_entry.html
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/profiler/function.html
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/profiler/hierarchical.html
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/profiler/hierarchical_entry.html
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/profiler/style.css
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/@cell/tbcover.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/@char/tbcover.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/@double/tbcover.m
@@ -858,62 +825,71 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/bug-38236/bug-38236.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/bug-38236/df_vr.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/bug-38236/u_vr.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/bug-38565.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/bug-38576.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/bug-38691/bug-38691.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/bug-38691/dir1/func1.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/bug-38691/dir2/func1.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/bug-38691/dir2/func2.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/bug-38691/dir2/func3.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/bug-44940/bug-44940.tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/bug-44940/class_bug44940.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/bug-46330.tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/bug-49904.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/class-concat/@foo/foo.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/class-concat/class-concat.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classdef/classdef.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classdef/foo_method_changes_property_size.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classdef/foo_static_method_constant_property.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classdef/foo_value_class.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Blork/bleek.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classdef/plist_t1.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classdef/plist_t2.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classdef/plist_t3.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Blork/Blork.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Blork/bleek.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Blork/display.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Blork/get.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Blork/set.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Cork/click.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Cork/Cork.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Cork/display.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Cork/get.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Cork/set.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@CPrecedenceTester1/CPrecedenceTester1.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@CPrecedenceTester1/tattack.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@CPrecedenceTester2/CPrecedenceTester2.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@CPrecedenceTester2/tattack.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@CPrecedenceTester3/CPrecedenceTester3.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@CPrecedenceTester3/tattack.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Cork/Cork.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Cork/click.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Cork/display.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Cork/get.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Cork/set.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Dork/Dork.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Dork/bling.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Dork/display.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Dork/Dork.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Dork/gack.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Dork/get.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Dork/getStash.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Dork/private/myStash.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Dork/set.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Gork/Gork.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Gork/cork.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Gork/display.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Gork/gark.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Gork/get.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Gork/Gork.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Gork/set.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Gork/subsasgn.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Gork/subsref.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Pork/Pork.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Pork/bling.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Pork/display.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Pork/get.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Pork/gurk.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Pork/Pork.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Pork/private/myStash.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Pork/set.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@SizeTester/SizeTester.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@SizeTester/numel.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@SizeTester/size.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@SizeTester/SizeTester.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Sneetch/display.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Sneetch/Sneetch.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Sneetch/display.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Snork/Snork.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Snork/cack.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Snork/display.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Snork/double.m
@@ -941,7 +917,6 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Snork/rdivide.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Snork/saveobj.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Snork/set.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Snork/Snork.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Snork/subsasgn.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Snork/subsindex.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Snork/subsref.m
@@ -950,6 +925,7 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Snork/uminus.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Snork/uplus.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Snork/vertcat.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Spork/Spork.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Spork/cack.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Spork/display.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Spork/geek.m
@@ -959,17 +935,18 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Spork/private/myStash.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Spork/saveobj.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Spork/set.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/@Spork/Spork.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/classes/classes.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/colormaps.tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/command.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/complex.tst
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/ctor-vs-method/__trace__.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/conv.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/ctor-vs-method/@derived/derived.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/ctor-vs-method/@derived/parent.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/ctor-vs-method/@other/other.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/ctor-vs-method/@other/parent.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/ctor-vs-method/@parent/method.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/ctor-vs-method/@parent/parent.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/ctor-vs-method/__trace__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/ctor-vs-method/ctor-vs-method.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/diag-perm.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/error.tst
@@ -991,9 +968,32 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/jit.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/line-continue.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/logical-index.tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/nest/arg_nest.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/nest/arg_ret.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/nest/nest.tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/nest/nest_eval.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/nest/no_closure.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/nest/persistent_nest.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/nest/recursive_nest.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/nest/recursive_nest2.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/nest/recursive_nest3.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/nest/scope0.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/nest/scope1.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/nest/scope2.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/nest/scope3.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/nest/script_nest.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/nest/script_nest_script.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/nest/varg_nest.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/nest/varg_nest2.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/null-assign.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/parser.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/prefer.tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/publish/publish.tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/publish/test_script.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/publish/test_script_code_only.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/publish/test_script_empty.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/publish/test_script_example.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/publish/test_script_head_only.m
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/range.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/recursion.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/return.tst
@@ -1007,6 +1007,7 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/try.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/unwind.tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/fixed/while.tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/Cell.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/__contourc__.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/__dispatch__.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/__dsearchn__.cc-tst
@@ -1020,11 +1021,11 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/betainc.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/bitfcns.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/bsxfun.cc-tst
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/Cell.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/cellfun.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/conv2.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/dassl.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/data.cc-tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/debug.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/defaults.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/det.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/dirfns.cc-tst
@@ -1032,6 +1033,8 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/dot.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/eig.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/ellipj.cc-tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/error.cc-tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/errwarn.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/fft.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/fft2.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/file-io.cc-tst
@@ -1039,26 +1042,29 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/find.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/gammainc.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/gcd.cc-tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/getrusage.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/givens.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/graphics.cc-tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/hash.cc-tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/help.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/hess.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/hex2num.cc-tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/input.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/inv.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/kron.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/lookup.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/lsode.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/lu.cc-tst
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/luinc.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/mappers.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/matrix_type.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/max.cc-tst
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/md5sum.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/mgorth.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/nproc.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/oct-map.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/ordschur.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/pinv.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/pr-output.cc-tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/psi.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/quad.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/quadcc.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/qz.cc-tst
@@ -1083,11 +1089,15 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/toplev.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/tril.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/tsearch.cc-tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/typecast.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/utils.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/variables.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/dldfcn/__delaunayn__.cc-tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/dldfcn/__eigs__.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/dldfcn/__fltk_uigetfile__.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/dldfcn/__glpk__.cc-tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/dldfcn/__init_fltk__.cc-tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/dldfcn/__init_gnuplot__.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/dldfcn/__osmesa_print__.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/dldfcn/__voronoi__.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/dldfcn/amd.cc-tst
@@ -1096,7 +1106,9 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/dldfcn/convhulln.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/dldfcn/dmperm.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/dldfcn/fftw.cc-tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/dldfcn/gzip.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/dldfcn/qr.cc-tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/dldfcn/symbfact.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-base.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-bool-mat.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-cell.cc-tst
@@ -1104,43 +1116,32 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-cx-diag.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-fcn-handle.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-fcn-inline.cc-tst
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-flt-re-mat.cc-tst
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-int16.cc-tst
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-int32.cc-tst
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-int64.cc-tst
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-int8.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-java.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-null-mat.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-oncleanup.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-range.cc-tst
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-re-mat.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-struct.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-typeinfo.cc-tst
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-uint16.cc-tst
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-uint32.cc-tst
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-uint64.cc-tst
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-uint8.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov-usr-fcn.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave-value/ov.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/octave.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/parse-tree/lex.ll-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/parse-tree/oct-parse.in.yy-tst
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/parse-tree/pt-binop.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/parse-tree/pt-assign.cc-tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/parse-tree/pt-binop.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/parse-tree/pt-eval.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/parse-tree/pt-fcn-handle.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/parse-tree/pt-idx.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/parse-tree/pt-mat.cc-tst
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/libinterp/corefcn/error.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/liboctave/array/Array.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/liboctave/array/CMatrix.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/liboctave/array/CSparse.cc-tst
+%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/liboctave/array/Sparse.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/liboctave/array/dMatrix.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/liboctave/array/dSparse.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/liboctave/array/fCMatrix.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/liboctave/array/fMatrix.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/liboctave/array/idx-vector.cc-tst
-%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/liboctave/array/Sparse.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/etc/tests/liboctave/util/oct-inttypes.cc-tst
%%DATADIR%%/%%OCTAVE_VERSION%%/imagelib/default.img
%%DATADIR%%/%%OCTAVE_VERSION%%/imagelib/octave-logo.ico
@@ -1150,6 +1151,7 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/locale/de_DE.qm
%%DATADIR%%/%%OCTAVE_VERSION%%/locale/en_US.qm
%%DATADIR%%/%%OCTAVE_VERSION%%/locale/es_ES.qm
+%%DATADIR%%/%%OCTAVE_VERSION%%/locale/eu_ES.qm
%%DATADIR%%/%%OCTAVE_VERSION%%/locale/fr_FR.qm
%%DATADIR%%/%%OCTAVE_VERSION%%/locale/it_IT.qm
%%DATADIR%%/%%OCTAVE_VERSION%%/locale/ja_JP.qm
@@ -1159,8 +1161,8 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/locale/ru_RU.qm
%%DATADIR%%/%%OCTAVE_VERSION%%/locale/uk_UA.qm
%%DATADIR%%/%%OCTAVE_VERSION%%/locale/zh_CN.qm
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/@ftp/binary.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/@ftp/ascii.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/@ftp/binary.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/@ftp/cd.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/@ftp/close.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/@ftp/delete.m
@@ -1208,42 +1210,37 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/audio/record.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/audio/sound.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/audio/soundsc.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/audio/wavread.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/audio/wavwrite.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/bicubic.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/default_save_options.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/bitmax.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/comma.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/delaunay3.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/dump_prefs.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/find_dir_in_path.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/finite.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/fmod.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/fnmatch.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/gen_doc_cache.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/gmap40.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/interp1q.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/isequalwithequalnans.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/isstr.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/java_convert_matrix.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/java_debug.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/java_invoke.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/java_new.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/java_unsigned_conversion.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/javafields.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/javamethods.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/loadaudio.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/luinc.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/mahalanobis.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/md5sum.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/mouse_wheel_zoom.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/nfields.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/octave_config_info.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/octave_tmp_file_name.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/PKG_ADD
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/onenormest.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/paren.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/playaudio.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/re_read_readline_init_file.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/read_readline_init_file.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/saveaudio.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/saving_history.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/semicolon.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/setaudio.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/sleep.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/syl.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/usage.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/usleep.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/wavread.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/deprecated/wavwrite.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun/acosd.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun/acot.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun/acotd.m
@@ -1269,9 +1266,9 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun/sech.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun/sind.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/elfun/tand.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/bincoeff.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/accumarray.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/accumdim.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/bincoeff.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/bitcmp.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/bitget.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/bitset.m
@@ -1288,6 +1285,7 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/curl.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/dblquad.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/deal.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/deg2rad.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/del2.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/display.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/divergence.m
@@ -1296,6 +1294,7 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/flipdim.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/fliplr.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/flipud.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/grabcode.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/gradient.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/idivide.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/inputParser.m
@@ -1322,13 +1321,14 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/postpad.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/prepad.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/private/__isequal__.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/private/__publish_html_output__.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/private/__publish_latex_output__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/private/__splinen__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/profexplore.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/profile.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/profshow.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/publish.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/quadgk.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/quadl.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/quadv.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/rad2deg.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/randi.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/rat.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/general/repmat.m
@@ -1357,6 +1357,7 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/geometry/tsearchn.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/geometry/voronoi.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/geometry/voronoin.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/gui/dialog.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/gui/errordlg.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/gui/guidata.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/gui/guihandles.m
@@ -1372,8 +1373,8 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/gui/private/__uigetfile_fltk__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/gui/private/__uiobject_split_args__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/gui/private/__uiputfile_fltk__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/gui/private/message_dialog.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/gui/questdlg.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/gui/uibuttongroup.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/gui/uicontextmenu.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/gui/uicontrol.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/gui/uigetdir.m
@@ -1392,8 +1393,10 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/help/__gripe_missing_component__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/help/__makeinfo__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/help/__unimplemented__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/help/doc_cache_create.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/help/ans.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/help/doc.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/help/doc_cache_create.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/help/error_ids.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/help/get_first_help_sentence.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/help/help.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/help/lookfor.m
@@ -1401,6 +1404,7 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/help/private/__additional_help_message__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/help/private/__strip_html_tags__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/help/type.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/help/warning_ids.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/help/which.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/autumn.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/bone.m
@@ -1414,11 +1418,14 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/copper.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/cubehelix.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/flag.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/frame2im.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/gray.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/gray2ind.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/hot.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/hsv.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/hsv2rgb.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/im2double.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/im2frame.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/image.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/imagesc.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/imfinfo.m
@@ -1434,11 +1441,12 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/ntsc2rgb.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/ocean.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/pink.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/PKG_ADD
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/prism.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/private/__imfinfo__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/private/__imread__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/private/__imwrite__.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/private/colorspace_conversion_input_check.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/private/colorspace_conversion_revert.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/private/imageIO.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/private/imwrite_filename.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/private/ind2x.m
@@ -1450,6 +1458,7 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/spinmap.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/spring.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/summer.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/viridis.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/white.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/image/winter.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/io/beep.m
@@ -1461,11 +1470,10 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/io/is_valid_file_id.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/io/strread.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/io/textread.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/io/textscan.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/java/javaArray.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/java/java_get.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/java/java_set.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/java/javaaddpath.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/java/javaArray.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/java/javachk.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/java/javaclasspath.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/java/javamem.m
@@ -1475,6 +1483,7 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/bandwidth.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/commutation_matrix.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/cond.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/condeig.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/condest.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/cross.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/duplication_matrix.m
@@ -1491,8 +1500,8 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/linsolve.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/logm.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/normest.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/normest1.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/null.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/onenormest.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/orth.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/planerot.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/qzhess.m
@@ -1501,13 +1510,10 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/subspace.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/trace.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/linear-algebra/vech.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/ans.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/bug_report.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/bunzip2.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/bzip2.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/cast.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/citation.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/comma.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/compare_versions.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/computer.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/copyfile.m
@@ -1517,7 +1523,6 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/dir.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/dos.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/edit.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/error_ids.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/fact.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/fileattrib.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/fileparts.m
@@ -1526,7 +1531,6 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/getappdata.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/getfield.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/gunzip.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/gzip.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/info.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/inputname.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/isappdata.m
@@ -1536,11 +1540,12 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/isunix.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/license.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/list_primes.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/ls_command.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/ls.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/ls_command.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/menu.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/mex.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/mexext.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/mkdir.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/mkoctfile.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/movefile.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/namelengthmax.m
@@ -1548,17 +1553,14 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/open.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/orderfields.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/pack.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/paren.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/parseparams.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/perl.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/private/__w2mpth__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/private/__xzip__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/private/display_info_file.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/python.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/recycle.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/rmappdata.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/run.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/semicolon.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/setappdata.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/setfield.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/substruct.m
@@ -1573,10 +1575,25 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/unzip.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/ver.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/version.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/warning_ids.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/what.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/xor.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/miscellaneous/zip.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/ode/ode23.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/ode/ode45.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/ode/odeget.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/ode/odeplot.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/ode/odeset.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/ode/private/AbsRel_norm.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/ode/private/integrate_adaptive.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/ode/private/kahan.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/ode/private/ode_event_handler.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/ode/private/odedefaults.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/ode/private/odemergeopts.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/ode/private/runge_kutta_23.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/ode/private/runge_kutta_45_dorpri.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/ode/private/runge_kutta_interpolate.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/ode/private/starting_stepsize.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/optimization/PKG_ADD
%%DATADIR%%/%%OCTAVE_VERSION%%/m/optimization/__all_opts__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/optimization/fminbnd.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/optimization/fminsearch.m
@@ -1587,7 +1604,6 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/optimization/lsqnonneg.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/optimization/optimget.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/optimization/optimset.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/optimization/PKG_ADD
%%DATADIR%%/%%OCTAVE_VERSION%%/m/optimization/pqpnonneg.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/optimization/private/__fdjac__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/optimization/qp.m
@@ -1599,42 +1615,24 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/pkg.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/build.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/configure_make.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/copy_files.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/create_pkgadddel.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/default_prefix.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/describe.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/dirempty.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/extract_pkg.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/finish_installation.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/fix_depends.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/fix_version.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/generate_lookfor_cache.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/get_description.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/get_forge_download.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/get_forge_pkg.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/get_unsatisfied_deps.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/getarch.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/getarchdir.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/getarchprefix.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/install.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/installed_packages.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/is_architecture_dependent.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/list_forge_packages.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/load_package_dirs.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/load_packages_and_dependencies.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/load_packages.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/packinfo_copy_file.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/parse_pkg_idx.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/prepare_installation.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/print_package_description.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/load_packages_and_dependencies.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/rebuild.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/repackage.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/save_order.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/shell.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/uninstall.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/unload_packages.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/verify_directory.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/pkg/private/write_index.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/appearance/__clabel__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/appearance/__getlegenddata__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/appearance/annotation.m
@@ -1649,6 +1647,8 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/appearance/gtext.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/appearance/hidden.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/appearance/legend.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/appearance/lighting.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/appearance/material.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/appearance/orient.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/appearance/pbaspect.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/appearance/private/__axis_label__.m
@@ -1668,6 +1668,7 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/area.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/bar.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/barh.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/camlight.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/colorbar.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/comet.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/comet3.m
@@ -1692,9 +1693,11 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/fill.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/fplot.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/hist.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/isocaps.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/isocolors.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/isonormals.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/isosurface.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/light.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/line.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/loglog.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/loglogerr.m
@@ -1714,8 +1717,8 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/polar.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/private/__add_datasource__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/private/__bar__.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/private/__calc_isovalue_from_data__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/private/__contour__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/private/__errcomm__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/private/__errplot__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/private/__ezplot__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/private/__interp_cube__.m
@@ -1725,11 +1728,15 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/private/__pie__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/private/__plt__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/private/__quiver__.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/private/__rotate_around_axis__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/private/__scatter__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/private/__stem__.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/private/__unite_shared_vertices__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/quiver.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/quiver3.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/rectangle.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/reducepatch.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/reducevolume.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/ribbon.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/rose.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/scatter.m
@@ -1740,6 +1747,7 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/semilogyerr.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/shrinkfaces.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/slice.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/smooth3.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/sombrero.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/sphere.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/draw/stairs.m
@@ -1761,6 +1769,7 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/__gnuplot_drawnow__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/__next_line_color__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/__next_line_style__.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/__opengl_info__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/__plt_get_axis_arg__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/__pltopt__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/allchild.m
@@ -1776,7 +1785,6 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/findall.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/findfigs.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/findobj.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/frame2im.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/gca.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/gcbf.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/gcbo.m
@@ -1790,7 +1798,6 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/hgload.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/hgsave.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/hold.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/im2frame.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/isaxes.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/isfigure.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/ishghandle.m
@@ -1806,6 +1813,8 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/printd.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/private/__add_default_menu__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/private/__ghostscript__.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/private/__gnuplot_draw_axes__.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/private/__gnuplot_draw_figure__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/private/__gnuplot_get_var__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/private/__gnuplot_ginput__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/private/__gnuplot_has_feature__.m
@@ -1813,11 +1822,8 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/private/__gnuplot_open_stream__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/private/__gnuplot_print__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/private/__gnuplot_version__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/private/__go_draw_axes__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/private/__go_draw_figure__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/private/__opengl_print__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/private/__print_parse_opts__.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/private/__tight_eps_bbox__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/refresh.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/refreshdata.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/plot/util/rotate.m
@@ -1832,6 +1838,7 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/deconv.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/mkpp.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/mpoles.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/padecoef.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/pchip.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/poly.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/polynomial/polyaffine.m
@@ -1864,6 +1871,10 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/prefs/private/saveprefs.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/prefs/rmpref.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/prefs/setpref.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/profiler/profexplore.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/profiler/profexport.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/profiler/profile.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/profiler/profshow.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/set/intersect.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/set/ismember.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/set/powerset.m
@@ -1887,8 +1898,8 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/fftshift.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/filter2.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/fractdiff.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/freqz_plot.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/freqz.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/freqz_plot.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/hamming.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/hanning.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/signal/hurst.m
@@ -1921,7 +1932,7 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/sparse/nonzeros.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/sparse/pcg.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/sparse/pcr.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/sparse/private/__sprand_impl__.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/sparse/private/__sprand__.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/sparse/qmr.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/sparse/spaugment.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/sparse/spconvert.m
@@ -1980,7 +1991,6 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/kurtosis.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/logit.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/lscov.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/mahalanobis.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/mean.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/meansq.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/median.m
@@ -2003,14 +2013,14 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/table.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/var.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/base/zscore.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/binocdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/binoinv.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/binopdf.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/binornd.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/betacdf.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/betainv.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/betapdf.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/betarnd.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/binocdf.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/binoinv.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/binopdf.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/binornd.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/cauchy_cdf.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/cauchy_inv.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/distributions/cauchy_pdf.m
@@ -2102,32 +2112,32 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/chisquare_test_independence.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/cor_test.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/f_test_regression.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/hotelling_test_2.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/hotelling_test.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/kolmogorov_smirnov_test_2.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/hotelling_test_2.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/kolmogorov_smirnov_test.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/kolmogorov_smirnov_test_2.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/kruskal_wallis_test.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/manova.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/mcnemar_test.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/prop_test_2.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/run_test.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/sign_test.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/t_test.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/t_test_2.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/t_test_regression.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/t_test.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/u_test.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/var_test.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/welch_test.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/wilcoxon_test.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/z_test_2.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/z_test.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/bin2dec.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/statistics/tests/z_test_2.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/base2dec.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/bin2dec.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/blanks.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/cstrcat.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/deblank.m
-%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/dec2bin.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/dec2base.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/dec2bin.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/dec2hex.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/findstr.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/strings/hex2dec.m
@@ -2159,6 +2169,10 @@ share/icons/hicolor/x/apps/octave.png
%%DATADIR%%/%%OCTAVE_VERSION%%/m/testfun/demo.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/testfun/example.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/testfun/fail.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/testfun/private/compare_plot_demos.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/testfun/private/dump_demos.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/testfun/private/html_compare_plot_demos.m
+%%DATADIR%%/%%OCTAVE_VERSION%%/m/testfun/private/html_plot_demos_template.html
%%DATADIR%%/%%OCTAVE_VERSION%%/m/testfun/rundemos.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/testfun/runtests.m
%%DATADIR%%/%%OCTAVE_VERSION%%/m/testfun/speed.m
@@ -2185,10 +2199,10 @@ share/icons/hicolor/x/apps/octave.png
%%PORTDOCS%%%%DOCSDIR%%/refcard-legal.ps
%%PORTDOCS%%%%DOCSDIR%%/refcard-letter.ps
@dir lib/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%
+@dir lib/octave/site/oct/api-v51/%%GNU_HOST%%
@dir lib/octave/site/oct/%%GNU_HOST%%
-@dir lib/octave/site/oct/api-v50+/%%GNU_HOST%%
@dir libexec/octave/%%OCTAVE_VERSION%%/site/exec/%%GNU_HOST%%
-@dir libexec/octave/api-v50+/site/exec/%%GNU_HOST%%
+@dir libexec/octave/api-v51/site/exec/%%GNU_HOST%%
@dir libexec/octave/site/exec/%%GNU_HOST%%
@dir %%DATADIR%%/%%OCTAVE_VERSION%%/site/m
-@dir %%DATADIR%%/site/api-v50+/m
+@dir %%DATADIR%%/site/api-v51/m