37 lines
793 B
Bash
37 lines
793 B
Bash
|
# Copyright 1999-2017 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Id$
|
||
|
|
||
|
EAPI=6
|
||
|
|
||
|
PYTHON_COMPAT=( python2_7 )
|
||
|
|
||
|
PV_COMMIT="e3ceb5a06c3f1a6c0a251515ce7ebcf66c61b2b0"
|
||
|
|
||
|
inherit distutils-r1
|
||
|
|
||
|
DESCRIPTION="a command line client to manage the privacyIDEA server"
|
||
|
HOMEPAGE="https://www.privacyidea.org/"
|
||
|
SRC_URI="https://github.com/privacyidea/${PN}/archive/${PV_COMMIT}.tar.gz -> ${P}.tar.gz"
|
||
|
|
||
|
LICENSE="GPL-3"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="amd64 x86"
|
||
|
IUSE=""
|
||
|
|
||
|
S=${WORKDIR}/${PN}-${PV_COMMIT}
|
||
|
|
||
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
|
||
|
dev-python/sphinx"
|
||
|
RDEPEND="dev-python/requests
|
||
|
dev-python/pycrypto
|
||
|
dev-python/pyusb
|
||
|
dev-python/python-yubico
|
||
|
dev-python/qrcode"
|
||
|
|
||
|
src_prepare(){
|
||
|
rm -rf tests
|
||
|
emake man
|
||
|
eapply_user
|
||
|
}
|