mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-21 14:21:02 +02:00
mobsf-3.1.1.ebuild
This commit is contained in:
parent
d3f1471301
commit
5e7565908e
3 changed files with 67 additions and 2 deletions
|
|
@ -1 +1,2 @@
|
|||
DIST mobsf-3.0.5.tar.gz 214904194 BLAKE2B 0d32219388a2e810bbc520027215cb65f524252ee3e996fbe8883e6ecc43a695875d391c992917076d77e6397ec8bfe63675f5dd022c3e48f391c4ba103f9fea SHA512 ef82b32a957ee49a0031ce7150a5514835bc7f4f375561f84e55d4f8cec1d460bb08e1d1dd96303db954eae2444a5440341d6d9bb61a26d05821ff9a5d1861bf
|
||||
DIST mobsf-3.1.1.tar.gz 141751089 BLAKE2B 915e447b80ee774f3d92bff769cb191dfea54d08a044a6dfd8030215dac6dd3dabb7899ceed66793a8f3e76669637f22e265df4660b4880dcd8e317ed91350ac SHA512 808a9232d7740c3a295e2ff351b781dee9222563237464fc7c87a68b96db164fe12f4503f3188fb230d14262bb2a747b9b0d9a2125a3b4edd7d274b0f2e8052b
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
<email>blshkv@pentoo.ch</email>
|
||||
<name>Anton Bolshakov</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="genymotion">Add <pkg>app-emulation/genymotion-bin</pkg> support</flag>
|
||||
|
|
|
|||
64
dev-util/mobsf/mobsf-3.1.1.ebuild
Normal file
64
dev-util/mobsf/mobsf-3.1.1.ebuild
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7} )
|
||||
|
||||
inherit python-single-r1
|
||||
|
||||
MY_PN="Mobile-Security-Framework-MobSF"
|
||||
|
||||
DESCRIPTION="Automated, all-in-one mobile application (Android/iOS/Windows) pen-testing"
|
||||
HOMEPAGE="https://github.com/MobSF/Mobile-Security-Framework-MobSF"
|
||||
SRC_URI="https://github.com/MobSF/Mobile-Security-Framework-MobSF/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
#KEYWORDS="~amd64 ~x86"
|
||||
|
||||
#Dynamic Analysis or genymotion
|
||||
IUSE="genymotion pdf"
|
||||
|
||||
RDEPEND="${PYTHON_DEPS}
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/django[${PYTHON_MULTI_USEDEP}]
|
||||
dev-util/androguard[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/lxml[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/rsa[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/biplist[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/requests[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/beautifulsoup:4[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/colorlog[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/macholib[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/google-play-scraper[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/whitenoise[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/waitress[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/frida-python[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/psutil[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/shelljob[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/asn1crypto[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/oscrypto[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/distro[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/pyopenssl[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/apkid[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/pyparsing[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/http-tools[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/yara-python[${PYTHON_MULTI_USEDEP}]
|
||||
')
|
||||
pdf? ( $(python_gen_cond_dep 'dev-python/pdfkit[${PYTHON_MULTI_USEDEP}]') )
|
||||
www-servers/gunicorn
|
||||
genymotion? ( app-emulation/genymotion-bin )"
|
||||
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
S="${WORKDIR}/${MY_PN}-${PV}"
|
||||
|
||||
pkg_setup() {
|
||||
python-single-r1_pkg_setup
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
einfo "https://github.com/MobSF/Mobile-Security-Framework-MobSF/wiki/1.-Documentation"
|
||||
einfo " gunicorn -b 0.0.0.0:8000 MobSF.wsgi:application --workers=1"
|
||||
}
|
||||
Loading…
Reference in a new issue