Mercurial > hg > portage
annotate dev-python/potr/potr-1.2.0.ebuild @ 431:4b67abbaacee
add dependency on gmpy
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Sat, 03 Dec 2016 06:05:41 +0100 |
parents | 1901aeaa2706 |
children |
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 |
431 | 9 # compile errors with python3 ... skip for now |
10 #PYTHON_COMPAT=( python2_7 python3_4 ) | |
428
1901aeaa2706
add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
11 PYTHON_COMPAT=( python2_7 ) |
1901aeaa2706
add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
12 |
1901aeaa2706
add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
13 inherit distutils-r1 |
1901aeaa2706
add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
14 |
1901aeaa2706
add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
15 DESCRIPTION="Pure Python OTR implementation" |
1901aeaa2706
add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
16 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
|
17 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
|
18 |
1901aeaa2706
add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
19 LICENSE="LGPL-3+" |
1901aeaa2706
add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
20 SLOT="0" |
1901aeaa2706
add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
21 KEYWORDS="~amd64" |
1901aeaa2706
add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
22 IUSE="" |
1901aeaa2706
add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
23 |
431 | 24 CDEPEND=">=dev-python/pycrypto-2.1[${PYTHON_USEDEP}] |
25 dev-python/gmpy[${PYTHON_USEDEP}] | |
26 " | |
428
1901aeaa2706
add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
27 DEPEND="${CDEPEND} |
1901aeaa2706
add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
28 dev-python/setuptools[${PYTHON_USEDEP}] |
1901aeaa2706
add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
29 " |
1901aeaa2706
add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
30 RDEPEND="${CDEPEND}" |
1901aeaa2706
add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
31 |
1901aeaa2706
add an ebuild for the latest python-otr version
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
32 S="${WORKDIR}/${MY_P}" |