Diff public-inbox-1.9.0 with a public-inbox-1.9.0_p20230918

/usr/portage/net-mail/public-inbox/public-inbox-1.9.0_p20230918.ebuild 2023-10-09 14:52:34.620368479 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
7 7

  
8 8
DESCRIPTION="An archives-first approach to mailing lists"
9 9
HOMEPAGE="https://public-inbox.org"
10
SRC_URI="https://public-inbox.org/public-inbox.git/snapshot/${P}.tar.gz"
10

  
11
if [[ ${PV} == 9999 ]] ; then
12
	EGIT_REPO_URI="
13
		https://public-inbox.org/public-inbox.git/
14
		https://repo.or.cz/public-inbox.git
15
	"
16
	inherit git-r3
17
elif [[ ${PV} == *_p* ]] ; then
18
	PUBLIC_INBOX_COMMIT="1febc5cbb633cf7eac7dcaf382dd0ebbfe085380"
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}
21
else
22
	SRC_URI="https://public-inbox.org/public-inbox.git/snapshot/${P}.tar.gz"
23
fi
11 24

  
12 25
LICENSE="AGPL-3+"
13 26
SLOT="0"
14
KEYWORDS="~amd64"
27
if [[ ${PV} != 9999 ]] ; then
28
	KEYWORDS="~amd64"
29
fi
15 30

  
16 31
# in order of mention in INSTALL.html, going more for feature completeness
17 32
# than for minimal footprint
Thank you!