annotate dev-python/potr/potr-1.2.0.ebuild @ 441:e493bd4a6f5e

update the psi ebuild, remove an old one
author Dirk Olmes <dirk@xanthippe.ping.de>
date Wed, 10 May 2017 01:06:25 +0200
parents 4b67abbaacee
children
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
431
4b67abbaacee add dependency on gmpy
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 428
diff changeset
9 # compile errors with python3 ... skip for now
4b67abbaacee add dependency on gmpy
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 428
diff changeset
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
4b67abbaacee add dependency on gmpy
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 428
diff changeset
24 CDEPEND=">=dev-python/pycrypto-2.1[${PYTHON_USEDEP}]
4b67abbaacee add dependency on gmpy
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 428
diff changeset
25 dev-python/gmpy[${PYTHON_USEDEP}]
4b67abbaacee add dependency on gmpy
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 428
diff changeset
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}"