Install this version:
emerge -a =sys-process/run-one-1.17-r72
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sys-process/run-one-1.17-r72
Or alternatively:
emerge --autounmask-write -a =sys-process/run-one-1.17-r72
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_VER=72
DESCRIPTION="Run just one instance of a command and its args at a time"
HOMEPAGE="https://launchpad.net/run-one"
SRC_URI="https://bazaar.launchpad.net/~run-one/run-one/trunk/tarball/${MY_VER} -> ${P}.tar.gz"
S="${WORKDIR}/~run-one/run-one/trunk"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="${DEPEND}
sys-process/lsof
"
src_install() {
exeinto /usr/bin
doexe run-one
doexe keep-one-running
doexe run-one-constantly
doexe run-one-until-failure
doexe run-one-until-success
doexe run-this-one
doman run-one.1
}
sys-process/lsof