mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-08 20:43:38 +02:00
yara: 4.0.2 bump
This commit is contained in:
parent
1c8275833c
commit
98575b47f5
4 changed files with 68 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST yara-4.0.0.tar.gz 884079 BLAKE2B 2a5b768a54f34f3832daa7299412276ba17fc320dc5da206ee4d3330bbe05692d974c5179244a13040bf0578f9a5a8c1fafc219a3019bcb99e27295b52642da9 SHA512 b78dac06d6f8b4153f3939fd3a5f6d50544c078520c240baa4bae00c552bf98d374c60629b256a75fe8943ef44830d5313e43f88cfb07ab561d22148f56b6fb7
|
||||
DIST yara-4.0.1.tar.gz 889069 BLAKE2B d56ba0c989f28c802b4474832f595360a246740a67aff8106a7ded8ce0c4636afac487d17b1e2470ee21741d95b71b78dbd7679e71bc1f84dbfc9d2f2c0d48ed SHA512 5d91b8df242299084916d9634e950359e7a9df26a7964ca2ca52cecf79a969d5aefd1c2dd89f5e762cf3a3c907cd616bd738b540f8600ad94522cbc3f1b031d3
|
||||
DIST yara-4.0.2.tar.gz 888137 BLAKE2B 37f29c75c832f2d2c17aaf51ef443266e354018a07212b1df696cc083a2abebdf091c4fbdd53e32e5a9f7e53fa3be378c79794923f3100068de86d56077d7be3 SHA512 22575cb7b48eead3b5051ce13beb3deef88a1b605de20ec8e5fc2651c0dd0009eb6c0ecddb8600a43a757ceb6ea298e94f71a26d2f9acb31a73830e18c81d10c
|
||||
|
|
|
|||
35
app-forensics/yara/yara-4.0.2.ebuild
Normal file
35
app-forensics/yara/yara-4.0.2.ebuild
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit autotools
|
||||
|
||||
DESCRIPTION="A malware identification and classification tool"
|
||||
HOMEPAGE="http://virustotal.github.io/yara/"
|
||||
SRC_URI="https://github.com/virustotal/yara/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~x86"
|
||||
IUSE="+dex python"
|
||||
|
||||
DEPEND="dev-libs/openssl:0="
|
||||
RDEPEND="${DEPEND}"
|
||||
PDEPEND="python? ( ~dev-python/yara-python-${PV} )"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf $(use_enable dex)
|
||||
}
|
||||
|
||||
# --enable-profiling enable rules profiling support
|
||||
# --enable-cuckoo enable cuckoo module
|
||||
# --enable-magic enable magic module
|
||||
# --enable-dotnet enable dotnet module
|
||||
# --enable-macho enable macho module
|
||||
# --enable-debug-dex enable dex module debugging
|
||||
|
|
@ -1,2 +1,3 @@
|
|||
DIST yara-python-4.0.0.tar.gz 32201 BLAKE2B 31641d50285eba140fae372f411a9531374702c6a0f48986caff56b04d085bcd6d84a6cadd91f3a585c546132f2b538a656ef5c08ec0159ce4fb1b900cd5454a SHA512 9210793d305e34313494e3d867fc3a729814401208206a0f6f7fd2bfdcb6482a8e19e64788c35c149cd5a65cdc5357d8fa1e020fae6ac8c2704fa55e6c2cb989
|
||||
DIST yara-python-4.0.1.tar.gz 32251 BLAKE2B 465abf3fdb995c4366ffc1fbfbaec6122f1d916c8ac3c9e5381f31e7784d22b50c1afde6862ecc544799e082c8230e46038a5c58d0f7796d25c71d8d78db247c SHA512 8bd4ba51dbec38cb6b9c18b4d8b9325d5bfc413af1462682497398ab86ab67e4cd19355bdaacf1d075098e281ad0d5e9bf748eb5b7fbe404dcf0955cb688e2aa
|
||||
DIST yara-python-4.0.2.tar.gz 32362 BLAKE2B b661d7082463b4fe25c954fe6e87048e26f9afaebb0b327f724c4217a98aa1061122f84379a3da35431ef5bf81649323d9c0830fe47abbc3f75dce80502b7dd4 SHA512 0c599f529d11a1ecc006f2db958efbbe6b43669f0721b941f4a46d68d75a1e15418075dccb229c498dd39f651f58392d7c7c4b5c62ef694cbddbf05c609301d3
|
||||
|
|
|
|||
31
dev-python/yara-python/yara-python-4.0.2.ebuild
Normal file
31
dev-python/yara-python/yara-python-4.0.2.ebuild
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7,8} )
|
||||
|
||||
inherit distutils-r1 eutils
|
||||
|
||||
DESCRIPTION="Python interface for a malware identification and classification tool"
|
||||
HOMEPAGE="https://github.com/VirusTotal/yara-python"
|
||||
SRC_URI="https://github.com/virustotal/yara-python/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~x86"
|
||||
IUSE="test +dex"
|
||||
|
||||
RDEPEND="${PYTHON_DEPS}
|
||||
~app-forensics/yara-${PV}[dex?]"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
# Dex isn't enabled because dynamic-linking and dex aren't compatible
|
||||
# We just make sure that if someone asks for dex, the yara library is compiled with it
|
||||
|
||||
src_compile() {
|
||||
compile_python() {
|
||||
distutils-r1_python_compile --dynamic-linking
|
||||
}
|
||||
python_foreach_impl compile_python
|
||||
}
|
||||
Loading…
Reference in a new issue