Install this version:
emerge -a =net-misc/tsshd-0.1.8
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =net-misc/tsshd-0.1.8
Or alternatively:
emerge --autounmask-write -a =net-misc/tsshd-0.1.8
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 0.1.8 | 8 | ~amd64 | 0 |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="UDP-based SSH server with roaming support"
HOMEPAGE="https://github.com/trzsz/tsshd https://trzsz.github.io/tsshd"
SRC_URI="
https://github.com/trzsz/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
https://github.com/gentoo-zh-drafts/tsshd/releases/download/v${PV}/${P}-vendor.tar.xz
"
LICENSE="Apache-2.0 BSD MIT"
SLOT="0"
KEYWORDS="~amd64"
RESTRICT="test"
# Upstream requires Go 1.25.9 or newer.
BDEPEND=">=dev-lang/go-1.25.9:="
src_compile() {
ego build -buildvcs=false -trimpath -o "${T}/${PN}" ./cmd/tsshd
}
src_install() {
dobin "${T}/${PN}"
dodoc README.md README.cn.md
}
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | tsshd-0.1.8-vendor.tar.xz | 1242984 bytes | https://github.com/gentoo-zh-drafts/tsshd/releases/download/v0.1.8/tsshd-0.1.8-vendor.tar.xz |
| DIST | tsshd-0.1.8.tar.gz | 112224 bytes | https://github.com/trzsz/tsshd/archive/refs/tags/v0.1.8.tar.gz |