blob: a43e590f5e06cc169044bb842f64cde3666b8c9e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 2015-2016 Adélie Linux Team
# Distributed under the terms of the NCSA License
EAPI=6
PYTHON_COMPAT=( python3_{4,5} )
inherit distutils-r1
DESCRIPTION="Library for manipulating APK packages from Python"
HOMEPAGE="http://adelielinux.org/"
SRC_URI="mirror://pypi/a/${PN}/${P}.tar.gz"
LICENSE="UoI-NCSA"
SLOT="0"
KEYWORDS="mips ppc ppc64 x86 x86_64"
IUSE="+crypt"
DEPEND=""
RDEPEND="${DEPEND}
crypt? ( dev-python/cryptography )
dev-python/jinja
dev-python/pyyaml
sys-apps/apk-tools"
|