{"id":18302299,"url":"https://github.com/outscale/homebrew-tap","last_synced_at":"2026-05-02T06:38:19.874Z","repository":{"id":180356418,"uuid":"664939345","full_name":"outscale/homebrew-tap","owner":"outscale","description":"Outscalehomebrew tap ","archived":false,"fork":false,"pushed_at":"2025-01-23T15:22:41.000Z","size":16,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-02-15T04:24:03.411Z","etag":null,"topics":["formulae","homebrew","tap"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/outscale.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2023-07-11T05:01:29.000Z","updated_at":"2025-01-23T15:22:44.000Z","dependencies_parsed_at":"2024-08-20T14:55:01.045Z","dependency_job_id":"89ba7b92-b605-4890-8ec0-8582568e2030","html_url":"https://github.com/outscale/homebrew-tap","commit_stats":null,"previous_names":["outscale/homebrew-tap"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/outscale%2Fhomebrew-tap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/outscale%2Fhomebrew-tap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/outscale%2Fhomebrew-tap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/outscale%2Fhomebrew-tap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/outscale","download_url":"https://codeload.github.com/outscale/homebrew-tap/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248018061,"owners_count":21034048,"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":["formulae","homebrew","tap"],"created_at":"2024-11-05T15:19:03.372Z","updated_at":"2026-05-02T06:38:19.868Z","avatar_url":"https://github.com/outscale.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Outscale Brew Formulas\n\n[![Project Incubating](https://docs.outscale.com/fr/userguide/_images/Project-Incubating-blue.svg)](https://docs.outscale.com/en/userguide/Open-Source-Projects.html) [![](https://dcbadge.limes.pink/api/server/HUVtY5gT6s?style=flat\\\u0026theme=default-inverted)](https://discord.gg/HUVtY5gT6s)\n\n---\n\n## 🌐 Links\n\n* Documentation: [https://docs.outscale.com/en/](https://docs.outscale.com/en/)\n* Tap URL: `outscale/tap`\n* Community: Join us on [Discord](https://discord.gg/HUVtY5gT6s)\n\n---\n\n## 📄 Table of Contents\n\n* [Overview](#-overview)\n* [Requirements](#-requirements)\n* [Installation](#-installation)\n* [Usage](#-usage)\n* [Maintainers: Updating Python Formulae](#-maintainers-updating-python-formulae)\n* [Contributing](#-contributing)\n* [License](#-license)\n\n---\n\n## 🧭 Overview\n\n**Outscale Brew Formulas** is the official Homebrew tap for Outscale tools and utilities.\nIt lets you install Outscale software via `brew` on macOS and Linux.\n\n**Highlights**\n\n* Simple installation with `brew tap outscale/tap`\n* Reproducible builds with vendored Python resources\n* Central place to discover Outscale CLI tools\n\n---\n\n## ✅ Requirements\n\n* macOS or Linux\n* [Homebrew](https://brew.sh/) installed and in your `PATH`\n* (Optional) Developer tools for building from source\n\n---\n\n## ⚙ Installation\n\n```bash\nbrew tap outscale/tap\n```\n\nYou can then install any formula from this tap, for example:\n\n```bash\nbrew install outscale/tap/\u003cformula-name\u003e\n# e.g.\n# brew install outscale/tap/oapi-cli\n```\n\n---\n\n## 🚀 Usage\n\nList available formulas from the tap:\n\n```bash\nbrew search outscale/tap/\n```\n\nUpgrade installed formulas:\n\n```bash\nbrew upgrade outscale/tap/\u003cformula-name\u003e\n```\n\nReinstall from source (useful while developing a formula):\n\n```bash\nbrew reinstall --build-from-source ./\u003cformula-file\u003e.rb\n```\n\n---\n\n## 🔧 Maintainers: Updating Python Formulae\n\nWhen a packaged Python project releases a new version, update the corresponding formula:\n\n1. **Get the new version and file URL on PyPI**\n\n   * Go to the project’s page on PyPI (e.g., `https://pypi.org/project/\u003cpkg\u003e/\u003cversion\u003e/#files`)\n   * Copy the **source tarball** URL and its **SHA256**.\n\n2. **Edit the formula**\n\n   * Update the `url` and `sha256` fields in `./\u003cformula\u003e.rb` to match the new PyPI release.\n\n3. **Refresh vendored resources**\n\n   * From the repository root, run:\n\n     ```bash\n     brew update-python-resources ./oapi-cli.rb\n     ```\n\n     Replace `oapi-cli.rb` with the formula you’re maintaining.\n\n4. **Test locally**\n\n   ```bash\n   brew reinstall --build-from-source ./oapi-cli.rb\n   brew audit --new --strict ./oapi-cli.rb\n   brew test ./oapi-cli.rb\n   ```\n\n5. **Open a PR**\n\n   * Include a short changelog and the upstream release link.\n\n---\n\n## 📜 License\n\n**Outscale Brew Formulas** is released under the BSD-3-Clause license.\n\n© 2025 Outscale SAS\n\nSee [LICENSE](./LICENSE) for full details.\n\n---\n\n## 🤝 Contributing\n\nWe welcome contributions!\n\nPlease read our [Contributing Guidelines](CONTRIBUTING.md) and [Code of Conduct](CODE_OF_CONDUCT.md) before submitting a pull request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foutscale%2Fhomebrew-tap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foutscale%2Fhomebrew-tap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foutscale%2Fhomebrew-tap/lists"}