diff options
author | Sam James <sam@gentoo.org> | 2024-04-24 16:45:55 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-04-24 16:45:55 +0100 |
commit | 0801e1bd6788f1e5333651c8fedc7d2e8eaa8c52 (patch) | |
tree | 2273cfd86fe90b2b49ab705daa1074c2dbc20e04 /net-mail | |
parent | dev-python/hypothesis: Stabilize 6.100.1 ALLARCHES, #930610 (diff) | |
download | gentoo-0801e1bd6788f1e5333651c8fedc7d2e8eaa8c52.tar.gz gentoo-0801e1bd6788f1e5333651c8fedc7d2e8eaa8c52.tar.bz2 gentoo-0801e1bd6788f1e5333651c8fedc7d2e8eaa8c52.zip |
net-mail/public-inbox: add 1.9.0_p20240422
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/public-inbox/Manifest | 1 | ||||
-rw-r--r-- | net-mail/public-inbox/public-inbox-1.9.0_p20240422.ebuild | 53 | ||||
-rw-r--r-- | net-mail/public-inbox/public-inbox-9999.ebuild | 4 |
3 files changed, 56 insertions, 2 deletions
diff --git a/net-mail/public-inbox/Manifest b/net-mail/public-inbox/Manifest index a6cb43b2750e..44c55ad944f9 100644 --- a/net-mail/public-inbox/Manifest +++ b/net-mail/public-inbox/Manifest @@ -1,3 +1,4 @@ DIST public-inbox-1.9.0.tar.gz 828312 BLAKE2B 0de7a2437074ca75b56872697d7dbc69e8f4cd3735d85b314f80f1d6037da27f29aaaae8aaf9836f089f950ec3be25e473d9cabff60bd8ec6cf4b90da4ee2ac0 SHA512 9d98b78d29fc35a80bd22b9e133a70ebb0dfacc68859b3ae602037485f44e36cd4cc60f86a9d732da657ea665f20ba31f28b0a6cfea34badd5f124cbc13a6533 DIST public-inbox-1.9.0_p20230918.tar.gz 918459 BLAKE2B e263d1ab599203ef9c4cfee3546856a5f472cec65b85d16014eec5359bbd6eb357242e98ffb1b355ce11ba1a5ce3e5c9c22dd51ce672adf0f83ed3c0f9df6ba2 SHA512 4359ba6876b5644cfa6e04ed0d8ed9a307407651f68503ed40841e7f2aaed540bf8d3ac07e7dde4fc2f19d8b0cadf2016e89bb346f58b24b8bb217003680a831 DIST public-inbox-1.9.0_p20231116.tar.gz 929149 BLAKE2B a8693c7720fff56069ac4147db42df4ff15b77b8d5127d12d9845f9b66ff3917f2f1ddbbca97432683bed2ad323e4300c9f3d3d9194cf24551296d64ecc1011d SHA512 f1fa8fa4093859010e1072694b0a46313c10e2d786a01e238600d9d4d669a9aace82959c240faf69ac8e4670953855e2bdc47afc512701b29d7a8d8c11da8c64 +DIST public-inbox-1.9.0_p20240422.tar.gz 959680 BLAKE2B 18fc839f946490aab1f61b82243e5ad5a5abb6e171fbc1abf88e9ce63d467add88324c4855e88fa29fe483e8c7a8ce632bd00c3d60316db14738e1bd6b3c0bfd SHA512 322b0416760f48003e7f3d89f8cb804c1a65127ed387528ded4c96d7af0ead588ec3c7cb1f0f239a859921927052c40bff631a862ad640bfd52777fe26e3dcbf diff --git a/net-mail/public-inbox/public-inbox-1.9.0_p20240422.ebuild b/net-mail/public-inbox/public-inbox-1.9.0_p20240422.ebuild new file mode 100644 index 000000000000..dc0974b2946d --- /dev/null +++ b/net-mail/public-inbox/public-inbox-1.9.0_p20240422.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2024 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="488958385c6b8974b8780fb44b91c481e57c2eea" + SRC_URI="https://public-inbox.org/public-inbox.git/snapshot/${PUBLIC_INBOX_COMMIT}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}"/${PUBLIC_INBOX_COMMIT} +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 +" diff --git a/net-mail/public-inbox/public-inbox-9999.ebuild b/net-mail/public-inbox/public-inbox-9999.ebuild index e3774a99b324..dc0974b2946d 100644 --- a/net-mail/public-inbox/public-inbox-9999.ebuild +++ b/net-mail/public-inbox/public-inbox-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -15,7 +15,7 @@ if [[ ${PV} == 9999 ]] ; then " inherit git-r3 elif [[ ${PV} == *_p* ]] ; then - PUBLIC_INBOX_COMMIT="1febc5cbb633cf7eac7dcaf382dd0ebbfe085380" + PUBLIC_INBOX_COMMIT="488958385c6b8974b8780fb44b91c481e57c2eea" SRC_URI="https://public-inbox.org/public-inbox.git/snapshot/${PUBLIC_INBOX_COMMIT}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}"/${PUBLIC_INBOX_COMMIT} else |