22 lines
492 B
Bash
22 lines
492 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
PYTHON_COMPAT=( python2_7 python3_4 )
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="A library to access KeePass 1.x/KeePassX (v3) and KeePass 2.x (v4) files"
|
|
HOMEPAGE="https://github.com/libkeepass/libkeepass"
|
|
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="
|
|
dev-python/pycrypto
|
|
dev-python/lxml
|
|
"
|
|
RDEPEND="${DEPEND}"
|