Install this version:
emerge -a =sys-fs/nullfs-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sys-fs/nullfs-9999
Or alternatively:
emerge --autounmask-write -a =sys-fs/nullfs-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3
DESCRIPTION="FUSE /dev/null equivalent for directories"
HOMEPAGE="https://github.com/xrgtn/nullfs"
EGIT_REPO_URI="https://github.com/xrgtn/nullfs.git"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND=">=sys-fs/fuse-2.6.1"
RDEPEND="${DEPEND}"
src_install() {
dobin "${WORKDIR}/${P}/nul1fs"
dobin "${WORKDIR}/${P}/nullfs"
dodoc "${WORKDIR}/${P}/README"
}