Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/public-inbox/
Date: Mon, 28 Feb 2022 22:58:03
Message-Id: 1646089059.d2c01217ce9c1c87dd81c3ed4f8da754006308c2.dilfridge@gentoo
1 commit: d2c01217ce9c1c87dd81c3ed4f8da754006308c2
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 28 22:57:15 2022 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 28 22:57:39 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2c01217
7
8 net-mail/public-inbox: New package
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 net-mail/public-inbox/Manifest | 1 +
14 net-mail/public-inbox/metadata.xml | 12 ++++++++
15 net-mail/public-inbox/public-inbox-1.7.0.ebuild | 38 +++++++++++++++++++++++++
16 3 files changed, 51 insertions(+)
17
18 diff --git a/net-mail/public-inbox/Manifest b/net-mail/public-inbox/Manifest
19 new file mode 100644
20 index 000000000000..7bd7af9913ac
21 --- /dev/null
22 +++ b/net-mail/public-inbox/Manifest
23 @@ -0,0 +1 @@
24 +DIST public-inbox-1.7.0.tar.gz 805628 BLAKE2B 4403cd11a2c4f793b136aff07ccc06ea60011c21484196e497921ca36599870eecdf7b93f550ef44e876bca814a3b03e1d8d4b484113506ee809098124cfd1b2 SHA512 cb03d2ec3e28f1fc75bdbff2b8ea5b417898ddb2895d27b105624cab35f0dcab99269d86bfc158bdf42faecb7b7a5734363a81d2202970e8d079bf05fa359250
25
26 diff --git a/net-mail/public-inbox/metadata.xml b/net-mail/public-inbox/metadata.xml
27 new file mode 100644
28 index 000000000000..3d9412e88943
29 --- /dev/null
30 +++ b/net-mail/public-inbox/metadata.xml
31 @@ -0,0 +1,12 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <maintainer type="person">
36 + <email>dilfridge@g.o</email>
37 + <name>Andreas K. Huettel</name>
38 + </maintainer>
39 + <maintainer type="person">
40 + <email>zx2c4@g.o</email>
41 + <name>Jason A. Donenfeld</name>
42 + </maintainer>
43 +</pkgmetadata>
44
45 diff --git a/net-mail/public-inbox/public-inbox-1.7.0.ebuild b/net-mail/public-inbox/public-inbox-1.7.0.ebuild
46 new file mode 100644
47 index 000000000000..6d7bfd810fcf
48 --- /dev/null
49 +++ b/net-mail/public-inbox/public-inbox-1.7.0.ebuild
50 @@ -0,0 +1,38 @@
51 +# Copyright 1999-2022 Gentoo Authors
52 +# Distributed under the terms of the GNU General Public License v2
53 +
54 +EAPI=8
55 +
56 +inherit perl-module
57 +
58 +HOMEPAGE="https://public-inbox.org"
59 +SRC_URI="https://public-inbox.org/public-inbox.git/snapshot/${P}.tar.gz"
60 +DESCRIPTION="An archives-first approach to mailing lists"
61 +LICENSE="AGPL-3+"
62 +
63 +SLOT="0"
64 +
65 +KEYWORDS="~amd64"
66 +
67 +# in order of mention in INSTALL.html, going more for feature completeness
68 +# than for minimal footprint
69 +RDEPEND="
70 + dev-vcs/git
71 + dev-perl/DBD-SQLite
72 + virtual/mta
73 + dev-perl/URI
74 + dev-perl/Plack
75 + dev-perl/TimeDate
76 + dev-perl/Inline-C
77 + dev-perl/Email-Address-XS
78 + dev-perl/Search-Xapian
79 + dev-perl/Parse-RecDescent
80 + dev-perl/Mail-IMAPClient
81 + dev-perl/BSD-Resource
82 + net-misc/curl
83 + dev-perl/Linux-Inotify2
84 + dev-perl/Net-Server
85 +"
86 +BDEPEND="${RDEPEND}
87 + virtual/perl-ExtUtils-MakeMaker
88 +"