mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
65 lines
1.8 KiB
Bash
65 lines
1.8 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{10..12} )
|
|
|
|
inherit python-single-r1
|
|
|
|
HASH_COMMIT="f753c4d287cd752fe926d2087236a98c3810d3e4"
|
|
|
|
DESCRIPTION="Monitoring and tampering API calls of MacOS and iOS/Android apps"
|
|
HOMEPAGE="https://dpnishant.github.io/appmon/"
|
|
SRC_URI="https://github.com/dpnishant/appmon/archive/${HASH_COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
S=${WORKDIR}/${PN}-${HASH_COMMIT}
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND="${PYTHON_DEPS}
|
|
$(python_gen_cond_dep '
|
|
dev-python/alembic[${PYTHON_USEDEP}]
|
|
dev-python/banal[${PYTHON_USEDEP}]
|
|
dev-python/chardet[${PYTHON_USEDEP}]
|
|
dev-python/click[${PYTHON_USEDEP}]
|
|
dev-python/dataset[${PYTHON_USEDEP}]
|
|
dev-python/flask[${PYTHON_USEDEP}]
|
|
dev-util/frida-tools[${PYTHON_USEDEP}]
|
|
dev-python/htmlentities[${PYTHON_USEDEP}]
|
|
dev-python/itsdangerous[${PYTHON_USEDEP}]
|
|
dev-python/jinja2[${PYTHON_USEDEP}]
|
|
dev-python/mako[${PYTHON_USEDEP}]
|
|
dev-python/markupsafe[${PYTHON_USEDEP}]
|
|
dev-python/normality[${PYTHON_USEDEP}]
|
|
dev-python/python-dateutil[${PYTHON_USEDEP}]
|
|
dev-python/python-editor[${PYTHON_USEDEP}]
|
|
dev-python/sqlalchemy[${PYTHON_USEDEP}]
|
|
dev-python/termcolor[${PYTHON_USEDEP}]
|
|
dev-python/werkzeug[${PYTHON_USEDEP}]
|
|
')"
|
|
DEPEND="${RDEPEND}"
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
# https://github.com/dpnishant/appmon/issues/86
|
|
# PATCHES=( "${FILESDIR}/104.patch" )
|
|
|
|
src_install(){
|
|
dodir /usr/$(get_libdir)/${PN}
|
|
cp -R * "${ED}"/usr/$(get_libdir)/${PN} || die "Copy files failed"
|
|
python_fix_shebang "${ED}"/usr/$(get_libdir)/${PN}/*.py
|
|
|
|
newbin - appmon <<-EOF
|
|
#!/bin/sh
|
|
cd /usr/$(get_libdir)/appmon
|
|
${EPYTHON} ./appmon.py
|
|
EOF
|
|
|
|
newbin - appmon_viewreport <<-EOF
|
|
#!/bin/sh
|
|
cd /usr/$(get_libdir)/appmon
|
|
${EPYTHON} ./viewreport.py
|
|
EOF
|
|
|
|
}
|