Install this version:
emerge -a =net-misc/xh-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =net-misc/xh-9999
Or alternatively:
emerge --autounmask-write -a =net-misc/xh-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cargo git-r3 shell-completion
DESCRIPTION="Friendly and fast tool for sending HTTP requests"
HOMEPAGE="https://github.com/ducaale/xh"
EGIT_REPO_URI="https://github.com/ducaale/${PN}.git"
LICENSE="Apache-2.0 BSD ISC MIT MPL-2.0 Unicode-3.0"
SLOT="0"
RESTRICT="test"
PROPERTIES="test_network"
DOCS=( {CHANGELOG,README}.md )
QA_FLAGS_IGNORED="usr/bin/xh"
src_unpack() {
git-r3_src_unpack
cargo_live_src_unpack
}
src_install() {
einstalldocs
cargo_src_install
doman doc/xh.1
newbashcomp completions/xh.bash xh
dozshcomp completions/_xh
newfishcomp completions/xh.fish xh
}