{"id":15111323,"url":"https://github.com/easbarba/onur-rust","last_synced_at":"2025-04-05T17:21:27.836Z","repository":{"id":255589998,"uuid":"852458851","full_name":"easbarba/onur-rust","owner":"easbarba","description":"Easily manage multiple FLOSS repositories","archived":false,"fork":false,"pushed_at":"2024-09-06T00:09:32.000Z","size":172,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-18T23:43:53.991Z","etag":null,"topics":["free-software","git","gnu","json","libgit","rust","toml"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/easbarba.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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":"2024-09-04T20:58:17.000Z","updated_at":"2024-09-06T00:09:35.000Z","dependencies_parsed_at":"2024-09-06T06:44:27.055Z","dependency_job_id":"03544e8e-de07-4137-909c-e8b3277fdfeb","html_url":"https://github.com/easbarba/onur-rust","commit_stats":null,"previous_names":["easbarba/onur-rust"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easbarba%2Fonur-rust","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easbarba%2Fonur-rust/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easbarba%2Fonur-rust/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easbarba%2Fonur-rust/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/easbarba","download_url":"https://codeload.github.com/easbarba/onur-rust/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238307735,"owners_count":19450369,"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":["free-software","git","gnu","json","libgit","rust","toml"],"created_at":"2024-09-26T00:03:29.704Z","updated_at":"2025-02-11T14:24:54.265Z","avatar_url":"https://github.com/easbarba.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--\nOnur is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nOnur is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with Onur. If not, see \u003chttps://www.gnu.org/licenses/\u003e.\n--\u003e\n\n# Onur | Rust\n\nEasily manage multiple FLOSS repositories.\n\n[cpp](https://gitlab.com/easbarba/onur-cpp) | [c](https://gitlab.com/easbarba/onur) | [dotnet](https://gitlab.com/easbarba/onur-dotnet) | [go](https://gitlab.com/easbarba/onur-go) | [php](https://gitlab.com/easbarba/onur-php) | [java](https://gitlab.com/easbarba/onur-java) \n| [ruby](https://gitlab.com/easbarba/onur-ruby)\n\n## Usage\n\n```shell\n# grab all projects\nonur grab \n\n# grab only the c projects\nonur grab c \n\n# list the cpp configuration file\nonur config cpp \n\n# list topics of haskell\nonur config haskell.\n\n# list only the projects on misc topic of lisp\nonur config lisp.misc \n\n# add a new configuration with theses entries in the topic misc of c\nonur config c.misc cli11 https://github.com/cliutils/cli11 main \n\n# back up these projects as tar.gz\nonur backup ecmascript.nuxt lua.awesomewm misc.gitignore \n\nonur --help\n```\n\n## Configuration file\n\n`onur` consumes configuration in the following manners:\n\nBy default it looks for configuration files at `$XDG_CONFIG/onur` or in the\ndirectory set in the `$ONUR_CONFIG_HOME` environment variable.\n\n```json\n{\n  \"main\": [\n    {\n      \"name\": \"awesomewm\",\n      \"url\": \"https://github.com/awesomeWM/awesome\"\n    },\n    {\n      \"name\": \"nuxt\",\n      \"branch\": \"main\",\n      \"url\": \"https://github.com/nuxt/framework\"\n    }\n  ],\n  \"misc\": [\n    {\n      \"name\": \"awesomewm\",\n      \"url\": \"https://github.com/awesomeWM/awesome\"\n    },\n    {\n      \"name\": \"nuxt\",\n      \"branch\": \"main\",\n      \"url\": \"https://github.com/nuxt/framework\"\n    }\n  ],\n  \"tools/gnu\": [\n    {\n      \"name\": \"inetutils\",\n      \"url\": \"https://git.savannah.gnu.org/git/inetutils.git\"\n    },\n    {\n      \"name\": \"gnu-wget\",\n      \"url\": \"https://git.savannah.gnu.org/git/wget.git\"\n    }\n  ]\n}\n```\n\nMore examples of configuration files are at [examples](examples).\n\n## Settings\n\n`settings.toml`\n\n```toml\n[git]\nsingle-branch = true\nquiet = true\ndepth = 1\n```\n\n# Installation\n\n`cargo install --git https://gitlab.com/easbarba/onur`\n`\n\n## DEVELOPMENT\n\nIn development it may suit you better running the tests in a isolated environment\nwith containers, that can be done so:\n\n    docker run --rm -it $(docker build -qf Containerfile.run)\n \nor: \n\n    podman build https://gitlab.com/easbarba/onur/-/raw/main/Containerfile --tag onur:latest\n    podman run --rm -it onur:latest \n\n\n![Onur CLI](onur.png)\n\n## LICENSE\n\n[GNU GENERAL PUBLIC LICENSE Version 3](https://www.gnu.org/licenses/gpl-3.0.en.html)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feasbarba%2Fonur-rust","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feasbarba%2Fonur-rust","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feasbarba%2Fonur-rust/lists"}