Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-news/rawdog/
Date: Mon, 29 May 2017 13:37:07
Message-Id: 1496065017.0763bd419e9aa2deaaba9f4c296c12adbeff6591.monsieurp@gentoo
1 commit: 0763bd419e9aa2deaaba9f4c296c12adbeff6591
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 29 13:34:22 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon May 29 13:36:57 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0763bd41
7
8 net-news/rawdog: EAPI 6 bump.
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.1
11
12 net-news/rawdog/rawdog-2.22-r1.ebuild | 24 ++++++++++++++++++++++++
13 1 file changed, 24 insertions(+)
14
15 diff --git a/net-news/rawdog/rawdog-2.22-r1.ebuild b/net-news/rawdog/rawdog-2.22-r1.ebuild
16 new file mode 100644
17 index 00000000000..e6ef6154e2f
18 --- /dev/null
19 +++ b/net-news/rawdog/rawdog-2.22-r1.ebuild
20 @@ -0,0 +1,24 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +PYTHON_COMPAT=( python2_7 pypy )
27 +
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="Rawdog, RSS Aggregator Without Delusions Of Grandeur"
31 +HOMEPAGE="http://offog.org/code/rawdog.html https://pypi.python.org/pypi/rawdog"
32 +SRC_URI="http://offog.org/files/${P}.tar.gz"
33 +
34 +LICENSE="GPL-2"
35 +SLOT="0"
36 +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~s390 ~sparc ~x86"
37 +
38 +DEPEND="dev-python/feedparser[${PYTHON_USEDEP}]"
39 +RDEPEND="${DEPEND}"
40 +
41 +python_test() {
42 + # pypy fails half way through; meh
43 + ./test-rawdog || die "Test run aborted"
44 +}