Diff public-inbox-1.9.0_p20240422 with a public-inbox-9999

/usr/portage/net-mail/public-inbox/public-inbox-9999.ebuild 2025-10-08 18:21:10.752123460 +0300
15 15
	"
16 16
	inherit git-r3
17 17
elif [[ ${PV} == *_p* ]] ; then
18
	PUBLIC_INBOX_COMMIT="488958385c6b8974b8780fb44b91c481e57c2eea"
19
	SRC_URI="https://public-inbox.org/public-inbox.git/snapshot/${PUBLIC_INBOX_COMMIT}.tar.gz -> ${P}.tar.gz"
20
	S="${WORKDIR}"/${PUBLIC_INBOX_COMMIT}
18
	PUBLIC_INBOX_COMMIT="e0066f045f37b413b3fab1aca855d5022e57351f"
19
	SRC_URI="https://repo.or.cz/public-inbox.git/snapshot/${PUBLIC_INBOX_COMMIT}.tar.gz -> ${P}.tar.gz"
20
	S="${WORKDIR}"/${PN}-${PUBLIC_INBOX_COMMIT:0:7}
21 21
else
22 22
	SRC_URI="https://public-inbox.org/public-inbox.git/snapshot/${P}.tar.gz"
23 23
fi
......
25 25
LICENSE="AGPL-3+"
26 26
SLOT="0"
27 27
if [[ ${PV} != 9999 ]] ; then
28
	KEYWORDS="amd64"
28
	KEYWORDS="~amd64"
29 29
fi
30 30

  
31 31
# in order of mention in INSTALL.html, going more for feature completeness
......
51 51
	${RDEPEND}
52 52
	virtual/perl-ExtUtils-MakeMaker
53 53
"
54

  
55
src_install() {
56
	perl-module_src_install
57

  
58
	insinto /usr/share/public-inbox/css
59
	doins "${S}"/contrib/css/*
60

  
61
	dodoc -r "${S}"/Documentation/*
62
}
Thank you!