{"id":18387273,"url":"https://github.com/genodelabs/goa","last_synced_at":"2025-04-07T00:34:03.253Z","repository":{"id":48781864,"uuid":"224025488","full_name":"genodelabs/goa","owner":"genodelabs","description":"Tool for streamlining the development of Genode applications","archived":false,"fork":false,"pushed_at":"2025-03-27T13:06:15.000Z","size":513,"stargazers_count":22,"open_issues_count":13,"forks_count":19,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-03-27T13:28:22.701Z","etag":null,"topics":["cplusplus","cpp","gcc","genode","goa","linux","osdev","sculpt-os","tool"],"latest_commit_sha":null,"homepage":"","language":"Tcl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/genodelabs.png","metadata":{"files":{"readme":"README","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-11-25T19:29:50.000Z","updated_at":"2025-02-28T10:20:21.000Z","dependencies_parsed_at":"2023-09-23T12:33:06.173Z","dependency_job_id":"b1e4c888-0123-4a43-a4a9-c52514612716","html_url":"https://github.com/genodelabs/goa","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/genodelabs%2Fgoa","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/genodelabs%2Fgoa/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/genodelabs%2Fgoa/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/genodelabs%2Fgoa/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/genodelabs","download_url":"https://codeload.github.com/genodelabs/goa/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247574088,"owners_count":20960495,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cplusplus","cpp","gcc","genode","goa","linux","osdev","sculpt-os","tool"],"created_at":"2024-11-06T01:25:32.754Z","updated_at":"2025-04-07T00:34:02.785Z","avatar_url":"https://github.com/genodelabs.png","language":"Tcl","readme":"\n\n                   ===========================================\n                   Goa - goal, but reached a little bit sooner\n                   ===========================================\n\n\nGoa is a command-line-based workflow tool for the development of applications\nfor the [https://genode.org - Genode OS Framework]. It streamlines the work of\ncross-developing Genode application software using a GNU/Linux-based host\nsystem for development, in particular\n\n* Importing 3rd-party source code,\n\n* Building software using commodity build systems such as CMake,\n\n* Test-running software on the host system,\n\n* Crafting runtime configurations for deployment, and\n\n* Packaging and publishing the software for the integration into Genode\n  systems like [https://genode.org/download/sculpt - Sculpt OS].\n\nGoa is solely geared towards application software. It does _not_ address the\nfollowing topics:\n\n* Integration of complete Genode systems,\n\n* Test automation,\n\n* Continuous testing and integration (CI).\n\nThose topics are covered by the tools that come with the Genode project and\nare described in Chapter 5 of the Genode Foundations book:\n[https://genode.org/documentation/genode-foundations/23.05/development/index.html]\n\n\nInstallation\n------------\n\n# Install the latest Genode tool chain on a GNU/Linux OS on a 64-bit x86 PC.\n  It is recommended to use the latest long-term support (LTS) version of\n  Ubuntu. Make sure that your installation satisfies the following\n  requirements.\n\n  * _libSDL-dev_ needed to run system scenarios directly on your host OS,\n  * _tclsh_ and _expect_ needed by the tools,\n  * _xmllint_ for validating configurations,\n\n# Clone the Goa repository:\n\n  ! git clone https://github.com/genodelabs/goa.git\n\n  The following steps refer to the directory of the clone as '\u003cgoa-dir\u003e'.\n\n# Enable your shell to locate the 'goa' tool by either\n\n  * Creating a symbolic link in one of your shell's binary-search\n    locations (e.g., if you use a 'bin/' directory in your home directory,\n    issue 'ln -s \u003cgoa-dir\u003e/bin/goa ~/bin/'), or alternatively\n\n  * Add '\u003cgoa-dir\u003e/bin/\u003e' to your 'PATH' environment variable, e.g.,\n    (replace '\u003cgoa-dir\u003e' with the absolute path of your clone):\n\n    ! export PATH=$PATH:\u003cgoa-dir\u003e/bin\n\n# Optionally, enable bash completion by adding the following line to your\n  '~/.bashrc' file:\n\n  ! source \u003cgoa-dir\u003e/share/bash-completion/goa\n\n\nUsage\n-----\n\nOnce installed, obtain further information about the use of Goa via\nthe 'goa help' command.\n\n\nStep-by-step tutorials\n----------------------\n\nThe following article series gets you started with using Goa.\n\n:Streamlining the development of Genode applications:\n\n  [https://genodians.org/nfeske/2019-11-25-goa]\n\n:Sticking together a little Unix (part 1):\n\n  [https://genodians.org/nfeske/2019-12-13-goa-unix-bash]\n\n:Sticking together a little Unix (part 2):\n\n  [https://genodians.org/nfeske/2019-12-19-goa-unix-terminal]\n\n:Sticking together a little Unix (part 3):\n\n  [https://genodians.org/nfeske/2019-12-22-goa-unix-pipes]\n\n:Publishing packages:\n\n  [https://genodians.org/nfeske/2020-01-16-goa-publish]\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgenodelabs%2Fgoa","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgenodelabs%2Fgoa","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgenodelabs%2Fgoa/lists"}