{"id":33559555,"url":"https://github.com/elaradevsolutions/homebrew-tools","last_synced_at":"2026-04-18T10:09:16.239Z","repository":{"id":323088198,"uuid":"1091783611","full_name":"ElaraDevSolutions/homebrew-tools","owner":"ElaraDevSolutions","description":"Homebrew formula for gt","archived":false,"fork":false,"pushed_at":"2025-11-26T19:17:09.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-28T19:28:58.774Z","etag":null,"topics":["brew","homebrew","tool"],"latest_commit_sha":null,"homepage":"https://github.com/ElaraDevSolutions/gittool","language":"Shell","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/ElaraDevSolutions.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-07T14:10:33.000Z","updated_at":"2025-11-26T19:17:12.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ElaraDevSolutions/homebrew-tools","commit_stats":null,"previous_names":["elaradevsolutions/homebrew-tools"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ElaraDevSolutions/homebrew-tools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElaraDevSolutions%2Fhomebrew-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElaraDevSolutions%2Fhomebrew-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElaraDevSolutions%2Fhomebrew-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElaraDevSolutions%2Fhomebrew-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ElaraDevSolutions","download_url":"https://codeload.github.com/ElaraDevSolutions/homebrew-tools/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElaraDevSolutions%2Fhomebrew-tools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31964635,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["brew","homebrew","tool"],"created_at":"2025-11-27T22:02:45.417Z","updated_at":"2026-04-18T10:09:16.232Z","avatar_url":"https://github.com/ElaraDevSolutions.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# homebrew-tools — Update script for gt formula\n\nThis repository contains a Homebrew formula for `gt` at `Formula/gt.rb` and a helper script to update the formula when a new tag is published in the `ElaraDevSolutions/gittool` repository.\n\n## scripts/update-gt-formula.sh\n\nA small convenience script to:\n\n- download the tarball for a given tag from GitHub\n- compute the tarball SHA-256\n- update `Formula/gt.rb` with the new `url`, `sha256` and `version` fields\n- create a backup of the formula before changing it\n- show a diff and optionally commit \u0026 push the change\n\n### Usage\nBasic usage (commits changes locally):\n\n```bash\n./scripts/update-gt-formula.sh v1.0.12\n```\n\nOptions:\n\n- `--no-commit` — do not run `git add`/`git commit` automatically (useful for review)\n- `--push` — after committing, run `git push` to push the change to the remote\n\nExamples:\n\n- Update and commit locally:\n\n```bash\n./scripts/update-gt-formula.sh v1.0.12\n```\n\n- Update, commit and push:\n\n```bash\n./scripts/update-gt-formula.sh --push v1.0.12\n```\n\n- Update but do not commit automatically:\n\n```bash\n./scripts/update-gt-formula.sh --no-commit v1.0.12\n```\n\n### What it modifies\n\n- `Formula/gt.rb` — the script updates or inserts the following lines:\n  - `url \"https://github.com/ElaraDevSolutions/gittool/archive/refs/tags/\u003cTAG\u003e.tar.gz\"`\n  - `sha256 \"\u003cCALCULATED_SHA256\u003e\"`\n  - `version \"\u003cTAG_WITHOUT_LEADING_v\u003e\"`\n\nA backup is created in the repository root next to the formula, e.g. `Formula/gt.rb.bak-20251112...`.\n\n### Safety notes\n\n- Review the printed diff before pushing. The script commits automatically by default; use `--no-commit` if you prefer manual commits.\n- The script assumes the repository is checked out at the repo root and that `Formula/gt.rb` follows the usual Homebrew formula format.\n- If you republish the same tag with different content, prefer creating a new tag/release to avoid confusion.\n\n### Testing locally without pushing\n\nIf you want to test the formula locally without pushing to GitHub, you can tap your local repo as a Homebrew tap:\n\n```bash\nbrew tap --custom-remote ElaraDevSolutions/homebrew-tools \"$(pwd)\"\nbrew install ElaraDevSolutions/homebrew-tools/gt\n```\n\nWhen you're done testing:\n\n```bash\nbrew untap ElaraDevSolutions/homebrew-tools\n```\n\n## License\n\nThis repository follows the same licensing used for the formula; adjust as necessary.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felaradevsolutions%2Fhomebrew-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felaradevsolutions%2Fhomebrew-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felaradevsolutions%2Fhomebrew-tools/lists"}