commit:     3450e29718cd6b99e10b8a14119dd86adae0bf0c
Author:     Jay Faulkner <jayf <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 23 03:22:06 2025 +0000
Commit:     Jay Faulkner <jayf <AT> gentoo <DOT> org>
CommitDate: Sat Aug 23 03:22:06 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3450e297

dev-util/claude-code: drop 1.0.85, 1.0.85-r1

Signed-off-by: Jay Faulkner <jayf <AT> gentoo.org>

 dev-util/claude-code/Manifest                     |  1 -
 dev-util/claude-code/claude-code-1.0.85-r1.ebuild | 64 -----------------------
 dev-util/claude-code/claude-code-1.0.85.ebuild    | 56 --------------------
 3 files changed, 121 deletions(-)

diff --git a/dev-util/claude-code/Manifest b/dev-util/claude-code/Manifest
index 9975c23a2a86..e70f5c1f16c4 100644
--- a/dev-util/claude-code/Manifest
+++ b/dev-util/claude-code/Manifest
@@ -1,2 +1 @@
-DIST claude-code-1.0.85.tgz 35955799 BLAKE2B 
9c7dc6f93440917e1b9a6b5a73fb42ad10d52af2741dee06960f096c85b90d93f6a7eb9d238f057942f5e994d8127982dcb0e1fccda551ed63c708a718bbffb4
 SHA512 
aef2c61929c740b248ddd3fb0bf7773abe4b42f80311a7b9c2eacc1b816cf68babcedfa4f1803a5801deb8999252aee8ed9d9f6536a88dc33754e2f3501125ef
 DIST claude-code-1.0.88.tgz 35983699 BLAKE2B 
3202af1659a49127a96cdaa8b04ab868de84873cc7db0fd4364b43c7e7f54960aba4182c998688d9932ccfe299fa7a3cc957ad411e83a761dde1e00793adf5a5
 SHA512 
369e87e048e46e6368954a71f7c0efa8b5d5fe226bc36cbb773dab0c9edabfd6a3333e8765f07c6dd255e43ef9fa33be1a4d69bc0e781c2226d1ceb9943af373

diff --git a/dev-util/claude-code/claude-code-1.0.85-r1.ebuild 
b/dev-util/claude-code/claude-code-1.0.85-r1.ebuild
deleted file mode 100644
index 58a0bf36a0b0..000000000000
--- a/dev-util/claude-code/claude-code-1.0.85-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2025 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://www.anthropic.com/claude-code";
-SRC_URI="https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-${PV}.tgz";
-S="${WORKDIR}/package"
-
-# 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"
-
-IUSE="jetbrains vscode"
-RESTRICT="bindist strip"
-
-RDEPEND="
-       >=net-libs/nodejs-18
-       sys-apps/ripgrep
-"
-
-src_compile() {
-       # Skip, nothing to compile here.
-       :
-}
-
-src_install() {
-       dodoc README.md LICENSE.md
-
-       # We are using a strategy of "install everything that's left"
-       # so removing these here will prevent duplicates in /opt/claude-code
-       rm -f README.md LICENSE.md package.json || die
-       # remove vendored ripgrep
-       rm -rf vendor/ripgrep || die
-
-       # Install extentions these under /opt, and let users configure their
-       # IDEs appropriately if they have opted-into having them installed.
-       # Normally I wouldn't allow a few megs of data to be USE-flag-toggled,
-       # but removing these cuts the already-small package size in half, so
-       # it seems worth it.
-       use jetbrains || rm -r vendor/${PN}-jetbrains-plugin || die
-       use vscode || rm -r vendor/${PN}.vsix || die
-
-       insinto /opt/${PN}
-       doins -r ./*
-       fperms a+x opt/claude-code/cli.js
-
-       dodir /opt/bin
-       dosym -r /opt/${PN}/cli.js /opt/bin/claude
-
-       insinto /etc/${PN}
-       doins "${FILESDIR}/policies.json"
-
-       # nodejs defaults to disabling deprecation warnings when running code
-       # from any path containing a node_modules directory. Since we're 
installing
-       # outside of the realm of npm, explicitly pass an option to disable
-       # deprecation warnings so it behaves the same as it does if installed 
via
-       # npm. It's proprietary; not like Gentoo users can fix the warnings 
anyway.
-       sed -i 's/env node/env -S node --no-deprecation/' 
"${ED}/opt/claude-code/cli.js"
-}

diff --git a/dev-util/claude-code/claude-code-1.0.85.ebuild 
b/dev-util/claude-code/claude-code-1.0.85.ebuild
deleted file mode 100644
index be4d7d4c5cec..000000000000
--- a/dev-util/claude-code/claude-code-1.0.85.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# 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="bindist 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"
-}

Reply via email to