-
-
Notifications
You must be signed in to change notification settings - Fork 348
feat: add raaymax/lazytail #50135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
suzuki-shunsuke
merged 3 commits into
aquaproj:main
from
hituzi-no-sippo:feat/raaymax/lazytail
Mar 10, 2026
Merged
feat: add raaymax/lazytail #50135
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| packages: | ||
| - name: raaymax/lazytail@v0.8.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| # yaml-language-server: $schema=https://raw.githubusercontent.com/aquaproj/aqua/main/json-schema/registry.json | ||
| packages: | ||
| - type: github_release | ||
| repo_owner: raaymax | ||
| repo_name: lazytail | ||
| description: Log viewer for app development | ||
| search_words: | ||
| - log | ||
| version_constraint: "false" | ||
| version_overrides: | ||
| - version_constraint: Version == "v0.2.0" | ||
| no_asset: true | ||
| - version_constraint: "true" | ||
| asset: lazytail-{{.OS}}-{{.Arch}}.{{.Format}} | ||
| format: tar.gz | ||
| replacements: | ||
| amd64: x86_64 | ||
| darwin: macos | ||
| overrides: | ||
| - goos: darwin | ||
| replacements: | ||
| arm64: aarch64 | ||
| supported_envs: | ||
| - linux/amd64 | ||
| - darwin | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🌐 Web query:
raaymax/lazytail installer script arm64 aarch64 mapping💡 Result:
In
raaymax/lazytail’sinstall.sh, architecture detection is based onuname -m, and botharm64andaarch64are mapped to the same release-asset suffix:case "$ARCH" in ... aarch64|arm64) ARCH_SUFFIX="aarch64" ;; ... esaclazytail-${PLATFORM}-${ARCH_SUFFIX}.tar.gz(so ARM64 ends up as...-aarch64.tar.gz). [1]Source: [1]
🏁 Script executed:
Repository: aquaproj/aqua-registry
Length of output: 132
🏁 Script executed:
Repository: aquaproj/aqua-registry
Length of output: 986
🌐 Web query:
raaymax/lazytail github releases binaries available platforms amd64 arm64💡 Result:
raaymax/lazytailpublishes prebuilt release binaries for Linux and macOS on amd64 and arm64:lazytail-linux-x86_64.tar.gzlazytail-linux-aarch64.tar.gzlazytail-macos-x86_64.tar.gzlazytail-macos-aarch64.tar.gzThe installer script explicitly supports only Linux/Darwin and maps arch to x86_64 and aarch64, constructing the asset names above. [1] The latest release page shows “Assets 5”, implying an additional non-platform artifact (commonly a checksum file) alongside the four platform tarballs. [2]
Sources: 1 2
Add support for Linux arm64.
The upstream repository publishes prebuilt binaries for both Linux and macOS on amd64 and arm64 architectures:
lazytail-linux-x86_64.tar.gzlazytail-linux-aarch64.tar.gzlazytail-macos-x86_64.tar.gzlazytail-macos-aarch64.tar.gzThe current configuration excludes
linux/arm64fromsupported_envsand scopes thearm64: aarch64replacement only to the Darwin override. This prevents Linux arm64 users from using the package. Movearm64: aarch64to the globalreplacementsblock and addlinux/arm64tosupported_envs.Suggested adjustment
asset: lazytail-{{.OS}}-{{.Arch}}.{{.Format}} format: tar.gz replacements: amd64: x86_64 + arm64: aarch64 darwin: macos - overrides: - - goos: darwin - replacements: - arm64: aarch64 supported_envs: - linux/amd64 + - linux/arm64 - darwin🤖 Prompt for AI Agents