blob: 8c99c4f277cd33dc51d3ca174ec836a68eb5d636 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/turses/turses-0.2.9.ebuild,v 1.1 2012/11/24 17:20:52 dastergon Exp $
EAPI=4
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
inherit distutils vcs-snapshot
DESCRIPTION="Command line twitter client"
HOMEPAGE="https://github.com/alejandrogomez/turses"
SRC_URI="https://github.com/alejandrogomez/${PN}/tarball/v${PV} -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
DEPEND="
dev-python/oauth2
dev-python/setuptools
dev-python/tweepy
dev-python/urwid
test? (
dev-python/mock
dev-python/nose
dev-python/tox
)
"
RDEPEND=""
DOCS="AUTHORS HISTORY.rst README.rst"
|