Gentoo Archives: gentoo-commits

From: Alice Ferrazzi <alicef@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/public-inbox/
Date: Mon, 04 Jul 2022 19:07:32
Message-Id: 1656961616.678f2156572b0fc7c98b27f989c1a443f561ad87.alicef@gentoo
1 commit: 678f2156572b0fc7c98b27f989c1a443f561ad87
2 Author: Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 4 18:33:22 2022 +0000
4 Commit: Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 4 19:06:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=678f2156
7
8 net-mail/public-inbox: add 1.8.0
9
10 Signed-off-by: Alice Ferrazzi <alicef <AT> gentoo.org>
11
12 net-mail/public-inbox/Manifest | 1 +
13 net-mail/public-inbox/public-inbox-1.8.0.ebuild | 38 +++++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/net-mail/public-inbox/Manifest b/net-mail/public-inbox/Manifest
17 index 7bd7af9913ac..3d256ef2a4f1 100644
18 --- a/net-mail/public-inbox/Manifest
19 +++ b/net-mail/public-inbox/Manifest
20 @@ -1 +1,2 @@
21 DIST public-inbox-1.7.0.tar.gz 805628 BLAKE2B 4403cd11a2c4f793b136aff07ccc06ea60011c21484196e497921ca36599870eecdf7b93f550ef44e876bca814a3b03e1d8d4b484113506ee809098124cfd1b2 SHA512 cb03d2ec3e28f1fc75bdbff2b8ea5b417898ddb2895d27b105624cab35f0dcab99269d86bfc158bdf42faecb7b7a5734363a81d2202970e8d079bf05fa359250
22 +DIST public-inbox-1.8.0.tar.gz 808979 BLAKE2B 1b68121429f9d9b56008951c0fef8eca4082a71969c907d0e2ba1db434774a451e4080e88c7d0fe80960dba906e0981e19bfcacd63042acfe3c6e16f36aba675 SHA512 878c60d6e6bfdcac3218d71b8aa5cab766c622ff1a81c8ebb04399a48da7ef1ab86cae67f8f05e8486f92451f90b9c068ab67ba35dfb74179163598fb5860229
23
24 diff --git a/net-mail/public-inbox/public-inbox-1.8.0.ebuild b/net-mail/public-inbox/public-inbox-1.8.0.ebuild
25 new file mode 100644
26 index 000000000000..6d7bfd810fcf
27 --- /dev/null
28 +++ b/net-mail/public-inbox/public-inbox-1.8.0.ebuild
29 @@ -0,0 +1,38 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit perl-module
36 +
37 +HOMEPAGE="https://public-inbox.org"
38 +SRC_URI="https://public-inbox.org/public-inbox.git/snapshot/${P}.tar.gz"
39 +DESCRIPTION="An archives-first approach to mailing lists"
40 +LICENSE="AGPL-3+"
41 +
42 +SLOT="0"
43 +
44 +KEYWORDS="~amd64"
45 +
46 +# in order of mention in INSTALL.html, going more for feature completeness
47 +# than for minimal footprint
48 +RDEPEND="
49 + dev-vcs/git
50 + dev-perl/DBD-SQLite
51 + virtual/mta
52 + dev-perl/URI
53 + dev-perl/Plack
54 + dev-perl/TimeDate
55 + dev-perl/Inline-C
56 + dev-perl/Email-Address-XS
57 + dev-perl/Search-Xapian
58 + dev-perl/Parse-RecDescent
59 + dev-perl/Mail-IMAPClient
60 + dev-perl/BSD-Resource
61 + net-misc/curl
62 + dev-perl/Linux-Inotify2
63 + dev-perl/Net-Server
64 +"
65 +BDEPEND="${RDEPEND}
66 + virtual/perl-ExtUtils-MakeMaker
67 +"