Install this version:
emerge -a =dev-util/asimonim-0.1.1
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-util/asimonim-0.1.1
Or alternatively:
emerge --autounmask-write -a =dev-util/asimonim-0.1.1
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 0.1.1 | 8 | ~amd64 | 0 |
# Copyright 2025 Benny Powers
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="High-performance design tokens parser and validator"
HOMEPAGE="https://github.com/bennypowers/asimonim"
SRC_URI="https://github.com/bennypowers/asimonim/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
https://raw.githubusercontent.com/bennypowers/gentoo-overlay/main/dev-util/asimonim/${P}-deps.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
DEPEND=">=dev-lang/go-1.25"
src_prepare() {
default
mv "${WORKDIR}/vendor" "${S}/vendor" || die
}
src_compile() {
export GOFLAGS="-mod=vendor"
export CGO_ENABLED=0
ego build -o asimonim .
}
src_install() {
dobin asimonim
dodoc README.md
}
>=dev-lang/go-1.25
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | asimonim-0.1.1-deps.tar.gz | 2496917 bytes | https://raw.githubusercontent.com/bennypowers/gentoo-overlay/main/dev-util/asimonim/asimonim-0.1.1-deps.tar.gz |
| DIST | asimonim-0.1.1.tar.gz | 866556 bytes | https://github.com/bennypowers/asimonim/archive/refs/tags/v0.1.1.tar.gz |