-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Octave modules #108562
Merged
Merged
Octave modules #108562
Commits on Feb 24, 2021
-
Heavily based on Python's packages set.
Configuration menu - View commit details
-
Copy full SHA for 481e1d3 - Browse repository at this point
Copy the full SHA 481e1d3View commit details -
octave.pkgs.signal: init at 1.4.1
As of this commit, this matches the output that OpenSuSe's zypper produces when installing the octave-forge-signal package.
Configuration menu - View commit details
-
Copy full SHA for 572ecd5 - Browse repository at this point
Copy the full SHA 572ecd5View commit details -
Configuration menu - View commit details
-
Copy full SHA for c45d56a - Browse repository at this point
Copy the full SHA c45d56aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 77fdefa - Browse repository at this point
Copy the full SHA 77fdefaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6bb3161 - Browse repository at this point
Copy the full SHA 6bb3161View commit details -
Configuration menu - View commit details
-
Copy full SHA for 76bcbfc - Browse repository at this point
Copy the full SHA 76bcbfcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 88f20f3 - Browse repository at this point
Copy the full SHA 88f20f3View commit details -
octave.pkgs.audio: init at 2.0.2
http://www.music.mcgill.ca/~gary/rtmidi/index.html#compiling contains instructions for Mac OSX. The dependencies for Mac are: CoreMIDI, CoreAudio, CoreFoundation
Configuration menu - View commit details
-
Copy full SHA for 035879d - Browse repository at this point
Copy the full SHA 035879dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3cf6bd0 - Browse repository at this point
Copy the full SHA 3cf6bd0View commit details -
Configuration menu - View commit details
-
Copy full SHA for c4765ca - Browse repository at this point
Copy the full SHA c4765caView commit details -
Configuration menu - View commit details
-
Copy full SHA for cd3928a - Browse repository at this point
Copy the full SHA cd3928aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 27f86a1 - Browse repository at this point
Copy the full SHA 27f86a1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0abd242 - Browse repository at this point
Copy the full SHA 0abd242View commit details -
Configuration menu - View commit details
-
Copy full SHA for f429821 - Browse repository at this point
Copy the full SHA f429821View commit details -
Configuration menu - View commit details
-
Copy full SHA for abd0c22 - Browse repository at this point
Copy the full SHA abd0c22View commit details -
Configuration menu - View commit details
-
Copy full SHA for a236575 - Browse repository at this point
Copy the full SHA a236575View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0de6cfa - Browse repository at this point
Copy the full SHA 0de6cfaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7494446 - Browse repository at this point
Copy the full SHA 7494446View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e3c428 - Browse repository at this point
Copy the full SHA 4e3c428View commit details -
Configuration menu - View commit details
-
Copy full SHA for 726a17c - Browse repository at this point
Copy the full SHA 726a17cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4296286 - Browse repository at this point
Copy the full SHA 4296286View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6ad87c3 - Browse repository at this point
Copy the full SHA 6ad87c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for df13f16 - Browse repository at this point
Copy the full SHA df13f16View commit details -
Configuration menu - View commit details
-
Copy full SHA for ddabcd3 - Browse repository at this point
Copy the full SHA ddabcd3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 187ae71 - Browse repository at this point
Copy the full SHA 187ae71View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0b1f57b - Browse repository at this point
Copy the full SHA 0b1f57bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 099a55d - Browse repository at this point
Copy the full SHA 099a55dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 33cc927 - Browse repository at this point
Copy the full SHA 33cc927View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4777d91 - Browse repository at this point
Copy the full SHA 4777d91View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6cce7e8 - Browse repository at this point
Copy the full SHA 6cce7e8View commit details -
Configuration menu - View commit details
-
Copy full SHA for bb3295b - Browse repository at this point
Copy the full SHA bb3295bView commit details -
Configuration menu - View commit details
-
Copy full SHA for b9bdc30 - Browse repository at this point
Copy the full SHA b9bdc30View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8ec29ea - Browse repository at this point
Copy the full SHA 8ec29eaView commit details -
octave.pkgs.level-set: init at 2019-04-13
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.
Configuration menu - View commit details
-
Copy full SHA for 31c13c0 - Browse repository at this point
Copy the full SHA 31c13c0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0b7b03d - Browse repository at this point
Copy the full SHA 0b7b03dView commit details -
Configuration menu - View commit details
-
Copy full SHA for bc8d72e - Browse repository at this point
Copy the full SHA bc8d72eView commit details -
Configuration menu - View commit details
-
Copy full SHA for c45836b - Browse repository at this point
Copy the full SHA c45836bView commit details -
Configuration menu - View commit details
-
Copy full SHA for a6314f4 - Browse repository at this point
Copy the full SHA a6314f4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 29b9735 - Browse repository at this point
Copy the full SHA 29b9735View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7a4dc7a - Browse repository at this point
Copy the full SHA 7a4dc7aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c945d5 - Browse repository at this point
Copy the full SHA 3c945d5View commit details -
Configuration menu - View commit details
-
Copy full SHA for e59d49e - Browse repository at this point
Copy the full SHA e59d49eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7321def - Browse repository at this point
Copy the full SHA 7321defView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3af6867 - Browse repository at this point
Copy the full SHA 3af6867View commit details -
Configuration menu - View commit details
-
Copy full SHA for bfd5399 - Browse repository at this point
Copy the full SHA bfd5399View commit details -
Configuration menu - View commit details
-
Copy full SHA for 656fbc8 - Browse repository at this point
Copy the full SHA 656fbc8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8919d98 - Browse repository at this point
Copy the full SHA 8919d98View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7913c41 - Browse repository at this point
Copy the full SHA 7913c41View commit details -
Configuration menu - View commit details
-
Copy full SHA for 25b1e33 - Browse repository at this point
Copy the full SHA 25b1e33View commit details -
Configuration menu - View commit details
-
Copy full SHA for 686dc5c - Browse repository at this point
Copy the full SHA 686dc5cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3669503 - Browse repository at this point
Copy the full SHA 3669503View commit details -
Configuration menu - View commit details
-
Copy full SHA for 68f2862 - Browse repository at this point
Copy the full SHA 68f2862View commit details -
Configuration menu - View commit details
-
Copy full SHA for 00a723b - Browse repository at this point
Copy the full SHA 00a723bView commit details -
Configuration menu - View commit details
-
Copy full SHA for d8612d6 - Browse repository at this point
Copy the full SHA d8612d6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5c3b1a0 - Browse repository at this point
Copy the full SHA 5c3b1a0View commit details -
Configuration menu - View commit details
-
Copy full SHA for b1fb1a3 - Browse repository at this point
Copy the full SHA b1fb1a3View commit details -
Configuration menu - View commit details
-
Copy full SHA for c968c7a - Browse repository at this point
Copy the full SHA c968c7aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 75918e1 - Browse repository at this point
Copy the full SHA 75918e1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 545804e - Browse repository at this point
Copy the full SHA 545804eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 57c8919 - Browse repository at this point
Copy the full SHA 57c8919View commit details -
Configuration menu - View commit details
-
Copy full SHA for 49d3aac - Browse repository at this point
Copy the full SHA 49d3aacView commit details -
Configuration menu - View commit details
-
Copy full SHA for 609223e - Browse repository at this point
Copy the full SHA 609223eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 455befa - Browse repository at this point
Copy the full SHA 455befaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2c9224c - Browse repository at this point
Copy the full SHA 2c9224cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 97ac699 - Browse repository at this point
Copy the full SHA 97ac699View commit details -
Configuration menu - View commit details
-
Copy full SHA for 487f5ba - Browse repository at this point
Copy the full SHA 487f5baView commit details -
Configuration menu - View commit details
-
Copy full SHA for 04129d3 - Browse repository at this point
Copy the full SHA 04129d3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 64bacd1 - Browse repository at this point
Copy the full SHA 64bacd1View commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.