mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-03 04:00:54 +02:00
objection: 1.9.3 bump
This commit is contained in:
parent
358140f9a8
commit
b92be29347
2 changed files with 54 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST objection-1.9.0-node_modules.tar.gz 16787156 BLAKE2B bbbb0f21c31d7473a793c6605b5fb24ab4cb4f2b6742befd9daaa731d6fb13b3d3f1fd11441979c49a853bfef79db0c0c91f06b71419717cbc7edc6a43578934 SHA512 11d4f84bc8747cf6c8084db2152e841e43ac3db24e3c9bcd9f952d78e38290c5c7a31d2f7d937abb06c8a3c25b06fc875cf3d9eb499b8fc86e446295f341479a
|
||||
DIST objection-1.9.2.tar.gz 1675253 BLAKE2B c8dc94b0873ebe98e5a2e4e9f092a602aec79389efe0fd0ae40ad2c75e2d7996b1eee3b4ae5ba9db9643438cb984d145777335643838aec8742368e18a25591e SHA512 71f5b0be088b383c2a3a6d77777eaf3255b06dcef9152b0ff00c735af57a6d04e9b1ce5d0da2ab280b2794a14f19c9336f1089df73fca83e305a0901d4c16c41
|
||||
DIST objection-1.9.3.tar.gz 1675243 BLAKE2B fc1469c90591016f8ce4be1faa10c67a69212de61db490acc6a81cae0ac40bf8b64a0ab0acfbb83b4a520610a2702e12af28f15785e522af629e8f190703279b SHA512 86e836a4b112a3e2f764e77502ae9daf9c302df24be74ba0dac24803b22524006e34944f7ffcf083c9fcc967456f9a0f57f496134a8c895f60d52d2013555b7f
|
||||
|
|
|
|||
53
dev-util/objection/objection-1.9.3.ebuild
Normal file
53
dev-util/objection/objection-1.9.3.ebuild
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7} )
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Runtime mobile exploration"
|
||||
HOMEPAGE="https://github.com/sensepost/objection"
|
||||
SRC_URI="https://github.com/sensepost/objection/archive/${PV}.tar.gz -> ${P}.tar.gz
|
||||
https://dev.pentoo.ch/~blshkv/distfiles/objection-1.9.0-node_modules.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="patchapk"
|
||||
|
||||
RDEPEND=">=dev-util/frida-tools-7.0.0[${PYTHON_USEDEP}]
|
||||
dev-python/frida-python[${PYTHON_USEDEP}]
|
||||
>=dev-python/prompt_toolkit-3.0.3[${PYTHON_USEDEP}] <dev-python/prompt_toolkit-4.0.0[${PYTHON_USEDEP}]
|
||||
dev-python/click[${PYTHON_USEDEP}]
|
||||
dev-python/tabulate[${PYTHON_USEDEP}]
|
||||
dev-python/delegator[${PYTHON_USEDEP}]
|
||||
dev-python/requests[${PYTHON_USEDEP}]
|
||||
dev-python/flask[${PYTHON_USEDEP}]
|
||||
dev-python/pygments[${PYTHON_USEDEP}]
|
||||
>=dev-python/litecli-1.3.0[${PYTHON_USEDEP}]
|
||||
net-libs/nodejs[npm]
|
||||
patchapk? (
|
||||
dev-util/android-tools
|
||||
virtual/jdk:*
|
||||
dev-util/apktool
|
||||
)"
|
||||
#https://github.com/sensepost/objection/wiki/Patching-Android-Applications#patching---dependencies
|
||||
#FIXME patchapk: missing aapt
|
||||
#patchipa
|
||||
#https://github.com/sensepost/objection/wiki/Patching-iOS-Applications#patching---dependencies
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
|
||||
src_prepare() {
|
||||
rm -r tests
|
||||
mv "${WORKDIR}/node_modules" "${S}/agent/" || die "unable to move node_modules"
|
||||
eapply_user
|
||||
}
|
||||
|
||||
python_compile() {
|
||||
addpredict /etc/npm
|
||||
emake frida-agent
|
||||
distutils-r1_python_compile
|
||||
}
|
||||
Loading…
Reference in a new issue