app-misc/ghq - 1.10.1 (guru)

Search

Install

Install this version:

emerge -a =app-misc/ghq-1.10.1

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

autounmask =app-misc/ghq-1.10.1

Or alternatively:

emerge --autounmask-write -a =app-misc/ghq-1.10.1

Package Information

Description:
Remote repository management made easy
Homepage:
https://github.com/x-motemen/ghq
License:
MIT BSD-2 BSD MIT

Ebuild Details

Version EAPI Keywords Slot
1.10.1 9 ~amd64 0
View Raw Ebuild
# Copyright 2019-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=9

inherit go-module

DESCRIPTION="Remote repository management made easy"
HOMEPAGE="https://github.com/x-motemen/ghq"
if [[ "${PV}" == 9999 ]]; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/x-motemen/ghq.git"
	RESTRICT="mirror"
else
	SRC_URI="
		https://github.com/x-motemen/ghq/archive/v${PV}.tar.gz -> ${P}.tar.gz
		https://github.com/ingenarel/guru-depfiles/releases/download/${P}-deps.tar.xz/${P}-go-mod-deps.tar.xz ->
		${P}-deps.tar.xz
	"
	KEYWORDS="~amd64"
	#bump the CURRENT_REVISION on the next release
	MY_GIT_REV="f600896"
fi

LICENSE="MIT"
#gentoo-go-license ghq-1.10.1.ebuild
LICENSE+=" BSD-2 BSD MIT "

SLOT="0"
BDEPEND=">=dev-lang/go-1.26.0"

src_unpack() {
	if [[ "${PV}" == 9999 ]];then
		git-r3_src_unpack
		go-module_live_vendor
	else
		default
	fi
}

src_prepare() {
	default
	sed -i -E 's/^\s*build:\s*deps\s*$/build:/; s/-s\s+-w\s+//' Makefile || die "sed failed!"
}

src_compile() {
	if [[ "${PV}" == 9999 ]]; then
		emake build
	else
		emake build VERSION="${PV}" CURRENT_REVISION="${MY_GIT_REV}"
	fi
}

src_test() {
	ego test -v ./...
}

src_install() {
	dobin "${PN}"
	einstalldocs
}

Inherited Eclasses

Dependencies

BDEPEND

>=dev-lang/go-1.26.0

Manifest for 1.10.1

Type File Size Source URLs
DIST ghq-1.10.1-deps.tar.xz 16505464 bytes https://github.com/ingenarel/guru-depfiles/releases/download/ghq-1.10.1-deps.tar.xz/ghq-1.10.1-go-mod-deps.tar.xz
DIST ghq-1.10.1.tar.gz 64468 bytes https://github.com/x-motemen/ghq/archive/v1.10.1.tar.gz