{"id":20273017,"url":"https://github.com/sorairolake/lzip-go","last_synced_at":"2025-04-11T04:42:34.942Z","repository":{"id":231511631,"uuid":"781938998","full_name":"sorairolake/lzip-go","owner":"sorairolake","description":"Pure Go implementation for reading and writing lzip format compressed files","archived":false,"fork":false,"pushed_at":"2025-04-09T01:15:10.000Z","size":208,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"develop","last_synced_at":"2025-04-11T04:42:28.686Z","etag":null,"topics":["compression","decompression","go","golang","lzip","lzma"],"latest_commit_sha":null,"homepage":"","language":"Go","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","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}},"created_at":"2024-04-04T10:29:36.000Z","updated_at":"2025-04-09T01:15:12.000Z","dependencies_parsed_at":"2024-12-05T02:26:06.252Z","dependency_job_id":"ab7e36a6-49ce-4da7-94ae-d1828ae19c9c","html_url":"https://github.com/sorairolake/lzip-go","commit_stats":null,"previous_names":["sorairolake/lzip-go"],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorairolake%2Flzip-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorairolake%2Flzip-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorairolake%2Flzip-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorairolake%2Flzip-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sorairolake","download_url":"https://codeload.github.com/sorairolake/lzip-go/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248345281,"owners_count":21088242,"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":["compression","decompression","go","golang","lzip","lzma"],"created_at":"2024-11-14T12:47:47.149Z","updated_at":"2025-04-11T04:42:34.934Z","avatar_url":"https://github.com/sorairolake.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"\u003c!--\nSPDX-FileCopyrightText: 2024 Shun Sakai\n\nSPDX-License-Identifier: Apache-2.0 OR MIT\n--\u003e\n\n# lzip-go\n\n[![CI][ci-badge]][ci-url]\n[![Go Reference][reference-badge]][reference-url]\n![Go version][go-version-badge]\n\n**lzip-go** is an implementation of the [lzip compressed format] written in\npure [Go].\n\nThis package supports reading and writing of lzip compressed streams.\n\n## Usage\n\nTo install this package:\n\n```sh\ngo get -u github.com/sorairolake/lzip-go\n```\n\n### Documentation\n\nSee the [documentation][reference-url] for more details.\n\n## Command-line utility\n\nThis package includes a simple command-line utility for reading and writing of\nlzip format compressed files.\n\n### Installation\n\n#### From source\n\n```sh\ngo install github.com/sorairolake/lzip-go/cmd/glzip@latest\n```\n\n#### From binaries\n\nThe [release page] contains pre-built binaries for Linux, macOS, Windows and\nothers.\n\n#### How to build\n\nTo build the command-line utility:\n\n```sh\njust build-cmd\n```\n\nTo build a man page:\n\n```sh\njust build-man\n```\n\nThe man page is generated in `docs/man/man1`. Note that [Asciidoctor] is\nrequired when building the man page.\n\n### Usage\n\nPlease see [`glzip(1)`].\n\n## Minimum Go version\n\nThis package requires the minimum version of Go 1.22.\n\n## Source code\n\nThe upstream repository is available at\n\u003chttps://github.com/sorairolake/lzip-go.git\u003e.\n\nThe source code is also available at:\n\n- \u003chttps://gitlab.com/sorairolake/lzip-go.git\u003e\n- \u003chttps://codeberg.org/sorairolake/lzip-go.git\u003e\n\n## Changelog\n\nPlease see [CHANGELOG.adoc].\n\n## Contributing\n\nPlease see [CONTRIBUTING.adoc].\n\n## Acknowledgment\n\nThe API of this package is based on the [`compress/gzip`] package.\n\nThis package uses the [`github.com/ulikunitz/xz/lzma`] package to encode and\ndecode LZMA streams.\n\n## License\n\nCopyright (C) 2024 Shun Sakai (see [AUTHORS.adoc])\n\nThis package 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/lzip-go/CI.yaml?branch=develop\u0026style=for-the-badge\u0026logo=github\u0026label=CI\n[ci-url]: https://github.com/sorairolake/lzip-go/actions?query=branch%3Adevelop+workflow%3ACI++\n[reference-badge]: https://img.shields.io/badge/Go-Reference-steelblue?style=for-the-badge\u0026logo=go\n[reference-url]: https://pkg.go.dev/github.com/sorairolake/lzip-go\n[go-version-badge]: https://img.shields.io/github/go-mod/go-version/sorairolake/lzip-go?style=for-the-badge\u0026logo=go\n[lzip compressed format]: https://www.nongnu.org/lzip/manual/lzip_manual.html#File-format\n[Go]: https://go.dev/\n[release page]: https://github.com/sorairolake/lzip-go/releases\n[Asciidoctor]: https://asciidoctor.org/\n[`glzip(1)`]: docs/man/man1/glzip.1.adoc\n[CHANGELOG.adoc]: CHANGELOG.adoc\n[CONTRIBUTING.adoc]: CONTRIBUTING.adoc\n[`compress/gzip`]: https://pkg.go.dev/compress/gzip\n[`github.com/ulikunitz/xz/lzma`]: https://pkg.go.dev/github.com/ulikunitz/xz/lzma\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%2Flzip-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsorairolake%2Flzip-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsorairolake%2Flzip-go/lists"}