mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-12 01:41:01 +02:00
apkid-2.1.0_p20200627.ebuild
This commit is contained in:
parent
469eb837d5
commit
3d57736d3f
2 changed files with 35 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST apkid-2.1.0.tar.gz 126697 BLAKE2B 53f5e646ca1be98ae844ce2cf94aa410704f9ffe963203097059fbdb697883cf35ee262240874a2e4a6393035a36f3f34377e6208f6febff6422ef532455a7c5 SHA512 93e04eb21db257fcb1fb11751e3c08c0d60e1da56bb8c0f3d8fbd1e21544bb825ea70c63e1020fe9e55bfe0cef34d4928fd04699466268ac3afdc28608acd284
|
||||
DIST apkid-2.1.0_p20200522.tar.gz 55304 BLAKE2B 5ba0340f6519781aef9e30f14fa7418462a2fb18b861684fc5247063418eb9e2dbd28201d624084c9ef839ffe80bba315f18f4fdf1f502b2fc453a91fc04cd41 SHA512 4a84f240f6576e7113490c250d444c64f667e32fbf74f7ac746beb92a56a7cefc77365318e9c02394b281d345c9e705e8fb4b1b4199bc21c582adf4b18268836
|
||||
DIST apkid-2.1.0_p20200627.tar.gz 55679 BLAKE2B 2ea1fd9d3a0ddf78b02771f28349776b94aa54adc061b30df1688c5375c93e8299755cf0b9093589b714f1dcd3f0e4fe29083f61ffec029cbde67bbe18c6d867 SHA512 d59f723326d6ca5ea966b85a3d35748cd331cc90703a8902cba6759af5c8859ea62ebd03481f82ad69acdda08449689db0371b4096576986c02a528fad0f8556
|
||||
|
|
|
|||
34
dev-python/apkid/apkid-2.1.0_p20200627.ebuild
Normal file
34
dev-python/apkid/apkid-2.1.0_p20200627.ebuild
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
DISTUTILS_USE_SETUPTOOLS=rdepend
|
||||
PYTHON_COMPAT=( python3_{6,7,8} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Android Package Protector Identifier"
|
||||
HOMEPAGE="https://github.com/rednaga/APKiD/"
|
||||
|
||||
HASH_COMMIT="5735cde8be1d52a9fa529101063ab3f3eb685424"
|
||||
SRC_URI="https://github.com/rednaga/APKiD/archive/${HASH_COMMIT}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND="${PYTHON_DEPS}
|
||||
dev-python/yara-python[dex,${PYTHON_USEDEP}]
|
||||
app-forensics/yara:="
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
S="${WORKDIR}/APKiD-${HASH_COMMIT}"
|
||||
|
||||
src_prepare(){
|
||||
#relax yara and regenarate rules for the current version
|
||||
sed "s|yara-python==3.11.0|yara-python>=3.11.0|g" -i setup.py || die
|
||||
./prep-release.py
|
||||
default
|
||||
}
|
||||
Loading…
Reference in a new issue