dev-util/copilot-cli-bin - 1.0.83 (bentoo)

Search

Install

Install this version:

emerge -a =dev-util/copilot-cli-bin-1.0.83

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-util/copilot-cli-bin-1.0.83

Or alternatively:

emerge --autounmask-write -a =dev-util/copilot-cli-bin-1.0.83

Package Information

Description:
GitHub Copilot CLI, GitHub's terminal-native AI coding agent
Homepage:
https://github.com/github/copilot-cli
License:
github-copilot-cli

Ebuild Details

Version EAPI Keywords Slot
1.0.83 8 -* ~amd64 ~arm64 0
View Raw Ebuild
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DESCRIPTION="GitHub Copilot CLI, GitHub's terminal-native AI coding agent"
HOMEPAGE="https://github.com/github/copilot-cli"
COPILOT_BASE="https://github.com/github/copilot-cli/releases/download/v${PV}"
# Upstream ships two parallel trains from the same repository: "vX.Y.Z-N" tags
# are pre-releases (respin counter N), and only the bare "vX.Y.Z" tag is the
# stable release. Package the bare tag -- /releases/latest returns it and skips
# the -N ones, which is why the autoupdate record probes that endpoint.
SRC_URI="
	amd64? (
		${COPILOT_BASE}/copilot-linux-x64.tar.gz
			-> ${P}-amd64.tar.gz
	)
	arm64? (
		${COPILOT_BASE}/copilot-linux-arm64.tar.gz
			-> ${P}-arm64.tar.gz
	)
"
S="${WORKDIR}"

# Proprietary: the GitHub Copilot CLI License, shipped as LICENSE.md upstream.
# The repository carries no source code at all -- only that licence, a README,
# a changelog and an installer script -- so a binary package is the only
# packaging possible here, not a shortcut taken to avoid a build.
LICENSE="github-copilot-cli"
SLOT="0"
KEYWORDS="-* ~amd64 ~arm64"
RESTRICT="bindist mirror strip"

QA_PREBUILT="*"

src_install() {
	exeinto /opt/copilot-cli
	doexe copilot

	dosym -r /opt/copilot-cli/copilot /opt/bin/copilot
}

Manifest for 1.0.83

Type File Size Source URLs
DIST copilot-cli-bin-1.0.83-amd64.tar.gz 91269605 bytes https://github.com/github/copilot-cli/releases/download/v1.0.83/copilot-linux-x64.tar.gz
DIST copilot-cli-bin-1.0.83-arm64.tar.gz 96438263 bytes https://github.com/github/copilot-cli/releases/download/v1.0.83/copilot-linux-arm64.tar.gz