blob: 17cb785f7e53a6f3c9becdfe6d36b6cb1fdf6da5 (
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
37
38
39
40
41
42
43
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1 vcs-snapshot
NUM="869544967005693312591928092448767568728501330214"
MY_P="${P}.${NUM}"
DESCRIPTION="Python wrappers for a few algorithms from the Crypto++ library"
HOMEPAGE="http://tahoe-lafs.org/trac/pycryptopp https://pypi.python.org/pypi/pycryptopp"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-libs/crypto++"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"
DOCS="NEWS.rst"
S="${WORKDIR}/${MY_P}"
python_prepare_all() {
# Don't install license files
sed -i -e "/data_files=data_files,/d" setup.py || die
distutils-r1_python_prepare_all
}
python_compile() {
# use system crypto++ library
distutils-r1_python_compile --disable-embedded-cryptopp
}
python_test() {
esetup.py test
}
|