diff options
| author | root <root@alpha.trunkmasters.com> | 2026-08-12 00:32:35 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-08-12 00:32:35 -0500 |
| commit | fb96cb50916c2f0434fac1281be8e19a14ca46fe (patch) | |
| tree | 0e8750067f80bc219ad2823e506c1dbcf17b91cc /dev-util/claude-code/claude-code-2.1.228.ebuild | |
| parent | db160fd12c2c60376fe3bf83871f1e8304b83305 (diff) | |
| download | baldeagleos-repo-stable.tar.gz baldeagleos-repo-stable.tar.xz baldeagleos-repo-stable.zip | |
Adding metadatastable
Diffstat (limited to 'dev-util/claude-code/claude-code-2.1.228.ebuild')
| -rw-r--r-- | dev-util/claude-code/claude-code-2.1.228.ebuild | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/dev-util/claude-code/claude-code-2.1.228.ebuild b/dev-util/claude-code/claude-code-2.1.228.ebuild new file mode 100644 index 000000000000..db11a157b462 --- /dev/null +++ b/dev-util/claude-code/claude-code-2.1.228.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Claude Code - an agentic coding tool by Anthropic" +HOMEPAGE="https://claude.com/product/claude-code" + +# NOTE(JayF): Claude code's official install method is now curl|bash +# the script is simple: it fetches the latest version, +# downloads a manifest of files for that version, and +# downloads a single binary claude executable matching. +# All this from an unbranded GCS bucket (yikes). +# https://storage.googleapis.com/claude-code-dist-86c565f3-f756-42ad-8dfa-d59b1c096819/claude-code-releases/bootstrap.sh +GCS_BUCKET="https://storage.googleapis.com/claude-code-dist-86c565f3-f756-42ad-8dfa-d59b1c096819/claude-code-releases" +SRC_URI=" + amd64? ( + elibc_glibc? ( ${GCS_BUCKET}/${PV}/linux-x64/claude -> claude-amd64-glibc-${PV} ) + elibc_musl? ( ${GCS_BUCKET}/${PV}/linux-x64-musl/claude -> claude-amd64-musl-${PV} ) + ) + arm64? ( + elibc_glibc? ( ${GCS_BUCKET}/${PV}/linux-arm64/claude -> claude-arm64-glibc-${PV} ) + elibc_musl? ( ${GCS_BUCKET}/${PV}/linux-arm64-musl/claude -> claude-arm64-musl-${PV} ) + )" +S="${WORKDIR}" + +# NOTE(JayF): claude-code is only usable via paid subscription and has a +# clickthrough EULA-type license. Please see $HOMEPAGE for +# full details. +LICENSE="all-rights-reserved" +SLOT="0" +KEYWORDS="amd64 arm64" +QA_PREBUILT="opt/bin/claude" + +RDEPEND="sys-apps/ripgrep" + +IUSE="cpu_flags_x86_avx cpu_flags_x86_avx2" +REQUIRED_USE="amd64? ( cpu_flags_x86_avx cpu_flags_x86_avx2 )" + +RESTRICT="bindist mirror strip" + +src_compile() { + # Skip, nothing to compile here. + : +} + +src_install() { + # NOTE(JayF) Literally the file we download is all there is to + # install. It's just a binary. No docs. Nothing else. + exeinto /opt/bin + newexe "${DISTDIR}/${A[0]}" claude + + insinto /etc/${PN} + newins "${FILESDIR}/managed-settings-native.json" managed-settings.json +} + +pkg_postinst() { + if ! grep -q DISABLE_INSTALLATION_CHECKS /etc/claude-code/managed-settings.json; then + ewarn "Ensure you run etc-update or dispatch-conf before executing claude." + ewarn "Failure to properly integrate changes to /etc/claude-code/managed-settings.json" + ewarn "may lead to claude installing itself to your homedir without asking." + fi +} |
