diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2017-05-29 15:34:22 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-05-29 15:36:57 +0200 |
commit | 0763bd419e9aa2deaaba9f4c296c12adbeff6591 (patch) | |
tree | c053684d07a266db2c211bd4d3c40739f5bda940 /net-news/rawdog | |
parent | dev-python/smmap2: Prevent package to be installed parallel to smmap (diff) | |
download | gentoo-0763bd419e9aa2deaaba9f4c296c12adbeff6591.tar.gz gentoo-0763bd419e9aa2deaaba9f4c296c12adbeff6591.tar.bz2 gentoo-0763bd419e9aa2deaaba9f4c296c12adbeff6591.zip |
net-news/rawdog: EAPI 6 bump.
Package-Manager: Portage-2.3.5, Repoman-2.3.1
Diffstat (limited to 'net-news/rawdog')
-rw-r--r-- | net-news/rawdog/rawdog-2.22-r1.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/net-news/rawdog/rawdog-2.22-r1.ebuild b/net-news/rawdog/rawdog-2.22-r1.ebuild new file mode 100644 index 000000000000..e6ef6154e2fd --- /dev/null +++ b/net-news/rawdog/rawdog-2.22-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 pypy ) + +inherit distutils-r1 + +DESCRIPTION="Rawdog, RSS Aggregator Without Delusions Of Grandeur" +HOMEPAGE="http://offog.org/code/rawdog.html https://pypi.python.org/pypi/rawdog" +SRC_URI="http://offog.org/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~s390 ~sparc ~x86" + +DEPEND="dev-python/feedparser[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND}" + +python_test() { + # pypy fails half way through; meh + ./test-rawdog || die "Test run aborted" +} |