{"id":15099895,"url":"https://github.com/sorairolake/sysexits-zig","last_synced_at":"2025-04-14T22:44:31.096Z","repository":{"id":238331125,"uuid":"795920526","full_name":"sorairolake/sysexits-zig","owner":"sorairolake","description":"The system exit codes as defined by \u003csysexits.h\u003e for Zig","archived":false,"fork":false,"pushed_at":"2025-04-13T16:19:44.000Z","size":128,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-04-13T17:32:00.356Z","etag":null,"topics":["exitcode","sysexits","zig","zig-library","zig-package","ziglang"],"latest_commit_sha":null,"homepage":"","language":"Zig","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sorairolake.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.adoc","contributing":"CONTRIBUTING.adoc","funding":null,"license":"LICENSE-APACHE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.adoc","dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-05-04T11:55:57.000Z","updated_at":"2025-04-13T16:19:47.000Z","dependencies_parsed_at":"2024-05-05T17:42:34.228Z","dependency_job_id":"cca3df48-f411-48c2-b6d5-b364f23fa1fe","html_url":"https://github.com/sorairolake/sysexits-zig","commit_stats":{"total_commits":83,"total_committers":2,"mean_commits":41.5,"dds":0.07228915662650603,"last_synced_commit":"4209079003f1f01565d797add5f03f59459e21ab"},"previous_names":["sorairolake/sysexits-zig"],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorairolake%2Fsysexits-zig","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorairolake%2Fsysexits-zig/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorairolake%2Fsysexits-zig/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorairolake%2Fsysexits-zig/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sorairolake","download_url":"https://codeload.github.com/sorairolake/sysexits-zig/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248975291,"owners_count":21192198,"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":["exitcode","sysexits","zig","zig-library","zig-package","ziglang"],"created_at":"2024-09-25T17:40:36.274Z","updated_at":"2025-04-14T22:44:31.090Z","avatar_url":"https://github.com/sorairolake.png","language":"Zig","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--\nSPDX-FileCopyrightText: 2023 Shun Sakai\n\nSPDX-License-Identifier: Apache-2.0 OR MIT\n--\u003e\n\n# sysexits-zig\n\n[![CI][ci-badge]][ci-url]\n\n**sysexits-zig** is a library that provides the system exit code constants as\ndefined by [`\u003csysexits.h\u003e`].\n\nThis library is a port of [sysexits-rs].\n\n## Usage\n\nAdd this package to your `build.zig.zon`:\n\n```sh\nzig fetch --save git+https://github.com/sorairolake/sysexits-zig.git\n```\n\nAdd the following to your `build.zig`:\n\n```zig\nconst sysexits = b.dependency(\"sysexits\", .{});\nexe.root_module.addImport(\"sysexits\", sysexits.module(\"sysexits\"));\n```\n\n### Documentation\n\nTo build the documentation:\n\n```sh\nzig build doc\n```\n\nThe result is generated in `zig-out/doc/sysexits`.\n\nIf you want to preview this, run a HTTP server locally. For example:\n\n```sh\npython -m http.server -d zig-out/doc/sysexits\n```\n\nThen open `http://localhost:8000/` in your browser.\n\n## Zig version\n\nThis library is compatible with Zig version 0.14.0.\n\n## Source code\n\nThe upstream repository is available at\n\u003chttps://github.com/sorairolake/sysexits-zig.git\u003e.\n\n## Changelog\n\nPlease see [CHANGELOG.adoc].\n\n## Contributing\n\nPlease see [CONTRIBUTING.adoc].\n\n## Similar projects\n\n- \u003chttps://github.com/sorairolake/Sysexits.jl\u003e (Julia)\n- \u003chttps://github.com/sorairolake/sysexits-rs\u003e (Rust)\n\nYou can discover more projects at\n\u003chttps://github.com/sorairolake/awesome-sysexits\u003e.\n\n## License\n\nCopyright (C) 2023 Shun Sakai (see [AUTHORS.adoc])\n\nThis library is distributed under the terms of either the _Apache License 2.0_\nor the _MIT License_.\n\nThis project is compliant with version 3.3 of the [_REUSE Specification_]. See\ncopyright notices of individual files for more details on copyright and\nlicensing information.\n\n[ci-badge]: https://img.shields.io/github/actions/workflow/status/sorairolake/sysexits-zig/CI.yaml?branch=develop\u0026style=for-the-badge\u0026logo=github\u0026label=CI\n[ci-url]: https://github.com/sorairolake/sysexits-zig/actions?query=branch%3Adevelop+workflow%3ACI++\n[`\u003csysexits.h\u003e`]: https://man.openbsd.org/sysexits\n[sysexits-rs]: https://crates.io/crates/sysexits\n[CHANGELOG.adoc]: CHANGELOG.adoc\n[CONTRIBUTING.adoc]: CONTRIBUTING.adoc\n[AUTHORS.adoc]: AUTHORS.adoc\n[_REUSE Specification_]: https://reuse.software/spec-3.3/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsorairolake%2Fsysexits-zig","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsorairolake%2Fsysexits-zig","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsorairolake%2Fsysexits-zig/lists"}