pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/math/octave Octave: update to 4.4.1
details: https://anonhg.NetBSD.org/pkgsrc/rev/802c6c769f2f
branches: trunk
changeset: 311471:802c6c769f2f
user: maya <maya%pkgsrc.org@localhost>
date: Sun Aug 12 08:33:55 2018 +0000
description:
Octave: update to 4.4.1
Remove hack that had a high chance of resulting in a dysfunctional package
qttools can't be a build dependency because we link against something
in it.
XXX pkgsrc claims this package has work directory references
Summary of important user-visible changes for version 4.4 (2018-04-30):
----------------------------------------------------------------------
** A graphical Variable Editor has been added to the GUI interface.
It uses a spreadsheet-like interface for quick, intuitive editing
of variables. The Variable Editor is launched by double-clicking
on a variable name in the Workspace Window or by typing
"openvar VARIABLE_NAME" in the Command Window.
** On systems with 64-bit pointers, --enable-64 is now the default and
Octave always uses 64-bit indexing. However, if the configure
script determines that the BLAS library uses 32-bit integers, then
operations using the following libraries are limited to arrays with
dimensions that are smaller than 2^31 elements:
BLAS LAPACK QRUPDATE SuiteSparse ARPACK
Additionally, the following libraries use "int" internally, so
maximum problem sizes are always limited:
glpk Qhull
** The octave command no longer starts the GUI by default. Most users
starting Octave from a shell were expecting the command line
interface, and desktop launchers already required the `--force-gui'
option. With this change, desktop launchers should be modified to
use the new option `--gui'. The previous `--force-gui' option will
continue to work, and maps to `--gui', but it will be removed in
Octave 6.
** A known bug in Qt (https://bugreports.qt.io/browse/QTBUG-55357) is
addressed by limiting GUI sub-panel relocation capabilities for Qt
versions in the range >= 5.6.1 and < 5.7.1. However, this may not
thoroughly avoid issues on all platforms.
** A new container data type--containers.Map--is available. Map is a
key/value storage container (a.k.a, a hash) that efficiently allows
storing and retrieving values by name, rather than by position which
is how arrays work.
** The bareword "import" is now recognized in scripts and functions.
However, the functionality to import functions and classes from
other namespaces into the local scope has not yet been implemented.
Attempting to use "import" will provoke an error message.
** hex2num and num2hex now work for integer and char types and num2hex
may optionally return a cell array of strings instead of a character
array. If given a cell array of strings, hex2num now returns a
numeric array of the same size as the input cell array. Previously,
hex2num would accept a cell array of strings of arbitrary dimension
but would always return a column vector.
** New special functions cosint, sinint, and gammaincinv have been added.
** Special functions in Octave have been rewritten for larger input
domains, better accuracy, and additional options.
* gammainc now accepts negative real values for X.
* improved accuracy for gammainc, betainc, betaincinv, expint.
* gammainc has new options "scaledlower" and "scaledupper".
* betainc, betaincinv have new option "upper".
** The "names" option used in regular expressions now returns a struct
array, rather than a struct with a cell array for each field. This
change was made for Matlab compatibility.
** The quadcc function now uses both absolute tolerance and relative
tolerance to determine the stopping criteria for an integration.
To be compatible with other quadXXX functions, such as quadgk, the
calling syntax has changed to
quadcc (f, a, b, [AbsTol, [RelTol]])
To update existing code, change instances of RelTol to [0, RelTol].
quadcc (f, a, b, tol) => quadcc (f, a, b, [0, tol])
A warning that a single tolerance input is now interpreted as an
absolute tolerance will be issued in Octave versions 4.4 and 5,
after which it will be removed. The warning has ID
"Octave:quadcc:RelTol-conversion" and can be disabled with
warning ("off", "Octave:quadcc:RelTol-conversion")
** The qr function now returns a standard factorization unless
explicitly instructed to perform an economy factorization by using a
final argument of 0.
** The Qt graphics toolkit now supports offscreen printing without osmesa
if Octave was built with Qt >= 5.1.
** The built-in pager for display of large data is now disabled by
default. To re-enable it for every Octave session add the following
to your .octaverc file:
more on;
** The FLTK toolkit is no longer prioritized for development. The
number of Octave Maintainers is too small to support three different
graphic toolkits. New development will target the Qt toolkit.
While no longer prioritized, the FLTK toolkit is not deprecated and
there is no schedule for its removal.
** The graphic object property "PickableParts" has been implemented
which controls whether an object can accept mouse clicks.
** The graphic object property "Interruptible" has been fully
implemented which controls whether a running callback function can
be interrupted by another callback function.
** The graphic object property "HitTest" has been updated to be fully
compatible with Matlab.
** Text objects now implement the properties "BackgroundColor",
"EdgeColor", "LineStyle", "LineWidth", and "Margin".
** An initial implementation of alpha transparency has been made for
patch and surface objects. Printing to svg and pdf is supported.
** ishandle now returns true for both graphics handle objects and
Java objects. The latter change was made for Matlab compatibility.
Use ishghandle or isgraphics if it is important not to include Java
objects.
** The pkg command now accepts a URL as an argument, allowing a valid
Octave package to be installed from any remote host with one command,
for example
pkg install https://example.org/download/example-package.tar.gz
** The following statistical functions have been moved from core
Octave to the statistics package available from Octave Forge.
BASE
cloglog
logit
prctile
probit
qqplot
table (renamed to crosstab)
DISTRIBUTIONS
betacdf
betainv
betapdf
betarnd
binocdf
binoinv
binopdf
binornd
cauchy_cdf
cauchy_inv
cauchy_pdf
cauchy_rnd
chi2cdf
chi2inv
chi2pdf
chi2rnd
expcdf
expinv
exppdf
exprnd
fcdf
finv
fpdf
frnd
gamcdf
gaminv
gampdf
gamrnd
geocdf
geoinv
geopdf
geornd
hygecdf
hygeinv
hygepdf
hygernd
kolmogorov_smirnov_cdf
laplace_cdf
laplace_inv
laplace_pdf
laplace_rnd
logistic_cdf
logistic_inv
logistic_pdf
logistic_rnd
logncdf
logninv
lognpdf
lognrnd
nbincdf
nbininv
nbinpdf
nbinrnd
normcdf
norminv
normpdf
normrnd
poisscdf
poissinv
poisspdf
poissrnd
stdnormal_cdf
stdnormal_inv
stdnormal_pdf
stdnormal_rnd
tcdf
tinv
tpdf
trnd
unidcdf
unidinv
unidpdf
unidrnd
unifcdf
unifinv
unifpdf
unifrnd
wblcdf
wblinv
wblpdf
wblrnd
wienrnd
MODELS
logistic_regression
TESTS
anova
bartlett_test
chisquare_test_homogeneity
chisquare_test_independence
cor_test
f_test_regression
hotelling_test
hotelling_test_2
kolmogorov_smirnov_test
kolmogorov_smirnov_test_2
kruskal_wallis_test
manova
mcnemar_test
prop_test_2
run_test
sign_test
t_test
t_test_2
t_test_regression
u_test
var_test
welch_test
wilcoxon_test
z_test
z_test_2
** The following image functions have been moved from core Octave to
the image package available from Octave Forge.
ntsc2rgb
rgb2ntsc
** Other new functions added in 4.4:
bounds
camlookat
camorbit
campos
camroll
camtarget
camup
camva
camzoom
corrcoef
cosint
decic
erase
gammaincinv
getframe
groot
gsvd
hgtransform
humps
integral
integral2
integral3
isgraphics
isstring
mad
ode15i
ode15s
openvar
quad2d
repelem
rgb2gray
rticks
sinint
tfqmr
thetaticks
vecnorm
winqueryreg
xticklabels
xticks
yticklabels
yticks
zticklabels
zticks
** Deprecated functions.
The following functions have been deprecated in Octave 4.4 and will
be removed from Octave 6 (or whatever version is the second major
release after 4.4):
Function | Replacement
---------------------|------------------
chop | sprintf for visual results
desktop | isguirunning
tmpnam | tempname
toascii | double
java2mat | __java2mat__
** The following functions were deprecated in Octave 4.0 and have been
removed from Octave 4.4.
allow_noninteger_range_as_index
bicubic
delaunay3
do_braindead_shortcircuit_evaluation
dump_prefs
find_dir_in_path
finite
fmod
fnmatch
gmap40
loadaudio
luinc
mouse_wheel_zoom
nfields
octave_tmp_file_name
playaudio
saveaudio
setaudio
syl
usage
** The "Octave:undefined-return-values" warning ID is obsolete. Octave
now throws an error for any attempts to assign undefined values that
might be returned from functions.
** Deprecated graphics properties.
The following properties or allowed corresponding values have been
deprecated in Octave 4.4 and will be removed from Octave 6 (or whatever
version is the second major release after 4.4):
Object | Property | Value
---------------------|-------------------------|-------------------
figure | doublebuffer |
| mincolormap |
| wvisual |
| wvisualmode |
| xdisplay |
| xvisual |
| xvisualmode |
axes | drawmode |
annotation | edgecolor ("rectangle") |
text | fontweight | "demi" and "light"
uicontrol | fontweight | "demi" and "light"
uipanel | fontweight | "demi" and "light"
uibuttongroup | fontweight | "demi" and "light"
** The rectangle and ellipse annotation property "edgecolor" has been
deprecated and will be removed from Octave 6 (or whatever version
is the second major release after 4.4). Use the property "color"
instead.
** The header file oct-alloc.h has been removed along with the macros
that it defined (DECLARE_OCTAVE_ALLOCATOR, DEFINE_OCTAVE_ALLOCATOR,
and DEFINE_OCTAVE_ALLOCATOR2).
diffstat:
math/octave/Makefile | 9 +-
math/octave/PLIST | 503 +++++-----
math/octave/distinfo | 23 +-
math/octave/patches/patch-configure | 114 +-
math/octave/patches/patch-configure.ac | 10 +-
math/octave/patches/patch-libinterp_dldfcn_config-module.awk | 10 +-
math/octave/patches/patch-libinterp_dldfcn_module.mk | 10 +-
math/octave/patches/patch-liboctave_operators_mx-inlines.cc | 18 +-
8 files changed, 368 insertions(+), 329 deletions(-)
diffs (truncated from 1490 to 300 lines):
diff -r aa22029b2e16 -r 802c6c769f2f math/octave/Makefile
--- a/math/octave/Makefile Sat Aug 11 21:03:17 2018 +0000
+++ b/math/octave/Makefile Sun Aug 12 08:33:55 2018 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.173 2018/07/20 03:34:20 ryoon Exp $
+# $NetBSD: Makefile,v 1.174 2018/08/12 08:33:55 maya Exp $
-DISTNAME= octave-4.2.0
-PKGREVISION= 27
+DISTNAME= octave-4.4.1
CATEGORIES= math
MASTER_SITES= ${MASTER_SITE_GNU:=octave/}
@@ -53,9 +52,6 @@
# We use this to install .oct files so it doesn't strip them.
CONFIGURE_ENV+= INSTALL_LIB=${INSTALL_LIB:Q}
-# XXX Shared object "libgfortran.so.3" not found
-CONFIGURE_ENV+= octave_cv_sizeof_fortran_integer=yes
-
.include "options.mk"
INFO_FILES= yes
@@ -122,7 +118,6 @@
.include "../../x11/libX11/buildlink3.mk"
.endif
.include "../../x11/qt5-qtbase/buildlink3.mk"
-BUILDLINK_DEPMETHOD.qt5-qttools?=build
.include "../../x11/qt5-qttools/buildlink3.mk"
BUILDLINK_DEPMETHOD.gperf?=build
.include "../../devel/gperf/buildlink3.mk"
diff -r aa22029b2e16 -r 802c6c769f2f math/octave/PLIST
--- a/math/octave/PLIST Sat Aug 11 21:03:17 2018 +0000
+++ b/math/octave/PLIST Sun Aug 12 08:33:55 2018 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.30 2017/07/03 13:40:00 maya Exp $
+@comment $NetBSD: PLIST,v 1.31 2018/08/12 08:33:55 maya Exp $
bin/mkoctfile
bin/mkoctfile-${PKGVERSION}
bin/octave
@@ -66,12 +66,12 @@
include/${PKGNAME}/octave/boolMatrix.h
include/${PKGNAME}/octave/boolNDArray.h
include/${PKGNAME}/octave/boolSparse.h
+include/${PKGNAME}/octave/bp-table.h
include/${PKGNAME}/octave/bsxfun-decl.h
include/${PKGNAME}/octave/bsxfun-defs.cc
include/${PKGNAME}/octave/bsxfun.h
include/${PKGNAME}/octave/build-env.h
include/${PKGNAME}/octave/builtin-defun-decls.h
-include/${PKGNAME}/octave/builtins.h
include/${PKGNAME}/octave/byte-swap.h
include/${PKGNAME}/octave/c-file-ptr-stream.h
include/${PKGNAME}/octave/call-stack.h
@@ -84,7 +84,6 @@
include/${PKGNAME}/octave/cmd-edit.h
include/${PKGNAME}/octave/cmd-hist.h
include/${PKGNAME}/octave/comment-list.h
-include/${PKGNAME}/octave/config.h
include/${PKGNAME}/octave/dColVector.h
include/${PKGNAME}/octave/dDiagMatrix.h
include/${PKGNAME}/octave/dMatrix.h
@@ -93,7 +92,6 @@
include/${PKGNAME}/octave/dSparse.h
include/${PKGNAME}/octave/data-conv.h
include/${PKGNAME}/octave/data.h
-include/${PKGNAME}/octave/debug.h
include/${PKGNAME}/octave/defaults.h
include/${PKGNAME}/octave/defun-dld.h
include/${PKGNAME}/octave/defun-int.h
@@ -104,6 +102,7 @@
include/${PKGNAME}/octave/display.h
include/${PKGNAME}/octave/dynamic-ld.h
include/${PKGNAME}/octave/eigs-base.h
+include/${PKGNAME}/octave/environment.h
include/${PKGNAME}/octave/error.h
include/${PKGNAME}/octave/errwarn.h
include/${PKGNAME}/octave/event-queue.h
@@ -119,6 +118,8 @@
include/${PKGNAME}/octave/fMatrix.h
include/${PKGNAME}/octave/fNDArray.h
include/${PKGNAME}/octave/fRowVector.h
+include/${PKGNAME}/octave/fcn-info.h
+include/${PKGNAME}/octave/file-info.h
include/${PKGNAME}/octave/file-io.h
include/${PKGNAME}/octave/file-ops.h
include/${PKGNAME}/octave/file-stat.h
@@ -128,9 +129,13 @@
include/${PKGNAME}/octave/gl-render.h
include/${PKGNAME}/octave/gl2ps-print.h
include/${PKGNAME}/octave/glob-match.h
+include/${PKGNAME}/octave/graphics-handle.h
include/${PKGNAME}/octave/graphics-props.cc
+include/${PKGNAME}/octave/graphics-toolkit.h
include/${PKGNAME}/octave/graphics.h
include/${PKGNAME}/octave/gripes.h
+include/${PKGNAME}/octave/gsvd.h
+include/${PKGNAME}/octave/gtk-manager.h
include/${PKGNAME}/octave/help.h
include/${PKGNAME}/octave/hess.h
include/${PKGNAME}/octave/hook-fcn.h
@@ -160,15 +165,14 @@
include/${PKGNAME}/octave/lo-hash.h
include/${PKGNAME}/octave/lo-ieee.h
include/${PKGNAME}/octave/lo-lapack-proto.h
-include/${PKGNAME}/octave/lo-macros.h
include/${PKGNAME}/octave/lo-mappers.h
-include/${PKGNAME}/octave/lo-math.h
include/${PKGNAME}/octave/lo-qrupdate-proto.h
include/${PKGNAME}/octave/lo-ranlib-proto.h
include/${PKGNAME}/octave/lo-regexp.h
include/${PKGNAME}/octave/lo-slatec-proto.h
include/${PKGNAME}/octave/lo-specfun.h
include/${PKGNAME}/octave/lo-sysdep.h
+include/${PKGNAME}/octave/lo-sysinfo.h
include/${PKGNAME}/octave/lo-traits.h
include/${PKGNAME}/octave/lo-utils.h
include/${PKGNAME}/octave/load-path.h
@@ -517,7 +521,6 @@
include/${PKGNAME}/octave/mx-ui8nda-ui64.h
include/${PKGNAME}/octave/mx-ui8nda-ui64nda.h
include/${PKGNAME}/octave/mxarray.h
-include/${PKGNAME}/octave/oct-alloc.h
include/${PKGNAME}/octave/oct-base64.h
include/${PKGNAME}/octave/oct-binmap.h
include/${PKGNAME}/octave/oct-cmplx.h
@@ -566,7 +569,6 @@
include/${PKGNAME}/octave/octave-preserve-stream-state.h
include/${PKGNAME}/octave/octave.h
include/${PKGNAME}/octave/ops.h
-include/${PKGNAME}/octave/options-usage.h
include/${PKGNAME}/octave/ov-base-diag.h
include/${PKGNAME}/octave/ov-base-int.h
include/${PKGNAME}/octave/ov-base-mat.h
@@ -627,6 +629,7 @@
include/${PKGNAME}/octave/pager.h
include/${PKGNAME}/octave/parse.h
include/${PKGNAME}/octave/pathsearch.h
+include/${PKGNAME}/octave/pr-flt-fmt.h
include/${PKGNAME}/octave/pr-output.h
include/${PKGNAME}/octave/procstream.h
include/${PKGNAME}/octave/profiler.h
@@ -659,6 +662,7 @@
include/${PKGNAME}/octave/pt-pr-code.h
include/${PKGNAME}/octave/pt-select.h
include/${PKGNAME}/octave/pt-stmt.h
+include/${PKGNAME}/octave/pt-tm-const.h
include/${PKGNAME}/octave/pt-unop.h
include/${PKGNAME}/octave/pt-walk.h
include/${PKGNAME}/octave/pt.h
@@ -697,8 +701,9 @@
include/${PKGNAME}/octave/sparse-xdiv.h
include/${PKGNAME}/octave/sparse-xpow.h
include/${PKGNAME}/octave/str-vec.h
-include/${PKGNAME}/octave/sun-utils.h
include/${PKGNAME}/octave/svd.h
+include/${PKGNAME}/octave/symrec.h
+include/${PKGNAME}/octave/symscope.h
include/${PKGNAME}/octave/symtab.h
include/${PKGNAME}/octave/sysdep.h
include/${PKGNAME}/octave/text-renderer.h
@@ -710,6 +715,7 @@
include/${PKGNAME}/octave/uint64NDArray.h
include/${PKGNAME}/octave/uint8NDArray.h
include/${PKGNAME}/octave/unwind-prot.h
+include/${PKGNAME}/octave/url-handle-manager.h
include/${PKGNAME}/octave/url-transfer.h
include/${PKGNAME}/octave/utils.h
include/${PKGNAME}/octave/variables.h
@@ -739,19 +745,17 @@
include/${PKGNAME}/octave/vx-rv-cs.h
include/${PKGNAME}/octave/vx-s-ccv.h
include/${PKGNAME}/octave/vx-s-crv.h
-include/${PKGNAME}/octave/workspace-element.h
include/${PKGNAME}/octave/xdiv.h
include/${PKGNAME}/octave/xnorm.h
include/${PKGNAME}/octave/xpow.h
include/${PKGNAME}/octave/zfstream.h
-info/liboctave.info
-info/octave.info
lib/octave/${PKGVERSION}/__delaunayn__.a
lib/octave/${PKGVERSION}/__eigs__.a
lib/octave/${PKGVERSION}/__fltk_uigetfile__.a
lib/octave/${PKGVERSION}/__glpk__.a
lib/octave/${PKGVERSION}/__init_fltk__.a
lib/octave/${PKGVERSION}/__init_gnuplot__.a
+lib/octave/${PKGVERSION}/__ode15__.a
lib/octave/${PKGVERSION}/__osmesa_print__.a
lib/octave/${PKGVERSION}/__voronoi__.a
lib/octave/${PKGVERSION}/amd.a
@@ -767,38 +771,34 @@
lib/octave/${PKGVERSION}/liboctave.la
lib/octave/${PKGVERSION}/liboctgui.la
lib/octave/${PKGVERSION}/liboctinterp.la
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/PKG_ADD
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__delaunayn__.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__eigs__.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__fltk_uigetfile__.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__glpk__.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__init_fltk__.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__init_gnuplot__.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__osmesa_print__.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/__voronoi__.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/amd.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/audiodevinfo.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/audioread.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/ccolamd.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/chol.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/colamd.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/convhulln.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/dmperm.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/fftw.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/gzip.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/qr.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/symbfact.oct
-lib/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/symrcm.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/PKG_ADD
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/__delaunayn__.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/__eigs__.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/__fltk_uigetfile__.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/__glpk__.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/__init_fltk__.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/__init_gnuplot__.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/__ode15__.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/__osmesa_print__.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/__voronoi__.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/amd.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/audiodevinfo.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/audioread.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/ccolamd.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/chol.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/colamd.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/convhulln.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/dmperm.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/fftw.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/gzip.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/qr.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/symbfact.oct
+lib/octave/${PKGVERSION}/oct/x86_64--netbsd/symrcm.oct
lib/octave/${PKGVERSION}/qr.a
lib/octave/${PKGVERSION}/symbfact.a
lib/octave/${PKGVERSION}/symrcm.a
-libexec/octave/${PKGVERSION}/exec/${MACHINE_GNU_PLATFORM}/octave-gui
-man/man1/mkoctfile.1
-man/man1/octave-cli.1
-man/man1/octave-config.1
-man/man1/octave.1
-share/appdata/www.octave.org-octave.appdata.xml
-share/applications/www.octave.org-octave.desktop
+libexec/octave/${PKGVERSION}/exec/x86_64--netbsd/octave-gui
+share/applications/org.octave.Octave.desktop
share/icons/hicolor/128x128/apps/octave.png
share/icons/hicolor/16x16/apps/octave.png
share/icons/hicolor/22x22/apps/octave.png
@@ -809,9 +809,12 @@
share/icons/hicolor/512x512/apps/octave.png
share/icons/hicolor/64x64/apps/octave.png
share/icons/hicolor/scalable/apps/octave.svg
+share/metainfo/org.octave.Octave.appdata.xml
share/octave/${PKGVERSION}/data/penny.mat
share/octave/${PKGVERSION}/doc/liboctave.pdf
share/octave/${PKGVERSION}/doc/octave.pdf
+share/octave/${PKGVERSION}/doc/octave_interpreter.qch
+share/octave/${PKGVERSION}/doc/octave_interpreter.qhc
share/octave/${PKGVERSION}/doc/refcard-a4.pdf
share/octave/${PKGVERSION}/doc/refcard-legal.pdf
share/octave/${PKGVERSION}/doc/refcard-letter.pdf
@@ -849,6 +852,8 @@
share/octave/${PKGVERSION}/etc/tests/fixed/bug-35448/fA.m
share/octave/${PKGVERSION}/etc/tests/fixed/bug-35448/fB.m
share/octave/${PKGVERSION}/etc/tests/fixed/bug-35448/fC.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-35881/bug-35881.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-35881/bug35881.m
share/octave/${PKGVERSION}/etc/tests/fixed/bug-36025/@testclass/one.m
share/octave/${PKGVERSION}/etc/tests/fixed/bug-36025/@testclass/testclass.m
share/octave/${PKGVERSION}/etc/tests/fixed/bug-36025/@testclass/two.m
@@ -863,15 +868,68 @@
share/octave/${PKGVERSION}/etc/tests/fixed/bug-38691/dir2/func1.m
share/octave/${PKGVERSION}/etc/tests/fixed/bug-38691/dir2/func2.m
share/octave/${PKGVERSION}/etc/tests/fixed/bug-38691/dir2/func3.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-41723/bug-41723.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-41723/class_bug41723.m
share/octave/${PKGVERSION}/etc/tests/fixed/bug-44940/bug-44940.tst
share/octave/${PKGVERSION}/etc/tests/fixed/bug-44940/class_bug44940.m
share/octave/${PKGVERSION}/etc/tests/fixed/bug-46330.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-46660/bug-46660.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-46660/class_bug46660.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-49904.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/bug-50014.tst
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_nested_function.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_nested_in_subfunction_ok.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_nested_parent_function.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_parent_nested2.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_parent_nested_function.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_primary_nested_function.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_primary_subfunction.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_primary_subfunction_old_syntax.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_subfunction.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_subfunction_old_syntax.m
+share/octave/${PKGVERSION}/etc/tests/fixed/bug-50014/duplicate_subfunction_separate_scope_ok.m
Home |
Main Index |
Thread Index |
Old Index