├── .gitignore ├── assets ├── 404.md ├── index.md ├── pkg.png ├── screenshot.png ├── octave-logo-512.png ├── pkg-forge-download.md ├── pkg-index ├── ci │ └── yamllint.yaml ├── style.scss └── get_stars.rb ├── Gemfile ├── _layouts ├── 404.html └── package_index.html ├── .github ├── dependabot.yml └── workflows │ └── website_build_deploy.yml ├── _config.yml ├── README.md ├── packages ├── secs2d.yaml ├── secs1d.yaml ├── secs3d.yaml ├── prompt.yaml ├── vibes.yaml ├── fda.yaml ├── gsl.yaml ├── bioinfo.yaml ├── outliers.yaml ├── rtree.yaml ├── pkg.yaml ├── sole.yaml ├── onsas.yaml ├── fl-core.yaml ├── websockets.yaml ├── chartjs.yaml ├── cgi.yaml ├── tisean.yaml ├── mvn.yaml ├── octave_tar.yaml ├── divand.yaml ├── ocs.yaml ├── fits.yaml ├── csg-dataset.yaml ├── dataframe.yaml ├── fpl.yaml ├── econometrics.yaml ├── level-set.yaml ├── octclip.yaml ├── timer.yaml ├── hdf5oct.yaml ├── mpi.yaml ├── fem-fenics.yaml ├── octave_toml11.yaml ├── optics.yaml ├── data-smoothing.yaml ├── octproj.yaml ├── hgsetget.yaml ├── pde1dm.yaml ├── dynamicprops.yaml ├── linear-algebra.yaml ├── mboct-octave-pkg.yaml ├── automatic-differentiation.yaml ├── tensorflow.yaml ├── geometry.yaml ├── octave_zstd.yaml ├── database.yaml ├── octave_php_wrapper.yaml ├── mboct-numerical-pkg.yaml ├── velas.yaml ├── bsltl.yaml ├── tsa.yaml ├── generate_html.yaml ├── miscellaneous.yaml ├── vrml.yaml ├── sqlp-sedumi.yaml ├── lssa.yaml ├── sparsersb.yaml ├── financial.yaml ├── llms.yaml ├── optiminterp.yaml ├── fileio.yaml ├── doctest.yaml ├── splines.yaml ├── general.yaml ├── quaternion.yaml ├── odbc.yaml ├── strings.yaml ├── interval.yaml ├── struct.yaml ├── pkg-example.yaml ├── octave_mermaid_js.yaml ├── matgeom.yaml ├── msh.yaml ├── raspi.yaml ├── parallel.yaml ├── bim.yaml ├── nurbs.yaml ├── queueing.yaml ├── mboct-mbdyn-pkg.yaml ├── ncarray.yaml ├── ga.yaml ├── ltfat.yaml ├── joystick.yaml ├── optim.yaml ├── piqp.yaml ├── mboct-fem-pkg.yaml ├── pythonic.yaml ├── mccabe-thiele.yaml ├── mapping.yaml ├── ponchon-savarit.yaml ├── ocl.yaml ├── sockets.yaml ├── image-acquisition.yaml ├── caosdb.yaml ├── mqtt.yaml ├── jupyter-notebook.yaml ├── stk.yaml ├── io.yaml ├── psychrometrics.yaml ├── sqlite.yaml ├── nan.yaml ├── coder.yaml ├── fuzzy-logic-toolkit.yaml ├── signal.yaml ├── image.yaml ├── octave-pool.yaml ├── zeromq.yaml └── netcdf.yaml └── feed.xml /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .vscode/ -------------------------------------------------------------------------------- /assets/404.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "404" 3 | permalink: "/404" 4 | --- 5 | -------------------------------------------------------------------------------- /assets/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package_index" 3 | permalink: "/index" 4 | --- 5 | -------------------------------------------------------------------------------- /assets/pkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnu-octave/packages/HEAD/assets/pkg.png -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnu-octave/packages/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /assets/octave-logo-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnu-octave/packages/HEAD/assets/octave-logo-512.png -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "github-pages", group: :jekyll_plugins 4 | 5 | gem "webrick", "~> 1.9" 6 | -------------------------------------------------------------------------------- /_layouts/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Redirect... 6 | 7 | 8 |

9 | Page not found. 10 | Please follow this link. 11 |

12 | 13 | 14 | -------------------------------------------------------------------------------- /assets/pkg-forge-download.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: null 3 | permalink: /packages/forge-download 4 | --- 5 |
 6 | {%- for pkg in site.pages -%}
 7 | {%- if pkg.layout == "package" -%}
 8 | {% assign pkg_name = pkg.name | remove: ".yaml" %}
 9 | {{ pkg_name }}-{{ pkg.versions[0].id }}.tar.gz,{{ pkg.versions[0].url }}
10 | {%- endif -%}
11 | {% endfor %}
12 | 
13 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # Set update schedule for GitHub Actions 2 | 3 | version: 2 4 | updates: 5 | 6 | - package-ecosystem: "github-actions" 7 | directory: "/" 8 | schedule: 9 | # Check for updates to GitHub Actions every week 10 | interval: "weekly" 11 | 12 | - package-ecosystem: 'bundler' 13 | directory: '/' 14 | schedule: 15 | # Check for updates to Ruby Gems every day 16 | interval: 'daily' 17 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | title: "GNU Octave - Packages" 2 | description: >- 3 | Extend GNU Octave's functionality by packages. Find many of them here. 4 | logo: "/assets/octave-logo-512.png" 5 | lang: en 6 | 7 | repository: gnu-octave/packages 8 | url: https://gnu-octave.github.io 9 | 10 | pkg_icon: "/assets/pkg.png" 11 | 12 | markdown_ext: "markdown,md,yaml" 13 | 14 | plugins: 15 | - jekyll-feed 16 | 17 | exclude: 18 | - CONTRIBUTING.md 19 | - Gemfile 20 | - Gemfile.lock 21 | - vendor/bundle/ 22 | - LICENSE 23 | - README.md 24 | - doc/ 25 | - assets/ci/ 26 | -------------------------------------------------------------------------------- /assets/pkg-index: -------------------------------------------------------------------------------- 1 | --- 2 | layout: null 3 | permalink: /packages.json 4 | --- 5 | {%- assign first_entry = true -%} 6 | { 7 | {%- for pkg in site.pages -%} 8 | {% if pkg.layout == "package" %} 9 | {%- assign pkg_name = pkg.permalink | remove: "/" | jsonify -%} 10 | {% if first_entry == false %},{% endif %}{{ pkg_name }}:{"name":{{ pkg_name }},"description":{{ pkg.description | jsonify }},"icon":{{ pkg.icon | jsonify }},"links":{{ pkg.links | jsonify }},"maintainers":{{ pkg.maintainers | jsonify }},"versions":{{ pkg.versions | jsonify }}} 11 | {%- assign first_entry = false -%} 12 | {% endif %} 13 | {%- endfor -%} 14 | } 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Octave Packages 2 | 3 | > 4 | 5 | Extend [GNU Octave](https://www.octave.org)'s functionality by 6 | [more than 100 packages](https://packages.octave.org). 7 | 8 | [![img](assets/screenshot.png)](https://packages.octave.org) 9 | 10 | - **Easily share your code** (Octave, C/C++, or FORTRAN) as package. 11 | 12 | > [**Learn how add your package or toolbox here**](CONTRIBUTING.md) 13 | > 14 | > [**Learn how to build an Octave package**](https://packages.octave.org/pkg-example) 15 | 16 | - Want to use this index for your **own package manager**? 17 | 18 | > [**Learn more**](doc/development.md) 19 | 20 | - [**Octave Packages**](https://packages.octave.org) is a 21 | **superset of** [**Octave Forge**](https://octave.sourceforge.io/). 22 | All packages in their latest release are indexed here. 23 | -------------------------------------------------------------------------------- /packages/secs2d.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "secs2d/" 4 | description: >- 5 | A Drift-Diffusion simulator for 2d semiconductor devices. 6 | icon: 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-2.0-or-later" 10 | url: 11 | - icon: "fas fa-th-list" 12 | label: "function reference" 13 | url: "https://octave.sourceforge.io/secs2d/overview.html" 14 | - icon: "fas fa-bug" 15 | label: "report a problem" 16 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(secs2d)" 17 | maintainers: 18 | - name: "Carlo de Falco" 19 | contact: 20 | versions: 21 | - id: "0.0.8" 22 | date: "2009-05-06" 23 | sha256: 24 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/secs2d-0.0.8.tar.gz" 25 | depends: 26 | - "octave (>= 2.9.17)" 27 | - "pkg" 28 | --- 29 | -------------------------------------------------------------------------------- /packages/secs1d.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "secs1d/" 4 | description: >- 5 | A Drift-Diffusion simulator for 1d semiconductor devices. 6 | icon: 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-2.0-or-later" 10 | url: 11 | - icon: "fas fa-th-list" 12 | label: "function reference" 13 | url: "https://octave.sourceforge.io/secs1d/overview.html" 14 | - icon: "fas fa-bug" 15 | label: "report a problem" 16 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(secs1d)" 17 | maintainers: 18 | - name: "Carlo de Falco" 19 | contact: 20 | versions: 21 | - id: "0.0.9" 22 | date: "2012-03-30" 23 | sha256: 24 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/secs1d-0.0.9.tar.gz" 25 | depends: 26 | - "octave (>= 3.0.0)" 27 | - "bim" 28 | - "pkg" 29 | --- 30 | -------------------------------------------------------------------------------- /packages/secs3d.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "secs3d/" 4 | description: >- 5 | A Drift-Diffusion simulator for 3d semiconductor devices. 6 | icon: 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-2.0-or-later" 10 | url: 11 | - icon: "fas fa-th-list" 12 | label: "function reference" 13 | url: "https://octave.sourceforge.io/secs3d/overview.html" 14 | - icon: "fas fa-bug" 15 | label: "report a problem" 16 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(secs3d)" 17 | maintainers: 18 | - name: "Carlo de Falco" 19 | contact: 20 | versions: 21 | - id: "0.0.1" 22 | date: "2011-09-08" 23 | sha256: 24 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/secs3d-0.0.1.tar.gz" 25 | depends: 26 | - "octave (>= 3.2.4)" 27 | - "bim" 28 | - "fpl" 29 | - "pkg" 30 | --- 31 | -------------------------------------------------------------------------------- /packages/prompt.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "prompt/" 4 | description: >- 5 | A powerlevel10k-like prompt for octave. 6 | icon: 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://github.com/gnu-octave/prompt/blob/main/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://github.com/gnu-octave/prompt/releases" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://github.com/gnu-octave/prompt" 17 | - icon: "fas fa-book" 18 | label: "package documentation" 19 | url: "https://github.com/gnu-octave/prompt/blob/main/README.md" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://github.com/gnu-octave/prompt/issues" 23 | maintainers: 24 | - name: "Wu Zhenyu" 25 | contact: "wuzhenyu@ustc.edu" 26 | versions: 27 | - id: "0.0.1" 28 | date: "2023-08-28" 29 | sha256: "c8b3b471d177ebb5e078e69518ca832f55e5c0b5661f798d31e985f40a81966a" 30 | url: "https://github.com/gnu-octave/prompt/archive/0.0.1.tar.gz" 31 | depends: 32 | - "pkg" 33 | --- 34 | -------------------------------------------------------------------------------- /packages/vibes.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "vibes/" 4 | description: >- 5 | Interface to VIBes, Visualizer for Intervals and Boxes. 6 | icon: "https://octave.sourceforge.io/pkg_icon/vibes.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later and MIT" 10 | url: 11 | - icon: "fas fa-code-branch" 12 | label: "repository" 13 | url: "https://sourceforge.net/p/octave/vibes/ci/octave-api/tree/" 14 | - icon: "fas fa-book" 15 | label: "package documentation" 16 | url: "https://sourceforge.net/p/octave/vibes/ci/octave-api/tree/README.md" 17 | - icon: "fas fa-bug" 18 | label: "report a problem" 19 | url: "https://github.com/ENSTABretagneRobotics/VIBES/issues" 20 | maintainers: 21 | - name: "Oliver Heimlich" 22 | contact: "oheim@posteo.de" 23 | - name: "ENSTA Bretagne Robotics" 24 | contact: 25 | versions: 26 | - id: "0.2.0" 27 | date: "2016-06-22" 28 | sha256: 29 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/vibes-0.2.0.tar.gz" 30 | depends: 31 | - "octave (>= 4.0.0)" 32 | - "pkg" 33 | --- 34 | -------------------------------------------------------------------------------- /packages/fda.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "fda/" 4 | description: >- 5 | Functional Data Analysis. 6 | icon: 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://gitlab.com/kakila/fda/-/blob/master/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://gitlab.com/kakila/fda/-/blob/master/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://gitlab.com/kakila/fda" 17 | - icon: "fas fa-bug" 18 | label: "report a problem" 19 | url: "https://gitlab.com/kakila/fda/-/issues" 20 | maintainers: 21 | - name: "Juan Pablo Carbajal" 22 | contact: "ajuanpi+dev@gmail.com" 23 | versions: 24 | - id: "1.0.0" 25 | date: "2018-02-23" 26 | sha256: "bc06c351b4cd1426288e0ce00f80009261fab843cb859a5c4f3f2f0507003e60" 27 | url: "https://gitlab.com/kakila/fda/-/archive/v1.0.0/fda-v1.0.0.tar.gz" 28 | depends: 29 | - "octave (>= 4.2.0)" 30 | - "pkg" 31 | - id: "dev" 32 | date: 33 | sha256: 34 | url: "https://gitlab.com/kakila/fda/-/archive/master/fda-master.tar.gz" 35 | depends: 36 | - "octave (>= 4.2.0)" 37 | - "pkg" 38 | --- 39 | -------------------------------------------------------------------------------- /packages/gsl.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "gsl/" 4 | description: >- 5 | Octave bindings to the GNU Scientific Library. 6 | icon: 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-2.0-or-later" 10 | url: "https://sourceforge.net/p/octave/gsl/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/gsl/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/gsl/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/gsl/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(gsl)" 23 | maintainers: 24 | - name: "Teemu Ikonen" 25 | contact: "https://octave.discourse.group/" 26 | versions: 27 | - id: "2.1.1" 28 | date: "2018-06-18" 29 | sha256: 30 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/gsl-2.1.1.tar.gz" 31 | depends: 32 | - "octave (>= 2.9.7)" 33 | - "pkg" 34 | --- 35 | -------------------------------------------------------------------------------- /packages/bioinfo.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "bioinfo/" 4 | description: >- 5 | Bioinformatics tools. 6 | icon: 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://github.com/schloegl/octmat-bioinfo/blob/master/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://github.com/schloegl/octmat-bioinfo/blob/master/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://github.com/schloegl/octmat-bioinfo" 17 | - icon: "fas fa-bug" 18 | label: "report a problem" 19 | url: "https://github.com/schloegl/octmat-bioinfo/issues" 20 | maintainers: 21 | - name: "Bill Denney" 22 | contact: "bill@denney.ws" 23 | - name: "Alois Schloegl" 24 | contact: "alois.schloegl@gmail.com" 25 | versions: 26 | - id: "0.2.2" 27 | date: "2021-07-28" 28 | sha256: 29 | url: "https://github.com/schloegl/octmat-bioinfo/archive/refs/heads/master.tar.gz" 30 | depends: 31 | - "octave (>= 3.0.0)" 32 | - "pkg" 33 | - id: "dev" 34 | date: 35 | sha256: 36 | url: "https://github.com/schloegl/octmat-bioinfo/archive/refs/heads/master.tar.gz" 37 | depends: 38 | - "octave (>= 3.0.0)" 39 | - "pkg" 40 | --- 41 | -------------------------------------------------------------------------------- /packages/outliers.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "outliers/" 4 | description: >- 5 | Grubbs, Dixon and Cochran tests for outlier detection 6 | and p-value approximating routines. 7 | icon: 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-2.0-or-later" 11 | url: "https://sourceforge.net/p/octave/outliers/ci/default/tree/COPYING" 12 | - icon: "fas fa-code-branch" 13 | label: "repository" 14 | url: "https://sourceforge.net/p/octave/outliers/ci/default/tree/" 15 | - icon: "fas fa-th-list" 16 | label: "function reference" 17 | url: "https://octave.sourceforge.io/outliers/overview.html" 18 | - icon: "fas fa-bug" 19 | label: "report a problem" 20 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(outliers)" 21 | maintainers: 22 | - name: "Lukasz Komsta" 23 | contact: "luke@ulterior.pl" 24 | versions: 25 | - id: "0.13.9" 26 | date: "2009-05-06" 27 | sha256: "9fd0d4455f5a1c7814e4a61af28a339576521e30da78f03d017a7b15db98a529" 28 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/outliers-0.13.9.tar.gz" 29 | depends: 30 | - "octave (>= 2.9.9)" 31 | - "pkg" 32 | --- 33 | -------------------------------------------------------------------------------- /packages/rtree.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "rtree/" 4 | description: >- 5 | An Octave native extension implementing the R-tree spatial index of 6 | Guttman-Green. The code is an embedded version of librtree. 7 | icon: "https://gitlab.com/jjg/librtree-octave/-/raw/master/src/pkg/src/rtree.png" 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "MIT" 11 | url: "https://gitlab.com/jjg/librtree-octave/-/blob/master/COPYING" 12 | - icon: "fas fa-code-branch" 13 | label: "repository" 14 | url: "https://gitlab.com/jjg/librtree-octave" 15 | - icon: "fas fa-book" 16 | label: "package documentation" 17 | url: "https://jjg.gitlab.io/librtree-octave/" 18 | - icon: "fas fa-bug" 19 | label: "report a problem" 20 | url: "https://gitlab.com/jjg/librtree-octave/-/issues" 21 | maintainers: 22 | - name: "J.J. Green" 23 | contact: "j.j.green@gmx.co.uk" 24 | versions: 25 | - id: "0.8.2" 26 | date: "2024-04-07" 27 | sha256: "40e1e335bbb50fa2aa2d492ea5b30e6d777dbbbf26c9389c68eec07ec9f4b368" 28 | url: "https://gitlab.com/jjg/librtree-octave/-/package_files/121124775/download" 29 | depends: 30 | - "octave (>= 6.0.0)" 31 | - "pkg" 32 | ubuntu2204: 33 | - "libjansson-dev" 34 | --- 35 | -------------------------------------------------------------------------------- /packages/pkg.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "pkg/" 4 | description: >- 5 | The GNU Octave package management tool `pkg` is already installed with 6 | GNU Octave itself. This package is a proof of conecpt and NOT REQUIRED 7 | to work with Octave packages. 8 | icon: "https://raw.githubusercontent.com/gnu-octave/pkg/main/doc/icon.png" 9 | links: 10 | - icon: "far fa-copyright" 11 | label: "GPL-3.0-or-later" 12 | url: "https://github.com/gnu-octave/pkg/blob/main/COPYING" 13 | - icon: "fas fa-rss" 14 | label: "news" 15 | url: "https://github.com/gnu-octave/pkg/releases/" 16 | - icon: "fas fa-code-branch" 17 | label: "repository" 18 | url: "https://github.com/gnu-octave/pkg/" 19 | - icon: "fas fa-book" 20 | label: "package documentation" 21 | url: "https://github.com/gnu-octave/pkg/blob/main/README.md" 22 | - icon: "fas fa-bug" 23 | label: "report a problem" 24 | url: "https://github.com/gnu-octave/pkg/issues" 25 | maintainers: 26 | - name: "Kai T. Ohlhus" 27 | contact: "k.ohlhus@gmail.com" 28 | versions: 29 | - id: "dev" 30 | date: 31 | sha256: 32 | url: "https://github.com/gnu-octave/pkg/archive/main.zip" 33 | depends: 34 | - "octave (>= 4.0.0)" 35 | - "pkg" 36 | --- 37 | -------------------------------------------------------------------------------- /packages/sole.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "sole/" 4 | description: >- 5 | A package for transient and steady state simulation of organic solar cells. 6 | icon: "https://sourceforge.net/p/sole/screenshot/sole_icn.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-2.0-or-later" 10 | url: "https://sourceforge.net/p/sole/git/ci/master/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/sole/git/ci/master/tree/README" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/sole/git/ci/master/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://sole.sourceforge.net/functions/sole/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://sourceforge.net/p/sole/tickets/" 23 | maintainers: 24 | - name: "Carlo de Falco" 25 | contact: 26 | versions: 27 | - id: "0.1.1" 28 | date: "2022-11-11" 29 | sha256: "e4b52464e46e0f15a9589fc58047e02452fb7e67690d7df86abde4510efeb2c7" 30 | url: "https://sourceforge.net/projects/sole/files/latest/download" 31 | depends: 32 | - "octave (>= 7.3.0)" 33 | - "bim (>= 1.0.0)" 34 | - "pkg" 35 | --- 36 | -------------------------------------------------------------------------------- /packages/onsas.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "onsas/" 4 | description: >- 5 | ONSAS is an Open Nonlinear Structural Analysis Solver. It is a GNU-Octave 6 | code for static/dynamic and linear/non-linear analysis of structures 7 | formed by solid, beam, truss or plane components. 8 | icon: "https://raw.githubusercontent.com/ONSAS/ONSAS.m/master/docs/src/assets/logo.png" 9 | links: 10 | - icon: "far fa-copyright" 11 | label: "GPL-3.0-or-later" 12 | url: "https://github.com/gnu-octave/pkg-example/blob/main/COPYING" 13 | - icon: "fas fa-code-branch" 14 | label: "repository" 15 | url: "https://github.com/ONSAS/ONSAS.m/" 16 | - icon: "fas fa-book" 17 | label: "package documentation" 18 | url: "https://onsas.github.io/ONSAS.m/dev/" 19 | - icon: "fas fa-bug" 20 | label: "report a problem" 21 | url: "https://github.com/ONSAS/ONSAS.m/issues" 22 | maintainers: 23 | - name: "Jorge Pérez Zerpa" 24 | contact: "jorgepz@fing.edu.uy" 25 | versions: 26 | - id: "0.2.5" 27 | date: "2022-02-26" 28 | sha256: "8759eb3c2a591bdd381c35966d725148db57436cc761abb07a06cf3052257106" 29 | url: "https://github.com/ONSAS/ONSAS.m/archive/refs/tags/v0.2.5.tar.gz" 30 | depends: 31 | - "octave (>= 4.0.0)" 32 | - "pkg" 33 | --- 34 | -------------------------------------------------------------------------------- /packages/fl-core.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "fl-core/" 4 | description: >- 5 | Basic functions in Fuzzy Logic. 6 | icon: 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "LGPL-3.0-only" 10 | url: "https://sourceforge.net/p/octave/fl-core/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/fl-core/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/fl-core/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/fl-core/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(fl-core)" 23 | maintainers: 24 | - name: "Nir Krakauer" 25 | contact: "mail@nirkrakauer.net" 26 | versions: 27 | - id: "1.0.2" 28 | date: "2025-05-02" 29 | sha256: "39e8b73ff29d1e8d11c5bafc436c01821c70e0a6ffb1f8906176c8e097751e59" 30 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/fl-core-1.0.2.tar.gz" 31 | depends: 32 | - "octave (>= 4.4.0)" 33 | - "pkg" 34 | --- 35 | -------------------------------------------------------------------------------- /packages/websockets.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "websockets/" 4 | description: >- 5 | Simple implementation of the Websockets protocol for GNU Octave. 6 | icon: 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://github.com/gnu-octave/octave-websockets/blob/master/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://github.com/gnu-octave/octave-websockets/releases/" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://github.com/gnu-octave/octave-websockets/" 17 | - icon: "fas fa-book" 18 | label: "package documentation" 19 | url: "https://github.com/gnu-octave/octave-websockets/blob/master/readme.md" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://github.com/gnu-octave/octave-websockets/issues" 23 | maintainers: 24 | - name: "Marco Miretti" 25 | contact: "marco.miretti@gmail.com" 26 | versions: 27 | - id: "0.1.0" 28 | date: "2020-09-22" 29 | sha256: "926ef8d711935ecae1384f5476e10104c1d83c2526ae7782588da804aa42df94" 30 | url: "https://github.com/gnu-octave/octave-websockets/archive/v0.1.0.tar.gz" 31 | depends: 32 | - "octave (>= 3.2.0)" 33 | - "sockets (>= 1.2.0)" 34 | - "pkg" 35 | --- 36 | -------------------------------------------------------------------------------- /packages/chartjs.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "chartjs/" 4 | description: >- 5 | A ChartJS interface for GNU Octave. 6 | icon: "https://raw.githubusercontent.com/pr0m1th3as/octave-chartjs/main/doc/octave-chartjs.svg" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://github.com/pr0m1th3as/octave-chartjs/blob/master/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://github.com/pr0m1th3as/octave-chartjs/releases" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://github.com/pr0m1th3as/octave-chartjs/" 17 | - icon: "fas fa-book" 18 | label: "package documentation" 19 | url: "https://pr0m1th3as.github.io/octave-chartjs/" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://github.com/pr0m1th3as/octave-chartjs/issues" 23 | maintainers: 24 | - name: "Andreas Bertsatos" 25 | contact: "abertsatos@biol.uoa.gr" 26 | versions: 27 | - id: "0.1.0" 28 | date: "2025-02-17" 29 | sha256: "36959aa6c75d953b490254468c4df5bbeb3d8482622c0a3cced8949339bb06b5" 30 | url: "https://github.com/pr0m1th3as/octave-chartjs/releases/download/release-0.1.0/octave-chartjs-0.1.0.tar.gz" 31 | depends: 32 | - "octave (>= 8.1.0)" 33 | - "pkg" 34 | --- 35 | -------------------------------------------------------------------------------- /packages/cgi.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "cgi/" 4 | description: >- 5 | Common Gateway Interface for Octave. 6 | icon: "https://octave.sourceforge.io/pkg_icon/cgi.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-2.0-or-later" 10 | url: "https://sourceforge.net/p/octave/cgi/ci/master/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/cgi/ci/master/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/cgi/ci/master/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/cgi/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(cgi)" 23 | maintainers: 24 | - name: "Alexander Barth" 25 | contact: "barth.alexander@gmail.com" 26 | versions: 27 | - id: "0.1.2" 28 | date: "2016-09-07" 29 | sha256: "4187eb2abec69c5735527fe3d6a25b2010fccede199fe556e242677ed991cf43" 30 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/cgi-0.1.2.tar.gz" 31 | depends: 32 | - "octave (>= 3.8.0)" 33 | - "pkg" 34 | --- 35 | -------------------------------------------------------------------------------- /packages/tisean.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "tisean/" 4 | description: >- 5 | Nonlinear Time Series Analysis. Port of TISEAN 3.0.1. 6 | icon: "https://octave.sourceforge.io/pkg_icon/tisean.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://sourceforge.net/p/octave/tisean/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/tisean/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/tisean/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/tisean/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(tisean)" 23 | maintainers: 24 | - name: "Piotr Held" 25 | contact: "pjheld@gmail.com" 26 | versions: 27 | - id: "0.2.3" 28 | date: "2015-08-14" 29 | sha256: 30 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/tisean-0.2.3.tar.gz" 31 | depends: 32 | - "octave (>= 4.0.0)" 33 | - "signal (>= 1.3.0)" 34 | - "pkg" 35 | --- 36 | -------------------------------------------------------------------------------- /packages/mvn.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "mvn/" 4 | description: >- 5 | Multivariate normal distribution clustering and utility functions. 6 | icon: "https://octave.sourceforge.io/pkg_icon/mvn.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://sourceforge.net/p/octave/mvn/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/mvn/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/mvn/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/mvn/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(mvn)" 23 | maintainers: 24 | - name: "Dominik Schnitzer" 25 | contact: 26 | - name: "Nir Krakauer" 27 | contact: "nkrakauer@ccny.cuny.edu" 28 | versions: 29 | - id: "1.1.0" 30 | date: "2013-12-30" 31 | sha256: 32 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/mvn-1.1.0.tar.gz" 33 | depends: 34 | - "octave (>= 3.6.0)" 35 | - "pkg" 36 | --- 37 | -------------------------------------------------------------------------------- /packages/octave_tar.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "octave_tar/" 4 | description: >- 5 | The octave_tar package provides functions for pack and unpack about tar 6 | format. 7 | icon: "https://avatars.githubusercontent.com/u/184102101?v=4" 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-3.0-or-later" 11 | url: "https://github.com/CNOCTAVE/octave_tar/blob/main/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://github.com/CNOCTAVE/octave_tar/blob/main/NEWS" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://github.com/CNOCTAVE/octave_tar" 18 | - icon: "fas fa-th-list" 19 | label: "function reference" 20 | url: "https://cnoctave.github.io/octave_tar/index.html" 21 | - icon: "fas fa-bug" 22 | label: "report a problem" 23 | url: "https://github.com/CNOCTAVE/octave_tar/issues" 24 | maintainers: 25 | - name: "CNOCTAVE" 26 | contact: "cnoctave@qq.com" 27 | - name: "Yu Hongbo" 28 | contact: "yuhongbo@member.fsf.org" 29 | versions: 30 | - id: "1.0.1" 31 | date: "2024-11-13" 32 | sha256: "d1afe8759b8f1f925dc4c193fad6152c05d58082263a1cfbd549bebb88cd95f1" 33 | url: "https://github.com/CNOCTAVE/octave_tar/releases/download/1.0.1/octave_tar.tar.gz" 34 | depends: 35 | - "octave (>= 8.0.0)" 36 | - "pkg" 37 | --- 38 | -------------------------------------------------------------------------------- /packages/divand.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "divand/" 4 | description: >- 5 | Performs an n-dimensional variational analysis (interpolation) of arbitrarily 6 | located observations. 7 | icon: "https://octave.sourceforge.io/pkg_icon/divand.png" 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-2.0-or-later" 11 | url: "https://sourceforge.net/p/octave/divand/ci/master/tree/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://sourceforge.net/p/octave/divand/ci/master/tree/NEWS" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://sourceforge.net/p/octave/divand/ci/master/tree/" 18 | - icon: "fas fa-th-list" 19 | label: "function reference" 20 | url: "https://octave.sourceforge.io/divand/overview.html" 21 | - icon: "fas fa-bug" 22 | label: "report a problem" 23 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(divand)" 24 | maintainers: 25 | - name: "Alexander Barth" 26 | contact: "barth.alexander@gmail.com" 27 | versions: 28 | - id: "1.1.2" 29 | date: "2014-06-18" 30 | sha256: 31 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/divand-1.1.2.tar.gz" 32 | depends: 33 | - "octave (>= 3.4.0)" 34 | - "pkg" 35 | --- 36 | -------------------------------------------------------------------------------- /packages/ocs.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "ocs/" 4 | description: >- 5 | Solving DC and transient electrical circuit equations. 6 | icon: "https://octave.sourceforge.io/pkg_icon/ocs.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-2.0-or-later" 10 | url: "https://sourceforge.net/p/octave/ocs/ci/master/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/ocs/ci/master/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/ocs/ci/master/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/ocs/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(ocs)" 23 | maintainers: 24 | - name: "Carlo de Falco" 25 | contact: 26 | - name: "Culpo Massimiliano" 27 | contact: 28 | - name: "Marco Merlin" 29 | contact: 30 | versions: 31 | - id: "0.1.5" 32 | date: "2015-08-07" 33 | sha256: 34 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/ocs-0.1.5.tar.gz" 35 | depends: 36 | - "octave (>= 3.0.0)" 37 | - "odepkg" 38 | - "pkg" 39 | --- 40 | -------------------------------------------------------------------------------- /_layouts/package_index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | {%- for pkg in site.pages -%} 18 | {%- if pkg.layout == "package" -%} 19 | {%- assign pkg_name = pkg.permalink | remove: "/" -%} 20 | 21 | 22 | 23 | 24 | 35 | 36 | 37 | 38 | {%- endif -%} 39 | {%- endfor -%} 40 | 41 |
IconNameDescriptionStars⭐Latest versionLatest update
icon
{{ pkg_name }}
{{ pkg.description | strip_html | strip | escape }}
25 | {%- if pkg.stars >= 0 -%} 26 | {{ pkg.stars }} 33 | {%- endif -%} 34 | {{ pkg.versions[0].id }}{{ pkg.versions[0].date }}
42 | -------------------------------------------------------------------------------- /packages/fits.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "fits/" 4 | description: >- 5 | The Octave-FITS package provides functions for reading, and writing FITS 6 | (Flexible Image Transport System) files. This package uses the libcfitsio 7 | library. 8 | icon: "https://octave.sourceforge.io/pkg_icon/fits.png" 9 | links: 10 | - icon: "far fa-copyright" 11 | label: "GPL-3.0-or-later" 12 | url: "https://sourceforge.net/p/octave/fits/ci/default/tree/COPYING" 13 | - icon: "fas fa-rss" 14 | label: "news" 15 | url: "https://sourceforge.net/p/octave/fits/ci/default/tree/NEWS" 16 | - icon: "fas fa-code-branch" 17 | label: "repository" 18 | url: "https://sourceforge.net/p/octave/fits/ci/default/tree/" 19 | - icon: "fas fa-th-list" 20 | label: "function reference" 21 | url: "https://octave.sourceforge.io/fits/overview.html" 22 | - icon: "fas fa-bug" 23 | label: "report a problem" 24 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(fits)" 25 | maintainers: 26 | - name: "Dirk Schmidt" 27 | contact: 28 | versions: 29 | - id: "1.0.7" 30 | date: "2015-06-10" 31 | sha256: 32 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/fits-1.0.7.tar.gz" 33 | depends: 34 | - "octave (>= 3.0.0)" 35 | - "pkg" 36 | --- 37 | -------------------------------------------------------------------------------- /packages/csg-dataset.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "csg-dataset/" 4 | description: >- 5 | A large dataset of diaphyseal cross sectional geometric properties 6 | and relevant measurements from human long bones. 7 | icon: "https://raw.githubusercontent.com/pr0m1th3as/csg-dataset/main/doc/csg-dataset.png" 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-3.0-or-later" 11 | url: "https://github.com/pr0m1th3as/csg-dataset/blob/main/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://github.com/pr0m1th3as/csg-dataset/releases" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://github.com/pr0m1th3as/csg-dataset" 18 | - icon: "fas fa-book" 19 | label: "package documentation" 20 | url: "https://github.com/pr0m1th3as/csg-dataset/blob/main/README.md" 21 | - icon: "fas fa-bug" 22 | label: "report a problem" 23 | url: "https://github.com/pr0m1th3as/csg-dataset/issues" 24 | maintainers: 25 | - name: "Andreas Bertsatos" 26 | contact: "abertsatos@biol.uoa.gr" 27 | versions: 28 | - id: "1.0.0" 29 | date: "2025-05-19" 30 | sha256: "8db43d39c6c7680762ede9219e2a0f50a48890c16b5c0bd387a37711f0de6135" 31 | url: "https://github.com/pr0m1th3as/csg-dataset/releases/download/v1.0.0/csg-dataset-1.0.0.tar.gz" 32 | depends: 33 | - "octave (>= 6.1.0)" 34 | - "pkg" 35 | --- 36 | -------------------------------------------------------------------------------- /packages/dataframe.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "dataframe/" 4 | description: >- 5 | Data manipulation toolbox similar to R data.frame. 6 | icon: "https://octave.sourceforge.io/pkg_icon/dataframe.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://sourceforge.net/p/octave/dataframe/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/dataframe/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/dataframe/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/dataframe/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(dataframe)" 23 | maintainers: 24 | - name: "Pascal Dupuis" 25 | contact: "pascal.dupuis@uclouvain.be" 26 | versions: 27 | - id: "1.2.0" 28 | date: "2017-08-14" 29 | sha256: "5d36b296b3854f3d7ccb8c59037ca9952c24ef3f1ba7dd776967cd4710505981" 30 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/dataframe-1.2.0.tar.gz" 31 | depends: 32 | - "octave (>= 3.4.0)" 33 | - "pkg" 34 | --- 35 | -------------------------------------------------------------------------------- /packages/fpl.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "fpl/" 4 | description: >- 5 | Collection of routines to export data produced by Finite Elements or Finite 6 | Volume Simulations in formats used by some visualization programs. 7 | icon: "https://octave.sourceforge.io/pkg_icon/fpl.png" 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-3.0-or-later" 11 | url: "https://github.com/carlodefalco/fpl/blob/master/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://github.com/carlodefalco/fpl/blob/master/NEWS" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://github.com/carlodefalco/fpl" 18 | - icon: "fas fa-th-list" 19 | label: "function reference" 20 | url: "https://octave.sourceforge.io/fpl/overview.html" 21 | - icon: "fas fa-bug" 22 | label: "report a problem" 23 | url: "https://github.com/carlodefalco/fpl/issues" 24 | maintainers: 25 | - name: "Carlo de Falco" 26 | contact: 27 | - name: "Massimiliano Culpo" 28 | contact: 29 | versions: 30 | - id: "1.3.5" 31 | date: "2015-08-17" 32 | sha256: "da13b8044e0ffb91f488427c4d3f3fdefb8d208753f572ef4d3b53972c547731" 33 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/fpl-1.3.5.tar.gz" 34 | depends: 35 | - "octave (>= 3.2.3)" 36 | - "pkg" 37 | --- 38 | -------------------------------------------------------------------------------- /packages/econometrics.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "econometrics/" 4 | description: >- 5 | Econometrics. 6 | icon: "https://octave.sourceforge.io/pkg_icon/econometrics.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://sourceforge.net/p/octave/econometrics/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/econometrics/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/econometrics/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/econometrics/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(econometrics)" 23 | maintainers: 24 | - name: "Michael Creel" 25 | contact: "michael.creel@uab.es" 26 | - name: "Nir Krakauer" 27 | contact: "mail@nirkrakauer.net" 28 | versions: 29 | - id: "1.1.2" 30 | date: "2019-10-15" 31 | sha256: 32 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/econometrics-1.1.2.tar.gz" 33 | depends: 34 | - "octave (>= 4.4.0)" 35 | - "optim" 36 | - "pkg" 37 | --- 38 | -------------------------------------------------------------------------------- /packages/level-set.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "level-set/" 4 | description: >- 5 | Routines for calculating the time-evolution of the level-set equation and 6 | extracting geometric information from the level-set function. 7 | icon: "https://octave.sourceforge.io/pkg_icon/level-set.png" 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-3.0-or-later" 11 | url: "https://sourceforge.net/p/octave/level-set/ci/master/tree/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://sourceforge.net/p/octave/level-set/ci/master/tree/NEWS" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://sourceforge.net/p/octave/level-set/ci/master/tree/" 18 | - icon: "fas fa-th-list" 19 | label: "function reference" 20 | url: "https://octave.sourceforge.io/level-set/overview.html" 21 | - icon: "fas fa-bug" 22 | label: "report a problem" 23 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(level-set)" 24 | maintainers: 25 | - name: "Daniel Kraft" 26 | contact: "d@domob.eu" 27 | versions: 28 | - id: "0.3.0" 29 | date: "2015-12-17" 30 | sha256: 31 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/level-set-0.3.0.tar.gz" 32 | depends: 33 | - "octave (>= 3.6.0)" 34 | - "pkg" 35 | --- 36 | -------------------------------------------------------------------------------- /packages/octclip.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "octclip/" 4 | description: >- 5 | This package allows to do boolean operations with polygons using the 6 | Greiner-Hormann algorithm 7 | icon: "https://bitbucket.org/jgpallero/octclip/raw/43d95a52e0260c4112ff7aa8ca368e9507079657/doc/octclip.png" 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-3.0-or-later and BSD-3-Clause" 11 | url: "https://bitbucket.org/jgpallero/octclip/src/master/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://bitbucket.org/jgpallero/octclip/src/master/NEWS" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://bitbucket.org/jgpallero/octclip/src/master/" 18 | - icon: "fas fa-th-list" 19 | label: "function reference" 20 | url: "https://jgpallero.bitbucket.io/octclip/octclip/" 21 | - icon: "fas fa-bug" 22 | label: "report a problem" 23 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(octclip)" 24 | maintainers: 25 | - name: "José Luis García Pallero" 26 | contact: "jgpallero@gmail.com" 27 | versions: 28 | - id: "2.0.3" 29 | date: "2022-11-07" 30 | sha256: "bbac2f0a26dd90b8260bc4362e5a552df5d1dcb62db2c6253b6711a983e6991f" 31 | url: "https://bitbucket.org/jgpallero/octclip/downloads/octclip-2.0.3.tar.gz" 32 | depends: 33 | - "octave (>= 3.6.0)" 34 | - "pkg" 35 | --- 36 | -------------------------------------------------------------------------------- /packages/timer.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "timer/" 4 | description: >- 5 | A Matlab-compatible timer class to execute periodic actions. 6 | icon: 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-2.0-or-later" 10 | url: "https://gitlab.com/farhi/octave-timer/-/blob/main/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://gitlab.com/farhi/octave-timer/-/releases" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://gitlab.com/farhi/octave-timer/" 17 | - icon: "fas fa-book" 18 | label: "package documentation" 19 | url: "https://gitlab.com/farhi/octave-timer/-/blob/main/README.md" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://gitlab.com/farhi/octave-timer/-/issues" 23 | maintainers: 24 | - name: "Emmanuel Farhi" 25 | contact: "emmanuel.farhi@synchrotron-soleil.fr" 26 | versions: 27 | - id: "0.1.2" 28 | date: "2024-04-28" 29 | sha256: "61550c1dc20a6e8542e4719808fa1d7374ba4c970e39d1db2b7406bc1db1cd76" 30 | url: "https://gitlab.com/farhi/octave-timer/-/archive/0.1.2/octave-timer-0.1.2.tar.gz" 31 | depends: 32 | - "octave (>= 4.0.0)" 33 | - "pkg" 34 | - id: "dev" 35 | date: 36 | sha256: 37 | url: "https://gitlab.com/farhi/octave-timer/-/archive/main/octave-timer-main.tar.gz" 38 | depends: 39 | - "octave (>= 4.0.0)" 40 | - "pkg" 41 | --- 42 | -------------------------------------------------------------------------------- /packages/hdf5oct.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "hdf5oct/" 4 | description: >- 5 | MATLAB compatible high-level functions for HDF5 file I/O. 6 | icon: 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "LGPL-3.0-or-later" 10 | url: "https://github.com/gapost/hdf5oct/blob/master/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://github.com/gapost/hdf5oct/releases" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://github.com/gapost/hdf5oct" 17 | - icon: "fas fa-book" 18 | label: "package documentation" 19 | url: "https://gapost.github.io/hdf5oct/" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://github.com/gapost/hdf5oct/issues" 23 | maintainers: 24 | - name: "George Apostolopoulos" 25 | contact: "gapost@ipta.demokritos.gr" 26 | versions: 27 | - id: "1.1.0" 28 | date: "2025-10-08" 29 | sha256: "ab251912bc2749718188e54e35ac29805872a5ce19518b10f5f4b574f99f8947" 30 | url: "https://github.com/gapost/hdf5oct/archive/refs/tags/1.1.0.tar.gz" 31 | depends: 32 | - "octave (>= 6.0.0)" 33 | - "pkg" 34 | - id: "1.0.0" 35 | date: "2024-07-08" 36 | sha256: "dec661f16b0743d03e5edbe59f2be49df3d10bbd73c0edcbea26e52ad682c4c8" 37 | url: "https://github.com/gapost/hdf5oct/archive/refs/tags/1.0.0.tar.gz" 38 | depends: 39 | - "octave (>= 6.0.0)" 40 | - "pkg" 41 | --- 42 | -------------------------------------------------------------------------------- /packages/mpi.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "mpi/" 4 | description: >- 5 | Octave bindings for basic Message Passing Interface (MPI) functions for 6 | parallel computing. 7 | icon: 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-3.0-or-later" 11 | url: "https://github.com/carlodefalco/octave-mpi/blob/master/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://github.com/carlodefalco/octave-mpi/blob/master/NEWS" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://github.com/carlodefalco/octave-mpi/" 18 | - icon: "fas fa-book" 19 | label: "package documentation" 20 | url: "https://github.com/carlodefalco/octave-mpi/blob/master/README.md" 21 | - icon: "fas fa-bug" 22 | label: "report a problem" 23 | url: "https://github.com/carlodefalco/octave-mpi/issues" 24 | maintainers: 25 | - name: "Carlo de Falco" 26 | contact: 27 | versions: 28 | - id: "3.1.0" 29 | date: "2019-03-07" 30 | sha256: "71180ec682f0c59f86bc40b937bb2c42aab50759867eac2723a972c70ad83bb9" 31 | url: "https://github.com/carlodefalco/octave-mpi/releases/download/v3.1.0/mpi-3.1.0.tar.gz" 32 | depends: 33 | - "octave (>= 4.4.0)" 34 | - "pkg" 35 | - id: "dev" 36 | date: 37 | sha256: 38 | url: "https://github.com/carlodefalco/octave-mpi/archive/master.tar.gz" 39 | depends: 40 | - "octave (>= 4.4.0)" 41 | - "pkg" 42 | --- 43 | -------------------------------------------------------------------------------- /packages/fem-fenics.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "fem-fenics/" 4 | description: >- 5 | Resolution of partial differential equations based on fenics. 6 | icon: "https://octave.sourceforge.io/pkg_icon/fem-fenics.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://sourceforge.net/p/octave/fem-fenics/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/fem-fenics/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/fem-fenics/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/fem-fenics/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(fem-fenics)" 23 | maintainers: 24 | - name: "Marco Vassallo" 25 | contact: "gedeone-octave@users.sourceforge.net" 26 | - name: "Eugenio Gianniti" 27 | contact: "eugenio.gianniti@mail.polimi.it" 28 | versions: 29 | - id: "0.0.5" 30 | date: "2016-10-31" 31 | sha256: 32 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/fem-fenics-0.0.5.tar.gz" 33 | depends: 34 | - "octave (>= 3.8.0)" 35 | - "pkg" 36 | --- 37 | -------------------------------------------------------------------------------- /packages/octave_toml11.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "octave_toml11/" 4 | description: >- 5 | The octave_toml11 package provides functions for process 6 | TOML. 7 | icon: "https://avatars.githubusercontent.com/u/184102101?v=4" 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-3.0-or-later" 11 | url: "https://github.com/CNOCTAVE/octave_toml11/blob/main/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://github.com/CNOCTAVE/octave_toml11/blob/main/NEWS" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://github.com/CNOCTAVE/octave_toml11" 18 | - icon: "fas fa-th-list" 19 | label: "function reference" 20 | url: "https://cnoctave.github.io/octave_toml11/index.html" 21 | - icon: "fas fa-bug" 22 | label: "report a problem" 23 | url: "https://github.com/CNOCTAVE/octave_toml11/issues" 24 | maintainers: 25 | - name: "CNOCTAVE" 26 | contact: "cnoctave@qq.com" 27 | - name: "Yu Hongbo" 28 | contact: "yuhongbo@member.fsf.org" 29 | versions: 30 | - id: "1.0.0" 31 | date: "2025-07-12" 32 | sha256: "ca3f3464304b89989991ac8b052ec148f3e7d01a1749134fb759290c2cbe5d9a" 33 | url: "https://github.com/CNOCTAVE/octave_toml11/releases/download/1.0.0/octave_toml11.tar.gz" 34 | depends: 35 | - "octave (>= 8.0.0)" 36 | - "pkg" 37 | fedora41: 38 | - "libtoml11-devel" 39 | fedora42: 40 | - "libtoml11-devel" 41 | --- 42 | -------------------------------------------------------------------------------- /packages/optics.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "optics/" 4 | description: >- 5 | Functions covering various aspects of optics. 6 | icon: "https://octave.sourceforge.io/pkg_icon/optics.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://sourceforge.net/p/octave/optics/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/optics/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/optics/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/optics/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(optics)" 23 | maintainers: 24 | - name: "Martin Vogel" 25 | contact: "octave@martin-vogel.info" 26 | - name: "Ramom Flores" 27 | contact: "jose.ramom.flores.das.seixas@gmail.com" 28 | - name: "Andreas Weber" 29 | contact: "octave@tech-chat.de" 30 | versions: 31 | - id: "0.1.4" 32 | date: "2019-09-12" 33 | sha256: 34 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/optics-0.1.4.tar.gz" 35 | depends: 36 | - "octave (>= 3.2.0)" 37 | - "pkg" 38 | --- 39 | -------------------------------------------------------------------------------- /packages/data-smoothing.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "data-smoothing/" 4 | description: >- 5 | Algorithms for smoothing noisy data. 6 | icon: "https://octave.sourceforge.io/pkg_icon/data-smoothing.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://sourceforge.net/p/octave/data-smoothing/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/data-smoothing/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/data-smoothing/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/data-smoothing/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(data-smoothing)" 23 | maintainers: 24 | - name: "Jonathan Stickel" 25 | contact: "jonathan.stickel@nrel.gov" 26 | versions: 27 | - id: "1.3.0" 28 | date: "2012-03-01" 29 | sha256: "012bd7a9681619ed33d8643f3785ba9b17a82febab9b242674fe79746bc31b60" 30 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/data-smoothing-1.3.0.tar.gz" 31 | depends: 32 | - "octave (>= 3.6.0)" 33 | - "optim (>= 1.0.3)" 34 | - "pkg" 35 | --- 36 | -------------------------------------------------------------------------------- /packages/octproj.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "octproj/" 4 | description: >- 5 | This package allows to call functions of PROJ library for 6 | cartographic projections and CRS transformations. 7 | icon: "https://bitbucket.org/jgpallero/octproj/raw/2308e7a409431323da692dcff4532d02a973cac4/doc/octproj.png" 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-3.0-or-later" 11 | url: "https://bitbucket.org/jgpallero/octproj/src/master/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://bitbucket.org/jgpallero/octproj/src/master/NEWS" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://bitbucket.org/jgpallero/octproj/src/master/" 18 | - icon: "fas fa-th-list" 19 | label: "function reference" 20 | url: "https://jgpallero.bitbucket.io/octproj/octproj/" 21 | - icon: "fas fa-bug" 22 | label: "report a problem" 23 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(octproj)" 24 | maintainers: 25 | - name: "José Luis García Pallero" 26 | contact: "jgpallero@gmail.com" 27 | versions: 28 | - id: "3.1.0" 29 | date: "2025-06-30" 30 | sha256: "17586a1125e6c1a1e9e2a5d9add6859ed2f7a7b86e68e93c94327860f4baafe7" 31 | url: "https://bitbucket.org/jgpallero/octproj/downloads/octproj-3.1.0.tar.gz" 32 | depends: 33 | - "octave (>= 3.0.0)" 34 | - "pkg" 35 | ubuntu2204: 36 | - "libproj-dev" 37 | --- 38 | -------------------------------------------------------------------------------- /packages/hgsetget.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "hgsetget/" 4 | description: >- 5 | Matlab-compatible superclass used to derive handle class 6 | with set and get methods. 7 | icon: 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-2.0-or-later" 11 | url: "https://gitlab.com/farhi/octave-hgsetget/-/blob/master/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://gitlab.com/farhi/octave-hgsetget/-/releases" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://gitlab.com/farhi/octave-hgsetget/" 18 | - icon: "fas fa-book" 19 | label: "package documentation" 20 | url: "https://gitlab.com/farhi/octave-hgsetget/-/blob/master/README.md" 21 | - icon: "fas fa-bug" 22 | label: "report a problem" 23 | url: "https://gitlab.com/farhi/octave-hgsetget/-/issues" 24 | maintainers: 25 | - name: "Emmanuel Farhi" 26 | contact: "emmanuel.farhi@synchrotron-soleil.fr" 27 | versions: 28 | - id: "0.1" 29 | date: "2019-11-02" 30 | sha256: "17e6b203b4dc8b29d3c1cc1c875188fa3048d8db4adcc2b46efed8ddcc25747d" 31 | url: "https://gitlab.com/farhi/octave-hgsetget/-/archive/0.1/octave-hgsetget-0.1.tar.gz" 32 | depends: 33 | - "octave (>= 4.0.0)" 34 | - "pkg" 35 | - id: "dev" 36 | date: 37 | sha256: 38 | url: "https://gitlab.com/farhi/octave-hgsetget/-/archive/master/octave-hgsetget-master.tar.gz" 39 | depends: 40 | - "octave (>= 4.0.0)" 41 | - "pkg" 42 | --- 43 | -------------------------------------------------------------------------------- /packages/pde1dm.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "pde1dm/" 4 | description: >- 5 | Solve systems of partial differential equations (PDE) 6 | in a single spatial variable and time. 7 | The input is mostly compatible with the MATLAB function pdepe. 8 | Many pdepe examples will work with pde1dm with only small changes. 9 | icon: 10 | links: 11 | - icon: "far fa-copyright" 12 | label: "GPL-3.0-or-later" 13 | url: "https://github.com/wgreene310/pde1dm/blob/master/COPYING" 14 | - icon: "fas fa-rss" 15 | label: "news" 16 | url: "https://github.com/wgreene310/pde1dm/releases/" 17 | - icon: "fas fa-code-branch" 18 | label: "repository" 19 | url: "https://github.com/wgreene310/pde1dm/" 20 | - icon: "fas fa-book" 21 | label: "package documentation" 22 | url: "https://github.com/wgreene310/pde1dm/blob/master/README.md" 23 | - icon: "fas fa-bug" 24 | label: "report a problem" 25 | url: "https://github.com/wgreene310/pde1dm/issues" 26 | maintainers: 27 | - name: "Bill Greene" 28 | contact: 29 | versions: 30 | - id: "1.3.0" 31 | date: "2022-05-02" 32 | sha256: "b9c93bf0aca8f25cbd3de76fe90e64cd5c68963ee3bbe12ff4d17baa3120d675" 33 | url: "https://github.com/wgreene310/pde1dm/archive/v1.3.tar.gz" 34 | depends: 35 | - "octave (>= 7.1.0)" 36 | - "pkg" 37 | - id: "dev" 38 | date: 39 | sha256: 40 | url: "https://github.com/wgreene310/pde1dm/archive/master.zip" 41 | depends: 42 | - "octave (>= 7.1.0)" 43 | - "pkg" 44 | --- 45 | -------------------------------------------------------------------------------- /packages/dynamicprops.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "dynamicprops/" 4 | description: >- 5 | Matlab-compatible superclass allowing to add new properties dynamically. 6 | icon: 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-2.0-or-later" 10 | url: "https://gitlab.com/farhi/octave-dynamicprops/-/blob/master/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://gitlab.com/farhi/octave-dynamicprops/-/releases" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://gitlab.com/farhi/octave-dynamicprops/" 17 | - icon: "fas fa-book" 18 | label: "package documentation" 19 | url: "https://gitlab.com/farhi/octave-dynamicprops/-/blob/master/README.md" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://gitlab.com/farhi/octave-dynamicprops/-/issues" 23 | maintainers: 24 | - name: "Emmanuel Farhi" 25 | contact: "emmanuel.farhi@synchrotron-soleil.fr" 26 | versions: 27 | - id: "0.1" 28 | date: "2019-11-02" 29 | sha256: "f140cdd760f5da8d552bb08f9d562199d203e9f8ce4f47e48e94702a6f13a841" 30 | url: "https://gitlab.com/farhi/octave-dynamicprops/-/archive/0.1/octave-dynamicprops-0.1.tar.gz" 31 | depends: 32 | - "octave (>= 4.0.0)" 33 | - "pkg" 34 | - id: "dev" 35 | date: 36 | sha256: 37 | url: "https://gitlab.com/farhi/octave-dynamicprops/-/archive/master/octave-dynamicprops-master.tar.gz" 38 | depends: 39 | - "octave (>= 4.0.0)" 40 | - "pkg" 41 | --- 42 | -------------------------------------------------------------------------------- /packages/linear-algebra.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "linear-algebra/" 4 | description: >- 5 | Additional linear algebra code, including matrix functions. 6 | icon: "https://octave.sourceforge.io/pkg_icon/linear-algebra.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later and LGPL-3.0-or-later and BSD-2-Clause-FreeBSD" 10 | url: "https://sourceforge.net/p/octave/linear-algebra/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/linear-algebra/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/linear-algebra/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/linear-algebra/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(linear-algebra)" 23 | maintainers: 24 | - name: "Octave Forge Community" 25 | contact: "https://octave.discourse.group/" 26 | versions: 27 | - id: "2.2.3" 28 | date: "2019-11-08" 29 | sha256: "53ee6a534e1327282339cbc0bd335af17e0f897f737c00bfa686c99d6ebf92f3" 30 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/linear-algebra-2.2.3.tar.gz" 31 | depends: 32 | - "octave (>= 4.0.0)" 33 | - "pkg" 34 | --- 35 | -------------------------------------------------------------------------------- /packages/mboct-octave-pkg.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "mboct-octave-pkg/" 4 | description: >- 5 | This package belongs to a suite of packages which can be used for 6 | pre- and postprocessing of flexible bodies in MBDyn (www.mbdyn.org) 7 | with GNU-Octave. It contains general purpose utility functions used 8 | in all mboct-* packages. 9 | icon: "https://avatars.githubusercontent.com/u/61900614?v=4" 10 | links: 11 | - icon: "far fa-copyright" 12 | label: "GPL-3.0-or-later" 13 | url: "https://github.com/octave-user/mboct-octave-pkg/blob/master/COPYING" 14 | - icon: "fas fa-rss" 15 | label: "news" 16 | url: 17 | - icon: "fas fa-code-branch" 18 | label: "repository" 19 | url: "https://github.com/octave-user/mboct-octave-pkg" 20 | - icon: "fas fa-th-list" 21 | label: "function reference" 22 | url: "https://octave-user.github.io/mboct-octave-pkg/mboct-octave-pkg" 23 | - icon: "fas fa-bug" 24 | label: "report a problem" 25 | url: "https://github.com/octave-user/mboct-octave-pkg/issues" 26 | maintainers: 27 | - name: "Reinhard Resch" 28 | contact: "octave-user@a1.net" 29 | versions: 30 | - id: "0.1.0" 31 | date: "2025-08-24" 32 | sha256: "76256957abe7fda635ae4a5d89d44d3e922bdec122234f2ca0baf878d4d548b9" 33 | url: "https://github.com/octave-user/mboct-octave-pkg/releases/download/0.1.0/mboct-octave-pkg-0.1.0.tar.gz" 34 | depends: 35 | - "octave (>= 5.1.0)" 36 | - "pkg" 37 | ubuntu2204: 38 | - "libgtest-dev" 39 | --- 40 | -------------------------------------------------------------------------------- /packages/automatic-differentiation.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "automatic-differentiation/" 4 | description: >- 5 | Automatic-Differentiation for Octave. 6 | icon: "https://raw.githubusercontent.com/StevenWaldrip/Automatic-Differentiation/main/doc/Automatic%20Differentiation%20for%20Octave.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://github.com/StevenWaldrip/Automatic-Differentiation/blob/main/COPYING" 11 | - icon: "fas fa-code-branch" 12 | label: "repository" 13 | url: "https://github.com/StevenWaldrip/Automatic-Differentiation" 14 | - icon: "fas fa-book" 15 | label: "package documentation" 16 | url: "https://mathsfromnothing.cf/scalar-functions-vector-matrix-and-tensor-functions/" 17 | - icon: "fas fa-bug" 18 | label: "report a problem" 19 | url: "https://mathsfromnothing.cf/contact-2/" 20 | maintainers: 21 | - name: "Steven Waldrip" 22 | contact: "steven.waldrip@gmail.com" 23 | versions: 24 | - id: "1.0.0" 25 | date: "2022-07-17" 26 | sha256: "12e578cd4daedd31537ba5f541db20e85754ab356c3c28cb75da78442beb10e5" 27 | url: "https://github.com/StevenWaldrip/Automatic-Differentiation/archive/refs/tags/1.0.0.tar.gz" 28 | depends: 29 | - "octave (>= 5.1.0)" 30 | - "pkg" 31 | - id: "dev" 32 | date: 33 | sha256: 34 | url: "https://github.com/StevenWaldrip/Automatic-Differentiation/archive/refs/heads/main.tar.gz" 35 | depends: 36 | - "octave (>= 5.1.0)" 37 | - "pkg" 38 | --- 39 | -------------------------------------------------------------------------------- /assets/ci/yamllint.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | ignore: | 4 | index.md 5 | 6 | rules: 7 | braces: 8 | min-spaces-inside: 0 9 | max-spaces-inside: 0 10 | min-spaces-inside-empty: -1 11 | max-spaces-inside-empty: -1 12 | brackets: 13 | min-spaces-inside: 0 14 | max-spaces-inside: 0 15 | min-spaces-inside-empty: -1 16 | max-spaces-inside-empty: -1 17 | colons: 18 | max-spaces-before: 0 19 | max-spaces-after: 1 20 | commas: 21 | max-spaces-before: 0 22 | min-spaces-after: 1 23 | max-spaces-after: 1 24 | comments: 25 | require-starting-space: true 26 | min-spaces-from-content: 2 27 | comments-indentation: enable 28 | document-end: disable 29 | document-start: 30 | present: true 31 | empty-lines: 32 | max: 2 33 | max-start: 0 34 | max-end: 0 35 | empty-values: 36 | forbid-in-block-mappings: false 37 | forbid-in-flow-mappings: false 38 | hyphens: 39 | max-spaces-after: 1 40 | indentation: 41 | spaces: 0 42 | indent-sequences: true 43 | check-multi-line-strings: false 44 | key-duplicates: enable 45 | key-ordering: disable 46 | line-length: 47 | max: 80 48 | allow-non-breakable-words: true 49 | allow-non-breakable-inline-mappings: true 50 | new-line-at-end-of-file: enable 51 | new-lines: 52 | type: unix 53 | octal-values: disable 54 | quoted-strings: 55 | quote-type: double 56 | required: true 57 | trailing-spaces: enable 58 | truthy: enable 59 | -------------------------------------------------------------------------------- /assets/style.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | a { text-decoration: none; } 5 | 6 | div.card-body a:hover { text-decoration: underline; } 7 | div.card-body ul { padding-inline-start: 1em; } 8 | div.card-body li { 9 | list-style-type: none; 10 | margin-top: 0.7em; 11 | } 12 | 13 | details[open] { background-color: aliceblue; } 14 | 15 | li.nav-item { margin-left: 3rem; } 16 | 17 | a.nav-link { color: #FFF !important; } 18 | a.nav-link:hover { 19 | color: #FFF !important; 20 | background-color: #585858; 21 | } 22 | 23 | div.card-header img { width: 100px; } 24 | div.card-header-mod { background-color: #dbeeff; } 25 | div.input-group-mod, 26 | div.input-group-mod input[disabled] { background-color: white; } 27 | 28 | div.alert-warning-mod { color: #212529; } 29 | 30 | span.fixed-width { 31 | display: inline-block; 32 | width: 1.3em; 33 | } 34 | 35 | div.icon { 36 | width: 50px; 37 | height: 50px; 38 | } 39 | 40 | div.icon img { 41 | margin: auto; 42 | max-width: 100%; 43 | max-height: 100%; 44 | display: block; 45 | } 46 | 47 | div.description { 48 | white-space: normal; 49 | height: 4.5em; /* two lines */ 50 | overflow: hidden; 51 | } 52 | 53 | td { 54 | padding: 5px; 55 | white-space: nowrap; 56 | } 57 | 58 | td.dataTables_empty { height: 75px; } 59 | 60 | #package-index_filter { margin-bottom: 2em; } 61 | #package-index_filter, 62 | #package-index_filter input, 63 | #package-index_filter label { width: 100%; } 64 | #package-index_filter label { color: transparent; } 65 | -------------------------------------------------------------------------------- /packages/tensorflow.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "tensorflow/" 4 | description: >- 5 | TensorFlow interface for GNU Octave. 6 | icon: "https://raw.githubusercontent.com/pr0m1th3as/tensorflow/main/doc/tensorflow.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://github.com/pr0m1th3as/tensorflow/blob/master/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://github.com/pr0m1th3as/tensorflow/releases" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://github.com/pr0m1th3as/tensorflow/" 17 | - icon: "fas fa-book" 18 | label: "package documentation" 19 | url: "https://pr0m1th3as.github.io/tensorflow/" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://github.com/pr0m1th3as/tensorflow/issues" 23 | maintainers: 24 | - name: "Andreas Bertsatos" 25 | contact: "abertsatos@biol.uoa.gr" 26 | versions: 27 | - id: "0.1.1" 28 | date: "2024-06-30" 29 | sha256: "8388ad50762e514fd39742d16a3feb9b4924be401781a831f1076df19a211d50" 30 | url: "https://github.com/pr0m1th3as/tensorflow/archive/refs/tags/release-0.1.1.tar.gz" 31 | depends: 32 | - "octave (>= 8.1.0)" 33 | - "pkg" 34 | - id: "0.1.0" 35 | date: "2024-06-26" 36 | sha256: "dc9749f014ac89c82db1761c757187cf2873c2611f374955a905d22b5e47c5a2" 37 | url: "https://github.com/pr0m1th3as/tensorflow/archive/refs/tags/release-0.1.0.tar.gz" 38 | depends: 39 | - "octave (>= 8.1.0)" 40 | - "pkg" 41 | --- 42 | -------------------------------------------------------------------------------- /packages/geometry.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "geometry/" 4 | description: >- 5 | Library for extending MatGeom functionality. 6 | icon: "https://octave.sourceforge.io/pkg_icon/geometry.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later and BSL-1.0" 10 | url: "https://sourceforge.net/p/octave/geometry/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/geometry/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/geometry/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/geometry/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(geometry)" 23 | maintainers: 24 | - name: "Juan Pablo Carbajal" 25 | contact: "ajuanpi+dev@gmail.com" 26 | - name: "Philip Nienhuis" 27 | contact: "prnienhuis@users.sf.net" 28 | - name: "Simeon Simeonov" 29 | contact: "sss41@cam.ac.uk" 30 | versions: 31 | - id: "4.1.0" 32 | date: "2024-03-19" 33 | sha256: "dbc1658845c97d2d6687c1490a61b43d359913d33420e475b659f335f7a34360" 34 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/geometry-4.1.0.tar.gz" 35 | depends: 36 | - "octave (>= 4.2.0)" 37 | - "matgeom (>= 1.0.0)" 38 | - "pkg" 39 | --- 40 | -------------------------------------------------------------------------------- /packages/octave_zstd.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "octave_zstd/" 4 | description: >- 5 | The octave_zstd package provides functions for compress and 6 | decompress about ZSTD format. 7 | icon: "https://avatars.githubusercontent.com/u/184102101?v=4" 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-3.0-or-later" 11 | url: "https://github.com/CNOCTAVE/octave_zstd/blob/main/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://github.com/CNOCTAVE/octave_zstd/blob/main/NEWS" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://github.com/CNOCTAVE/octave_zstd" 18 | - icon: "fas fa-th-list" 19 | label: "function reference" 20 | url: "https://cnoctave.github.io/octave_zstd/index.html" 21 | - icon: "fas fa-bug" 22 | label: "report a problem" 23 | url: "https://github.com/CNOCTAVE/octave_zstd/issues" 24 | maintainers: 25 | - name: "CNOCTAVE" 26 | contact: "cnoctave@qq.com" 27 | - name: "Yu Hongbo" 28 | contact: "yuhongbo@member.fsf.org" 29 | versions: 30 | - id: "1.1.0" 31 | date: "2024-11-13" 32 | sha256: "2c8570efedd0bbb10c7005b67b8834a011a257c3bd9f2f57e8d32a2f1109562b" 33 | url: "https://github.com/CNOCTAVE/octave_zstd/releases/download/1.1.0/octave_zstd.tar.gz" 34 | depends: 35 | - "octave (>= 8.0.0)" 36 | - "pkg" 37 | - "octave_tar (>= 1.0.1)" 38 | fedora40: 39 | - "libzstd" 40 | - "libzstd-devel" 41 | - "libzstd-static" 42 | fedora41: 43 | - "libzstd" 44 | - "libzstd-devel" 45 | - "libzstd-static" 46 | --- 47 | -------------------------------------------------------------------------------- /packages/database.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "database/" 4 | description: >- 5 | Interface to SQL databases, currently only postgresql using libpq. 6 | icon: "https://octave.sourceforge.io/pkg_icon/database.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://sourceforge.net/p/octave/database/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/database/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/database/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/database/overview.html" 20 | - icon: "fas fa-book" 21 | label: "package documentation" 22 | url: "https://octave.sourceforge.io/database/package_doc/" 23 | - icon: "fas fa-bug" 24 | label: "report a problem" 25 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(database)" 26 | maintainers: 27 | - name: "Olaf Till" 28 | contact: "i7tiol@t-online.de" 29 | versions: 30 | - id: "2.4.4" 31 | date: "2019-03-13" 32 | sha256: "3761962f08beed41aadae27f8a14336b1ad5bcdc046861fa325c82d8943916b0" 33 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/database-2.4.4.tar.gz" 34 | depends: 35 | - "octave (>= 4.0.0)" 36 | - "struct (>= 1.0.12)" 37 | - "pkg" 38 | ubuntu2204: 39 | - "libpq-dev" 40 | --- 41 | -------------------------------------------------------------------------------- /packages/octave_php_wrapper.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "octave_php_wrapper/" 4 | description: >- 5 | The octave_php_wrapper package creates a PHP wrapper for Octave 6 | script, so that you can run the Octave script by PHP, 7 | like modern Internet service. 8 | icon: "https://avatars.githubusercontent.com/u/184102101?v=4" 9 | links: 10 | - icon: "far fa-copyright" 11 | label: "GPL-3.0-or-later" 12 | url: "https://github.com/CNOCTAVE/octave_php_wrapper/blob/main/COPYING" 13 | - icon: "fas fa-rss" 14 | label: "news" 15 | url: "https://github.com/CNOCTAVE/octave_php_wrapper/blob/main/NEWS" 16 | - icon: "fas fa-code-branch" 17 | label: "repository" 18 | url: "https://github.com/CNOCTAVE/octave_php_wrapper" 19 | - icon: "fas fa-th-list" 20 | label: "function reference" 21 | url: "https://cnoctave.github.io/octave_php_wrapper/index.html" 22 | - icon: "fas fa-bug" 23 | label: "report a problem" 24 | url: "https://github.com/CNOCTAVE/octave_php_wrapper/issues" 25 | maintainers: 26 | - name: "CNOCTAVE" 27 | contact: "cnoctave@qq.com" 28 | - name: "Yu Hongbo" 29 | contact: "yuhongbo@member.fsf.org" 30 | versions: 31 | - id: "1.0.0" 32 | date: "2025-05-22" 33 | sha256: "d9cc4939332c199b1e642d019162441dfc9207fd95d0d8b122bb202138f4074f" 34 | url: "https://github.com/CNOCTAVE/octave_php_wrapper/releases/download/1.0.0/octave_php_wrapper.tar.gz" 35 | depends: 36 | - "octave (>= 5.2.0)" 37 | - "pkg" 38 | fedora41w: 39 | - "php" 40 | - "octave-cli" 41 | fedora42w: 42 | - "php" 43 | - "octave-cli" 44 | --- 45 | -------------------------------------------------------------------------------- /packages/mboct-numerical-pkg.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "mboct-numerical-pkg/" 4 | description: >- 5 | This package belongs to a suite of packages which can be used for 6 | pre- and postprocessing of flexible bodies in MBDyn (www.mbdyn.org) 7 | with GNU-Octave. It contains interfaces to several well known numerical 8 | solvers. 9 | icon: "https://avatars.githubusercontent.com/u/61900614?v=4" 10 | links: 11 | - icon: "far fa-copyright" 12 | label: "GPL-3.0-or-later" 13 | url: "https://github.com/octave-user/mboct-numerical-pkg/blob/master/COPYING" 14 | - icon: "fas fa-rss" 15 | label: "news" 16 | url: 17 | - icon: "fas fa-code-branch" 18 | label: "repository" 19 | url: "https://github.com/octave-user/mboct-numerical-pkg" 20 | - icon: "fas fa-th-list" 21 | label: "function reference" 22 | url: "https://octave-user.github.io/mboct-numerical-pkg/mboct-numerical-pkg" 23 | - icon: "fas fa-bug" 24 | label: "report a problem" 25 | url: "https://github.com/octave-user/mboct-numerical-pkg/issues" 26 | maintainers: 27 | - name: "Reinhard Resch" 28 | contact: "octave-user@a1.net" 29 | versions: 30 | - id: "0.1.0" 31 | date: "2025-08-24" 32 | sha256: "bd575d17ef21a551d946dce08502f06cfc49fedef1e7b55168510a82b588f3dc" 33 | url: "https://github.com/octave-user/mboct-numerical-pkg/releases/download/0.1.0/mboct-numerical-pkg-0.1.0.tar.gz" 34 | depends: 35 | - "octave (>= 5.1.0)" 36 | - "pkg" 37 | - "mboct-octave-pkg (>=0.1.0)" 38 | ubuntu2204: 39 | - "libmkl-full-dev" 40 | - "libmetis-dev" 41 | - "libgtest-dev" 42 | - "libmumps-seq-dev" 43 | --- 44 | -------------------------------------------------------------------------------- /packages/velas.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "velas/" 4 | description: >- 5 | VELAS is a user-friendly open-source toolbox for the visualization and 6 | analysis of elastic anisotropy written in GNU Octave that can be used 7 | for any crystal symmetry. 8 | icon: "https://raw.githubusercontent.com/ranzhengcode/VELAS/main/doc/velasLogo.png" 9 | links: 10 | - icon: "far fa-copyright" 11 | label: "GPL-3.0-or-later" 12 | url: "https://github.com/ranzhengcode/VELAS/blob/main/LICENSE" 13 | - icon: "fas fa-rss" 14 | label: "news" 15 | url: "https://github.com/ranzhengcode/VELAS/blob/main/NEWS" 16 | - icon: "fas fa-code-branch" 17 | label: "repository" 18 | url: "https://github.com/ranzhengcode/VELAS" 19 | - icon: "fas fa-th-list" 20 | label: "function reference" 21 | url: "https://github.com/ranzhengcode/VELAS/tree/main/doc" 22 | - icon: "fas fa-bug" 23 | label: "report a problem" 24 | url: "https://github.com/ranzhengcode/VELAS/issues" 25 | maintainers: 26 | - name: "Ran Zheng" 27 | contact: "ranzheng@outlook.com" 28 | versions: 29 | - id: "1.0.6" 30 | date: "2023-09-05" 31 | sha256: "f9ffe416518188bda27b2b31f86eb47f4c90327bdaab0fe7578a33a4dfa7fa5f" 32 | url: "https://github.com/ranzhengcode/VELAS/archive/refs/tags/v1.0.6.tar.gz" 33 | depends: 34 | - "octave (>= 5.2.0)" 35 | - "pkg" 36 | - id: "1.0.5" 37 | date: "2023-04-21" 38 | sha256: "74a6e66fe77c6d618315a6f4466026d48c8d70c3131a6d5d442dad4137759d07" 39 | url: "https://github.com/ranzhengcode/VELAS/archive/refs/tags/v1.0.5.tar.gz" 40 | depends: 41 | - "octave (>= 5.2.0)" 42 | - "pkg" 43 | --- 44 | -------------------------------------------------------------------------------- /packages/bsltl.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "bsltl/" 4 | description: >- 5 | Free collection of Octave/MATLAB routines for working with the biospeckle 6 | laser technique. 7 | icon: "https://octave.sourceforge.io/pkg_icon/bsltl.png" 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-3.0-or-later" 11 | url: "https://sourceforge.net/p/octave/bsltl/ci/master/tree/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://sourceforge.net/p/octave/bsltl/ci/master/tree/NEWS" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://sourceforge.net/p/octave/bsltl/ci/master/tree/" 18 | - icon: "fas fa-th-list" 19 | label: "function reference" 20 | url: "https://octave.sourceforge.io/bsltl/overview.html" 21 | - icon: "fas fa-book" 22 | label: "package documentation" 23 | url: "https://octave.sourceforge.io/bsltl/package_doc/" 24 | - icon: "fas fa-bug" 25 | label: "report a problem" 26 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(bsltl)" 27 | maintainers: 28 | - name: "Roberto Alves Braga Junior" 29 | contact: "robertobraga@deg.ufla.br" 30 | - name: "Fernando Pujaico Rivera" 31 | contact: "fernando.pujaico.rivera@gmail.com" 32 | - name: "Junio Moreira" 33 | contact: "juniomoreira@iftm.edu.br" 34 | versions: 35 | - id: "1.3.1" 36 | date: "2019-01-14" 37 | sha256: "4bb7ae78decc0d7f71bb553ba1270a3b69efaabed00a70c66ac5157fc8f01945" 38 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/bsltl-1.3.1.tar.gz" 39 | depends: 40 | - "octave (>= 4.0.0)" 41 | - "pkg" 42 | --- 43 | -------------------------------------------------------------------------------- /packages/tsa.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "tsa/" 4 | description: >- 5 | Stochastic concepts and maximum entropy methods for time series analysis. 6 | icon: "https://octave.sourceforge.io/pkg_icon/tsa.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://sourceforge.net/p/octave/tsa/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/tsa/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/tsa/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/tsa/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(tsa)" 23 | maintainers: 24 | - name: "Alois Schloegl" 25 | contact: "alois.schloegl@ist.ac.at" 26 | versions: 27 | - id: "4.6.3" 28 | date: "2021-07-26" 29 | sha256: "54f3bce33dd439fea60e7d36252c04d6c6b313a632de6ce204f61ed6cfc17ddd" 30 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/tsa-4.6.3.tar.gz" 31 | depends: 32 | - "octave (>= 2.9.7)" 33 | - "nan (>= 3.0.0)" 34 | - "pkg" 35 | - id: "4.6.2" 36 | date: "2019-10-24" 37 | sha256: "b6820005febb2d79c4195704d6b903acbf192d3e260f3c60241772f9bf964c5c" 38 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/tsa-4.6.2.tar.gz" 39 | depends: 40 | - "octave (>= 2.9.7)" 41 | - "nan (>= 3.0.0)" 42 | - "pkg" 43 | --- 44 | -------------------------------------------------------------------------------- /packages/generate_html.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "generate_html/" 4 | description: >- 5 | Generating HTML pages with help texts for a set of package functions. 6 | icon: "https://octave.sourceforge.io/pkg_icon/generate_html.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://sourceforge.net/p/octave/generate_html/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/generate_html/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/generate_html/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/generate_html/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(generate_html)" 23 | maintainers: 24 | - name: "Søren Hauberg" 25 | contact: "soren@hauberg.org" 26 | versions: 27 | - id: "0.3.3" 28 | date: "2022-05-03" 29 | sha256: "087274fbdd3e48d5e6b252eb41cfbc69eb529c72b49bd3ea1018a916e163c07c" 30 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/generate_html-0.3.3.tar.gz" 31 | depends: 32 | - "octave (>= 3.2.0)" 33 | - "pkg" 34 | - id: "0.3.2" 35 | date: "2020-05-18" 36 | sha256: "da2d15d66dafb999a483a1380f33799724a8a9fff9c6620a3f11bbe4e48124aa" 37 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/generate_html-0.3.2.tar.gz" 38 | depends: 39 | - "octave (>= 3.2.0)" 40 | - "pkg" 41 | --- 42 | -------------------------------------------------------------------------------- /packages/miscellaneous.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "miscellaneous/" 4 | description: >- 5 | Miscellaneous tools that don't fit somewhere else. 6 | icon: "https://octave.sourceforge.io/pkg_icon/miscellaneous.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://sourceforge.net/p/octave/miscellaneous/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/miscellaneous/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/miscellaneous/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/miscellaneous/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.gnu.org/bugs/?group=octave" 23 | maintainers: 24 | - name: "Octave Forge Community" 25 | contact: "https://octave.discourse.group/" 26 | versions: 27 | - id: "1.3.1" 28 | date: "2024-07-24" 29 | sha256: "5712117a25d31d1266003646a40e81e7d7427433c26366e426dffa9ab8abd648" 30 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/miscellaneous-1.3.1.tar.gz" 31 | depends: 32 | - "octave (>= 3.8.0)" 33 | - "pkg" 34 | ubuntu2204: 35 | - "units" 36 | - id: "1.3.0" 37 | date: "2019-10-27" 38 | sha256: "335192a3eed471426d90d9c6f538366d1f7de06c830695f6b194882fed01c182" 39 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/miscellaneous-1.3.0.tar.gz" 40 | depends: 41 | - "octave (>= 3.8.0)" 42 | - "pkg" 43 | ubuntu2204: 44 | - "units" 45 | --- 46 | -------------------------------------------------------------------------------- /packages/vrml.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "vrml/" 4 | description: >- 5 | 3D graphics using VRML. 6 | icon: "https://octave.sourceforge.io/pkg_icon/vrml.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://sourceforge.net/p/octave/vrml/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/vrml/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/vrml/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/vrml/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(vrml)" 23 | maintainers: 24 | - name: "Etienne Grossmann" 25 | contact: "etienne@egdn.net" 26 | versions: 27 | - id: "1.0.14" 28 | date: "2025-02-10" 29 | sha256: "55f8f44360b23a2ec2ae98594a5d745efed0c534af59d1a4d186be4a27b0a95e" 30 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/vrml-1.0.14.tar.gz" 31 | depends: 32 | - "octave (>= 2.9.7)" 33 | - "linear-algebra" 34 | - "miscellaneous" 35 | - "struct" 36 | - "statistics" 37 | - "pkg" 38 | - id: "1.0.13" 39 | date: "2012-06-18" 40 | sha256: "c45357d47382b22a37dded72888c34a3839ff608baedbfea11ed2950c21ca9d7" 41 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/vrml-1.0.13.tar.gz" 42 | depends: 43 | - "octave (>= 2.9.7)" 44 | - "linear-algebra" 45 | - "miscellaneous" 46 | - "struct" 47 | - "statistics" 48 | - "pkg" 49 | --- 50 | -------------------------------------------------------------------------------- /packages/sqlp-sedumi.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "sqlp-sedumi/" 4 | description: >- 5 | SeDuMi (Self-Dual-Minimization) is solving convex optimization problems 6 | involving linear equations and inequalities, second-order cone constraints, 7 | and semidefinite constraints (linear matrix inequalities). 8 | icon: 9 | links: 10 | - icon: "far fa-copyright" 11 | label: "GPL-2.0-or-later" 12 | url: "https://github.com/sqlp/sedumi/blob/master/COPYING" 13 | - icon: "fas fa-rss" 14 | label: "news" 15 | url: "https://github.com/sqlp/sedumi/releases" 16 | - icon: "fas fa-code-branch" 17 | label: "repository" 18 | url: "https://github.com/sqlp/sedumi/" 19 | - icon: "fas fa-book" 20 | label: "package documentation" 21 | url: "https://github.com/sqlp/sedumi/tree/master/doc" 22 | - icon: "fas fa-download" 23 | label: "installation instructions" 24 | url: "https://github.com/sqlp/sedumi/blob/master/Install.txt" 25 | - icon: "fas fa-bug" 26 | label: "report a problem" 27 | url: "https://github.com/sqlp/sedumi/issues" 28 | maintainers: 29 | - name: "GitHub SQLP organization" 30 | contact: "https://github.com/orgs/sqlp/people" 31 | versions: 32 | - id: "1.3.5" 33 | date: "2021-06-15" 34 | sha256: "72aa803c87d79f350f06dd0c20edd4c6f00a80b911b9e2ce06c28ffea3cd49c4" 35 | url: "https://github.com/sqlp/sedumi/archive/v1.3.5.tar.gz" 36 | depends: 37 | - "octave (>= 4.0.0)" 38 | - id: "1.3.4" 39 | date: "2020-01-10" 40 | sha256: "8280b6f0508cba17e611c9a3474f52c01df93c342c5d45fe0faf9af841a8b2bf" 41 | url: "https://github.com/sqlp/sedumi/archive/v1.3.4.tar.gz" 42 | depends: 43 | - "octave (>= 4.0.0)" 44 | - id: "dev" 45 | date: 46 | sha256: 47 | url: "https://github.com/sqlp/sedumi/archive/master.zip" 48 | depends: 49 | - "octave (>= 4.0.0)" 50 | --- 51 | -------------------------------------------------------------------------------- /packages/lssa.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "lssa/" 4 | description: >- 5 | Tools to compute spectral decompositions of irregularly-spaced time series. 6 | Functions based on the Lomb-Scargle periodogram and Adolf Mathias' 7 | implementation for R and C. 8 | icon: "https://octave.sourceforge.io/pkg_icon/lssa.png" 9 | links: 10 | - icon: "far fa-copyright" 11 | label: "GPL-3.0-or-later" 12 | url: "https://sourceforge.net/p/octave/lssa/ci/default/tree/COPYING" 13 | - icon: "fas fa-rss" 14 | label: "news" 15 | url: "https://sourceforge.net/p/octave/lssa/ci/default/tree/NEWS" 16 | - icon: "fas fa-code-branch" 17 | label: "repository" 18 | url: "https://sourceforge.net/p/octave/lssa/ci/default/tree/" 19 | - icon: "fas fa-th-list" 20 | label: "function reference" 21 | url: "https://octave.sourceforge.io/lssa/overview.html" 22 | - icon: "fas fa-bug" 23 | label: "report a problem" 24 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(lssa)" 25 | maintainers: 26 | - name: "Ben Lewis" 27 | contact: "benjf5@gmail.com" 28 | - name: "John Donoghue" 29 | contact: "john.donoghue@ieee.org" 30 | versions: 31 | - id: "0.1.4" 32 | date: "2020-10-18" 33 | sha256: "f0839494db8afc59fe2aa04460135fd615f050300b147fe24810df13f5a70982" 34 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/lssa-0.1.4.tar.gz" 35 | depends: 36 | - "octave (>= 3.6.0)" 37 | - "pkg" 38 | - id: "0.1.3" 39 | date: "2018-07-23" 40 | sha256: "ab43b49dcd14cb0866d3b89ede7bfdfe13abaae8aca1c5e99bb888eccf7ac407" 41 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/lssa-0.1.3.tar.gz" 42 | depends: 43 | - "octave (>= 3.6.0)" 44 | - "pkg" 45 | --- 46 | -------------------------------------------------------------------------------- /packages/sparsersb.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "sparsersb/" 4 | description: >- 5 | Interface to the librsb package implementing the RSB sparse matrix format for 6 | fast shared-memory sparse matrix computations. 7 | icon: "https://octave.sourceforge.io/pkg_icon/sparsersb.png" 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-3.0-or-later" 11 | url: "https://sourceforge.net/p/octave/sparsersb/ci/default/tree/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://sourceforge.net/p/octave/sparsersb/ci/default/tree/NEWS" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://sourceforge.net/p/octave/sparsersb/ci/default/tree/" 18 | - icon: "fas fa-th-list" 19 | label: "function reference" 20 | url: "https://octave.sourceforge.io/sparsersb/overview.html" 21 | - icon: "fas fa-book" 22 | label: "package documentation" 23 | url: "http://librsb.sourceforge.net/" 24 | - icon: "fas fa-bug" 25 | label: "report a problem" 26 | url: "https://sourceforge.net/p/librsb/mailman/" 27 | maintainers: 28 | - name: "Michele Martone" 29 | contact: "michelemartone@users.sourceforge.net" 30 | versions: 31 | - id: "1.0.9" 32 | date: "2021-09-21" 33 | sha256: "0dce0048c09dd99a69bbe689da6d47983120e18fb21a9b2496fe53cf4f15de4b" 34 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/sparsersb-1.0.9.tar.gz" 35 | depends: 36 | - "octave (>= 4.4.0)" 37 | - "pkg" 38 | - id: "1.0.8" 39 | date: "2020-08-06" 40 | sha256: "bc0bd3d6040ffc036271609fef83af30c148b9760b62885008a5b2a0eec5875a" 41 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/sparsersb-1.0.8.tar.gz" 42 | depends: 43 | - "octave (>= 4.4.0)" 44 | - "pkg" 45 | --- 46 | -------------------------------------------------------------------------------- /packages/financial.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "financial/" 4 | description: >- 5 | Monte Carlo simulation, options pricing routines, financial manipulation, 6 | plotting functions and additional date manipulation tools. 7 | icon: "https://octave.sourceforge.io/pkg_icon/financial.png" 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-3.0-or-later" 11 | url: "https://sourceforge.net/p/octave/financial/ci/default/tree/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://sourceforge.net/p/octave/financial/ci/default/tree/NEWS" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://sourceforge.net/p/octave/financial/ci/default/tree/" 18 | - icon: "fas fa-th-list" 19 | label: "function reference" 20 | url: "https://octave.sourceforge.io/financial/overview.html" 21 | - icon: "fas fa-bug" 22 | label: "report a problem" 23 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(financial)" 24 | maintainers: 25 | - name: "Bill Denney" 26 | contact: 27 | - name: "Kurt Hornik" 28 | contact: 29 | - name: "Parsiad Azimzadeh" 30 | contact: "parsiad.azimzadeh@gmail.com" 31 | versions: 32 | - id: "0.5.4" 33 | date: "2025-06-25" 34 | sha256: "0b906886b4c754c683ad5f464dba797743af5d1faccd032357986f38d16d3fbb" 35 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/financial-0.5.4.tar.gz" 36 | depends: 37 | - "octave (>= 4.4.0)" 38 | - "io (>= 2.4.11)" 39 | - "statistics (>= 1.4.0)" 40 | - "pkg" 41 | - id: "0.5.3" 42 | date: "2018-10-22" 43 | sha256: 44 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/financial-0.5.3.tar.gz" 45 | depends: 46 | - "octave (>= 4.4.0)" 47 | - "io (>= 2.4.11)" 48 | - "statistics (>= 1.4.0)" 49 | - "pkg" 50 | --- 51 | -------------------------------------------------------------------------------- /packages/llms.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "llms/" 4 | description: >- 5 | Large Language Models for GNU Octave. 6 | icon: "https://raw.githubusercontent.com/pr0m1th3as/octave-llms/main/doc/octave-llms.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://github.com/pr0m1th3as/octave-chartjs/blob/master/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://github.com/pr0m1th3as/octave-llms/releases" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://github.com/pr0m1th3as/octave-llms/" 17 | - icon: "fas fa-book" 18 | label: "package documentation" 19 | url: "https://pr0m1th3as.github.io/octave-llms/" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://github.com/pr0m1th3as/octave-llms/issues" 23 | maintainers: 24 | - name: "Andreas Bertsatos" 25 | contact: "abertsatos@biol.uoa.gr" 26 | versions: 27 | - id: "0.1.2" 28 | date: "2025-10-28" 29 | sha256: "2822c72babfcb47013d4275e536bed6f60c3cd4bfe0956f7e22d8d67e10acfe4" 30 | url: "https://github.com/pr0m1th3as/octave-llms/releases/download/release-0.1.2/octave-llms-0.1.2.tar.gz" 31 | depends: 32 | - "octave (>= 9.1.0)" 33 | - "datatypes (>= 1.1.0)" 34 | - "pkg" 35 | - id: "0.1.1" 36 | date: "2025-10-21" 37 | sha256: "a3e7f04159ebce1189360852d6800a51bae921c2ce4a36e48848fd4b5fc711f1" 38 | url: "https://github.com/pr0m1th3as/octave-llms/releases/download/release-0.1.1/octave-llms-0.1.1.tar.gz" 39 | depends: 40 | - "octave (>= 9.1.0)" 41 | - "datatypes (>= 1.1.0)" 42 | - "pkg" 43 | - id: "0.1.0" 44 | date: "2025-10-15" 45 | sha256: "59593d29d8cec165f34b630771cbd319e11f0f9c87e3df6925b734a47f29715c" 46 | url: "https://github.com/pr0m1th3as/octave-llms/releases/download/release-0.1.0/octave-llms-0.1.0.tar.gz" 47 | depends: 48 | - "octave (>= 9.1.0)" 49 | - "datatypes (>= 1.1.0)" 50 | - "pkg" 51 | --- 52 | -------------------------------------------------------------------------------- /packages/optiminterp.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "optiminterp/" 4 | description: >- 5 | An optimal interpolation toolbox providing functions to perform a 6 | n-dimensional optimal interpolations of arbitrarily distributed data points. 7 | icon: "https://octave.sourceforge.io/pkg_icon/optiminterp.png" 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-3.0-or-later" 11 | url: "https://sourceforge.net/p/octave/optiminterp/ci/master/tree/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://sourceforge.net/p/octave/optiminterp/ci/master/tree/NEWS" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://sourceforge.net/p/octave/optiminterp/ci/master/tree/" 18 | - icon: "fas fa-th-list" 19 | label: "function reference" 20 | url: "https://octave.sourceforge.io/optiminterp/overview.html" 21 | - icon: "fas fa-bug" 22 | label: "report a problem" 23 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(optiminterp)" 24 | maintainers: 25 | - name: "Alexander Barth" 26 | contact: "barth.alexander@gmail.com" 27 | - name: "Aida Alvera-Azcárate" 28 | contact: "aalvera@marine.usf.edu" 29 | - name: "John Donoghue" 30 | contact: "john.donoghue@ieee.org" 31 | versions: 32 | - id: "0.3.7" 33 | date: "2021-11-12" 34 | sha256: "b9b87f88e665593398b1303a8497cf3a2b6e3412939f62db067c7eb6699212e8" 35 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/optiminterp-0.3.7.tar.gz" 36 | depends: 37 | - "octave (>= 4.0.0)" 38 | - "pkg" 39 | - id: "0.3.6" 40 | date: "2020-03-01" 41 | sha256: "8cfaa84e8c21ec93ce5bdae24655f446a7c0f93c4a7062b2b6ebb35ca590df16" 42 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/optiminterp-0.3.6.tar.gz" 43 | depends: 44 | - "octave (>= 3.6.0)" 45 | - "pkg" 46 | --- 47 | -------------------------------------------------------------------------------- /packages/fileio.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "fileio/" 4 | description: >- 5 | I/O function for files holding structured data, such as JSON and XML files. 6 | icon: 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "MIT" 10 | url: "https://github.com/reprostat/fileio/blob/master/COPYING" 11 | - icon: "fas fa-code-branch" 12 | label: "repository" 13 | url: "https://github.com/reprostat/fileio" 14 | - icon: "fas fa-bug" 15 | label: "report a problem" 16 | url: "https://github.com/reprostat/fileio/issues" 17 | maintainers: 18 | - name: "Tibor Auer" 19 | contact: "tibor.auer@gmail.com" 20 | versions: 21 | - id: "1.2.2" 22 | date: "2023-06-07" 23 | sha256: "ad382d4afb7438013af3de02a4b0f917edd62fc9dbcfd766eb3d8cc0643907cf" 24 | url: "https://github.com/reprostat/fileio/archive/refs/tags/1.2.2.tar.gz" 25 | depends: 26 | - "octave (>= 7.2.0)" 27 | - "pkg" 28 | - id: "1.2.1" 29 | date: "2023-05-27" 30 | sha256: "008e74ad6289f5feb0294d9960edbe22522ca64ed374513b25602c5a3211e2fb" 31 | url: "https://github.com/reprostat/fileio/archive/refs/tags/1.2.1.tar.gz" 32 | depends: 33 | - "octave (>= 7.2.0)" 34 | - "pkg" 35 | - id: "1.2.0" 36 | date: "2023-05-26" 37 | sha256: "f621280accdad3412d0732ed7e7d845c04b3f80ee209db8871bb28da1f0aa7b6" 38 | url: "https://github.com/reprostat/fileio/archive/refs/tags/1.2.0.tar.gz" 39 | depends: 40 | - "octave (>= 7.2.0)" 41 | - "pkg" 42 | - id: "1.1.1" 43 | date: "2023-05-16" 44 | sha256: "659cba2499ed570be31b5b18e76baafeca540562c1ee2da2a79becd95a712222" 45 | url: "https://github.com/reprostat/fileio/archive/refs/tags/1.1.1.tar.gz" 46 | depends: 47 | - "octave (>= 7.2.0)" 48 | - "pkg" 49 | - id: "1.1.0" 50 | date: "2023-05-01" 51 | sha256: "c984e160b15858f061d60bfaa72fa0b4bd80d0c34799ef0ac900e7b5f4a226cd" 52 | url: "https://github.com/reprostat/fileio/archive/refs/tags/1.1.0.tar.gz" 53 | depends: 54 | - "octave (>= 7.2.0)" 55 | - "pkg" 56 | --- 57 | -------------------------------------------------------------------------------- /packages/doctest.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "doctest/" 4 | description: >- 5 | Documentation tests. 6 | icon: "https://octave.sourceforge.io/pkg_icon/doctest.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "BSD-3-Clause" 10 | url: "https://github.com/gnu-octave/octave-doctest/blob/main/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://github.com/gnu-octave/octave-doctest/blob/main/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://github.com/gnu-octave/octave-doctest/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/doctest/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://github.com/gnu-octave/octave-doctest/issues" 23 | maintainers: 24 | - name: "Colin B. Macdonald" 25 | contact: "cbm@m.fsf.org" 26 | - name: "Michael Walter" 27 | contact: "michael.walter@gmail.com" 28 | versions: 29 | - id: "0.8.1" 30 | date: "2025-09-13" 31 | sha256: "766669827cf6bcd7750260ca869353656d5412f04d514bfead19f756c9d27ae9" 32 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/doctest-0.8.1.tar.gz" 33 | depends: 34 | - "octave (>= 4.2.0)" 35 | - "pkg" 36 | - id: "0.8.0" 37 | date: "2023-01-03" 38 | sha256: "fe85c9ecd9db6ddb157e134e614fed9246302a162ce7328c123c9b99b7f40a89" 39 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/doctest-0.8.0.tar.gz" 40 | depends: 41 | - "octave (>= 4.2.0)" 42 | - "pkg" 43 | - id: "0.7.0" 44 | date: "2018-03-23" 45 | sha256: "c44d2378d6241c87a88e878102c738e713169a3341d6ba735dc9e896e48f0942" 46 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/doctest-0.7.0.tar.gz" 47 | depends: 48 | - "octave (>= 4.2.0)" 49 | - "pkg" 50 | --- 51 | -------------------------------------------------------------------------------- /packages/splines.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "splines/" 4 | description: >- 5 | Additional spline functions 6 | icon: "https://octave.sourceforge.io/pkg_icon/splines.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later and public domain" 10 | url: "https://sourceforge.net/p/octave/splines/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/splines/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/splines/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/splines/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(splines)" 23 | maintainers: 24 | - name: "Nir Krakauer" 25 | contact: "splines@nirkrakauer.net" 26 | versions: 27 | - id: "1.3.5" 28 | date: "2023-05-05" 29 | sha256: "af886877797c3a9c8a36ce7d94613c1059f79fab4883429e7b32a3b01e03d7a6" 30 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/splines-1.3.5.tar.gz" 31 | depends: 32 | - "octave (>= 3.6.0)" 33 | - "pkg" 34 | - id: "1.3.4" 35 | date: "2021-02-23" 36 | sha256: "ae600b2732980f45037028f65c49a791ea8d3a1db3ead011732598a38c234385" 37 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/splines-1.3.4.tar.gz" 38 | depends: 39 | - "octave (>= 3.6.0)" 40 | - "pkg" 41 | - id: "1.3.3" 42 | date: "2019-10-17" 43 | sha256: "0a4bf9544b1fedb4aed4222eff1333928b0e3c903f140822eb857585e0d5919b" 44 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/splines-1.3.3.tar.gz" 45 | depends: 46 | - "octave (>= 3.6.0)" 47 | - "pkg" 48 | --- 49 | -------------------------------------------------------------------------------- /packages/general.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "general/" 4 | description: >- 5 | General tools for Octave. 6 | icon: "https://octave.sourceforge.io/pkg_icon/general.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later and BSD-3-Clause and public domain" 10 | url: "https://sourceforge.net/p/octave/general/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/general/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/general/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/general/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(general)" 23 | maintainers: 24 | - name: "Octave Forge" 25 | contact: "https://octave.discourse.group/" 26 | versions: 27 | - id: "2.1.3" 28 | date: "2023-10-09" 29 | sha256: "6a6b25266de16976807a1766ea3609c5c19997e82051c9c97378ba609dd09323" 30 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/general-2.1.3.tar.gz" 31 | depends: 32 | - "octave (>= 4.0.0)" 33 | - "pkg" 34 | - id: "2.1.2" 35 | date: "2022-01-11" 36 | sha256: "a30cd1a79743c62528dae46ebd4a83f848ae46a1c1dac3eaabc36662d42294cf" 37 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/general-2.1.2.tar.gz" 38 | depends: 39 | - "octave (>= 4.0.0)" 40 | - "pkg" 41 | - id: "2.1.1" 42 | date: "2020-02-25" 43 | sha256: "fbd09409950c8b95e02ccb3895ec78f52cc8589a08a65d8c512a7cacf567bb4a" 44 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/general-2.1.1.tar.gz" 45 | depends: 46 | - "octave (>= 4.0.0)" 47 | - "pkg" 48 | --- 49 | -------------------------------------------------------------------------------- /packages/quaternion.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "quaternion/" 4 | description: >- 5 | Quaternion package for GNU Octave, includes a quaternion class with 6 | overloaded operators. 7 | icon: "https://octave.sourceforge.io/pkg_icon/quaternion.png" 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-3.0-or-later" 11 | url: "https://sourceforge.net/p/octave/quaternion/ci/default/tree/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://sourceforge.net/p/octave/quaternion/ci/default/tree/NEWS" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://sourceforge.net/p/octave/quaternion/ci/default/tree/" 18 | - icon: "fas fa-th-list" 19 | label: "function reference" 20 | url: "https://octave.sourceforge.io/quaternion/overview.html" 21 | - icon: "fas fa-bug" 22 | label: "report a problem" 23 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(quaternion)" 24 | maintainers: 25 | - name: "Lukas Reichlin" 26 | contact: "lukas.reichlin@gmail.com" 27 | versions: 28 | - id: "2.4.2" 29 | date: "2025-12-10" 30 | sha256: "4bcb64743972693f04ed6d2fea4906b38a9353f1b80c6e6f2d0bc0f6f8cf3a07" 31 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/quaternion-2.4.2.tar.gz" 32 | depends: 33 | - "octave (>= 4.4.0)" 34 | - "pkg" 35 | - id: "2.4.1" 36 | date: "2025-11-24" 37 | sha256: "918e6653b749b948e9aee6fe2d3735047e9819d1273fdc9d5f49515347e63981" 38 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/quaternion-2.4.1.tar.gz" 39 | depends: 40 | - "octave (>= 4.4.0)" 41 | - "pkg" 42 | - id: "2.4.0" 43 | date: "2015-03-21" 44 | sha256: 45 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/quaternion-2.4.0.tar.gz" 46 | depends: 47 | - "octave (>= 3.8.0)" 48 | - "pkg" 49 | --- 50 | -------------------------------------------------------------------------------- /packages/odbc.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "odbc/" 4 | description: >- 5 | Basic Octave implementation of the ODBC toolkit 6 | icon: "https://github.com/gnu-octave/octave-odbc/raw/main/doc/octave-odbc.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://github.com/gnu-octave/octave-odbc/blob/main/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://gnu-octave.github.io/octave-odbc/news/" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://github.com/gnu-octave/octave-odbc/" 17 | - icon: "fas fa-book" 18 | label: "package documentation" 19 | url: "https://gnu-octave.github.io/octave-odbc/" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://github.com/gnu-octave/octave-odbc/issues" 23 | maintainers: 24 | - name: "John Donoghue" 25 | contact: "john.donoghue@ieee.org" 26 | versions: 27 | - id: "0.0.4" 28 | date: "2025-10-11" 29 | sha256: "098262a4103098772e49b3dc5b73218258d0e4fa3df9e5e24c658b1493fb2e02" 30 | url: "https://github.com/gnu-octave/octave-odbc/releases/download/v0.0.4/octave-odbc-0.0.4.tar.gz" 31 | depends: 32 | - "octave (>= 6.0.0)" 33 | - "pkg" 34 | ubuntu2204: 35 | - "unixodbc-dev" 36 | - "libsqliteodbc" 37 | - id: "0.0.3" 38 | date: "2024-04-09" 39 | sha256: "3d2b4b5501208d9c91a7de8ad375d2e543724411f9af03a395c1f1564ef41b9e" 40 | url: "https://github.com/gnu-octave/octave-odbc/releases/download/v0.0.3/octave-odbc-0.0.3.tar.gz" 41 | depends: 42 | - "octave (>= 6.0.0)" 43 | - "pkg" 44 | ubuntu2204: 45 | - "unixodbc-dev" 46 | - "libsqliteodbc" 47 | - id: "0.0.2" 48 | date: "2024-04-03" 49 | sha256: "10be713558916b03325a87eab7b4064d8a269541b2b7575610f392d891740ff8" 50 | url: "https://github.com/gnu-octave/octave-odbc/releases/download/v0.0.2/octave-odbc-0.0.2.tar.gz" 51 | depends: 52 | - "octave (>= 6.0.0)" 53 | - "pkg" 54 | ubuntu2204: 55 | - "unixodbc-dev" 56 | - "libsqliteodbc" 57 | --- 58 | -------------------------------------------------------------------------------- /packages/strings.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "strings/" 4 | description: >- 5 | Additional functions for manipulation and analysis of strings. 6 | icon: "https://octave.sourceforge.io/pkg_icon/strings.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later and FreeBSD" 10 | url: "https://sourceforge.net/p/octave/strings/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/strings/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/strings/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/strings/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(strings)" 23 | maintainers: 24 | - name: "John Donoghue" 25 | contact: "john.donoghue@ieee.org" 26 | versions: 27 | - id: "1.3.1" 28 | date: "2023-06-09" 29 | sha256: "f65e5e620cf0e4af39b6b440256f5e318671bdfd110cdc43943d0cb70ad208b7" 30 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/strings-1.3.1.tar.gz" 31 | depends: 32 | - "octave (>= 3.8.0)" 33 | - "pkg" 34 | - id: "1.3.0" 35 | date: "2022-06-28" 36 | sha256: "6a0a530fd14dd6a769f8161d5b97fe199574cea64c37378e77299da36ee64ce2" 37 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/strings-1.3.0.tar.gz" 38 | depends: 39 | - "octave (>= 3.8.0)" 40 | - "pkg" 41 | - id: "1.2.0" 42 | date: "2015-06-06" 43 | sha256: "cfe2702d9e1b69e1fc6bee9a8fab8bb3d63a42d74e763538687d0dbcdd5619ac" 44 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/strings-1.2.0.tar.gz" 45 | depends: 46 | - "octave (>= 3.8.0)" 47 | - "pkg" 48 | --- 49 | -------------------------------------------------------------------------------- /packages/interval.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "interval/" 4 | description: >- 5 | Real-valued interval arithmetic. Handle uncertainties, estimate arithmetic 6 | errors, computer-assisted proofs, constraint programming, and verified 7 | computing. 8 | icon: "https://octave.sourceforge.io/pkg_icon/interval.png" 9 | links: 10 | - icon: "far fa-copyright" 11 | label: "GPL-3.0-or-later" 12 | url: "https://sourceforge.net/p/octave/interval/ci/default/tree/doc/COPYING.texinfo" 13 | - icon: "fas fa-rss" 14 | label: "news" 15 | url: "https://sourceforge.net/p/octave/interval/ci/default/tree/doc/NEWS.texinfo" 16 | - icon: "fas fa-code-branch" 17 | label: "repository" 18 | url: "https://sourceforge.net/p/octave/interval/ci/default/tree/" 19 | - icon: "fas fa-th-list" 20 | label: "function reference" 21 | url: "https://octave.sourceforge.io/interval/overview.html" 22 | - icon: "fas fa-book" 23 | label: "package documentation" 24 | url: "https://octave.sourceforge.io/interval/package_doc/" 25 | - icon: "fas fa-bug" 26 | label: "report a problem" 27 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(interval)" 28 | maintainers: 29 | - name: "Oliver Heimlich" 30 | contact: "oheim@posteo.de" 31 | versions: 32 | - id: "3.2.1" 33 | date: "2022-01-28" 34 | sha256: "38e526427375713229ab3d86a5fe3f5a08550747d8420541706fdea9093fdce8" 35 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/interval-3.2.1.tar.gz" 36 | depends: 37 | - "octave (>= 4.2.0)" 38 | - "pkg" 39 | ubuntu2204: 40 | - "libmpfr-dev" 41 | - id: "3.2.0" 42 | date: "2018-07-01" 43 | sha256: "40dca588e32167484a3e9d1c77858db11f4eacb5ea92dcc37c78144fd6f91a28" 44 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/interval-3.2.0.tar.gz" 45 | depends: 46 | - "octave (>= 3.8.0)" 47 | - "pkg" 48 | ubuntu2204: 49 | - "libmpfr-dev" 50 | --- 51 | -------------------------------------------------------------------------------- /assets/get_stars.rb: -------------------------------------------------------------------------------- 1 | # This is a simple web scraping mechanism to patch all 'packages/*.yaml' 2 | # with a star count from the respective repository hosting service 3 | # (e.g. GitHub, GitLab) during the build time. 4 | # 5 | # NOTE: It is NOT intended to save this changing information to the original 6 | # YAML files. Any star count given in them will be overwritten. 7 | 8 | require 'nokogiri' 9 | require 'open-uri' 10 | require 'yaml' 11 | 12 | def get_github_stars (url) 13 | html = URI.open(url + '/stargazers') 14 | doc = Nokogiri::HTML(html) 15 | return doc.css('nav.tabnav-tabs span.Counter').text.to_i 16 | end 17 | 18 | def get_gitlab_stars (url) 19 | html = URI.open(url) 20 | doc = Nokogiri::HTML(html) 21 | return doc.css('a.star-count').text.to_i 22 | end 23 | 24 | def get_star_count_from_url (url) 25 | stars = -1 # Means no star count was found. 26 | begin 27 | if url.include? 'github.com' 28 | stars = get_github_stars(url) 29 | puts ' --> Found %d GitHub stars' % [stars] 30 | elsif url.include? 'gitlab.com' 31 | stars = get_gitlab_stars(url) 32 | puts ' --> Found %d GitLab stars' % [stars] 33 | else 34 | puts ' --> No stars' 35 | end 36 | rescue OpenURI::HTTPError 37 | puts ' --> No stars, bad URL "%s"' % [url] 38 | end 39 | return stars 40 | end 41 | 42 | # Patch all package YAML-files with star count if possible. 43 | Dir.glob('packages/*.yaml') do |filename| 44 | puts filename 45 | data = YAML.load(File.read(filename)) 46 | 47 | # Find repository URL 48 | data['links'].each do |link| 49 | if link['label'] == 'repository' 50 | stars = get_star_count_from_url (link['url']) 51 | 52 | # Append star count to package YAML-file. 53 | open(filename, 'r+') { |f| 54 | last_line = 0 55 | f.each { last_line = f.pos unless f.eof? } 56 | f.seek(last_line, IO::SEEK_SET) 57 | f.puts 'stars: %d' % [stars] 58 | f.puts '---' 59 | } 60 | end 61 | end 62 | end 63 | 64 | -------------------------------------------------------------------------------- /packages/struct.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "struct/" 4 | description: >- 5 | Additional structure manipulation functions. 6 | icon: "https://octave.sourceforge.io/pkg_icon/struct.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://sourceforge.net/p/octave/struct/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/struct/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/struct/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/struct/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(struct)" 23 | maintainers: 24 | - name: "Etienne Grossmann" 25 | contact: "etienne@egdn.net" 26 | - name: "Olaf Till" 27 | contact: "i7tiol@t-online.de" 28 | versions: 29 | - id: "1.0.18" 30 | date: "2022-04-10" 31 | sha256: "fccea7dd84c1104ed3babb47a28f05e0012a89c284f39ab094090450915294ce" 32 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/struct-1.0.18.tar.gz" 33 | depends: 34 | - "octave (>= 4.0.0)" 35 | - "pkg" 36 | - id: "1.0.17" 37 | date: "2021-02-16" 38 | sha256: "0137bbb5df650f29104f6243502f3a2302aaaa5e42ea9f02d8a3943aaf668433" 39 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/struct-1.0.17.tar.gz" 40 | depends: 41 | - "octave (>= 4.0.0)" 42 | - "pkg" 43 | - id: "1.0.16" 44 | date: "2019-03-12" 45 | sha256: "f56dc248aff469562bd82e74a60874e89e13fb10e852e709650c38234206a23f" 46 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/struct-1.0.16.tar.gz" 47 | depends: 48 | - "octave (>= 4.0.0)" 49 | - "pkg" 50 | --- 51 | -------------------------------------------------------------------------------- /packages/pkg-example.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "pkg-example/" 4 | description: >- 5 | Example package to demonstrate the creation process of an Octave package. 6 | Keep this description brief. Describe the major features in the first two 7 | lines (160 characters). 8 | 9 | Multiple lines are allowed. Each line may have maximal 80 characters. 10 | Exceptions are URLs. Paragraphs, blank lines, and line breaks are ignored 11 | and replaced by spaces. 12 | icon: "https://raw.githubusercontent.com/gnu-octave/pkg-example/main/doc/icon.png" 13 | links: 14 | - icon: "far fa-copyright" 15 | label: "GPL-3.0-or-later" 16 | url: "https://github.com/gnu-octave/pkg-example/blob/main/COPYING" 17 | - icon: "fas fa-rss" 18 | label: "news" 19 | url: "https://github.com/gnu-octave/pkg-example/releases/" 20 | - icon: "fas fa-code-branch" 21 | label: "repository" 22 | url: "https://github.com/gnu-octave/pkg-example/" 23 | - icon: "fas fa-book" 24 | label: "package documentation" 25 | url: "https://github.com/gnu-octave/pkg-example/blob/main/README.md" 26 | - icon: "fas fa-bug" 27 | label: "report a problem" 28 | url: "https://github.com/gnu-octave/pkg-example/issues" 29 | maintainers: 30 | - name: "Kai T. Ohlhus" 31 | contact: "k.ohlhus@gmail.com" 32 | - name: "Another Contactless Developer" 33 | contact: 34 | versions: 35 | - id: "1.1.0" 36 | date: "2021-04-06" 37 | sha256: "bff441755f0d68596f2efd027fe637b5b6c52b722ffd6255bdb8a5f34ab4ef2a" 38 | url: "https://github.com/gnu-octave/pkg-example/archive/1.1.0.tar.gz" 39 | depends: 40 | - "octave (>= 4.0.0)" 41 | - "pkg" 42 | - id: "1.0.0" 43 | date: "2020-09-02" 44 | sha256: "6b7e4b6bef5a681cb8026af55c401cee139b088480f0da60143e02ec8880cb51" 45 | url: "https://github.com/gnu-octave/pkg-example/archive/1.0.0.tar.gz" 46 | depends: 47 | - "octave (>= 4.0.0)" 48 | - "pkg" 49 | - id: "dev" 50 | date: 51 | sha256: 52 | url: "https://github.com/gnu-octave/pkg-example/archive/main.zip" 53 | depends: 54 | - "octave (>= 5.2.0)" 55 | - "pkg" 56 | --- 57 | -------------------------------------------------------------------------------- /packages/octave_mermaid_js.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "octave_mermaid_js/" 4 | description: >- 5 | The octave_mermaid_js package is used to generate, 6 | show and save a diagram from a Mermaid graph description 7 | string. 8 | You can use octave_mermaid_js to create flowcharts, 9 | sequence diagrams, class diagrams, state diagrams, 10 | ER diagram, user journey diagrams, Gantt charts, 11 | pie charts, quadrant charts, requirement diagrams, 12 | Git Graphs, C4 Diagrams, Mindmaps, timelines, ZenUML, 13 | Sankey diagrams, XY Charts, Block Diagrams, 14 | packet diagrams, Mermaid’s Kanban diagrams, 15 | architecture diagrams, radar diagrams and 16 | treemap diagrams. 17 | icon: "https://avatars.githubusercontent.com/u/184102101?v=4" 18 | links: 19 | - icon: "far fa-copyright" 20 | label: "GPL-3.0-or-later" 21 | url: "https://github.com/CNOCTAVE/octave_mermaid_js/blob/main/COPYING" 22 | - icon: "fas fa-rss" 23 | label: "news" 24 | url: "https://github.com/CNOCTAVE/octave_mermaid_js/blob/main/NEWS" 25 | - icon: "fas fa-code-branch" 26 | label: "repository" 27 | url: "https://github.com/CNOCTAVE/octave_mermaid_js" 28 | - icon: "fas fa-th-list" 29 | label: "function reference" 30 | url: "https://cnoctave.github.io/octave_mermaid_js/index.html" 31 | - icon: "fas fa-bug" 32 | label: "report a problem" 33 | url: "https://github.com/CNOCTAVE/octave_mermaid_js/issues" 34 | maintainers: 35 | - name: "CNOCTAVE" 36 | contact: "cnoctave@qq.com" 37 | - name: "Yu Hongbo" 38 | contact: "yuhongbo@member.fsf.org" 39 | versions: 40 | - id: "1.0.0" 41 | date: "2025-10-10" 42 | sha256: "047d80365fb454e5afb0f04ff91df8ca6942b18ca668b3b7c1058ff2b5de717a" 43 | url: "https://github.com/CNOCTAVE/octave_mermaid_js/releases/download/1.0.0/octave_mermaid_js.tar.gz" 44 | depends: 45 | - "octave (>= 8.0.0)" 46 | - "pkg" 47 | fedora41w: 48 | - "python3-pillow" 49 | - "python3-matplotlib" 50 | - "python3-requests" 51 | fedora42w: 52 | - "python3-pillow" 53 | - "python3-matplotlib" 54 | - "python3-requests" 55 | --- 56 | -------------------------------------------------------------------------------- /packages/matgeom.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "matgeom/" 4 | description: >- 5 | Geometry toolbox for 2D/3D geometric computing. 6 | icon: 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "BSD-2-Clause-FreeBSD" 10 | url: "https://sourceforge.net/p/octave/matgeom/ci/master/tree/LICENSE.txt" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/matgeom/ci/master/tree/CHANGELOG.md" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/matgeom/ci/master/tree/" 17 | - icon: "fas fa-code-branch" 18 | label: "repository (upstream)" 19 | url: "https://github.com/mattools/matGeom/" 20 | - icon: "fas fa-th-list" 21 | label: "function reference" 22 | url: "https://octave.sourceforge.io/matgeom/overview.html" 23 | - icon: "fas fa-bug" 24 | label: "report a problem" 25 | url: "https://github.com/mattools/matGeom/issues" 26 | maintainers: 27 | - name: "David Legland" 28 | contact: "david.legland@nantes.inra.fr" 29 | - name: "Juan Pablo Carbajal" 30 | contact: "ajuanpi+dev@gmail.com" 31 | versions: 32 | - id: "1.2.4" 33 | date: "2024-03-19" 34 | sha256: "6b344f870315bf2742ca88c0feb5c3da8835b4f4cbd2f8a2d793af798405f920" 35 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/matgeom-1.2.4.tar.gz" 36 | depends: 37 | - "octave (>= 4.2.0)" 38 | - "pkg" 39 | - id: "1.2.3" 40 | date: "2021-06-01" 41 | sha256: "3c3a4d45103a64058b1af6afe566636331ba5c55ec532d479cd0464b7c33068b" 42 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/matgeom-1.2.3.tar.gz" 43 | depends: 44 | - "octave (>= 4.2.0)" 45 | - "pkg" 46 | - id: "1.2.2" 47 | date: "2019-11-20" 48 | sha256: "7ea1c8e70c2b3df6460cd91952f7203a50ed0346f99da73cc2b08e1920adae17" 49 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/matgeom-1.2.2.tar.gz" 50 | depends: 51 | - "octave (>= 4.2.0)" 52 | - "pkg" 53 | --- 54 | -------------------------------------------------------------------------------- /packages/msh.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "msh/" 4 | description: >- 5 | Create and manage triangular and tetrahedral meshes for Finite Element or 6 | Finite Volume PDE solvers. Use a mesh data structure compatible with 7 | PDEtool. Rely on gmsh for unstructured mesh generation. 8 | icon: "https://octave.sourceforge.io/pkg_icon/msh.png" 9 | links: 10 | - icon: "far fa-copyright" 11 | label: "GPL-2.0-or-later" 12 | url: "https://github.com/carlodefalco/msh/blob/master/COPYING" 13 | - icon: "fas fa-rss" 14 | label: "news" 15 | url: "https://github.com/carlodefalco/msh/blob/master/NEWS" 16 | - icon: "fas fa-code-branch" 17 | label: "repository" 18 | url: "https://github.com/carlodefalco/msh" 19 | - icon: "fas fa-th-list" 20 | label: "function reference" 21 | url: "https://octave.sourceforge.io/msh/overview.html" 22 | - icon: "fas fa-bug" 23 | label: "report a problem" 24 | url: "https://github.com/carlodefalco/msh/issues" 25 | maintainers: 26 | - name: "Carlo de Falco" 27 | contact: 28 | - name: "Massimiliano Culpo" 29 | contact: 30 | versions: 31 | - id: "1.0.12" 32 | date: "2022-07-22" 33 | sha256: "ef16c1f915eae5213b29ee6b3704a8fe6a9d4994f308b5d1852e3375f1b3e79b" 34 | url: "https://github.com/carlodefalco/msh/archive/refs/tags/v1.0.12.tar.gz" 35 | depends: 36 | - "octave (>= 3.0.0)" 37 | - "splines" 38 | - "pkg" 39 | ubuntu2204: 40 | - "gmsh" 41 | - id: "1.0.11" 42 | date: "2022-07-22" 43 | sha256: "4c1746751e42a23c1ef6a8e075738ab44dec6dcf163a21682ec0a02f3aab5739" 44 | url: "https://github.com/carlodefalco/msh/archive/refs/tags/v1.0.11.tar.gz" 45 | depends: 46 | - "octave (>= 3.0.0)" 47 | - "splines" 48 | - "pkg" 49 | ubuntu2204: 50 | - "gmsh" 51 | - id: "1.0.10" 52 | date: "2014-02-21" 53 | sha256: "dfbdd5bdef17b3f5b2bdda0f82143bc5370a062168a796ff6281079f6ec665d5" 54 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/msh-1.0.10.tar.gz" 55 | depends: 56 | - "octave (>= 3.0.0)" 57 | - "splines" 58 | - "pkg" 59 | ubuntu2204: 60 | - "gmsh" 61 | --- 62 | -------------------------------------------------------------------------------- /packages/raspi.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "raspi/" 4 | description: >- 5 | Basic Octave implementation of the matlab raspi extension, 6 | allowing communication to a Raspberry Pi board to control its 7 | hardware. 8 | icon: "https://sourceforge.net/p/octave-raspberrypi/code/ci/default/tree/doc/raspi-logo.png?format=raw" 9 | links: 10 | - icon: "far fa-copyright" 11 | label: "GPL-3.0-or-later" 12 | url: "https://sourceforge.net/p/octave-raspberrypi/code/ci/default/tree/COPYING" 13 | - icon: "fas fa-rss" 14 | label: "news" 15 | url: "https://sourceforge.net/p/octave-raspberrypi/code/ci/default/tree/NEWS" 16 | - icon: "fas fa-code-branch" 17 | label: "repository" 18 | url: "https://sourceforge.net/p/octave-raspberrypi/code/ci/default/tree" 19 | - icon: "fas fa-book" 20 | label: "package documentation" 21 | url: "https://sourceforge.net/p/octave-raspberrypi/code/ci/default/tree/README.md" 22 | - icon: "fas fa-bug" 23 | label: "report a problem" 24 | url: "https://sourceforge.net/p/octave-raspberrypi/tickets/" 25 | maintainers: 26 | - name: "John Donoghue" 27 | contact: "john.donoghue@ieee.org" 28 | versions: 29 | - id: "0.0.3" 30 | date: "2022-03-21" 31 | sha256: "b27374c93c9d7f4248b8028c37756171c13c317a9e05e7b9a7b062cfde1c683f" 32 | url: "https://downloads.sourceforge.net/project/octave-raspberrypi/v0.0.3/raspi-0.0.3.tar.gz" 33 | depends: 34 | - "octave (>= 4.4.0)" 35 | - "instrument-control (>= 0.4.0)" 36 | - "pkg" 37 | - id: "0.0.2" 38 | date: "2021-12-06" 39 | sha256: "7c93c374f9980cfbf4d047d8cc998cf97521c2340545fc95ebcb18c58d4c7cef" 40 | url: "https://downloads.sourceforge.net/project/octave-raspberrypi/v0.0.2/raspi-0.0.2.tar.gz" 41 | depends: 42 | - "octave (>= 4.4.0)" 43 | - "instrument-control (>= 0.4.0)" 44 | - "pkg" 45 | - id: "0.0.1" 46 | date: "2020-12-11" 47 | sha256: "d283c87ea097cd7be3d5bd2f78ff6bc31912d91200860f92e69bdb6eb0238623" 48 | url: "https://downloads.sourceforge.net/project/octave-raspberrypi/v0.0.1/raspi-0.0.1.tar.gz" 49 | depends: 50 | - "octave (>= 4.4.0)" 51 | - "instrument-control (>= 0.4.0)" 52 | - "pkg" 53 | --- 54 | -------------------------------------------------------------------------------- /packages/parallel.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "parallel/" 4 | description: >- 5 | Parallel execution package. 6 | icon: "https://octave.sourceforge.io/pkg_icon/parallel.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://octave.sourceforge.io/parallel/4.0.2/COPYING.html" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://octave.sourceforge.io/parallel/4.0.2/NEWS.html" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/parallel/ci/default/tree/" 17 | - icon: "fas fa-book" 18 | label: "package documentation" 19 | url: "https://octave.sourceforge.io/parallel/4.0.2/package_doc/" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(parallel)" 23 | maintainers: 24 | - name: "Hayato Fujiwara" 25 | contact: 26 | - name: "Jaroslav Hajek" 27 | contact: 28 | - name: "Olaf Till" 29 | contact: "i7tiol@t-online.de" 30 | versions: 31 | - id: "4.0.2" 32 | date: "2023-09-09" 33 | sha256: "1a0308ea4e2df8065f626164a94d842dd4db88a728a3c67284b93164dd33320b" 34 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/parallel-4.0.2.tar.gz" 35 | depends: 36 | - "octave (>= 4.0.0)" 37 | - "struct (>= 1.0.12)" 38 | - "pkg" 39 | - id: "4.0.1" 40 | date: "2021-03-16" 41 | sha256: "ea86535e167351f3214feea4d0524626d07e211d1e84d94cbf230d41b2e01bc1" 42 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/parallel-4.0.1.tar.gz" 43 | depends: 44 | - "octave (>= 4.0.0)" 45 | - "struct (>= 1.0.12)" 46 | - "pkg" 47 | - id: "4.0.0" 48 | date: "2020-04-11" 49 | sha256: "28eeeaa6f726e4a59cd0c979ac4f0925f04e9bd4eee88896cd8ce91cc054b772" 50 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/parallel-4.0.0.tar.gz" 51 | depends: 52 | - "octave (>= 4.0.0)" 53 | - "struct (>= 1.0.12)" 54 | - "pkg" 55 | --- 56 | -------------------------------------------------------------------------------- /packages/bim.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "bim/" 4 | description: >- 5 | Solving Diffusion Advection Reaction (DAR) Partial Differential Equations. 6 | icon: "https://octave.sourceforge.io/pkg_icon/bim.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-2.0-or-later" 10 | url: "https://github.com/carlodefalco/bim/blob/master/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://github.com/carlodefalco/bim/blob/master/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://github.com/carlodefalco/bim" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://carlodefalco.github.io/bim/" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://github.com/carlodefalco/bim/issues" 23 | maintainers: 24 | - name: "Carlo de Falco" 25 | contact: "carlo.defalco@polimi.it" 26 | versions: 27 | - id: "1.1.8" 28 | date: "2025-06-28" 29 | sha256: "c195c081fbc5b7cc7d3146ed740d8e985a48f3cdca04e06bee385feed4dd55d6" 30 | url: "https://github.com/carlodefalco/bim/archive/refs/tags/v1.1.8.tar.gz" 31 | depends: 32 | - "octave (>= 3.8.0)" 33 | - "fpl" 34 | - "msh" 35 | - "pkg" 36 | - id: "1.1.7" 37 | date: "2025-05-29" 38 | sha256: "f4d5bc7c2633320c91f96cc42c7843097bc2f550008a914ebfb487016b9b9f22" 39 | url: "https://github.com/carlodefalco/bim/archive/refs/tags/v1.1.7.tar.gz" 40 | depends: 41 | - "octave (>= 3.8.0)" 42 | - "fpl" 43 | - "msh" 44 | - "pkg" 45 | - id: "1.1.6" 46 | date: "2022-07-22" 47 | sha256: "a6feb8b30acf960a29065b9ba4095fa03f4a265392805f7075b81d1c74dcafd7" 48 | url: "https://github.com/carlodefalco/bim/archive/refs/tags/v1.1.6.tar.gz" 49 | depends: 50 | - "octave (>= 3.8.0)" 51 | - "fpl" 52 | - "msh" 53 | - "pkg" 54 | - id: "1.1.5" 55 | date: "2014-10-17" 56 | sha256: "e899c65e6c7fb0babdb0e2fb7990bae1f6ccf9b3dc1e19b4f58501242be2e078" 57 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/bim-1.1.5.tar.gz" 58 | depends: 59 | - "octave (>= 3.8.0)" 60 | - "fpl" 61 | - "msh" 62 | - "pkg" 63 | --- 64 | -------------------------------------------------------------------------------- /packages/nurbs.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "nurbs/" 4 | description: >- 5 | Collection of routines for the creation, and manipulation of Non-Uniform 6 | Rational B-Splines (NURBS), based on the NURBS toolbox. 7 | icon: "https://octave.sourceforge.io/pkg_icon/nurbs.png" 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-3.0-or-later" 11 | url: "https://sourceforge.net/p/octave/nurbs/ci/default/tree/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://sourceforge.net/p/octave/nurbs/ci/default/tree/NEWS" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://sourceforge.net/p/octave/nurbs/ci/default/tree/" 18 | - icon: "fas fa-th-list" 19 | label: "function reference" 20 | url: "https://octave.sourceforge.io/nurbs/overview.html" 21 | - icon: "fas fa-bug" 22 | label: "report a problem" 23 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(nurbs)" 24 | maintainers: 25 | - name: "Mark Spink" 26 | contact: 27 | - name: "Daniel Claxton" 28 | contact: 29 | - name: "Carlo de Falco" 30 | contact: 31 | - name: "Rafael Vazquez" 32 | contact: 33 | versions: 34 | - id: "1.4.4" 35 | date: "2025-02-10" 36 | sha256: "41f175b6ef73fc54163438ab46ce4e3f721124e1a4911da59c710b9f722d9276" 37 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/nurbs-1.4.4.tar.gz" 38 | depends: 39 | - "octave (>= 5.1.0)" 40 | - "pkg" 41 | - id: "1.4.3" 42 | date: "2021-03-29" 43 | sha256: "a74666a1e204b9feda22c9792b87939239221fd816383bc39f75db72b62a209b" 44 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/nurbs-1.4.3.tar.gz" 45 | depends: 46 | - "octave (>= 5.1.0)" 47 | - "pkg" 48 | - id: "1.3.13" 49 | date: "2017-03-28" 50 | sha256: "dbbfe7072750330e61040e3a9cf6967733229c3272fb4115bb83dd616aa37e7e" 51 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/nurbs-1.3.13.tar.gz" 52 | depends: 53 | - "octave (>= 3.8.0)" 54 | - "pkg" 55 | --- 56 | -------------------------------------------------------------------------------- /packages/queueing.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "queueing/" 4 | description: >- 5 | The queueing package provides functions for queueing 6 | networks and Markov chains analysis. This package can be used to 7 | compute steady-state performance measures for open, closed and mixed 8 | networks with single or multiple job classes. Mean Value Analysis 9 | (MVA), convolution, and various bounding techniques are 10 | implemented. Furthermore, several transient and steady-state 11 | performance measures for Markov chains can be computed, such as state 12 | occupancy probabilities, mean time to absorption, time-averaged 13 | sojourn times and so forth. Discrete- and continuous-time Markov 14 | chains are supported. 15 | icon: "https://raw.githubusercontent.com/mmarzolla/queueing/master/doc/icon.png" 16 | links: 17 | - icon: "far fa-copyright" 18 | label: "GPL-3.0-or-later" 19 | url: "https://github.com/mmarzolla/queueing/blob/master/COPYING" 20 | - icon: "fas fa-rss" 21 | label: "news" 22 | url: "https://github.com/mmarzolla/queueing/releases/" 23 | - icon: "fas fa-code-branch" 24 | label: "repository" 25 | url: "https://github.com/mmarzolla/queueing/" 26 | - icon: "fas fa-book" 27 | label: "package documentation" 28 | url: "https://github.com/mmarzolla/queueing/blob/master/README.md" 29 | - icon: "fas fa-bug" 30 | label: "report a problem" 31 | url: "https://github.com/mmarzolla/queueing/issues" 32 | maintainers: 33 | - name: "Moreno Marzolla" 34 | contact: "moreno.marzolla@unibo.it" 35 | versions: 36 | - id: "1.2.8" 37 | date: "2024-05-13" 38 | sha256: "90919445362283e6889a78d7bbc95dcaa140243a95f9fa54cd1fa1e8e76fc333" 39 | url: "https://github.com/mmarzolla/queueing/releases/download/1.2.8/queueing-1.2.8.tar.gz" 40 | depends: 41 | - "octave (>= 4.0.0)" 42 | - "pkg" 43 | - id: "1.2.7" 44 | date: "2020-03-21" 45 | sha256: "cd54eb148a9dfc1268c040645727bd1bbafc8932cb2d6e5c6bf5e110cf111cfa" 46 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/queueing-1.2.7.tar.gz" 47 | depends: 48 | - "octave (>= 4.0.0)" 49 | - "pkg" 50 | --- 51 | -------------------------------------------------------------------------------- /packages/mboct-mbdyn-pkg.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "mboct-mbdyn-pkg/" 4 | description: >- 5 | This package belongs to a suite of packages which can be used 6 | for pre- and postprocessing of flexible bodies in MBDyn (www.mbdyn.org) 7 | with GNU-Octave. It contains interfaces to the multibody dynamics 8 | software MBDyn (www.mbdyn.org). 9 | icon: "https://avatars.githubusercontent.com/u/61900614?v=4" 10 | links: 11 | - icon: "far fa-copyright" 12 | label: "GPL-3.0-or-later" 13 | url: "https://github.com/octave-user/mboct-mbdyn-pkg/blob/master/COPYING" 14 | - icon: "fas fa-rss" 15 | label: "news" 16 | url: 17 | - icon: "fas fa-code-branch" 18 | label: "repository" 19 | url: "https://github.com/octave-user/mboct-mbdyn-pkg" 20 | - icon: "fas fa-th-list" 21 | label: "function reference" 22 | url: "https://octave-user.github.io/mboct-mbdyn-pkg/mboct-mbdyn-pkg" 23 | - icon: "fas fa-bug" 24 | label: "report a problem" 25 | url: "https://github.com/octave-user/mboct-mbdyn-pkg/issues" 26 | maintainers: 27 | - name: "Reinhard Resch" 28 | contact: "octave-user@a1.net" 29 | versions: 30 | - id: "0.1.1" 31 | date: "2025-08-24" 32 | sha256: "9b24940378e6f36186f1f607b5e2421680e227a3602256445e078ba8c615cca6" 33 | url: "https://github.com/octave-user/mboct-mbdyn-pkg/releases/download/0.1.1/mboct-mbdyn-pkg-0.1.1.tar.gz" 34 | depends: 35 | - "octave (>= 5.1.0)" 36 | - "pkg" 37 | - "mboct-octave-pkg (>=0.1.0)" 38 | - "mboct-numerical-pkg (>=0.1.0)" 39 | - "nurbs (>=1.3)" 40 | ubuntu2204: 41 | - "libmkl-full-dev" 42 | - "libmetis-dev" 43 | - "libgtest-dev" 44 | - "libmumps-seq-dev" 45 | - id: "0.1.0" 46 | date: "2025-08-24" 47 | sha256: "7c3031cd4d6f23c35ddcae07ff74b5ea6818e937daaab7f166fd71c11db56a7d" 48 | url: "https://github.com/octave-user/mboct-mbdyn-pkg/releases/download/0.1.0/mboct-mbdyn-pkg-0.1.0.tar.gz" 49 | depends: 50 | - "octave (>= 5.1.0)" 51 | - "pkg" 52 | - "mboct-octave-pkg (>=0.1.0)" 53 | - "mboct-numerical-pkg (>=0.1.0)" 54 | - "nurbs (>=1.3)" 55 | ubuntu2204: 56 | - "libmkl-full-dev" 57 | - "libmetis-dev" 58 | - "libgtest-dev" 59 | - "libmumps-seq-dev" 60 | --- 61 | -------------------------------------------------------------------------------- /packages/ncarray.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "ncarray/" 4 | description: >- 5 | Access a single or a collection of NetCDF files as a multi-dimensional array. 6 | icon: "https://octave.sourceforge.io/pkg_icon/ncarray.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://sourceforge.net/p/octave/ncarray/ci/master/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/ncarray/ci/master/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/ncarray/ci/master/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/ncarray/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(ncarray)" 23 | maintainers: 24 | - name: "Alexander Barth" 25 | contact: "barth.alexander@gmail.com" 26 | - name: "John Donoghue" 27 | contact: "john.donoghue@ieee.org" 28 | versions: 29 | - id: "1.0.6" 30 | date: "2024-04-13" 31 | sha256: "5ba2f612c9bb01dce7b53edc8a62b295b78a61c6562a11e29bde8de5d33faa81" 32 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/ncarray-1.0.6.tar.gz" 33 | depends: 34 | - "octave (>= 3.4.0)" 35 | - "netcdf (>= 1.0.2)" 36 | - "statistics (>= 1.0.6)" 37 | - "pkg" 38 | - id: "1.0.5" 39 | date: "2022-09-13" 40 | sha256: "1e14162d403feb0a988ba4cfdcf0be376ce08b85288c3c5b1bda6043315a43c7" 41 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/ncarray-1.0.5.tar.gz" 42 | depends: 43 | - "octave (>= 3.4.0)" 44 | - "netcdf (>= 1.0.2)" 45 | - "statistics (>= 1.0.6)" 46 | - "pkg" 47 | - id: "1.0.4" 48 | date: "2016-11-29" 49 | sha256: 50 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/ncarray-1.0.4.tar.gz" 51 | depends: 52 | - "octave (>= 3.4.0)" 53 | - "netcdf (>= 1.0.2)" 54 | - "statistics (>= 1.0.6)" 55 | - "pkg" 56 | --- 57 | -------------------------------------------------------------------------------- /packages/ga.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "ga/" 4 | description: >- 5 | Genetic optimization code. 6 | icon: "https://octave.sourceforge.io/pkg_icon/ga.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://sourceforge.net/p/octave/ga/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/ga/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/ga/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/ga/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(ga)" 23 | maintainers: 24 | - name: "Luca Favatella" 25 | contact: "slackydeb@gmail.com" 26 | versions: 27 | - id: "0.10.4" 28 | date: "2024-05-07" 29 | sha256: "86cae3876ad91613fa580faa68a8e219f2640ed4f69d395794aaf78c0279638e" 30 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/ga-0.10.4.tar.gz" 31 | depends: 32 | - "octave (>= 3.4.0)" 33 | - "pkg" 34 | - id: "0.10.3" 35 | date: "2022-01-14" 36 | sha256: "71b3fbb9cb9aec37712cbe36d883718d9c73ff1d691e822afa3923aed7da69b1" 37 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/ga-0.10.3.tar.gz" 38 | depends: 39 | - "octave (>= 3.4.0)" 40 | - "pkg" 41 | - id: "0.10.2" 42 | date: "2020-12-02" 43 | sha256: "3bc73a5e6df46cae132538814dec9fdd4f87dd0f82bf022bdd8a9c6089fdaa68" 44 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/ga-0.10.2.tar.gz" 45 | depends: 46 | - "octave (>= 3.4.0)" 47 | - "pkg" 48 | - id: "0.10.1" 49 | date: "2019-06-04" 50 | sha256: "6d6ca5fece43958e4ad5a5c88dccebf5976d5b29f21b7bab1608bcd8af0e7202" 51 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/ga-0.10.1.tar.gz" 52 | depends: 53 | - "octave (>= 3.4.0)" 54 | - "pkg" 55 | --- 56 | -------------------------------------------------------------------------------- /packages/ltfat.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "ltfat/" 4 | description: >- 5 | The Large Time/Frequency Analysis Toolbox (LTFAT) is a Matlab/Octave 6 | toolbox for working with time-frequency analysis and synthesis. 7 | It is intended both as an educational and a computational tool. 8 | The toolbox provides a large number of linear transforms including 9 | Gabor and wavelet transforms along with routines for constructing windows 10 | (filter prototypes) and routines for manipulating coefficients 11 | icon: "https://octave.sourceforge.io/pkg_icon/ltfat.png" 12 | links: 13 | - icon: "far fa-copyright" 14 | label: "GPL-3.0-or-later" 15 | url: "https://github.com/ltfat/ltfat/blob/master/COPYING" 16 | - icon: "fas fa-rss" 17 | label: "changelog" 18 | url: "https://github.com/ltfat/ltfat/blob/master/ChangeLog" 19 | - icon: "fas fa-code-branch" 20 | label: "repository" 21 | url: "https://github.com/ltfat/ltfat/" 22 | - icon: "fas fa-th-list" 23 | label: "documentation" 24 | url: "https://ltfat.org/doc/" 25 | - icon: "fas fa-bug" 26 | label: "report a problem" 27 | url: "https://github.com/ltfat/ltfat/issues" 28 | maintainers: 29 | - name: "Clara Hollomey" 30 | contact: "clara.hollomey@allthatsounds.com" 31 | - name: "Zdenek Prusa" 32 | contact: 33 | - name: "Peter L. Soendergaard" 34 | contact: "peter@sonderport.dk" 35 | versions: 36 | - id: "2.6.0" 37 | date: "2023-09-06" 38 | sha256: "14c0d9f171612c6eca0e8523b57bda7de920ead4a5b7005a3b4fbffe3333263e" 39 | url: "https://github.com/ltfat/ltfat/releases/download/v2.6.0/ltfat-2.6.0-of.tar.gz" 40 | depends: 41 | - "octave (>= 5.0.0)" 42 | - "pkg" 43 | - id: "2.5.0" 44 | date: "2022-05-24" 45 | sha256: "f00a840c47e06307ed2948fcca7150cc16b71b7cd376136db19d9b5b5e8357b4" 46 | url: "https://github.com/ltfat/ltfat/releases/download/v2.5.0/ltfat-2.5.0-of.tar.gz" 47 | depends: 48 | - "octave (>= 5.0.0)" 49 | - "pkg" 50 | - id: "2.3.1" 51 | date: "2018-06-21" 52 | sha256: "3063eced0aa185162f3049e37c2ca8076985b76b7173738e7389184e5481f03d" 53 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/ltfat-2.3.1.tar.gz" 54 | depends: 55 | - "octave (>= 3.8.0)" 56 | - "pkg" 57 | --- 58 | -------------------------------------------------------------------------------- /packages/joystick.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "joystick/" 4 | description: >- 5 | Provides basic joystick functions for GNU Octave. 6 | icon: "https://gnu-octave.github.io/octave-joystick/assets/octave-joystick.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://github.com/gnu-octave/octave-joystick/blob/main/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://gnu-octave.github.io/octave-joystick/news/" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://github.com/gnu-octave/octave-joystick" 17 | - icon: "fas fa-book" 18 | label: "package documentation" 19 | url: "https://gnu-octave.github.io/octave-joystick/index" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://github.com/gnu-octave/octave-joystick/issues" 23 | maintainers: 24 | - name: "John Donoghue" 25 | contact: "john.donoghue@ieee.org" 26 | versions: 27 | - id: "0.0.4" 28 | date: "2025-10-12" 29 | sha256: "c5a2de9f6ee1f51c675220ba6eed8243574c159928e28e2440f954fa77ab041b" 30 | url: "https://github.com/gnu-octave/octave-joystick/releases/download/v0.0.4/joystick-0.0.4.tar.gz" 31 | depends: 32 | - "octave (>= 4.0.0)" 33 | - "pkg" 34 | ubuntu2204: 35 | - "libsdl2-dev" 36 | - id: "0.0.3" 37 | date: "2023-10-12" 38 | sha256: "136c944737f0952e6880c9073f558348645384d8810d83c45da53307dd264da4" 39 | url: "https://downloads.sourceforge.net/project/octave-joystick/v0.0.3/joystick-0.0.3.tar.gz" 40 | depends: 41 | - "octave (>= 4.0.0)" 42 | - "pkg" 43 | ubuntu2204: 44 | - "libsdl2-dev" 45 | - id: "0.0.2" 46 | date: "2022-09-12" 47 | sha256: "968f9e68c1d38a70f890feb2a97cb9f0843275725c6ba9ea3c82968a1074e03b" 48 | url: "https://downloads.sourceforge.net/project/octave-joystick/v0.0.2/joystick-0.0.2.tar.gz" 49 | depends: 50 | - "octave (>= 4.0.0)" 51 | - "pkg" 52 | ubuntu2204: 53 | - "libsdl2-dev" 54 | - id: "0.0.1" 55 | date: "2022-02-22" 56 | sha256: "40b3bbb0ef5ef3346d73b8bf2b311f82573f166ffc21680bd5054b57a511419e" 57 | url: "https://downloads.sourceforge.net/project/octave-joystick/v0.0.1/joystick-0.0.1.tar.gz" 58 | depends: 59 | - "octave (>= 4.0.0)" 60 | - "pkg" 61 | ubuntu2204: 62 | - "libsdl2-dev" 63 | --- 64 | -------------------------------------------------------------------------------- /packages/optim.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "optim/" 4 | description: >- 5 | Non-linear optimization toolkit. 6 | icon: "https://octave.sourceforge.io/pkg_icon/optim.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later and BSD-3-Clause and public domain" 10 | url: "https://sourceforge.net/p/octave/optim/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/optim/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/optim/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/optim/overview.html" 20 | - icon: "fas fa-book" 21 | label: "package documentation" 22 | url: "https://octave.sourceforge.io/optim/package_doc/" 23 | - icon: "fas fa-bug" 24 | label: "report a problem" 25 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(optim)" 26 | maintainers: 27 | - name: "Olaf Till" 28 | contact: "i7tiol@t-online.de" 29 | versions: 30 | - id: "1.6.2" 31 | date: "2022-04-10" 32 | sha256: "554a8e18bb7195ae861f5059c14f1a557844265c1addb5bfbf3ab9885524787e" 33 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/optim-1.6.2.tar.gz" 34 | depends: 35 | - "octave (>= 4.0.0)" 36 | - "statistics (>= 1.4.0)" 37 | - "struct (>= 1.0.12)" 38 | - "pkg" 39 | - id: "1.6.1" 40 | date: "2021-02-16" 41 | sha256: "7150cdfac7e9da31ec7ac1cfe8619d9c0e9c8b3f787f54bf89e0fb1c275be584" 42 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/optim-1.6.1.tar.gz" 43 | depends: 44 | - "octave (>= 4.0.0)" 45 | - "statistics (>= 1.4.0)" 46 | - "struct (>= 1.0.12)" 47 | - "pkg" 48 | - id: "1.6.0" 49 | date: "2019-03-12" 50 | sha256: "f910c8d5992af42c51269d023ce95c34c7b6455542e41171819dbe94fc4350fc" 51 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/optim-1.6.0.tar.gz" 52 | depends: 53 | - "octave (>= 4.0.0)" 54 | - "statistics (>= 1.4.0)" 55 | - "struct (>= 1.0.12)" 56 | - "pkg" 57 | --- 58 | -------------------------------------------------------------------------------- /packages/piqp.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "piqp/" 4 | description: >- 5 | PIQP is a Proximal Interior Point Quadratic Programming solver, 6 | which can solve dense and sparse quadratic programs. 7 | icon: 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "BSD-2-Clause" 11 | url: "https://github.com/PREDICT-EPFL/piqp/blob/main/interfaces/octave/package/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://github.com/PREDICT-EPFL/piqp/releases" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://github.com/PREDICT-EPFL/piqp" 18 | - icon: "fas fa-book" 19 | label: "package documentation" 20 | url: "https://predict-epfl.github.io/piqp/" 21 | - icon: "fas fa-bug" 22 | label: "report a problem" 23 | url: "https://github.com/PREDICT-EPFL/piqp/issues" 24 | maintainers: 25 | - name: "Roland Schwan" 26 | contact: "roland.schwan@epfl.ch" 27 | versions: 28 | - id: "0.6.0" 29 | date: "2025-06-30" 30 | sha256: "62344e0e31a95d3aff69408150f4a2a1da34e91a46f6067fc5bef0ca4aecf4ee" 31 | url: "https://github.com/PREDICT-EPFL/piqp/releases/download/v0.6.0/piqp-octave.tar.gz" 32 | depends: 33 | - "octave (>= 4.0.0)" 34 | - "pkg" 35 | - id: "0.5.0" 36 | date: "2025-03-17" 37 | sha256: "49a9bf3c7c242b7fd7293f5fe234ed321595822ce3fc4189d794c122e07fe88b" 38 | url: "https://github.com/PREDICT-EPFL/piqp/releases/download/v0.5.0/piqp-octave.tar.gz" 39 | depends: 40 | - "octave (>= 4.0.0)" 41 | - "pkg" 42 | - id: "0.4.2" 43 | date: "2024-08-02" 44 | sha256: "8e695298c08e36ee0f59f3df1e26d6e38e4829293e1b48012b8a68966dd89cb8" 45 | url: "https://github.com/PREDICT-EPFL/piqp/releases/download/v0.4.2/piqp-octave.tar.gz" 46 | depends: 47 | - "octave (>= 4.0.0)" 48 | - "pkg" 49 | - id: "0.4.1" 50 | date: "2024-06-22" 51 | sha256: "a88aa7d058d34cfd869e01a5631eeb0ff8ff4382815c186112f66b5382eb27b6" 52 | url: "https://github.com/PREDICT-EPFL/piqp/releases/download/v0.4.1/piqp-octave.tar.gz" 53 | depends: 54 | - "octave (>= 4.0.0)" 55 | - "pkg" 56 | - id: "0.4.0" 57 | date: "2024-06-21" 58 | sha256: "f78ba738645980fcfb086b64cce018388160cae5fa729faef5de412a08309639" 59 | url: "https://github.com/PREDICT-EPFL/piqp/releases/download/v0.4.0/piqp-octave.tar.gz" 60 | depends: 61 | - "octave (>= 4.0.0)" 62 | - "pkg" 63 | --- 64 | -------------------------------------------------------------------------------- /packages/mboct-fem-pkg.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "mboct-fem-pkg/" 4 | description: >- 5 | This package belongs to a suite of packages which can be used 6 | for pre- and postprocessing of flexible bodies in MBDyn (www.mbdyn.org) 7 | with GNU-Octave. It contains a general purpose structural 8 | Finite Element toolkit for linear statics and dynamics, 9 | which can be used to generate flexible body data for 10 | MBDyn's modal element and also hydrodynamic lubricated journal 11 | and slider plain bearings. 12 | icon: "https://avatars.githubusercontent.com/u/61900614?v=4" 13 | links: 14 | - icon: "far fa-copyright" 15 | label: "GPL-3.0-or-later" 16 | url: "https://github.com/octave-user/mboct-fem-pkg/blob/master/COPYING" 17 | - icon: "fas fa-rss" 18 | label: "news" 19 | url: 20 | - icon: "fas fa-code-branch" 21 | label: "repository" 22 | url: "https://github.com/octave-user/mboct-fem-pkg" 23 | - icon: "fas fa-th-list" 24 | label: "function reference" 25 | url: "https://octave-user.github.io/mboct-fem-pkg/mboct-fem-pkg" 26 | - icon: "fas fa-bug" 27 | label: "report a problem" 28 | url: "https://github.com/octave-user/mboct-fem-pkg/issues" 29 | maintainers: 30 | - name: "Reinhard Resch" 31 | contact: "octave-user@a1.net" 32 | versions: 33 | - id: "0.2.2" 34 | date: "2025-08-24" 35 | sha256: "5d52d55d265dccb1ad1c90b78f914c900214b1e45a5cc9d9be391da64fb7f896" 36 | url: "https://github.com/octave-user/mboct-fem-pkg/releases/download/0.2.2/mboct-fem-pkg-0.2.2.tar.gz" 37 | depends: 38 | - "octave (>= 5.1.0)" 39 | - "pkg" 40 | - "mboct-octave-pkg (>=0.1.0)" 41 | - "mboct-numerical-pkg (>=0.1.0)" 42 | - "mboct-mbdyn-pkg (>=0.1.0)" 43 | ubuntu2204: 44 | - "libmkl-full-dev" 45 | - "libmetis-dev" 46 | - "libgtest-dev" 47 | - "libmumps-seq-dev" 48 | - "libnlopt-dev" 49 | - id: "0.2.1" 50 | date: "2025-08-24" 51 | sha256: "68186a6b2f14eb836261dcb49a96f6f70766a5b97919c928b3b53a64667a1e16" 52 | url: "https://github.com/octave-user/mboct-fem-pkg/releases/download/0.1.0/mboct-fem-pkg-0.2.1.tar.gz" 53 | depends: 54 | - "octave (>= 5.1.0)" 55 | - "pkg" 56 | - "mboct-octave-pkg (>=0.1.0)" 57 | - "mboct-numerical-pkg (>=0.1.0)" 58 | - "mboct-mbdyn-pkg (>=0.1.0)" 59 | ubuntu2204: 60 | - "libmkl-full-dev" 61 | - "libmetis-dev" 62 | - "libgtest-dev" 63 | - "libmumps-seq-dev" 64 | - "libnlopt-dev" 65 | --- 66 | -------------------------------------------------------------------------------- /packages/pythonic.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "pythonic/" 4 | description: >- 5 | The Pythonic package provides a Python language binding for Octave, to allow 6 | any Python package to be loaded and used directly, with automatic translation 7 | from Octave to Python data types. 8 | icon: "https://gitlab.com/uploads/-/system/project/avatar/11728647/octave-pythonic-256.png" 9 | links: 10 | - icon: "far fa-copyright" 11 | label: "GPL-3.0-or-later" 12 | url: "https://gitlab.com/gnu-octave/octave-pythonic/-/blob/main/COPYING" 13 | - icon: "fas fa-rss" 14 | label: "news" 15 | url: "https://gitlab.com/gnu-octave/octave-pythonic/-/releases" 16 | - icon: "fas fa-code-branch" 17 | label: "repository" 18 | url: "https://gitlab.com/gnu-octave/octave-pythonic/" 19 | - icon: "fas fa-book" 20 | label: "package documentation" 21 | url: "https://gitlab.com/gnu-octave/octave-pythonic/-/blob/main/README.md" 22 | - icon: "fas fa-bug" 23 | label: "report a problem" 24 | url: "https://gitlab.com/gnu-octave/octave-pythonic/-/issues" 25 | maintainers: 26 | - name: "Mike Miller" 27 | contact: 28 | - name: "Colin B. Macdonald" 29 | contact: 30 | - name: "Vipul Cariappa" 31 | contact: 32 | versions: 33 | - id: "0.1.3" 34 | date: "2023-08-19" 35 | sha256: "b0fd4a24e28d1614ee49a92e023eb7b750e5af149352b586cc7209e3a2a92d01" 36 | url: "https://gitlab.com/gnu-octave/octave-pythonic/-/releases/v0.1.3/downloads/octave-pythonic-0.1.3.tar.gz" 37 | depends: 38 | - "octave (>= 6.1.0)" 39 | - "pkg" 40 | ubuntu2204: 41 | - "python3-dev" 42 | - id: "0.1.2" 43 | date: "2023-07-23" 44 | sha256: "fb14e079577e997fb1d9f3c2aaeef7ded4eec70aee417da28c5d89bd11a69ef6" 45 | url: "https://gitlab.com/gnu-octave/octave-pythonic/-/releases/v0.1.2/downloads/octave-pythonic-0.1.2.tar.gz" 46 | depends: 47 | - "octave (>= 6.1.0)" 48 | - "pkg" 49 | ubuntu2204: 50 | - "python3-dev" 51 | - id: "0.0.1" 52 | date: "2019-05-22" 53 | sha256: "81985ba2f705d8f452b37a42f473acfbb2102a0eadb143d75d461b04f1ab6272" 54 | url: "https://gitlab.com/gnu-octave/octave-pythonic/-/archive/v0.0.1/octave-pythonic-v0.0.1.tar.gz" 55 | depends: 56 | - "octave (>= 4.4.0)" 57 | - "pkg" 58 | - id: "dev" 59 | date: 60 | sha256: 61 | url: "https://gitlab.com/gnu-octave/octave-pythonic/-/archive/main/octave-pythonic-main.tar.gz" 62 | depends: 63 | - "octave (>= 6.1.0)" 64 | - "pkg" 65 | --- 66 | -------------------------------------------------------------------------------- /.github/workflows/website_build_deploy.yml: -------------------------------------------------------------------------------- 1 | # This workflow uses actions that are not certified by GitHub. 2 | # They are provided by a third-party and are governed by 3 | # separate terms of service, privacy policy, and support 4 | # documentation. 5 | 6 | # Sample workflow for building and deploying a Jekyll site to GitHub Pages 7 | name: Website build and deploy 8 | 9 | on: 10 | # Runs on pushes targeting the default branch 11 | push: 12 | branches: ["main"] 13 | schedule: 14 | - cron: '0 1 * * *' # Runs every day at 1am 15 | 16 | # Allows you to run this workflow manually from the Actions tab 17 | workflow_dispatch: 18 | 19 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages 20 | permissions: 21 | contents: read 22 | pages: write 23 | id-token: write 24 | 25 | # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. 26 | # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. 27 | concurrency: 28 | group: "pages" 29 | cancel-in-progress: false 30 | 31 | jobs: 32 | # Build job 33 | build: 34 | runs-on: ubuntu-latest 35 | steps: 36 | - name: Checkout 37 | uses: actions/checkout@v6 38 | - name: Setup Ruby 39 | uses: ruby/setup-ruby@v1 40 | with: 41 | ruby-version: '3.3' # Not needed with a .ruby-version file 42 | bundler-cache: true # runs 'bundle install' and caches installed gems automatically 43 | cache-version: 0 # Increment this number if you need to re-download cached gems 44 | - name: Setup Pages 45 | id: pages 46 | uses: actions/configure-pages@v5 47 | - name: Get Package Stars 48 | run: | 49 | bundle exec ruby ./assets/get_stars.rb 50 | - name: Build with Jekyll 51 | # Outputs to the './_site' directory by default 52 | run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" 53 | env: 54 | JEKYLL_ENV: production 55 | - name: Upload artifact 56 | # Automatically uploads an artifact from the './_site' directory by default 57 | uses: actions/upload-pages-artifact@v4 58 | 59 | # Deployment job 60 | deploy: 61 | environment: 62 | name: github-pages 63 | url: ${{ steps.deployment.outputs.page_url }} 64 | runs-on: ubuntu-latest 65 | needs: build 66 | steps: 67 | - name: Deploy to GitHub Pages 68 | id: deployment 69 | uses: actions/deploy-pages@v4 70 | -------------------------------------------------------------------------------- /packages/mccabe-thiele.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "mccabe-thiele/" 4 | description: >- 5 | A toolbox for the McCabe-Thiele method for GNU Octave. 6 | icon: "https://raw.githubusercontent.com/aumpierre-unb/McCabe-Thiele-for-GNU-Octave/main/doc/icon.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://github.com/aumpierre-unb/McCabe-Thiele-for-GNU-Octave/blob/main/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://github.com/aumpierre-unb/McCabe-Thiele-for-GNU-Octave/blob/main/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://github.com/aumpierre-unb/McCabe-Thiele-for-GNU-Octave/" 17 | - icon: "fas fa-book" 18 | label: "package documentation" 19 | url: "https://github.com/aumpierre-unb/McCabe-Thiele-for-GNU-Octave/blob/main/README.md" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://github.com/aumpierre-unb/McCabe-Thiele-for-GNU-Octave/issues" 23 | maintainers: 24 | - name: "Alexandre Umpierre" 25 | contact: "aumpierre@gmail.com" 26 | versions: 27 | - id: "0.1.5" 28 | date: "2022-12-03" 29 | sha256: "134dedca4ec23fae717351a3154ecb5e96008af315a1e72f143153d8cd1a603b" 30 | url: "https://github.com/aumpierre-unb/McCabe-Thiele-for-GNU-Octave/archive/refs/tags/v0.1.5.tar.gz" 31 | depends: 32 | - "octave (>= 4.0.0)" 33 | - "pkg" 34 | - id: "0.1.4" 35 | date: "2022-10-21" 36 | sha256: "8f3266cc279e30cbbb7e1095b1906933453a81d32de14edb401cf4a7f935bd22" 37 | url: "https://github.com/aumpierre-unb/McCabe-Thiele-for-GNU-Octave/archive/refs/tags/v0.1.4.tar.gz" 38 | depends: 39 | - "octave (>= 4.0.0)" 40 | - "pkg" 41 | - id: "0.1.3" 42 | date: "2022-10-08" 43 | sha256: "a95fcd8f4c311f352fb387104bae8eadaa276070dc61c55f1611baf4cc377261" 44 | url: "https://github.com/aumpierre-unb/McCabe-Thiele-for-GNU-Octave/archive/refs/tags/v0.1.3.tar.gz" 45 | depends: 46 | - "octave (>= 4.0.0)" 47 | - "pkg" 48 | - id: "0.1.2" 49 | date: "2022-10-05" 50 | sha256: "e6016fbd6b9c99eab45d2be3e0a7e6f1de2b5795958eb83b3699fa7109f2cde0" 51 | url: "https://github.com/aumpierre-unb/McCabe-Thiele-for-GNU-Octave/archive/refs/tags/v0.1.2.tar.gz" 52 | depends: 53 | - "octave (>= 4.0.0)" 54 | - "pkg" 55 | - id: "0.1.1" 56 | date: "2022-10-01" 57 | sha256: "7d20d47df4e7cbab34cc8bdae71ae432a565dbee5d8943bf8311dcdba9ed14c7" 58 | url: "https://github.com/aumpierre-unb/McCabe-Thiele-for-GNU-Octave/archive/refs/tags/v0.1.1.tar.gz" 59 | depends: 60 | - "octave (>= 4.0.0)" 61 | - "pkg" 62 | --- 63 | -------------------------------------------------------------------------------- /packages/mapping.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "mapping/" 4 | description: >- 5 | Simple mapping and GIS .shp .dxf and raster file functions. 6 | icon: "https://octave.sourceforge.io/pkg_icon/mapping.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://sourceforge.net/p/octave/mapping/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/mapping/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/mapping/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/mapping/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(mapping)" 23 | maintainers: 24 | - name: "Philip Nienhuis" 25 | contact: "prnienhuis@users.sf.net" 26 | versions: 27 | - id: "1.4.3" 28 | date: "2025-05-02" 29 | sha256: "2188b24639c7087840172e6047f75cb8a598d758120ae6e0810ce6300a869a1b" 30 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/mapping-1.4.3.tar.gz" 31 | depends: 32 | - "octave (>= 5.2.0)" 33 | - "io (>= 2.2.7)" 34 | - "geometry (>= 4.0.0)" 35 | - "pkg" 36 | ubuntu2204: 37 | - "libgdal-dev" 38 | - id: "1.4.2" 39 | date: "2022-02-20" 40 | sha256: "9ab5105aa0b5e549790070ef84c94d4ada88306d99c5afa1076bc3c9e8b32da2" 41 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/mapping-1.4.2.tar.gz" 42 | depends: 43 | - "octave (>= 5.2.0)" 44 | - "io (>= 2.2.7)" 45 | - "geometry (>= 4.0.0)" 46 | - "pkg" 47 | - id: "1.4.1" 48 | date: "2020-10-18" 49 | sha256: "80a12dfd41777299d90e4c926df2bf24c176d94c761328efc344e33c73c04072" 50 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/mapping-1.4.1.tar.gz" 51 | depends: 52 | - "octave (>= 3.8.0)" 53 | - "io (>= 2.2.7)" 54 | - "geometry (>= 4.0.0)" 55 | - "pkg" 56 | - id: "1.4.0" 57 | date: "2020-01-20" 58 | sha256: "93ceb9d286bfa2c6183096e580917e0db01bc25ff4ebb37ebab43225a059cb54" 59 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/mapping-1.4.0.tar.gz" 60 | depends: 61 | - "octave (>= 3.8.0)" 62 | - "io (>= 2.2.7)" 63 | - "geometry (>= 4.0.0)" 64 | - "pkg" 65 | --- 66 | -------------------------------------------------------------------------------- /packages/ponchon-savarit.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "ponchon-savarit/" 4 | description: >- 5 | A toolbox for the Ponchón-Savarit method for GNU Octave. 6 | icon: "https://raw.githubusercontent.com/aumpierre-unb/Ponchon-Savarit-for-GNU-Octave/main/doc/icon.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://github.com/aumpierre-unb/Ponchon-Savarit-for-GNU-Octave/blob/main/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://github.com/aumpierre-unb/Ponchon-Savarit-for-GNU-Octave/blob/main/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://github.com/aumpierre-unb/Ponchon-Savarit-for-GNU-Octave/" 17 | - icon: "fas fa-book" 18 | label: "package documentation" 19 | url: "https://github.com/aumpierre-unb/Ponchon-Savarit-for-GNU-Octave/blob/main/README.md" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://github.com/aumpierre-unb/Ponchon-Savarit-for-GNU-Octave/issues" 23 | maintainers: 24 | - name: "Alexandre Umpierre" 25 | contact: "aumpierre@gmail.com" 26 | versions: 27 | - id: "1.0.0" 28 | date: "2023-05-21" 29 | sha256: "26a48a8677a74bd9ec2c4e683450680484f8eb073704486fbc46b189fc6cc15e" 30 | url: "https://github.com/aumpierre-unb/Ponchon-Savarit-for-GNU-Octave/archive/refs/tags/v1.0.0.tar.gz" 31 | depends: 32 | - "octave (>= 4.0.0)" 33 | - "pkg" 34 | - id: "0.1.3" 35 | date: "2022-12-06" 36 | sha256: "76953163e403bac3085abd62b273593f03825c6ed051698b5ee7860e97c04cf7" 37 | url: "https://github.com/aumpierre-unb/Ponchon-Savarit-for-GNU-Octave/archive/refs/tags/v0.1.3.tar.gz" 38 | depends: 39 | - "octave (>= 4.0.0)" 40 | - "pkg" 41 | - id: "0.1.2" 42 | date: "2022-12-03" 43 | sha256: "d0150e1eed81095a9ff232de967e6928527eec5b0c61dd4e55f166492617f034" 44 | url: "https://github.com/aumpierre-unb/Ponchon-Savarit-for-GNU-Octave/archive/refs/tags/v0.1.2.tar.gz" 45 | depends: 46 | - "octave (>= 4.0.0)" 47 | - "pkg" 48 | - id: "0.1.1" 49 | date: "2022-10-21" 50 | sha256: "a33b16463352ffeaf35f53cb6ccc5781b413085c6027f27113d4cb58693abdc1" 51 | url: "https://github.com/aumpierre-unb/Ponchon-Savarit-for-GNU-Octave/archive/refs/tags/v0.1.1.tar.gz" 52 | depends: 53 | - "octave (>= 4.0.0)" 54 | - "pkg" 55 | - id: "0.1.0" 56 | date: "2022-10-16" 57 | sha256: "3a1dd359d63c67e9fc0b927c5e30a5b55422636d8b08dbeaa050dc2dade4e7d4" 58 | url: "https://github.com/aumpierre-unb/Ponchon-Savarit-for-GNU-Octave/archive/refs/tags/v0.1.0.tar.gz" 59 | depends: 60 | - "octave (>= 4.0.0)" 61 | - "pkg" 62 | --- 63 | -------------------------------------------------------------------------------- /packages/ocl.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "ocl/" 4 | description: >- 5 | Package using OpenCL for parallelization of (SIMD) computations, 6 | selectively using available OpenCL hardware. 7 | icon: 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-3.0-or-later" 11 | url: "https://sourceforge.net/p/octave/ocl/ci/default/tree/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://sourceforge.net/p/octave/ocl/ci/default/tree/NEWS" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://sourceforge.net/p/octave/ocl/ci/default/tree/" 18 | - icon: "fas fa-th-list" 19 | label: "function reference" 20 | url: "https://octave.sourceforge.io/ocl/overview.html" 21 | - icon: "fas fa-bug" 22 | label: "report a problem" 23 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(ocl)" 24 | maintainers: 25 | - name: "Matthias W. Klein" 26 | contact: "mattwklein AT users.sf.net" 27 | versions: 28 | - id: "1.2.3" 29 | date: "2024-12-16" 30 | sha256: "83f1cb134aa39f3624ab7b773a1c450692f6e742566d68c72413f44982523995" 31 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/ocl-1.2.3.tar.gz" 32 | depends: 33 | - "octave (>= 4.2.0)" 34 | - "pkg" 35 | - id: "1.2.2" 36 | date: "2023-11-29" 37 | sha256: "12b54c7d891671d4be52a507eeaee03505d0c008eb732894916c5a8002a3df0d" 38 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/ocl-1.2.2.tar.gz" 39 | depends: 40 | - "octave (>= 4.2.0)" 41 | - "pkg" 42 | - id: "1.2.1" 43 | date: "2022-12-15" 44 | sha256: "35551e7d21afe7f97507bb044bb346d6053c32cda07e66fc386c50ae1cd696eb" 45 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/ocl-1.2.1.tar.gz" 46 | depends: 47 | - "octave (>= 4.2.0)" 48 | - "pkg" 49 | - id: "1.2.0" 50 | date: "2021-12-07" 51 | sha256: "8d077067040d5373d96456b7969d2122bd060edfd71472c9a2ae3068b238812f" 52 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/ocl-1.2.0.tar.gz" 53 | depends: 54 | - "octave (>= 4.2.0)" 55 | - "pkg" 56 | - id: "1.1.1" 57 | date: "2020-03-01" 58 | sha256: "d576c0339cbb5d2c71c6f5a8d012438694eb294971648d41fde4a6f9532fd12b" 59 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/ocl-1.1.1.tar.gz" 60 | depends: 61 | - "octave (>= 4.2.0)" 62 | - "pkg" 63 | --- 64 | -------------------------------------------------------------------------------- /packages/sockets.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "sockets/" 4 | description: >- 5 | Socket functions for networking from within Octave. 6 | icon: "https://octave.sourceforge.io/pkg_icon/sockets.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://sourceforge.net/p/octave/sockets/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/sockets/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/sockets/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/sockets/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(sockets)" 23 | maintainers: 24 | - name: "Octave Forge community" 25 | contact: 26 | versions: 27 | - id: "1.4.1" 28 | date: "2023-07-24" 29 | sha256: "bb935bf4f572328474948cd710cb64667b576c17e9c97aed2c1f14f9d92062b7" 30 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/sockets-1.4.1.tar.gz" 31 | depends: 32 | - "octave (>= 3.6.0)" 33 | - "pkg" 34 | - id: "1.4.0" 35 | date: "2022-07-22" 36 | sha256: "18dc052cd575bb750a269f6584bb427250f6552282f4c928d610684a7e5d4e92" 37 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/sockets-1.4.0.tar.gz" 38 | depends: 39 | - "octave (>= 3.6.0)" 40 | - "pkg" 41 | - id: "1.3.0" 42 | date: "2022-02-22" 43 | sha256: "0a49f76ed56a65d39b8636eea7352a5a27c650683bd175b9e507ded3194035f2" 44 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/sockets-1.3.0.tar.gz" 45 | depends: 46 | - "octave (>= 3.6.0)" 47 | - "pkg" 48 | - id: "1.2.1" 49 | date: "2020-11-10" 50 | sha256: "0f6f84a9cc1452fb52433ab84042906fd7c1b62d4c74b01c59091ac7f0fdc1a1" 51 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/sockets-1.2.1.tar.gz" 52 | depends: 53 | - "octave (>= 3.6.0)" 54 | - "pkg" 55 | - id: "1.2.0" 56 | date: "2014-12-03" 57 | sha256: "02bbdb055faddc7e4067a51a940742d04fa79c8ea22f12d1a8e875460dc38fa8" 58 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/sockets-1.2.0.tar.gz" 59 | depends: 60 | - "octave (>= 3.2.0)" 61 | - "pkg" 62 | --- 63 | -------------------------------------------------------------------------------- /packages/image-acquisition.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "image-acquisition/" 4 | description: >- 5 | Capture images using Video4Linux2 or Media Foundation. 6 | icon: "https://octave.sourceforge.io/pkg_icon/image-acquisition.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://github.com/Andy1978/octave-image-acquisition/blob/master/COPYING.html" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://github.com/Andy1978/octave-image-acquisition/blob/master/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://github.com/Andy1978/octave-image-acquisition" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/image-acquisition/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(image-acquisition)" 23 | maintainers: 24 | - name: "Andreas Weber" 25 | contact: "andy.weber.aw@gmail.com" 26 | versions: 27 | - id: "0.3.3" 28 | date: "2025-04-19" 29 | sha256: "56e9c0d50dda23d4b2d95ddd3a5d752d67bbd73ad3cf3dcb26b565f69981bdeb" 30 | url: "https://github.com/Andy1978/octave-image-acquisition/releases/download/image-acquisition-0.3.3/image-acquisition-0.3.3.tar.gz" 31 | depends: 32 | - "octave (>= 5.1.0)" 33 | - "pkg" 34 | ubuntu2204: 35 | - "libv4l-dev" 36 | - "libfltk1.3-dev" 37 | - id: "0.3.2" 38 | date: "2025-04-14" 39 | sha256: "6bcb088551549d246d353a2b9fcb94d69c0c0ba59d87fc04b0f585f63d3fc25b" 40 | url: "https://github.com/Andy1978/octave-image-acquisition/releases/download/image-acquisition-0.3.2/image-acquisition-0.3.2.tar.gz" 41 | depends: 42 | - "octave (>= 5.1.0)" 43 | - "pkg" 44 | ubuntu2204: 45 | - "libv4l-dev" 46 | - "libfltk1.3-dev" 47 | - id: "0.3.1" 48 | date: "2025-04-12" 49 | sha256: "00e40f6c228e84a6f99f64eb83bf96d6d2951072b01b63bf938d0963dbdb95a0" 50 | url: "https://github.com/Andy1978/octave-image-acquisition/releases/download/image-acquisition-0.3.1/image-acquisition-0.3.1.tar.gz" 51 | depends: 52 | - "octave (>= 5.1.0)" 53 | - "pkg" 54 | ubuntu2204: 55 | - "libv4l-dev" 56 | - "libfltk1.3-dev" 57 | - id: "0.3.0" 58 | date: "2025-03-15" 59 | sha256: "c93bb15cca589773535f22004296565717cd0fcda0766b7f643d9bfba8820309" 60 | url: "https://github.com/Andy1978/octave-image-acquisition/releases/download/image-acquisition-0.3.0/image-acquisition-0.3.0.tar.gz" 61 | depends: 62 | - "octave (>= 5.1.0)" 63 | - "pkg" 64 | ubuntu2204: 65 | - "libv4l-dev" 66 | - "libfltk1.3-dev" 67 | --- 68 | -------------------------------------------------------------------------------- /packages/caosdb.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "caosdb/" 4 | description: >- 5 | This package contains utility functions to interact with CaosDB, the open 6 | scientific data management toolkit. 7 | 8 | It makes use of libcaosdb, which must be installed on the 9 | system. libcaosdb can be obtained at https://gitlab.com/caosdb/caosdb-cpplib 10 | # TODO: Check icon URL 11 | icon: "https://gitlab.com/caosdb/caosdb-octavelib/-/raw/main/doc/img/caosdb_icon.png" 12 | links: 13 | - icon: "far fa-copyright" 14 | label: "AGPL-3.0-or-later" 15 | url: "https://gitlab.com/caosdb/caosdb-octavelib/-/blob/main/LICENSE.md" 16 | - icon: "fas fa-rss" 17 | label: "news" 18 | url: "https://gitlab.com/caosdb/caosdb-octavelib/-/blob/main/CHANGELOG.md" 19 | - icon: "fas fa-code-branch" 20 | label: "repository" 21 | url: "https://gitlab.com/caosdb/caosdb-octavelib" 22 | - icon: "fas fa-book" 23 | label: "package documentation" 24 | url: "https://docs.indiscale.com/caosdb-octavelib" 25 | - icon: "fas fa-bug" 26 | label: "report a problem" 27 | url: "https://gitlab.com/caosdb/caosdb-octavelib/-/issues" 28 | maintainers: 29 | - name: "Daniel Hornung" 30 | contact: "d.hornung@indiscale.com" 31 | versions: 32 | - id: "0.2.1" 33 | date: "2023-02-17" 34 | sha256: "c81bd7295f3a1e394bf2f81a4d568f62ae5151b86b21a124bb17084ed1494ef8" 35 | url: "https://gitlab.indiscale.com/caosdb/src/caosdb-octavelib/-/archive/v0.2.1/caosdb-octavelib-v0.2.1.tar.bz2" 36 | depends: 37 | - "octave (>= 4.4.0)" 38 | - "pkg" 39 | - id: "0.2.0" 40 | date: "2022-09-26" 41 | sha256: "6f7cd3f56078da18ec45d1bc31615acecd0bd43892a5fbf1286465b0ebdd5523" 42 | url: "https://gitlab.indiscale.com/caosdb/src/caosdb-octavelib/-/archive/v0.2.0/caosdb-octavelib-v0.2.0.tar.bz2" 43 | depends: 44 | - "octave (>= 4.4.0)" 45 | - "pkg" 46 | - id: "0.1.2" 47 | date: "2022-02-21" 48 | sha256: "976d152a05e45ee03238e4ee80c2468b7ec212ffeb5b8f1f9b65a4044d4da119" 49 | url: "https://gitlab.indiscale.com/caosdb/src/caosdb-octavelib/-/archive/v0.1.2/caosdb-octavelib-v0.1.2.tar.bz2" 50 | depends: 51 | - "octave (>= 4.4.0)" 52 | - "pkg" 53 | - id: "0.1.1" 54 | date: "2022-02-04" 55 | sha256: "229593f74387da9ae9c28b769adce9c0d520e4dd99157d814f56b93f3c144e74" 56 | url: "https://gitlab.indiscale.com/caosdb/src/caosdb-octavelib/-/archive/v0.1.1/caosdb-octavelib-v0.1.1.tar.bz2" 57 | depends: 58 | - "octave (>= 4.4.0)" 59 | - "pkg" 60 | - id: "dev" 61 | date: 62 | sha256: 63 | url: "https://gitlab.indiscale.com/caosdb/src/caosdb-octavelib/-/archive/dev/caosdb-octavelib-dev.tar.bz2" 64 | depends: 65 | - "octave (>= 4.4.0)" 66 | - "pkg" 67 | --- 68 | -------------------------------------------------------------------------------- /packages/mqtt.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "mqtt/" 4 | description: >- 5 | Octave implementation of mqtt toolkit 6 | icon: "https://gnu-octave.github.io/octave-mqtt/assets/octave-mqtt.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://raw.githubusercontent.com/gnu-octave/octave-mqtt/main/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://gnu-octave.github.io/octave-mqtt/news/" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://github.com/gnu-octave/octave-mqtt" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://gnu-octave.github.io/octave-mqtt/functions/" 20 | - icon: "fas fa-book" 21 | label: "package documentation" 22 | url: "https://gnu-octave.github.io/octave-mqtt/manual/" 23 | - icon: "fas fa-bug" 24 | label: "report a problem" 25 | url: "https://github.com/gnu-octave/octave-mqtt/issues" 26 | maintainers: 27 | - name: "John Donoghue" 28 | contact: "john.donoghue@ieee.org" 29 | versions: 30 | - id: "0.0.5" 31 | date: "2024-04-11" 32 | sha256: "27a9498697bace234e7f218ced845bbe3369520b493a22e091575c3e13d31cb6" 33 | url: "https://github.com/gnu-octave/octave-mqtt/releases/download/release-0.0.5/octave-mqtt-0.0.5.tar.gz" 34 | depends: 35 | - "octave (>= 4.0.0)" 36 | - "pkg" 37 | ubuntu2204: 38 | - "libpaho-mqtt-dev" 39 | - id: "0.0.4" 40 | date: "2023-07-25" 41 | sha256: "484c6e889329d8ef7b1e2878766680dc070ebc3014aaf2a92339164ebfe4d73e" 42 | url: "https://github.com/gnu-octave/octave-mqtt/releases/download/release-0.0.4/octave-mqtt-0.0.4.tar.gz" 43 | depends: 44 | - "octave (>= 4.0.0)" 45 | - "pkg" 46 | ubuntu2204: 47 | - "libpaho-mqtt-dev" 48 | - id: "0.0.3" 49 | date: "2022-08-18" 50 | sha256: "9aff75a326ee50b63bacfddf4c9318c72a1c2a39e558ed5d347d43f17009da64" 51 | url: "https://downloads.sourceforge.net/project/octave-mqtt/v0.0.3/octave-mqtt-0.0.3.tar.gz" 52 | depends: 53 | - "octave (>= 4.0.0)" 54 | - "pkg" 55 | ubuntu2204: 56 | - "libpaho-mqtt-dev" 57 | - id: "0.0.2" 58 | date: "2022-07-21" 59 | sha256: "d976faf7f10d407d3d6c1b8e00917c2329bd7ee3b51952fb5418d64cefa0adee" 60 | url: "https://downloads.sourceforge.net/project/octave-mqtt/v0.0.2/octave-mqtt-0.0.2.tar.gz" 61 | depends: 62 | - "octave (>= 4.0.0)" 63 | - "pkg" 64 | ubuntu2204: 65 | - "libpaho-mqtt-dev" 66 | - id: "0.0.1" 67 | date: "2022-06-30" 68 | sha256: "c372891b1d32b9774b74ff3ccbac5c85f2f8ca63de6c60633cca5873e1014cf6" 69 | url: "https://downloads.sourceforge.net/project/octave-mqtt/v0.0.1/octave-mqtt-0.0.1.tar.gz" 70 | depends: 71 | - "octave (>= 4.0.0)" 72 | - "pkg" 73 | ubuntu2204: 74 | - "libpaho-mqtt-dev" 75 | --- 76 | -------------------------------------------------------------------------------- /packages/jupyter-notebook.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "jupyter-notebook/" 4 | description: >- 5 | A package to run and fill Jupyter Notebooks within GNU Octave. 6 | Evaluate long-running Octave Jupyter Notebooks on a computing server without 7 | permanent browser connection. Included in Octave core since version 7.1.0. 8 | No need to install this package in recent Octave versions. 9 | icon: "https://raw.githubusercontent.com/gnu-octave/pkg-jupyter-notebook/main/doc/icon.png" 10 | links: 11 | - icon: "far fa-copyright" 12 | label: "GPL-3.0-or-later" 13 | url: "https://github.com/gnu-octave/pkg-jupyter-notebook/blob/main/COPYING" 14 | - icon: "fas fa-rss" 15 | label: "news" 16 | url: "https://github.com/gnu-octave/pkg-jupyter-notebook/releases/" 17 | - icon: "fas fa-code-branch" 18 | label: "repository" 19 | url: "https://github.com/gnu-octave/pkg-jupyter-notebook/" 20 | - icon: "fas fa-book" 21 | label: "package documentation" 22 | url: "https://github.com/gnu-octave/pkg-jupyter-notebook/blob/main/README.md" 23 | - icon: "fas fa-bug" 24 | label: "report a problem" 25 | url: "https://github.com/gnu-octave/pkg-jupyter-notebook/issues" 26 | maintainers: 27 | - name: "Kai T. Ohlhus" 28 | contact: "k.ohlhus@gmail.com" 29 | - name: "Abdallah Elshamy" 30 | contact: "abdallah.k.elshamy@gmail.com" 31 | versions: 32 | - id: "1.3.0" 33 | date: "2025-03-23" 34 | sha256: "cf43d9a134709ed0d9258791410a02d95de8618ec22170aad49a66f11277817c" 35 | url: "https://github.com/gnu-octave/pkg-jupyter-notebook/archive/v1.3.0.tar.gz" 36 | depends: 37 | - "octave (< 7.1.0)" 38 | - "json (>= 1.5.0)" 39 | - "pkg" 40 | - id: "1.2.0" 41 | date: "2021-12-24" 42 | sha256: "fba19e4f68313c64298dc5b3d525df9008d43c28bcac3abb472e37ea93285be4" 43 | url: "https://github.com/gnu-octave/pkg-jupyter-notebook/archive/v1.2.0.tar.gz" 44 | depends: 45 | - "octave (< 7.1.0)" 46 | - "json (>= 1.5.0)" 47 | - "pkg" 48 | - id: "1.1.0" 49 | date: "2021-11-24" 50 | sha256: "8ace5ad2b5e976e6f1d71915e0a2d4ae4bd410a70d79e3a3d980874e911f63c6" 51 | url: "https://github.com/gnu-octave/pkg-jupyter-notebook/archive/v1.1.0.tar.gz" 52 | depends: 53 | - "octave (< 7.1.0)" 54 | - "json (>= 1.5.0)" 55 | - "pkg" 56 | - id: "1.0.0" 57 | date: "2021-09-14" 58 | sha256: "2bd1f8bc72521f65d000039e94136cd3eb4c1d8440bbb6367f3b1f4fd60e5010" 59 | url: "https://github.com/gnu-octave/pkg-jupyter-notebook/archive/v1.0.0.tar.gz" 60 | depends: 61 | - "octave (< 7.1.0)" 62 | - "json (>= 1.5.0)" 63 | - "pkg" 64 | - id: "dev" 65 | date: 66 | sha256: 67 | url: "https://github.com/gnu-octave/pkg-jupyter-notebook/archive/main.tar.gz" 68 | depends: 69 | - "octave (< 7.1.0)" 70 | - "json (>= 1.5.0)" 71 | - "pkg" 72 | --- 73 | -------------------------------------------------------------------------------- /packages/stk.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "stk/" 4 | description: >- 5 | The STK is a (not so) Small Toolbox for Kriging. Its primary focus is on 6 | the interpolation/regression technique known as kriging, which is very 7 | closely related to Splines and Radial Basis Functions, and can be interpreted 8 | as a non-parametric Bayesian method using a Gaussian Process (GP) prior. 9 | The STK also provides tools for the sequential and non-sequential design of 10 | experiments. Even though it is, currently, mostly geared towards the Design 11 | and Analysis of Computer Experiments (DACE), the STK can be useful for other 12 | applications areas (such as Geostatistics, Machine Learning, Non-parametric 13 | Regression, etc.). 14 | icon: "https://raw.githubusercontent.com/stk-kriging/stk/master/admin/htmldoc/stk_logo.png" 15 | links: 16 | - icon: "far fa-copyright" 17 | label: "GPL-3.0-or-later" 18 | url: "https://github.com/stk-kriging/stk/blob/master/COPYING" 19 | - icon: "fas fa-rss" 20 | label: "news" 21 | url: "https://github.com/stk-kriging/stk/blob/master/NEWS.md" 22 | - icon: "fas fa-code-branch" 23 | label: "repository" 24 | url: "https://github.com/stk-kriging/stk" 25 | - icon: "fas fa-th-list" 26 | label: "function reference" 27 | url: "https://stk-kriging.github.io/release/latest/doc/html/" 28 | - icon: "fas fa-bug" 29 | label: "report a problem" 30 | url: "https://github.com/stk-kriging/stk/issues" 31 | maintainers: 32 | - name: "Julien Bect" 33 | contact: "julien.bect@centralesupelec.fr" 34 | - name: "Emmanuel Vazquez" 35 | contact: "emmanuel.vazquez@centralesupelec.fr" 36 | versions: 37 | - id: "2.8.1" 38 | date: "2023-07-01" 39 | sha256: "c138ccf4b51c0bc0448f74cdc40cfcefb2ea26fba8c5652c7bd3c86685869c85" 40 | url: "https://github.com/stk-kriging/stk/releases/download/2.8.1/stk-2.8.1-octpkg.tar.gz" 41 | depends: 42 | - "octave (>= 4.0.1)" 43 | - "pkg" 44 | - id: "2.8.0" 45 | date: "2023-01-06" 46 | sha256: "760c69c362fb7bda3fce29ac2cfa2a5bb7448a1aeb36c92ceb65edb97b78cd32" 47 | url: "https://github.com/stk-kriging/stk/releases/download/2.8.0/stk-2.8.0-octpkg.tar.gz" 48 | depends: 49 | - "octave (>= 4.0.1)" 50 | - "pkg" 51 | - id: "2.7.0" 52 | date: "2022-02-23" 53 | sha256: "bc87fe5c32ef2cd38cc29b450a08aa7e5fa8dcf210f8a2e9b0984e02b77b80c3" 54 | url: "https://github.com/stk-kriging/stk/releases/download/2.7.0/stk-2.7.0-octpkg.tar.gz" 55 | depends: 56 | - "octave (>= 4.0.0)" 57 | - "pkg" 58 | - id: "2.6.1" 59 | date: "2019-10-12" 60 | sha256: "2a859a798f475bb770805fded2c2ff891c9ab3bdb80ffe22a99cf269956b16e7" 61 | url: "https://github.com/stk-kriging/stk/releases/download/2.6.1/stk-2.6.1-octpkg.tar.gz" 62 | depends: 63 | - "octave (>= 3.8.0)" 64 | - "pkg" 65 | --- 66 | -------------------------------------------------------------------------------- /packages/io.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "io/" 4 | description: >- 5 | Input/Output in external formats. 6 | icon: "https://octave.sourceforge.io/pkg_icon/io.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later and BSD-2-Clause" 10 | url: "https://sourceforge.net/p/octave/io/ci/default/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/io/ci/default/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/io/ci/default/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/io/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(io)" 23 | maintainers: 24 | - name: "Philip Nienhuis" 25 | contact: "prnienhuis@users.sf.net" 26 | versions: 27 | - id: "2.7.0" 28 | date: "2025-05-01" 29 | sha256: "4aa48468b3697934bf8c854e27dbab8827605e9dd4fe37e56834265e6130ba6f" 30 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/io-2.7.0.tar.gz" 31 | depends: 32 | - "octave (>= 4.2.0)" 33 | - "pkg" 34 | - id: "2.6.4" 35 | date: "2021-12-30" 36 | sha256: "a74a400bbd19227f6c07c585892de879cd7ae52d820da1f69f1a3e3e89452f5a" 37 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/io-2.6.4.tar.gz" 38 | depends: 39 | - "octave (>= 4.2.0)" 40 | - "pkg" 41 | - id: "2.6.3" 42 | date: "2020-11-02" 43 | sha256: "6bc63c6498d79cada01a6c4446f793536e0bb416ddec2a5201dd8d741d459e10" 44 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/io-2.6.3.tar.gz" 45 | depends: 46 | - "octave (>= 4.2.0)" 47 | - "pkg" 48 | - id: "2.6.2" 49 | date: "2020-10-10" 50 | sha256: "01dbf8885a8011e76c919e271727c1d44f625bf6b217948b79438039ba368ceb" 51 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/io-2.6.2.tar.gz" 52 | depends: 53 | - "octave (>= 4.2.0)" 54 | - "pkg" 55 | - id: "2.6.1" 56 | date: "2020-04-15" 57 | sha256: "83253561f883c96ca3021a771223d23795122dc4cb800766e9cb893c6f8262dd" 58 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/io-2.6.1.tar.gz" 59 | depends: 60 | - "octave (>= 4.2.0)" 61 | - "pkg" 62 | - id: "2.6.0" 63 | date: "2020-02-25" 64 | sha256: "27f26273ced0b42c098e900136bb0ab2e542baf98d02bc0176cf47edbd0e6d7f" 65 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/io-2.6.0.tar.gz" 66 | depends: 67 | - "octave (>= 4.2.0)" 68 | - "pkg" 69 | --- 70 | -------------------------------------------------------------------------------- /packages/psychrometrics.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "psychrometrics/" 4 | description: >- 5 | A toolbox for air-water vapor psychrometrics for GNU Octave. 6 | icon: "https://raw.githubusercontent.com/aumpierre-unb/Psychrometrics-for-GNU-Octave/main/doc/icon.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://github.com/aumpierre-unb/Psychrometrics-for-GNU-Octave/blob/main/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://github.com/aumpierre-unb/Psychrometrics-for-GNU-Octave/blob/main/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://github.com/aumpierre-unb/Psychrometrics-for-GNU-Octave/" 17 | - icon: "fas fa-book" 18 | label: "package documentation" 19 | url: "https://github.com/aumpierre-unb/Psychrometrics-for-GNU-Octave/blob/main/README.md" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://github.com/aumpierre-unb/Psychrometrics-for-GNU-Octave/issues" 23 | maintainers: 24 | - name: "Alexandre Umpierre" 25 | contact: "aumpierre@gmail.com" 26 | versions: 27 | - id: "1.0.0" 28 | date: "2023-05-08" 29 | sha256: "47026b34a474f4a3b38b16ca26ea27f2944a39203d013cda55c45d5c3e06baea" 30 | url: "https://github.com/aumpierre-unb/Psychrometrics-for-GNU-Octave/archive/refs/tags/v1.0.0.tar.gz" 31 | depends: 32 | - "octave (>= 4.0.0)" 33 | - "pkg" 34 | - id: "0.2.1" 35 | date: "2022-12-05" 36 | sha256: "5ec6a84bf6dc7899b691594246ea7396a63c87bef0c428aaf2c095743fea6383" 37 | url: "https://github.com/aumpierre-unb/Psychrometrics-for-GNU-Octave/archive/refs/tags/v0.2.1.tar.gz" 38 | depends: 39 | - "octave (>= 4.0.0)" 40 | - "pkg" 41 | - id: "0.2.0" 42 | date: "2022-12-03" 43 | sha256: "685e5831295b5742cd44cec12e8fdbed98ed4cbfaf69d78afc0c9b4bfac41ca2" 44 | url: "https://github.com/aumpierre-unb/Psychrometrics-for-GNU-Octave/archive/refs/tags/v0.2.0.tar.gz" 45 | depends: 46 | - "octave (>= 4.0.0)" 47 | - "pkg" 48 | - id: "0.1.2" 49 | date: "2022-11-18" 50 | sha256: "ab6390e55cdea7eee38c88ba05b7525270a7304ce70469fae4d132bf2a9e0714" 51 | url: "https://github.com/aumpierre-unb/Psychrometrics-for-GNU-Octave/archive/refs/tags/v0.1.2.tar.gz" 52 | depends: 53 | - "octave (>= 4.0.0)" 54 | - "optim (>= 1.6.2)" 55 | - "pkg" 56 | - id: "0.1.1" 57 | date: "2022-11-17" 58 | sha256: "0e503602f0506677757c7e0eab6ff00f453ce6b09f710bb195ee5a14dcdade93" 59 | url: "https://github.com/aumpierre-unb/Psychrometrics-for-GNU-Octave/archive/refs/tags/v0.1.1.tar.gz" 60 | depends: 61 | - "octave (>= 4.0.0)" 62 | - "pkg" 63 | - id: "0.1.0" 64 | date: "2022-11-15" 65 | sha256: "00a369e8ce649eb7d23eb868790016a97a5a7a37f354e7ec4801810245c87814" 66 | url: "https://github.com/aumpierre-unb/Psychrometrics-for-GNU-Octave/archive/refs/tags/v0.1.0.tar.gz" 67 | depends: 68 | - "octave (>= 4.0.0)" 69 | - "pkg" 70 | --- 71 | -------------------------------------------------------------------------------- /packages/sqlite.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "sqlite/" 4 | description: >- 5 | Basic Octave implementation of the sqlite toolkit 6 | icon: "https://github.com/gnu-octave/octave-sqlite/raw/main/doc/octave-sqlite.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://github.com/gnu-octave/octave-sqlite/blob/main/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://gnu-octave.github.io/octave-sqlite/news/" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://github.com/gnu-octave/octave-sqlite/" 17 | - icon: "fas fa-book" 18 | label: "package documentation" 19 | url: "https://gnu-octave.github.io/octave-sqlite/" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://github.com/gnu-octave/octave-sqlite/issues" 23 | maintainers: 24 | - name: "John Donoghue" 25 | contact: "john.donoghue@ieee.org" 26 | versions: 27 | - id: "0.1.2" 28 | date: "2025-12-17" 29 | sha256: "114b07a4ed3d730b55932c433608eb6b5ebdeefde5a14751df2bd145c6b356d6" 30 | url: "https://github.com/gnu-octave/octave-sqlite/releases/download/v0.1.2/octave-sqlite-0.1.2.tar.gz" 31 | depends: 32 | - "octave (>= 6.0.0)" 33 | - "pkg" 34 | ubuntu2204: 35 | - "libsqlite3-dev" 36 | - id: "0.1.1" 37 | date: "2025-10-11" 38 | sha256: "658ea04e75dc96efe04a23a1fa60a0409b892e6de0b21cf0035b6e29e062f9d0" 39 | url: "https://github.com/gnu-octave/octave-sqlite/releases/download/v0.1.1/octave-sqlite-0.1.1.tar.gz" 40 | depends: 41 | - "octave (>= 6.0.0)" 42 | - "pkg" 43 | ubuntu2204: 44 | - "libsqlite3-dev" 45 | - id: "0.1.0" 46 | date: "2024-01-11" 47 | sha256: "f0660bb4b89f916d911ff53c40c2e61ce2b1bd1f6de70cbb3fde3643e6b0c341" 48 | url: "https://github.com/gnu-octave/octave-sqlite/releases/download/v0.1.0/octave-sqlite-0.1.0.tar.gz" 49 | depends: 50 | - "octave (>= 6.0.0)" 51 | - "pkg" 52 | ubuntu2204: 53 | - "libsqlite3-dev" 54 | - id: "0.0.3" 55 | date: "2023-03-27" 56 | sha256: "c2b31838fb32a81344bc9cb0596d285cc717956924f798a31a414ea5a96d4093" 57 | url: "https://github.com/gnu-octave/octave-sqlite/releases/download/v0.0.3/octave-sqlite-0.0.3.tar.gz" 58 | depends: 59 | - "octave (>= 6.0.0)" 60 | - "pkg" 61 | ubuntu2204: 62 | - "libsqlite3-dev" 63 | - id: "0.0.2" 64 | date: "2022-10-21" 65 | sha256: "1a200efc289b019adbc2f88de25d3fed7fd22618db79e347c3db3f313a83012e" 66 | url: "https://github.com/gnu-octave/octave-sqlite/releases/download/v0.0.2/octave-sqlite-0.0.2.tar.gz" 67 | depends: 68 | - "octave (>= 6.0.0)" 69 | - "pkg" 70 | ubuntu2204: 71 | - "libsqlite3-dev" 72 | - id: "0.0.1" 73 | date: "2022-10-12" 74 | sha256: "eaffe0c12b7a32e470468ceab037a828954b4044d26f010bb47259cdc0b70696" 75 | url: "https://github.com/gnu-octave/octave-sqlite/releases/download/v0.0.1/octave-sqlite-0.0.1.tar.gz" 76 | depends: 77 | - "octave (>= 6.0.0)" 78 | - "pkg" 79 | ubuntu2204: 80 | - "libsqlite3-dev" 81 | --- 82 | -------------------------------------------------------------------------------- /packages/nan.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "nan/" 4 | description: >- 5 | A statistics and machine learning toolbox for data with and w/o missing 6 | values. 7 | icon: "https://octave.sourceforge.io/pkg_icon/nan.png" 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-3.0-or-later" 11 | url: "https://sourceforge.net/p/octave/NaN/ci/default/tree/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://sourceforge.net/p/octave/NaN/ci/default/tree/NEWS" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://sourceforge.net/p/octave/NaN/ci/default/tree/" 18 | - icon: "fas fa-th-list" 19 | label: "function reference" 20 | url: "https://octave.sourceforge.io/nan/overview.html" 21 | - icon: "fas fa-book" 22 | label: "package documentation" 23 | url: "https://pub.ist.ac.at/~schloegl/matlab/NaN/" 24 | - icon: "fas fa-bug" 25 | label: "report a problem" 26 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(nan)" 27 | maintainers: 28 | - name: "Alois Schlögl" 29 | contact: "alois.schloegl@gmail.com" 30 | versions: 31 | - id: "3.7.0" 32 | date: "2022-05-09" 33 | sha256: "77d27a05f34578ce4bb4caad8746e848f77d822614e362819f1aec50298a2b5b" 34 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/nan-3.7.0.tar.gz" 35 | depends: 36 | - "octave (>= 4.4.1)" 37 | - "pkg" 38 | - id: "3.6.1" 39 | date: "2021-11-03" 40 | sha256: "d4a7a367e5ff8c9540494ceb0b2c3d0671ae7fe7acd7e1e817a1f94c8d2379e7" 41 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/nan-3.6.1.tar.gz" 42 | depends: 43 | - "octave (>= 4.4.1)" 44 | - "pkg" 45 | - id: "3.6.0" 46 | date: "2021-07-26" 47 | sha256: "98b032711c8055615c4afcdd6fb851f1ab7cff086d467bafc1dccaf23c78adff" 48 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/nan-3.6.0.tar.gz" 49 | depends: 50 | - "octave (>= 4.4.1)" 51 | - "pkg" 52 | - id: "3.5.3" 53 | date: "2021-02-15" 54 | sha256: "fdd69a518f9898064f0c0523e39b2e965c8a8c5df1eb5d0e3a04c1bca0a251c9" 55 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/nan-3.5.3.tar.gz" 56 | depends: 57 | - "octave (>= 4.4.1)" 58 | - "pkg" 59 | - id: "3.5.2" 60 | date: "2020-10-31" 61 | sha256: "ea70b6debe00d617f6c0d18d1129d96580ca75931321baa32e1223070afde82e" 62 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/nan-3.5.2.tar.gz" 63 | depends: 64 | - "octave (>= 4.4.1)" 65 | - "pkg" 66 | - id: "3.5.0" 67 | date: "2020-07-12" 68 | sha256: "b4ccc6bea11c59a04a1e3c4841a2643b247ab4546cb27fc80137c0e7a7f9547a" 69 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/nan-3.5.0.tar.gz" 70 | depends: 71 | - "octave (>= 3.8.0)" 72 | - "pkg" 73 | --- 74 | -------------------------------------------------------------------------------- /packages/coder.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "coder/" 4 | description: >- 5 | Coder is an Octave code generator and build system that, given a function 6 | name translates the function and all of its dependencies to C++ and builds 7 | a .oct shared module. 8 | icon: "https://raw.githubusercontent.com/shsajjadi/OctaveCoder/dev/doc/icon.png" 9 | links: 10 | - icon: "far fa-copyright" 11 | label: "AGPL-3.0-or-later" 12 | url: "https://github.com/shsajjadi/OctaveCoder/blob/dev/COPYING" 13 | - icon: "fas fa-rss" 14 | label: "news" 15 | url: "https://github.com/shsajjadi/OctaveCoder/blob/dev/NEWS" 16 | - icon: "fas fa-code-branch" 17 | label: "repository" 18 | url: "https://github.com/shsajjadi/OctaveCoder" 19 | - icon: "fas fa-book" 20 | label: "package documentation" 21 | url: "https://github.com/shsajjadi/OctaveCoder/blob/dev/README.md" 22 | - icon: "fas fa-bug" 23 | label: "report a problem" 24 | url: "https://github.com/shsajjadi/OctaveCoder/issues" 25 | maintainers: 26 | - name: "Seyyed Hossein Sajjadi" 27 | contact: "https://github.com/shsajjadi" 28 | versions: 29 | - id: "1.10.1" 30 | date: "2025-03-30" 31 | sha256: "737990b495648fbcbeac7efb3d83b0119f474d01fa466b85053be6741c499926" 32 | url: "https://github.com/shsajjadi/OctaveCoder/releases/download/coder-1.10.1/coder-1.10.1.tar.gz" 33 | depends: 34 | - "octave (>= 4.4.0)" 35 | - "pkg" 36 | - id: "1.9.2" 37 | date: "2024-03-24" 38 | sha256: "3a0629a89b7fa9af3eb7e01ae7e9ac642c8dbba7a8dd502c3db8db0f3d9b3b99" 39 | url: "https://github.com/shsajjadi/OctaveCoder/releases/download/coder-1.9.2/coder-1.9.2.tar.gz" 40 | depends: 41 | - "octave (>= 4.4.0)" 42 | - "pkg" 43 | - id: "1.9.1" 44 | date: "2024-03-22" 45 | sha256: "ff0a0a29770fc785f8e528626bfa31b401e249a3c40ebd6b9061d5794a0f23a3" 46 | url: "https://github.com/shsajjadi/OctaveCoder/releases/download/coder-1.9.1/coder-1.9.1.tar.gz" 47 | depends: 48 | - "octave (>= 4.4.0)" 49 | - "pkg" 50 | - id: "1.8.4" 51 | date: "2023-11-13" 52 | sha256: "06ca00f5922127ed3ec34e49d7db308573e3a4fa6e84b65a066aee3523ed9348" 53 | url: "https://github.com/shsajjadi/OctaveCoder/releases/download/coder-1.8.4/coder-1.8.4.tar.gz" 54 | depends: 55 | - "octave (>= 4.4.0)" 56 | - "pkg" 57 | - id: "1.8.0" 58 | date: "2023-02-13" 59 | sha256: "fc832bccfb21de928139c0979b5513d347d469841a54d311ecd166a29356c990" 60 | url: "https://github.com/shsajjadi/OctaveCoder/archive/refs/tags/coder-1.8.0.tar.gz" 61 | depends: 62 | - "octave (>= 4.4.0)" 63 | - "pkg" 64 | - id: "1.7.0" 65 | date: "2022-03-26" 66 | sha256: "e373808593dcc813b5063d3d1898c854757d42e379376b7225d25f70923cf5dc" 67 | url: "https://github.com/shsajjadi/OctaveCoder/archive/refs/tags/coder-1.7.0.tar.gz" 68 | depends: 69 | - "octave (>= 4.4.0)" 70 | - "pkg" 71 | - id: "1.6.8" 72 | date: "2021-12-07" 73 | sha256: "5b12475750603abbfbc35059f7a79c92a82f73acc87e3053b5470f514f52c216" 74 | url: "https://github.com/shsajjadi/OctaveCoder/archive/refs/tags/coder-1.6.8.tar.gz" 75 | depends: 76 | - "octave (>= 4.4.0)" 77 | - "pkg" 78 | --- 79 | -------------------------------------------------------------------------------- /packages/fuzzy-logic-toolkit.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "fuzzy-logic-toolkit/" 4 | description: >- 5 | A mostly MATLAB-compatible fuzzy logic toolkit for Octave. 6 | icon: "https://octave.sourceforge.io/pkg_icon/fuzzy-logic-toolkit.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://github.com/lmarkowsky/fuzzy-logic-toolkit/blob/main/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://github.com/lmarkowsky/fuzzy-logic-toolkit/blob/main/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://github.com/lmarkowsky/fuzzy-logic-toolkit" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://lmarkowsky.github.io/fuzzy-logic-toolkit/" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://github.com/lmarkowsky/fuzzy-logic-toolkit/issues" 23 | maintainers: 24 | - name: "L. Markowsky" 25 | contact: "lmarkowsky@gmail.com" 26 | versions: 27 | - id: "0.6.2" 28 | date: "2025-05-15" 29 | sha256: "804aa3501105d6a6391307ace4e4d1f4dd91d0a248cb53ce3b2365377e900132" 30 | url: "https://github.com/lmarkowsky/fuzzy-logic-toolkit/archive/refs/tags/0.6.2.tar.gz" 31 | depends: 32 | - "octave (>= 3.2.4)" 33 | - "pkg" 34 | - id: "0.6.1" 35 | date: "2024-08-31" 36 | sha256: "24dab9cec77bb63cc94e7c2baa57528eee5c2df5285d77c07a33f1940307e959" 37 | url: "https://github.com/lmarkowsky/fuzzy-logic-toolkit/archive/refs/tags/0.6.1.tar.gz" 38 | depends: 39 | - "octave (>= 3.2.4)" 40 | - "pkg" 41 | - id: "0.6.0" 42 | date: "2024-06-05" 43 | sha256: "47fbc34232d87aebdf6d66b9d3a3c445dceeb3a7f1b9f9625160539da12fa63e" 44 | url: "https://github.com/lmarkowsky/fuzzy-logic-toolkit/archive/refs/tags/0.6.0.tar.gz" 45 | depends: 46 | - "octave (>= 3.2.4)" 47 | - "pkg" 48 | - id: "0.5.1" 49 | date: "2024-05-16" 50 | sha256: "4d8f1ebd7101c282c154ce59f492be58184b38d48c157812a58b96ea61d38375" 51 | url: "https://github.com/lmarkowsky/fuzzy-logic-toolkit/archive/refs/tags/0.5.1.tar.gz" 52 | depends: 53 | - "octave (>= 3.2.4)" 54 | - "pkg" 55 | - id: "0.5.0" 56 | date: "2024-05-12" 57 | sha256: "47911348f21af19f3626e78f330a2165ab28533a184881a9ce94cb7cb1c47e2b" 58 | url: "https://sourceforge.net/projects/octave-fuzzy/files/fuzzy-logic-toolkit-0.5.0.tar.gz/download" 59 | depends: 60 | - "octave (>= 3.2.4)" 61 | - "pkg" 62 | - id: "0.4.6" 63 | date: "2021-02-16" 64 | sha256: "8d15485faea8c41256ec017758a85e85734b7381cdc9a7ad7f9c572c2507dd88" 65 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/fuzzy-logic-toolkit-0.4.6.tar.gz" 66 | depends: 67 | - "octave (>= 3.2.4)" 68 | - "pkg" 69 | - id: "0.4.5" 70 | date: "2014-07-01" 71 | sha256: "b4c24ac48662ce413599721d2565e9eabf23ead6b9b36863d33740920aec4133" 72 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/fuzzy-logic-toolkit-0.4.5.tar.gz" 73 | depends: 74 | - "octave (>= 3.2.4)" 75 | - "pkg" 76 | --- 77 | -------------------------------------------------------------------------------- /packages/signal.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "signal/" 4 | description: >- 5 | Signal processing tools, including filtering, windowing and display 6 | functions. 7 | icon: "https://octave.sourceforge.io/pkg_icon/signal.png" 8 | links: 9 | - icon: "far fa-copyright" 10 | label: "GPL-3.0-or-later and public domain" 11 | url: "https://sourceforge.net/p/octave/signal/ci/default/tree/COPYING" 12 | - icon: "fas fa-rss" 13 | label: "news" 14 | url: "https://sourceforge.net/p/octave/signal/ci/default/tree/NEWS" 15 | - icon: "fas fa-code-branch" 16 | label: "repository" 17 | url: "https://sourceforge.net/p/octave/signal/ci/default/tree/" 18 | - icon: "fas fa-th-list" 19 | label: "function reference" 20 | url: "https://octave.sourceforge.io/signal/overview.html" 21 | - icon: "fas fa-bug" 22 | label: "report a problem" 23 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(signal)" 24 | maintainers: 25 | - name: "Mike Miller" 26 | contact: "mtmiller@octave.org" 27 | versions: 28 | - id: "1.4.6" 29 | date: "2024-09-20" 30 | sha256: "94eef8fea78c89609f8ddf6d5ff8bfc2e0dab932b43f86ce911474a58b5c71ee" 31 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/signal-1.4.6.tar.gz" 32 | depends: 33 | - "octave (>= 3.8.0)" 34 | - "control (>= 2.4.0)" 35 | - "pkg" 36 | - id: "1.4.5" 37 | date: "2023-07-21" 38 | sha256: "555ade2ff80f7118909395c33405f0a17a4fbcd22bc6d2fb9c3f7f45fef648e7" 39 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/signal-1.4.5.tar.gz" 40 | depends: 41 | - "octave (>= 3.8.0)" 42 | - "control (>= 2.4.0)" 43 | - "pkg" 44 | - id: "1.4.4" 45 | date: "2023-05-17" 46 | sha256: "119df4b3a177834d6dd9c3124a2167c05aff5e6582fd0d32a7f9f306d302293a" 47 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/signal-1.4.4.tar.gz" 48 | depends: 49 | - "octave (>= 3.8.0)" 50 | - "control (>= 2.4.0)" 51 | - "pkg" 52 | - id: "1.4.3" 53 | date: "2022-10-28" 54 | sha256: "545b97540ebeba3b420f08906fdd3977fc293b3bc8fc36f6ba8b094cea88f339" 55 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/signal-1.4.3.tar.gz" 56 | depends: 57 | - "octave (>= 3.8.0)" 58 | - "control (>= 2.4.0)" 59 | - "pkg" 60 | - id: "1.4.2" 61 | date: "2022-04-22" 62 | sha256: "62a4e06117dcc43c36169905f8255d015481ca982aeae9013b0d9df3e48e7062" 63 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/signal-1.4.2.tar.gz" 64 | depends: 65 | - "octave (>= 3.8.0)" 66 | - "control (>= 2.4.0)" 67 | - "pkg" 68 | - id: "1.4.1" 69 | date: "2019-02-08" 70 | sha256: "d978600f8b8f61339b986136c9862cad3e8f7015f84132f214bf63e9e281aeaa" 71 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/signal-1.4.1.tar.gz" 72 | depends: 73 | - "octave (>= 3.8.0)" 74 | - "control (>= 2.4.0)" 75 | - "pkg" 76 | --- 77 | -------------------------------------------------------------------------------- /packages/image.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "image/" 4 | description: >- 5 | Functions for image processing, feature extraction, image statistics, spatial 6 | and geometric transformations, morphological operations, linear filtering, 7 | and much more. 8 | icon: "https://octave.sourceforge.io/pkg_icon/image.png" 9 | links: 10 | - icon: "far fa-copyright" 11 | label: "GPL-3.0-or-later" 12 | url: "https://sourceforge.net/p/octave/image/ci/default/tree/COPYING" 13 | - icon: "fas fa-rss" 14 | label: "news" 15 | url: "https://sourceforge.net/p/octave/image/ci/default/tree/NEWS" 16 | - icon: "fas fa-code-branch" 17 | label: "repository" 18 | url: "https://sourceforge.net/p/octave/image/ci/default/tree/" 19 | - icon: "fas fa-th-list" 20 | label: "function reference" 21 | url: "https://octave.sourceforge.io/image/overview.html" 22 | - icon: "fas fa-bug" 23 | label: "report a problem" 24 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(image)" 25 | maintainers: 26 | - name: "Carnë Draug" 27 | contact: "carandraug@octave.org" 28 | - name: "Hartmut Gimpel" 29 | contact: "hg_code@gmx.de" 30 | - name: "Avinoam Kalma" 31 | contact: 32 | versions: 33 | - id: "2.18.1" 34 | date: "2025-09-05" 35 | sha256: "d4eed0579782c2efaa0818de2f20f13b276eb3d4b4b3d63347c7317d84e29531" 36 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/image-2.18.1.tar.gz" 37 | depends: 38 | - "octave (>= 7.2.0)" 39 | - "pkg" 40 | - id: "2.18.0" 41 | date: "2025-08-19" 42 | sha256: "d87af2b098a03b3fe78d05fe623cff49765f87251c0090769e214bbbc6569a00" 43 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/image-2.18.0.tar.gz" 44 | depends: 45 | - "octave (>= 7.2.0)" 46 | - "pkg" 47 | - id: "2.16.1" 48 | date: "2025-05-04" 49 | sha256: "34a84f755261f6c8d882d08b07567464ea25dc1515072ef6886f2b26ebf6f0a7" 50 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/image-2.16.1.tar.gz" 51 | depends: 52 | - "octave (>= 7.1.0)" 53 | - "pkg" 54 | - id: "2.16.0" 55 | date: "2025-03-03" 56 | sha256: "9bb26cca58eb1fbedfb3f84e3d2e7e1eeb5e16d7ebe3235b7c107d94f58d1417" 57 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/image-2.16.0.tar.gz" 58 | depends: 59 | - "octave (>= 7.1.0)" 60 | - "pkg" 61 | - id: "2.14.0" 62 | date: "2022-03-23" 63 | sha256: "7515ea211a8cb8ef5d9d3bab85a36e9df5475e8b05a919a078e0d52746077133" 64 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/image-2.14.0.tar.gz" 65 | depends: 66 | - "octave (>= 4.2.0)" 67 | - "pkg" 68 | - id: "2.12.0" 69 | date: "2020-01-30" 70 | sha256: "e7d58ced612bc6420d99bb06313250694e5f1d8dcc093293604c253c17c473b4" 71 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/image-2.12.0.tar.gz" 72 | depends: 73 | - "octave (>= 4.2.0)" 74 | - "pkg" 75 | --- 76 | -------------------------------------------------------------------------------- /packages/octave-pool.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "octave-pool/" 4 | description: >- 5 | Parallel computing with independent job submission for Octave. 6 | icon: 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "MIT" 10 | url: "https://github.com/reprostat/octave-pool/blob/master/COPYING" 11 | - icon: "fas fa-code-branch" 12 | label: "repository" 13 | url: "https://github.com/reprostat/octave-pool" 14 | - icon: "fas fa-bug" 15 | label: "report a problem" 16 | url: "https://github.com/reprostat/octave-pool/issues" 17 | maintainers: 18 | - name: "Tibor Auer" 19 | contact: "tibor.auer@gmail.com" 20 | versions: 21 | - id: "1.2.3" 22 | date: "2024-03-04" 23 | sha256: "d97a9829ef7a6ad0f486ee4f629ab3b179a04852bf61487d10ebe9d747d7557d" 24 | url: "https://github.com/reprostat/octave-pool/archive/refs/tags/1.2.3.tar.gz" 25 | depends: 26 | - "octave (>= 7.2.0)" 27 | - "fileio" 28 | - "pkg" 29 | - id: "1.2.2" 30 | date: "2024-01-10" 31 | sha256: "61fa694771a1ac8d98562df962178b420c7c66b61793e2b521ac28571dc71ed5" 32 | url: "https://github.com/reprostat/octave-pool/archive/refs/tags/1.2.2.tar.gz" 33 | depends: 34 | - "octave (>= 7.2.0)" 35 | - "fileio" 36 | - "pkg" 37 | - id: "1.2.0" 38 | date: "2024-01-05" 39 | sha256: "895d53bf6da198e93cc17d19de1a784140d03930cc97ece8cfa3cc341367a989" 40 | url: "https://github.com/reprostat/octave-pool/archive/refs/tags/1.2.0.tar.gz" 41 | depends: 42 | - "octave (>= 7.2.0)" 43 | - "fileio" 44 | - "pkg" 45 | - id: "1.1.5" 46 | date: "2023-07-04" 47 | sha256: "e55106a8d37bf58dd689b4025854a000eb631d55def6f4ddddf5c4313a2e297a" 48 | url: "https://github.com/reprostat/octave-pool/archive/refs/tags/1.1.5.tar.gz" 49 | depends: 50 | - "octave (>= 7.2.0)" 51 | - "fileio" 52 | - "pkg" 53 | - id: "1.1.2" 54 | date: "2023-06-07" 55 | sha256: "ce22b749c9c5aa8ab8353051d22bafd39742531bde0b22cffb59fb93c5a13179" 56 | url: "https://github.com/reprostat/octave-pool/archive/refs/tags/1.1.2.tar.gz" 57 | depends: 58 | - "octave (>= 7.2.0)" 59 | - "fileio" 60 | - "pkg" 61 | - id: "1.1.1" 62 | date: "2023-05-27" 63 | sha256: "38157495b96e77b4dce442e390346fc8b3b309e55dec107cd2a44ce6bb9dda42" 64 | url: "https://github.com/reprostat/octave-pool/archive/refs/tags/1.1.1.tar.gz" 65 | depends: 66 | - "octave (>= 7.2.0)" 67 | - "fileio" 68 | - "pkg" 69 | - id: "1.1.0" 70 | date: "2023-05-19" 71 | sha256: "96d650a32d8db9847828d782cca6bc31a2a29adeaaf5b9b03490880b2db3bb30" 72 | url: "https://github.com/reprostat/octave-pool/archive/refs/tags/1.1.0.tar.gz" 73 | depends: 74 | - "octave (>= 7.2.0)" 75 | - "fileio" 76 | - "pkg" 77 | - id: "1.0.1" 78 | date: "2023-05-03" 79 | sha256: "006e69238570f3d2fcfb3c1221ca46fc5328484b59caf029bde92aaf0c9070a8" 80 | url: "https://github.com/reprostat/octave-pool/archive/refs/tags/1.0.1.tar.gz" 81 | depends: 82 | - "octave (>= 7.2.0)" 83 | - "fileio" 84 | - "pkg" 85 | - id: "1.0.0" 86 | date: "2023-05-02" 87 | sha256: "7a2fb3fecbfbb49c72e4a9a2a3bfdaebb52cbc10007c4c936eba67af309337e0" 88 | url: "https://github.com/reprostat/octave-pool/archive/refs/tags/1.0.0.tar.gz" 89 | depends: 90 | - "octave (>= 7.2.0)" 91 | - "fileio" 92 | - "pkg" 93 | --- 94 | -------------------------------------------------------------------------------- /packages/zeromq.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "zeromq/" 4 | description: >- 5 | ZeroMQ bindings for GNU Octave. 6 | icon: "https://gnu-octave.github.io/octave-zeromq/assets/octave-zeromq.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://github.com/gnu-octave/octave-zeromq/blob/main/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://gnu-octave.github.io/octave-zeromq/news/" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://github.com/gnu-octave/octave-zeromq" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://gnu-octave.github.io/octave-zeromq/functions/" 20 | - icon: "fas fa-book" 21 | label: "package documentation" 22 | url: "https://gnu-octave.github.io/octave-zeromq/manual/" 23 | - icon: "fas fa-bug" 24 | label: "report a problem" 25 | url: "https://github.com/gnu-octave/octave-zeromq/issues" 26 | maintainers: 27 | - name: "John Donoghue" 28 | contact: "john.donoghue@ieee.org" 29 | versions: 30 | - id: "1.5.6" 31 | date: "2023-08-11" 32 | sha256: "2104b725f187472a0163917a1af83fc557f99b8fc986975140f47c146a057ae2" 33 | url: "https://github.com/gnu-octave/octave-zeromq/releases/download/release-1.5.6/zeromq-1.5.6.tar.gz" 34 | depends: 35 | - "octave (>= 4.0.0)" 36 | - "pkg" 37 | ubuntu2204: 38 | - "libzmq3-dev" 39 | - id: "1.5.5" 40 | date: "2022-10-17" 41 | sha256: "300644a5b56eada815b97acc27cab9fe3539713721a2c02dac047a1252f07ecb" 42 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/zeromq-1.5.5.tar.gz" 43 | depends: 44 | - "octave (>= 4.0.0)" 45 | - "pkg" 46 | ubuntu2204: 47 | - "libzmq3-dev" 48 | - id: "1.5.4" 49 | date: "2022-05-02" 50 | sha256: "c46a72fe0117b13a9f24fd48ffbbce65422fcb80b95ce09b78f1d0b086a9ded4" 51 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/zeromq-1.5.4.tar.gz" 52 | depends: 53 | - "octave (>= 4.0.0)" 54 | - "pkg" 55 | ubuntu2204: 56 | - "libzmq3-dev" 57 | - id: "1.5.3" 58 | date: "2021-07-15" 59 | sha256: "943bab8e38dd524b0e83882c65c2f71a35dcf142b2807cdc56d1db85af5817c0" 60 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/zeromq-1.5.3.tar.gz" 61 | depends: 62 | - "octave (>= 4.0.0)" 63 | - "pkg" 64 | ubuntu2204: 65 | - "libzmq3-dev" 66 | - id: "1.5.2" 67 | date: "2020-10-13" 68 | sha256: "47265bf1b2b1c747f78210a896b33b651d0e77919b01b1e519b99d98d30001a2" 69 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/zeromq-1.5.2.tar.gz" 70 | depends: 71 | - "octave (>= 4.0.0)" 72 | - "pkg" 73 | ubuntu2204: 74 | - "libzmq3-dev" 75 | - id: "1.5.1" 76 | date: "2020-04-28" 77 | sha256: "14d16880ea048eae93763950f56e6212be37169fcb3851d66d799c80aeb6287b" 78 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/zeromq-1.5.1.tar.gz" 79 | depends: 80 | - "octave (>= 4.0.0)" 81 | - "pkg" 82 | ubuntu2204: 83 | - "libzmq3-dev" 84 | --- 85 | -------------------------------------------------------------------------------- /packages/netcdf.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "package" 3 | permalink: "netcdf/" 4 | description: >- 5 | A NetCDF interface for Octave. 6 | icon: "https://octave.sourceforge.io/pkg_icon/netcdf.png" 7 | links: 8 | - icon: "far fa-copyright" 9 | label: "GPL-3.0-or-later" 10 | url: "https://sourceforge.net/p/octave/netcdf/ci/master/tree/COPYING" 11 | - icon: "fas fa-rss" 12 | label: "news" 13 | url: "https://sourceforge.net/p/octave/netcdf/ci/master/tree/NEWS" 14 | - icon: "fas fa-code-branch" 15 | label: "repository" 16 | url: "https://sourceforge.net/p/octave/netcdf/ci/master/tree/" 17 | - icon: "fas fa-th-list" 18 | label: "function reference" 19 | url: "https://octave.sourceforge.io/netcdf/overview.html" 20 | - icon: "fas fa-bug" 21 | label: "report a problem" 22 | url: "https://savannah.octave.org/?Action=get&Format=HTMLCSS&Title=[octave%20forge]%20(netcdf)" 23 | maintainers: 24 | - name: "Alexander Barth" 25 | contact: "barth.alexander@gmail.com" 26 | - name: "John Donoghue" 27 | contact: "john.donoghue@ieee.org" 28 | versions: 29 | - id: "1.0.18" 30 | date: "2024-09-24" 31 | sha256: "c9d81c285878b96b9296bef3c3e935245512cc69bdb625a6387575216be58309" 32 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/netcdf-1.0.18.tar.gz" 33 | depends: 34 | - "octave (>= 4.0.0)" 35 | - "pkg" 36 | ubuntu2204: 37 | - "libnetcdf-dev" 38 | - id: "1.0.17" 39 | date: "2023-09-18" 40 | sha256: "bae143f1535e59bc8717258c0cccd60ddda7f9d1bd10599cfc99d9536b71f949" 41 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/netcdf-1.0.17.tar.gz" 42 | depends: 43 | - "octave (>= 4.0.0)" 44 | - "pkg" 45 | ubuntu2204: 46 | - "libnetcdf-dev" 47 | - id: "1.0.16" 48 | date: "2022-09-16" 49 | sha256: "d4bafeeb12d15f149e52133df9674250f15165259dc6d010971a62bf808726bb" 50 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/netcdf-1.0.16.tar.gz" 51 | depends: 52 | - "octave (>= 4.0.0)" 53 | - "pkg" 54 | ubuntu2204: 55 | - "libnetcdf-dev" 56 | - id: "1.0.15" 57 | date: "2022-09-12" 58 | sha256: "8474051b853272778aecb757d502e4e59e4283b2e47b0a30647837a4da799c5c" 59 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/netcdf-1.0.15.tar.gz" 60 | depends: 61 | - "octave (>= 4.0.0)" 62 | - "pkg" 63 | ubuntu2204: 64 | - "libnetcdf-dev" 65 | - id: "1.0.14" 66 | date: "2020-10-14" 67 | sha256: "8ea6ea25330f10eaa9772e52e71be9607dea87704f3ad9db9ce7b1f7cda1bcf1" 68 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/netcdf-1.0.14.tar.gz" 69 | depends: 70 | - "octave (>= 3.8.0)" 71 | - "pkg" 72 | ubuntu2204: 73 | - "libnetcdf-dev" 74 | - id: "1.0.13" 75 | date: "2020-03-13" 76 | sha256: "56a07016aab6af5e597ea4b9e06dcc878283b4ee8d3a605235ae19dd829dd9e2" 77 | url: "https://downloads.sourceforge.net/project/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases/netcdf-1.0.13.tar.gz" 78 | depends: 79 | - "octave (>= 3.8.0)" 80 | - "pkg" 81 | ubuntu2204: 82 | - "libnetcdf-dev" 83 | --- 84 | -------------------------------------------------------------------------------- /feed.xml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: none 3 | --- 4 | 5 | 6 | Jekyll 7 | 8 | 9 | {{ site.time | date_to_xmlschema }} 10 | {{ page.url | absolute_url | xml_escape }} 11 | 12 | {{ site.title | smartify | xml_escape }} 13 | {{ site.description | xml_escape }} 14 | 15 | Octave community 16 | 17 | 18 | {%- assign packages = site.pages | where: "layout", "package" -%} 19 | {%- assign i = 0 -%} 20 | {%- for pkg in packages -%} 21 | {%- assign t = pkg.versions[0].date | date_to_xmlschema | append: "$" | append: i | append: ", " -%} 22 | {%- if t.size > 10 -%} 23 | {%- assign timesort = timesort | append: t -%} 24 | {%- endif -%} 25 | {%- assign i = i | plus:1 -%} 26 | {%- endfor -%} 27 | {%- assign timesort = timesort | split: ", " | sort | reverse | slice: 0, 10 -%} 28 | {%- for t in timesort -%} 29 | {%- assign tt = t | split: "$" | shift | join: ", " -%} 30 | {%- assign times = times | append: tt | append: ", " -%} 31 | {%- endfor -%} 32 | {%- assign times = times | split: ", " -%} 33 | 34 | {%- for t in times -%} 35 | {%- assign tt = t | to_integer -%} 36 | {%- assign pkg = packages[tt] -%} 37 | {%- assign pkg_name = pkg.permalink | remove: "/" -%} 38 | 39 | {{ pkg_name | absolute_url }}#{{ pkg.versions[0].id }} 40 | {{ pkg_name }} {{ pkg.versions[0].id }} released 41 | 43 | {{ pkg.versions[0].date | date_to_xmlschema }} 44 | {{ pkg.versions[0].date | date_to_xmlschema }} 45 | {{ pkg.description | strip_html | strip | escape }} 46 | 47 | {%- capture content -%} 48 |

49 | {{ pkg_name }}

51 |

{{ pkg.description | strip_html | strip | escape }}

52 |

Install {{ pkg_name }} {{ pkg.versions[0].id }} ({{ pkg.versions[0].date }}) 53 | from the Octave command-line with:

54 |
pkg install "{{ pkg.versions[0].url }}"
55 | {%- assign news = pkg.links | where: "label", "news" -%} 56 | {%- if news != empty -%} 57 |

See what has changed in this release in the 58 | NEWS file.

59 | {%- endif -%} 60 | {%- endcapture -%} 61 | {{ content | xml_escape }} 62 |
63 |
64 | {%- endfor -%} 65 |
66 | --------------------------------------------------------------------------------