From: "Jay Faulkner" <jayf@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/claude-code/
Date: Fri, 20 Jun 2025 19:52:13 +0000 (UTC) [thread overview]
Message-ID: <1750449120.9bcfa422581b4a87f6d848d1e2e702a032d889ce.jayf@gentoo> (raw)
commit: 9bcfa422581b4a87f6d848d1e2e702a032d889ce
Author: Jay Faulkner <jayf <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 20 19:51:28 2025 +0000
Commit: Jay Faulkner <jayf <AT> gentoo <DOT> org>
CommitDate: Fri Jun 20 19:52:00 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bcfa422
dev-util/claude-code: add 1.0.30
Signed-off-by: Jay Faulkner <jayf <AT> gentoo.org>
dev-util/claude-code/Manifest | 1 +
dev-util/claude-code/claude-code-1.0.30.ebuild | 56 ++++++++++++++++++++++++++
2 files changed, 57 insertions(+)
diff --git a/dev-util/claude-code/Manifest b/dev-util/claude-code/Manifest
index f6576e6012c9..152786ff430d 100644
--- a/dev-util/claude-code/Manifest
+++ b/dev-util/claude-code/Manifest
@@ -1,2 +1,3 @@
DIST claude-code-1.0.28.tgz 55958813 BLAKE2B 3c4316a9e7f6a6f0253bdb942832c186964360f86a2fba8581393230aa5816ec82ca26ead9e188e0313422c110a45d515491fae69ace6ad1ff02d86a44826802 SHA512 a6277ad6e416b8c169dd454f793502d683c615807fcb19863ed137befb6d750dc38cc95c19991c5866efb360305eaba96cd6fa61c488db48fa1db12d6ade0c8b
DIST claude-code-1.0.29.tgz 55959581 BLAKE2B c86c08af7ee0ef00506c7453fd64c2bdfe84a74928b73291cc058f51a38220ae783e2fb01b7ec39765d6ba60e652e90be84a08a64a74944575afb1051a802b17 SHA512 647c3ce19253c6d1bf8d32e2a13905d9c93ec21404290bc2ad8be33fe9d99d5162ace3d5d10c2927284ab1d1c552e7e76cee25a800ace1d34d9e1cb4225293cd
+DIST claude-code-1.0.30.tgz 55958500 BLAKE2B e86ff2c831823194d441bf21f86fe3984ce149c761c417620dbc7dc30ac0fd4e79b629e5851ca4a022aee7bf2c710b07611f43c0cdc1a3490d4163908183533d SHA512 a88b3dd82ab7845c27f7f95906d6bec1625f1a842cadb16e8959b46e4babc062b168957af486ebea161f494fe520a2dc6ef4b282467fb56471150b78e209c585
diff --git a/dev-util/claude-code/claude-code-1.0.30.ebuild b/dev-util/claude-code/claude-code-1.0.30.ebuild
new file mode 100644
index 000000000000..01d2191addbc
--- /dev/null
+++ b/dev-util/claude-code/claude-code-1.0.30.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"
+}
next reply other threads:[~2025-06-20 19:52 UTC|newest]
Thread overview: 66+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-20 19:52 Jay Faulkner [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-09-30 19:59 [gentoo-commits] repo/gentoo:master commit in: dev-util/claude-code/ Jay Faulkner
2025-09-29 21:14 Jay Faulkner
2025-09-24 22:54 Jay Faulkner
2025-09-19 16:46 Jay Faulkner
2025-09-17 16:00 Jay Faulkner
2025-09-16 15:14 Jay Faulkner
2025-09-15 17:07 Jay Faulkner
2025-09-12 18:38 Jay Faulkner
2025-09-11 15:33 Jay Faulkner
2025-09-10 15:06 Jay Faulkner
2025-09-09 22:08 Jay Faulkner
2025-09-08 14:39 Jay Faulkner
2025-09-05 18:34 Jay Faulkner
2025-09-04 17:40 Jay Faulkner
2025-09-03 22:07 Jay Faulkner
2025-09-02 17:16 Jay Faulkner
2025-08-28 15:51 Jay Faulkner
2025-08-26 15:20 Jay Faulkner
2025-08-26 15:20 Jay Faulkner
2025-08-25 15:48 Jay Faulkner
2025-08-25 15:48 Jay Faulkner
2025-08-25 15:48 Jay Faulkner
2025-08-23 3:24 Jay Faulkner
2025-08-23 3:24 Jay Faulkner
2025-08-22 16:32 Jay Faulkner
2025-08-22 16:32 Jay Faulkner
2025-08-20 14:57 Jay Faulkner
2025-08-20 14:57 Jay Faulkner
2025-08-17 4:22 Jay Faulkner
2025-08-17 1:03 Jay Faulkner
2025-08-16 23:34 Jay Faulkner
2025-08-16 23:34 Jay Faulkner
2025-08-15 17:44 Jay Faulkner
2025-08-15 17:44 Jay Faulkner
2025-08-12 22:44 Jay Faulkner
2025-08-12 22:44 Jay Faulkner
2025-08-11 16:35 Jay Faulkner
2025-08-11 16:35 Jay Faulkner
2025-08-07 20:06 Jay Faulkner
2025-08-07 20:06 Jay Faulkner
2025-07-12 22:12 Jay Faulkner
2025-07-06 20:00 Jay Faulkner
2025-07-06 20:00 Jay Faulkner
2025-07-06 20:00 Jay Faulkner
2025-06-28 17:17 Jay Faulkner
2025-06-26 20:30 Jay Faulkner
2025-06-26 20:30 Jay Faulkner
2025-06-20 19:52 Jay Faulkner
2025-06-19 3:23 Jay Faulkner
2025-06-18 21:58 Jay Faulkner
2025-06-18 21:58 Jay Faulkner
2025-06-18 21:58 Jay Faulkner
2025-06-17 22:33 Jay Faulkner
2025-06-17 15:55 Jay Faulkner
2025-06-17 15:55 Jay Faulkner
2025-06-13 21:00 Jay Faulkner
2025-06-13 21:00 Jay Faulkner
2025-06-12 18:54 Jay Faulkner
2025-06-12 18:54 Jay Faulkner
2025-06-10 20:18 Jay Faulkner
2025-06-10 20:18 Jay Faulkner
2025-06-09 17:01 Jay Faulkner
2025-06-09 17:01 Jay Faulkner
2025-06-04 18:40 Jay Faulkner
2025-06-04 18:40 Jay Faulkner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1750449120.9bcfa422581b4a87f6d848d1e2e702a032d889ce.jayf@gentoo \
--to=jayf@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox