Install this version:
emerge -a =app-text/unicode-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-text/unicode-9999
Or alternatively:
emerge --autounmask-write -a =app-text/unicode-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 2026 mva
# Distributed under the terms of the Public Domain or CC0 License
EAPI=8
PYTHON_COMPAT=( python3_{12..15} pypy3{,_11} )
inherit python-r1 git-r3
DESCRIPTION="A tool displaying unicode character properties"
HOMEPAGE="https://github.com/garabik/unicode"
EGIT_REPO_URI="https://github.com/garabik/${PN}"
#/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
DEPEND="
app-i18n/unicode-data
"
RDEPEND="
${DEPEND}
${PYTHON_DEPS}
"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DOCS=(README{,-paracode})
src_install() {
dobin {uni,para}code
doman {uni,para}code.1
default
python_replicate_script "${ED}"/usr/bin/{uni,para}code
}