mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-27 18:58:15 +01:00
34 lines
1 KiB
Bash
34 lines
1 KiB
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DISTUTILS_USE_SETUPTOOLS=rdepend
|
|
PYTHON_COMPAT=( python3_{6,7,8,9} )
|
|
inherit distutils-r1
|
|
|
|
MY_PV="$(ver_cut 1-3)a$(ver_cut 5)"
|
|
|
|
DESCRIPTION="Read Android's binary format for XML files (AXML) and a decompiler for DEX"
|
|
HOMEPAGE="https://github.com/androguard/androguard"
|
|
#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
SRC_URI="https://github.com/androguard/androguard/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="Apache-2.0"
|
|
KEYWORDS="amd64 ~arm64 x86"
|
|
SLOT="0"
|
|
IUSE=""
|
|
|
|
RDEPEND="
|
|
>=dev-python/networkx-2.2[${PYTHON_USEDEP}]
|
|
>=dev-python/pygments-2.3.1[${PYTHON_USEDEP}]
|
|
>=dev-python/lxml-4.3.0[${PYTHON_USEDEP}]
|
|
>=dev-python/colorama-0.4.1[${PYTHON_USEDEP}]
|
|
dev-python/matplotlib[${PYTHON_USEDEP}]
|
|
>=dev-python/asn1crypto-0.24.0[${PYTHON_USEDEP}]
|
|
dev-python/click[${PYTHON_USEDEP}]
|
|
>=dev-python/pydot-1.4.1[${PYTHON_USEDEP}]
|
|
>=dev-python/ipython-5.0[${PYTHON_USEDEP}]"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
S="${WORKDIR}/${PN}-${MY_PV}"
|