annotate dev-python/potr/potr-1.2.0.ebuild @ 428:1901aeaa2706

add an ebuild for the latest python-otr version
author Dirk Olmes <dirk@xanthippe.ping.de>
date Sat, 03 Dec 2016 05:24:24 +0100
parents
children 4b67abbaacee
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
428
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
1 # Copyright 1999-2015 Gentoo Foundation
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
2 # Distributed under the terms of the GNU General Public License v2
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
3 # $Id$
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
4
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
5 EAPI=5
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
6
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
7 MY_P="python-otr-release-${PV}"
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
8
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
9 #PYTHON_COMPAT=( python{2_7,3_4} )
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
10 PYTHON_COMPAT=( python2_7 )
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
11
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
12 inherit distutils-r1
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
13
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
14 DESCRIPTION="Pure Python OTR implementation"
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
15 HOMEPAGE="https://github.com/AGProjects/python-otr/"
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
16 SRC_URI="https://github.com/AGProjects/python-otr/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
17
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
18 LICENSE="LGPL-3+"
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
19 SLOT="0"
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
20 KEYWORDS="~amd64"
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
21 IUSE=""
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
22
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
23 CDEPEND=">=dev-python/pycrypto-2.1[${PYTHON_USEDEP}]"
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
24 DEPEND="${CDEPEND}
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
25 dev-python/setuptools[${PYTHON_USEDEP}]
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
26 "
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
27 RDEPEND="${CDEPEND}"
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
28
1901aeaa2706 add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
29 S="${WORKDIR}/${MY_P}"