objection: 20190208 bump with prompt_toolkit-2 support

This commit is contained in:
blshkv 2019-02-10 09:05:15 +08:00
parent 6f81368ab3
commit 7ed635429a
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
6 changed files with 47 additions and 7 deletions

View file

@ -3,7 +3,7 @@
EAPI=6
PYTHON_COMPAT=( python{2_7,3_6} )
PYTHON_COMPAT=( python2_7 python{3_6,3_7} )
inherit distutils-r1
DESCRIPTION="Frida CLI tools"

View file

@ -3,7 +3,7 @@
EAPI=6
PYTHON_COMPAT=( python{2_7,3_6} )
PYTHON_COMPAT=( python2_7 python{3_6,3_7} )
inherit distutils-r1
DESCRIPTION="Frida CLI tools"

View file

@ -3,7 +3,7 @@
EAPI=7
PYTHON_COMPAT=( python{2_7,3_6} )
PYTHON_COMPAT=( python2_7 python{3_6,3_7} )
inherit distutils-r1
DESCRIPTION="Frida CLI tools"

View file

@ -1 +1,2 @@
DIST objection-1.4.1.tar.gz 2125011 BLAKE2B 9b03150d418bbd22ac5e049999a007a8ff0fac0fc73549dab8efecb87819ae0f3da327d74df68a71b0f053232e4039b04c90140278e931e3bc29e49b8dc7bd36 SHA512 dbdf706d7c230c4e7c4fc38c51c3227a32cd8bb91688813f8b23a2185e186a593736ca25ad0bc067b62737a821752a31bc342cb84ae1e89411e26525dba1cd69
DIST objection-1.4.1_p20190208.tar.gz 2163164 BLAKE2B 3dc3dcc64c3627127003345232abfe5008a81c5a8709a1d4ea20ac44d923f4f4dd08821e446beffbd09359c3c7d32fa1871865283f9af6b0b63bd6110855e41f SHA512 0f47567cfb358903473383671177370108c5bb46e5954c753b9b6eec8b8f25974e57f2a5e7ca067cbb4874e090329bcae5b2e4ce80f95eedb0d55ceaba565a44

View file

@ -1,9 +1,9 @@
# Copyright 1999-2018 Gentoo Foundation
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
EAPI=7
PYTHON_COMPAT=( python{3_5,3_6} )
PYTHON_COMPAT=( python3_6 )
inherit distutils-r1
DESCRIPTION="Runtime mobile exploration"
@ -17,7 +17,7 @@ IUSE=""
RDEPEND="dev-util/frida-tools[${PYTHON_USEDEP}]
dev-python/frida-python[${PYTHON_USEDEP}]
dev-python/prompt_toolkit[${PYTHON_USEDEP}]
>=dev-python/prompt_toolkit-1.0.15[${PYTHON_USEDEP}] <dev-python/prompt_toolkit-2.0.0[${PYTHON_USEDEP}]
dev-python/click[${PYTHON_USEDEP}]
dev-python/jinja[${PYTHON_USEDEP}]
dev-python/delegator[${PYTHON_USEDEP}]

View file

@ -0,0 +1,39 @@
# 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
HASH_COMMIT="549314199d3dd2b963c1ee7d495ecd94fff8c27f"
DESCRIPTION="Runtime mobile exploration"
HOMEPAGE="https://github.com/sensepost/objection"
SRC_URI="https://github.com/sensepost/objection/archive/${HASH_COMMIT}.tar.gz -> ${P}.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.0[${PYTHON_USEDEP}] <dev-python/prompt_toolkit-3.0.0[${PYTHON_USEDEP}]
dev-python/click[${PYTHON_USEDEP}]
dev-python/jinja[${PYTHON_USEDEP}]
dev-python/delegator[${PYTHON_USEDEP}]
dev-python/tabulate[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/jsbeautifier[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"
S="${WORKDIR}/${PN}-${HASH_COMMIT}"
src_prepare(){
rm -r tests
eapply_user
}