Package: octave / 3.6.2-5+deb7u1

Metadata

Package Version Patches format
octave 3.6.2-5+deb7u1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
drop_version_from_pkg_function_calls | (download)

scripts/pkg/pkg.m | 7 3 + 4 - 0 !
1 file changed, 3 insertions(+), 4 deletions(-)

 call the octave binaries by their name without version
enable_dirs_in_pkg | (download)

scripts/pkg/pkg.m | 41 24 + 17 - 0 !
1 file changed, 24 insertions(+), 17 deletions(-)

 allow installation of already extracted packages with pkg.m
drop_versioned_binarys | (download)

src/Makefile.am | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 don't install binarys with a version in them
 We don't need them.
install_libraries_publically | (download)

libcruft/Makefile.am | 5 3 + 2 - 0 !
liboctave/Makefile.am | 3 2 + 1 - 0 !
src/Makefile.am | 3 2 + 1 - 0 !
3 files changed, 7 insertions(+), 4 deletions(-)

 install the octave libraries publically in /usr/lib/
 Thanks to John Eaton for helping with this.
 .
 The patch is currently not needed upstream, but forwarding it might make sense
 in the future.
no_pdf_in_print.diff | (download)

scripts/plot/print.m | 3 3 + 0 - 0 !
1 file changed, 3 insertions(+)

---
add_info_dir_categories | (download)

doc/faq/OctaveFAQ.texi | 1 1 + 0 - 0 !
doc/interpreter/octave.texi | 1 1 + 0 - 0 !
doc/liboctave/liboctave.texi | 1 1 + 0 - 0 !
3 files changed, 3 insertions(+)

 add categories to the static info files generated by the texi files.
correct_typos | (download)

scripts/io/dlmwrite.m | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 fix typos, thanks lintian
use_system_gl2ps | (download)

configure.ac | 10 10 + 0 - 0 !
m4/ax_check_library.m4 | 95 95 + 0 - 0 !
src/Makefile.am | 3 0 + 3 - 0 !
src/gl2ps-renderer.cc | 2 1 + 1 - 0 !
src/gl2ps-renderer.h | 2 1 + 1 - 0 !
src/gl2ps.c | 6078 0 + 6078 - 0 !
src/gl2ps.h | 200 0 + 200 - 0 !
src/link-deps.mk | 6 4 + 2 - 0 !
src/xgl2ps.c | 2 1 + 1 - 0 !
9 files changed, 112 insertions(+), 6286 deletions(-)

 use libgl2ps-dev as packaged in debian
 The patch removes gl2ps.c and gl2ps.h from the original sources, just to be
 sure that we are really using the system library. 
 . 
 A better patch would use OCTAVE_CHECK_LIBRARY from m4/acinclude.m4, but this
 one will do for now.
drop_version_from_mkoctfile_function_call | (download)

scripts/miscellaneous/mkoctfile.m | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 call the mkoctfile binary by its name without version
mkoctfile mpi.diff | (download)

src/mkoctfile.in | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 include mpi headers when building oct/mex-files
rcond.patch | (download)

liboctave/CMatrix.cc | 11 9 + 2 - 0 !
liboctave/dMatrix.cc | 12 10 + 2 - 0 !
liboctave/fCMatrix.cc | 11 9 + 2 - 0 !
liboctave/fMatrix.cc | 12 10 + 2 - 0 !
src/DLD-FUNCTIONS/rcond.cc | 8 8 + 0 - 0 !
5 files changed, 46 insertions(+), 8 deletions(-)

 fix rcond function
 Use new copy of data for full factorization if positive definite cholesky
 factorization fails.