Install this version:
emerge -a =app-misc/x86-64-level-0.2.2
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-misc/x86-64-level-0.2.2
Or alternatively:
emerge --autounmask-write -a =app-misc/x86-64-level-0.2.2
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 0.2.2 | 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
}
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | x86-64-level-0.2.2.tar.gz | 6313 bytes | https://github.com/HenrikBengtsson/x86-64-level/archive/0.2.2.tar.gz |