Install this version:
emerge -a =gui-apps/clipman-1.6.5
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =gui-apps/clipman-1.6.5
Or alternatively:
emerge --autounmask-write -a =gui-apps/clipman-1.6.5
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 1.6.5 | 8 | ~amd64 | 0 |
# Copyright 2024-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="A basic clipboard manager for Wayland."
HOMEPAGE="https://github.com/chmouel/clipman/"
SRC_URI="https://github.com/chmouel/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://github.com/gentoo-golang-dist/${PN}/releases/download/v${PV}/${P}-vendor.tar.xz"
LICENSE="BSD GPL-3 MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
>=gui-apps/wl-clipboard-2
"
BDEPEND="
>=dev-lang/go-1.21
"
src_compile() {
# CGO is not needed and it would inject -fno-stack-protector
CGO_ENABLED=0 ego build .
}
src_install() {
dobin ${PN}
doman docs/${PN}.1
local DOCS=("README.md")
einstalldocs
}
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | clipman-1.6.5-vendor.tar.xz | 159032 bytes | https://github.com/gentoo-golang-dist/clipman/releases/download/v1.6.5/clipman-1.6.5-vendor.tar.xz |
| DIST | clipman-1.6.5.tar.gz | 26159 bytes | https://github.com/chmouel/clipman/archive/refs/tags/v1.6.5.tar.gz |