mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-20 05:41:12 +02:00
objection: 1.7.2 bump
This commit is contained in:
parent
1797a1c1a1
commit
5ec1106a03
2 changed files with 45 additions and 0 deletions
|
|
@ -2,3 +2,4 @@ DIST objection-1.6.6-node_modules.tar.gz 15204916 BLAKE2B 103642e3103aeb93d8a4af
|
|||
DIST objection-1.6.6.tar.gz 1655643 BLAKE2B 1235a430a53699f2a93a90cd316bc87079a00b5c20a31f701f62b650ff2566ca0aa9e28561d79da12b75c6eec9d6e5b8198e0673b9b9f37e16d5079ac827ee9f SHA512 60a4a3412e6406014f9c3909c67af11749a692ad0365241833f332035834cfa32df79d58cda67ba92d0fc16298b035f60e14f766ba51dd258663c4c29cdf1b45
|
||||
DIST objection-1.7.0-node_modules.tar.gz 15801482 BLAKE2B 55008cdde77c06488148f9e093271c729ae9a17779aa9bc0163789294fea92460e22c4e5ea02c5b7a702030fa85e450bcad67d03b5249cd4fbb47fa1668992df SHA512 97b3fadc85b92183cd0057ca0b6108b0f210a8d0ea729cdba9fda5e343629a4390daac9b06da3a4fca27504a70882ee00b819d7b9df04d64202c1d25e0615f88
|
||||
DIST objection-1.7.1.tar.gz 1666960 BLAKE2B 61f727026f7b4f3048bb548cb0a717be79d0ddd23a8436246a38a0619e921198d5a13c1a7cc98b17fa50355dfea89a44459bcec37650c1795bb9299e015217ae SHA512 b91db8cb90a367c775d474778801afcdb9d7310311acb0c09e83115f510b36bbd1480cceebf8a8d366cbf74adef337fe59803a4f7e9fe2209528b46493b4d4f9
|
||||
DIST objection-1.7.2.tar.gz 1667928 BLAKE2B 73791dee58f68ef608e7137d515dce6035ea9ab287e60ff45d4326541e56a100b372abdec1d1d18e1e1edadb17d1db95a71114de32b1af4429bf149db1996bbc SHA512 c7b796a18bd950bf880bbc708aee48222d1bfd0fd623c093b9ae98f12f7b891d181031acc03f6e8fe3cd8e122cbf5dce9600f811754dfb854b205a76b11fb8c2
|
||||
|
|
|
|||
44
dev-util/objection/objection-1.7.2.ebuild
Normal file
44
dev-util/objection/objection-1.7.2.ebuild
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_6 )
|
||||
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.7.0-node_modules.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="dev-util/frida-tools[${PYTHON_USEDEP}]
|
||||
dev-python/frida-python[${PYTHON_USEDEP}]
|
||||
>=dev-python/prompt_toolkit-2.0.8[${PYTHON_USEDEP}] <dev-python/prompt_toolkit-3.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}]
|
||||
net-libs/nodejs[npm]"
|
||||
|
||||
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
|
||||
# cd agent
|
||||
# npm run build || die "npm build failed"
|
||||
distutils-r1_python_compile
|
||||
}
|
||||
Loading…
Reference in a new issue