Install this version:
emerge -a =app-crypt/transcrypt-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-crypt/transcrypt-9999
Or alternatively:
emerge --autounmask-write -a =app-crypt/transcrypt-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit edo git-r3 shell-completion
DESCRIPTION="Transparently encrypt files within a git repository"
HOMEPAGE="https://github.com/elasticdog/transcrypt"
EGIT_REPO_URI="https://github.com/elasticdog/${PN}.git"
LICENSE="MIT"
SLOT="0"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="dev-libs/openssl:0=
dev-vcs/git"
BDEPEND="test? ( dev-util/bats )"
DOCS=( {CHANGELOG,README}.md )
src_test() {
edo git config --global user.email "${PN}@gentoo.org"
edo git config --global user.name "${PN}"
edo bats tests/
}
src_install() {
einstalldocs
dobin transcrypt
doman man/transcrypt.1
dobashcomp contrib/bash/transcrypt
dozshcomp contrib/zsh/_transcrypt
}
Manage flags for this package:
euse -i <flag> -p app-crypt/transcrypt |
euse -E <flag> -p app-crypt/transcrypt |
euse -D <flag> -p app-crypt/transcrypt
dev-libs/openssl:0= dev-vcs/git
test? ( dev-util/bats )