summary refs log tree commit diff
path: root/pkgs/development/octave-modules
Commit message (Collapse)AuthorAge
* octavePackages.nan: 3.5.2 -> 3.5.3 (#127757)Karl H2021-06-22
|
* octavePackages.matgeom: 1.2.2 -> 1.2.3 (#127756)Karl H2021-06-22
|
* octavePackages.windows: 1.5.0 -> 1.6.1 (#127755)Karl H2021-06-22
|
* octavePackages.struct: 1.0.16 -> 1.0.17 (#127754)Karl H2021-06-22
|
* octavePackages.splines: 1.3.3 -> 1.3.4 (#127753)Karl H2021-06-22
|
* octavePackages.optim: 1.6.0 -> 1.6.1 (#127751)Karl H2021-06-22
|
* octavePackages.parallel: 4.0.0 -> 4.0.1 (#127752)Karl H2021-06-22
|
* octavePackages.instrument-control: 0.6.0 -> 0.7.0 (#127750)Karl H2021-06-22
|
* octavePackages.fuzzy-logic-toolkit: 0.4.5 -> 0.4.6 (#127749)Karl H2021-06-22
|
* octavePackages.control: 3.2.0 -> 3.3.0 (#127748)Karl H2021-06-22
|
* octavePackages.communications: 1.2.2 -> 1.2.3 (#127747)Karl H2021-06-22
|
* octavePackages.arduino: 0.6.0 -> 0.7.0 (#127746)Karl H2021-06-22
|
* octavePackages.nurbs: 1.3.13 -> 1.4.3 (#127758)Karl H2021-06-22
|
* Change all alsaLib references to alsa-libAndersonTorres2021-06-10
|
* octave.pkgs.sparsersb: remove librsb null override, unbreak (#115838)Karl H2021-03-10
|
* octave.pkgs.zeromq: init at 1.5.2Karl Hallsby2021-02-24
|
* octave.pkgs.windows: init at 1.5.0Karl Hallsby2021-02-24
|
* octave.pkgs.vrml: init at 1.0.13Karl Hallsby2021-02-24
|
* octave.pkgs.video: init at 2.0.0Karl Hallsby2021-02-24
|
* octave.pkgs.vibes: init at 0.2.0Karl Hallsby2021-02-24
|
* octave.pkgs.tsa: init at 4.6.2Karl Hallsby2021-02-24
|
* octave.pkgs.tisean: init at 0.2.3Karl Hallsby2021-02-24
|
* octave.pkgs.strings: init at 1.2.0Karl Hallsby2021-02-24
|
* octave.pkgs.statistics: init at 1.4.2Karl Hallsby2021-02-24
|
* octave.pkgs.splines: init at 1.3.3Karl Hallsby2021-02-24
|
* octave.pkgs.sparsersb: init at 1.0.8Karl Hallsby2021-02-24
|
* octave.pkgs.stk: init at 2.6.1Karl Hallsby2021-02-24
|
* octave.pkgs.sockets: init at 1.2.1Karl Hallsby2021-02-24
|
* octave.pkgs.queueing: init at 1.2.7Karl Hallsby2021-02-24
|
* octave.pkgs.quaternion: init at 2.4.0Karl Hallsby2021-02-24
|
* octave.pkgs.struct: init at 1.0.16Karl Hallsby2021-02-24
|
* octave.pkgs.parallel: init at 4.0.0Karl Hallsby2021-02-24
|
* octave.pkgs.optiminterp: init at 0.3.6Karl Hallsby2021-02-24
|
* octave.pkgs.optim: init at 1.6.0Karl Hallsby2021-02-24
|
* octave.pkgs.optics: init at 0.1.4Karl Hallsby2021-02-24
|
* octave.pkgs.octproj: init at 2.0.1Karl Hallsby2021-02-24
|
* octave.pkgs.octclip: init at 2.0.1Karl Hallsby2021-02-24
|
* octave.pkgs.ocl: init at 1.1.1Karl Hallsby2021-02-24
|
* octave.pkgs.nurbs: init at 1.3.13Karl Hallsby2021-02-24
|
* octave.pkgs.netcdf: init at 1.0.14Karl Hallsby2021-02-24
|
* octave.pkgs.ncarray: init at 1.0.4Karl Hallsby2021-02-24
|
* octave.pkgs.nan: init at 3.5.2Karl Hallsby2021-02-24
|
* octave.pkgs.mvn: init at 1.1.0Karl Hallsby2021-02-24
|
* octave.pkgs.msh: init at 1.0.10Karl Hallsby2021-02-24
|
* octave.pkgs.miscellaneous: init at 1.3.0Karl Hallsby2021-02-24
|
* octave.pkgs.matgeom: init at 1.2.2Karl Hallsby2021-02-24
|
* octave.pkgs.mapping: init at 1.4.1Karl Hallsby2021-02-24
|
* octave.pkgs.ltfat: init at 2.3.1Karl Hallsby2021-02-24
|
* octave.pkgs.lssa: init at 0.1.4Karl Hallsby2021-02-24
|
* octave.pkgs.level-set: init at 2019-04-13Karl Hallsby2021-02-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1) Version 0.3.0 has numerous bugs due to not being updated for nearly 5 years. So, I had to use fetchgit instead, grabbing HEAD of master. 2) level-set uses a non-standard layout for its files (no MAKEFILE in the root of the package for octave to use), but instead has a build.sh script to run. This script *JUST* generates a tarball that can THEN be used for `pkg build`. `patchPhase` performs some substitutions on this to make it generate the tarball in a way we expect it to. This tarball ends up in the /build directory we have available to us. 2.5) This script NEEDS automake, autoconf, and autoconf-archive to be available. This is unnecessary for other packages because Octave has a well-defined Makefile scheme that developers are supposed to follow that allows Octave to handle the building of packages. But this package breaks the mold. 3) With the tarball we use to build being available, we need to then `cd` back to the previous location (as the script takes us from `/build` to `/tmp`. So we go back using `cd -`. 4) Lastly, we can now use the standard `buildPhase` defined for `buildOctavePackage` and complete the building of level-set. Hopefully, this will be fixed in a later release, so it is easier to maintain. 10/260 tests FAIL, where most of those 10 are due to improper usage of the parallel package. Overall, I believe this is a reasonable amount of passing tests to allow this to be marked as working.