From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3100E15808A for ; Thu, 07 Aug 2025 20:06:15 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 17C1E342021 for ; Thu, 07 Aug 2025 20:06:15 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 708AE1104DB; Thu, 07 Aug 2025 20:06:11 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 67CB11104DB for ; Thu, 07 Aug 2025 20:06:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1FA06341FE2 for ; Thu, 07 Aug 2025 20:06:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8B3E43186 for ; Thu, 07 Aug 2025 20:06:09 +0000 (UTC) From: "Jay Faulkner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jay Faulkner" Message-ID: <1754597154.4ce9209d69ca4284e5a846429a36a256a8b1787f.jayf@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/claude-code/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/claude-code/claude-code-1.0.70.ebuild X-VCS-Directories: dev-util/claude-code/ X-VCS-Committer: jayf X-VCS-Committer-Name: Jay Faulkner X-VCS-Revision: 4ce9209d69ca4284e5a846429a36a256a8b1787f X-VCS-Branch: master Date: Thu, 07 Aug 2025 20:06:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 66d852ab-b9b1-40d0-8e94-368793756859 X-Archives-Hash: eac91209dab65fe8fed8ffdbab2df92b commit: 4ce9209d69ca4284e5a846429a36a256a8b1787f Author: Jay Faulkner gentoo org> AuthorDate: Thu Aug 7 20:05:54 2025 +0000 Commit: Jay Faulkner gentoo org> CommitDate: Thu Aug 7 20:05:54 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ce9209d dev-util/claude-code: add 1.0.70 Signed-off-by: Jay Faulkner gentoo.org> dev-util/claude-code/claude-code-1.0.70.ebuild | 56 ++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/dev-util/claude-code/claude-code-1.0.70.ebuild b/dev-util/claude-code/claude-code-1.0.70.ebuild new file mode 100644 index 000000000000..dbc6bd6becb3 --- /dev/null +++ b/dev-util/claude-code/claude-code-1.0.70.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit edo + +DESCRIPTION="Claude Code - an agentic coding tool by Anthropic" +HOMEPAGE="https://www.anthropic.com/claude-code" +SRC_URI="https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-${PV}.tgz" +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" + +QA_PREBUILT="usr/lib64/node_modules/@anthropic-ai/claude-code/vendor/*" +RESTRICT="strip" + +RDEPEND=" + >=net-libs/nodejs-18 + sys-apps/ripgrep +" +BDEPEND=">=net-libs/nodejs-18[npm]" + +src_unpack() { + # npm installs the tarball directly + : +} + +src_compile() { + # Skip, nothing to compile here. + : +} + +src_install() { + local -a my_npm_opts=( + --audit false + --color false + --foreground-scripts + --global + --offline + --omit dev + --prefix "${ED}/usr" + --progress false + --verbose + ) + edo npm "${my_npm_opts[@]}" install "${DISTDIR}/${P}.tgz" + + rm -r "${ED}/usr/lib64/node_modules/@anthropic-ai/claude-code/vendor/ripgrep" || die + insinto /etc/claude-code + doins "${FILESDIR}/policies.json" +}