Install this version:
emerge -a =net-mail/public-inbox-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =net-mail/public-inbox-9999
Or alternatively:
emerge --autounmask-write -a =net-mail/public-inbox-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | ~amd64 | 0 |
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit perl-module
DESCRIPTION="An archives-first approach to mailing lists"
HOMEPAGE="https://public-inbox.org"
if [[ ${PV} == 9999 ]] ; then
EGIT_REPO_URI="
https://public-inbox.org/public-inbox.git/
https://repo.or.cz/public-inbox.git
"
inherit git-r3
elif [[ ${PV} == *_p* ]] ; then
PUBLIC_INBOX_COMMIT="e0066f045f37b413b3fab1aca855d5022e57351f"
SRC_URI="https://repo.or.cz/public-inbox.git/snapshot/${PUBLIC_INBOX_COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}"/${PN}-${PUBLIC_INBOX_COMMIT:0:7}
else
SRC_URI="https://public-inbox.org/public-inbox.git/snapshot/${P}.tar.gz"
fi
LICENSE="AGPL-3+"
SLOT="0"
if [[ ${PV} != 9999 ]] ; then
KEYWORDS="~amd64"
fi
# in order of mention in INSTALL.html, going more for feature completeness
# than for minimal footprint
RDEPEND="
dev-perl/BSD-Resource
dev-perl/DBD-SQLite
dev-perl/Email-Address-XS
dev-perl/Inline-C
dev-perl/Linux-Inotify2
dev-perl/Mail-IMAPClient
dev-perl/Net-Server
dev-perl/Parse-RecDescent
dev-perl/Plack
dev-perl/Search-Xapian
dev-perl/TimeDate
dev-perl/URI
dev-vcs/git
net-misc/curl
virtual/mta
"
BDEPEND="
${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
"
src_install() {
perl-module_src_install
insinto /usr/share/public-inbox/css
doins "${S}"/contrib/css/*
dodoc -r "${S}"/Documentation/*
}
dev-perl/BSD-Resource dev-perl/DBD-SQLite dev-perl/Email-Address-XS dev-perl/Inline-C dev-perl/Linux-Inotify2 dev-perl/Mail-IMAPClient dev-perl/Net-Server dev-perl/Parse-RecDescent dev-perl/Plack dev-perl/Search-Xapian dev-perl/TimeDate dev-perl/URI dev-vcs/git net-misc/curl virtual/mta
dev-perl/BSD-Resource dev-perl/DBD-SQLite dev-perl/Email-Address-XS dev-perl/Inline-C dev-perl/Linux-Inotify2 dev-perl/Mail-IMAPClient dev-perl/Net-Server dev-perl/Parse-RecDescent dev-perl/Plack dev-perl/Search-Xapian dev-perl/TimeDate dev-perl/URI dev-vcs/git net-misc/curl virtual/mta virtual/perl-ExtUtils-MakeMaker