Install this version:
emerge -a =app-misc/x86-64-level-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-misc/x86-64-level-9999
Or alternatively:
emerge --autounmask-write -a =app-misc/x86-64-level-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | ~amd64 | 0 |
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Get the x86-64 Microarchitecture Level on the Current Machine"
HOMEPAGE="https://github.com/HenrikBengtsson/x86-64-level"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/HenrikBengtsson/${PN}.git"
else
SRC_URI="https://github.com/HenrikBengtsson/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="CC-BY-SA-4.0"
SLOT="0"
RDEPEND="app-shells/bash"
src_compile() {
:
}
src_install() {
dobin x86-64-level
}