Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/rss2email/
Date: Sun, 02 Aug 2020 14:10:35
Message-Id: 1596377376.e8207b870dbe9cfcf6833b08999de470ff77bc63.sping@gentoo
1 commit: e8207b870dbe9cfcf6833b08999de470ff77bc63
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 2 14:06:41 2020 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 2 14:09:36 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8207b87
7
8 net-mail/rss2email: 3.12
9
10 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
11 Package-Manager: Portage-3.0.0, Repoman-2.3.23
12
13 net-mail/rss2email/Manifest | 1 +
14 net-mail/rss2email/rss2email-3.12.ebuild | 27 +++++++++++++++++++++++++++
15 2 files changed, 28 insertions(+)
16
17 diff --git a/net-mail/rss2email/Manifest b/net-mail/rss2email/Manifest
18 index fe4ad53ee4a..4a20ae4252f 100644
19 --- a/net-mail/rss2email/Manifest
20 +++ b/net-mail/rss2email/Manifest
21 @@ -1 +1,2 @@
22 DIST rss2email-3.11.tar.gz 66441 BLAKE2B 24be7c4d280e337869833f9fa492186a9f4cc208e9f6152c1d4012edb016993a37cddd991d6211888d6aa7654d66bc79d9d70f1508dae20fa39d79fffeeef55b SHA512 2efdef703a4b4774d85926f500a37689aea3a324f63a13a686a2322c9f69ac7b940c5b953f417d9259e1493b3dafde4c2e1ddb3433d085fb2400cd06001141bb
23 +DIST rss2email-3.12.tar.gz 73830 BLAKE2B b9a891e9fbe1a252e15cf5534e2ec5c19da69f14d7af7dbbc5665c87747882370f23bebed01755d6c96c1446ea61ee287c5cd175459c75cc8a74ad3995e9edf2 SHA512 0523c26f13b147ad4fff9c3a9831bc0b6c2475e7f3a4c010641d2b5110aa6ccfbf00077d70c03805437ba148cdb3593a67c32ef42423af0a71d1380c0c48c917
24
25 diff --git a/net-mail/rss2email/rss2email-3.12.ebuild b/net-mail/rss2email/rss2email-3.12.ebuild
26 new file mode 100644
27 index 00000000000..0d679cf6d54
28 --- /dev/null
29 +++ b/net-mail/rss2email/rss2email-3.12.ebuild
30 @@ -0,0 +1,27 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{6,7,8} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="A python script that converts RSS/Atom newsfeeds to email"
41 +HOMEPAGE="https://github.com/rss2email/rss2email"
42 +SRC_URI="https://github.com/rss2email/rss2email/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="|| ( GPL-2 GPL-3 )"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE=""
48 +
49 +RDEPEND="<dev-python/feedparser-6[${PYTHON_USEDEP}]
50 + >=dev-python/html2text-3.01[${PYTHON_USEDEP}]
51 + dev-python/setuptools[${PYTHON_USEDEP}]"
52 +DEPEND="${RDEPEND}"
53 +
54 +src_install() {
55 + distutils-r1_src_install
56 + doman r2e.1
57 +}