mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-02-24 08:31:16 +01:00
yara: v3.7.0 bump
This commit is contained in:
parent
9fc40e9e26
commit
c2da0e03d0
4 changed files with 44 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST yara-3.5.0.tar.gz 7648499 SHA256 4bc72ee755db85747f7e856afb0e817b788a280ab5e73dee42f159171a9b5299 SHA512 84e3b8248749271f154c05216417be76c56563012c0a2013fde5184c6ed03d2933c456d61f036292c42030b52705d5c6e94824d1fd36dbffe46af625ddedaaf5 WHIRLPOOL 77994502920847df9a7379ff2e7b5275ee259a84191ffbb270138d4b4a08797368f9e5ea312b1abd93b3b86e678f26319fc3da01cf2743502825162533f970c4
|
||||
DIST yara-3.6.3.tar.gz 505556 SHA256 ad2c0e788b4d8b2f3e9078f448754313249a302b749b9a24e932bfc5e141a5e8 SHA512 f928fe93e93385b5711c1076b042473299e1eb1c7c345433b01b7638677d9b8fb95a8ac2a7ef52012dc178ec0ef5772d6b6d0b65b5717d2074290bb44031b3f8 WHIRLPOOL d0ccebaeac3a3a0e76b323343e60c7fd3f1e349f729def841928e04ea979ee2d7a41444570b0ffc56701790fb135b0fa1ab3008b914e48260f0dfffc5953e383
|
||||
DIST yara-3.7.0.tar.gz 558035 SHA256 01f0841e7387918c2b6d0b7fb48014bda41d1487be1cabf718a0576018969641 SHA512 cd0214d39c6d1c5bc8410a1ec67e42ec8a672be382fb11e0a0f98cb03af1ef5db92e74216a9b98a6bdedf9721d4470639e340edbd39ca0184233652839742a33 WHIRLPOOL c6b0644301c5f3e0897c8712c3547792820a1e259ef97ae364fc230100faa1b33aeb3bf97da22974cbc830c06b2c3821110459544d761ecbee4d2609e9729c59
|
||||
|
|
|
|||
24
app-forensics/yara/yara-3.7.0.ebuild
Normal file
24
app-forensics/yara/yara-3.7.0.ebuild
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
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 ~x86"
|
||||
IUSE="python"
|
||||
|
||||
DEPEND="dev-libs/openssl:0="
|
||||
RDEPEND="${DEPEND}"
|
||||
PDEPEND="python? ( ~dev-python/yara-python-${PV} )"
|
||||
|
||||
src_prepare() {
|
||||
eautoreconf
|
||||
eapply_user
|
||||
}
|
||||
|
|
@ -1,2 +1,3 @@
|
|||
DIST yara-python-3.5.0.tar.gz 22052 SHA256 e0d564c1a8c98957eda9fb49d4259dcc24b868c98f07a8f2899f24e7bfde6d18 SHA512 aa7da264a230efe55d080f24f6598f15eae4cfe0eaea24d00d86d7d2b9245cabed5bec581f47b3c77cc29200273f859d24b5b5a6547d0a392ea8190260c88c2c WHIRLPOOL d1d85870e86445ede5c18e0fd0da8bdae47b0e89740a50387737d70eae68814c8b4ed0e996bee9802d01258caa8a91536e5a0012ba259e3a0d93fec599d0418f
|
||||
DIST yara-python-3.6.3.tar.gz 29631 SHA256 4453c3ec093aef727607d27efa11cd64a565d8e9e80bdde38f508538a4da85bd SHA512 22d69e1dad6ac709e9d1e1e5161b9afc0f9424f211b77ea615c304193d42be2823916d39bcd43a0189d862ff9af31bd80a0abd8e6336f039d4e1089fa2526e6a WHIRLPOOL 89eef2d459b467c19e0b14f400718f71d7e8c52ed3899732568ead8179102117939f0382b4a6faecab8494737c9328b23ac19a86578bea7074c6268b845cb6bf
|
||||
DIST yara-python-3.7.0.tar.gz 30722 SHA256 24e1faa05fb85d2d23137e819005cce0a11bdfb5cf303a6ab199f37dff3e0352 SHA512 96d43620787f3369843a3255c3dc6ec7e8dd8afedcb8a5414d964c9a30f4e91277156a2543dd9dc28474fc1cfdbedc90e46ed76c83481673fc2c39dd6dc97f73 WHIRLPOOL 45b1828180445cfda928382b74ddee9c6f7ddb657b03dd6def6e48ccd2896cc91cf5a5a46a03058b95b75f595ee54514da2bcc490333ed45b28316fab62e54ef
|
||||
|
|
|
|||
18
dev-python/yara-python/yara-python-3.7.0.ebuild
Normal file
18
dev-python/yara-python/yara-python-3.7.0.ebuild
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
inherit distutils-r1
|
||||
|
||||
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 ~x86"
|
||||
|
||||
DEPEND="~app-forensics/yara-${PV}"
|
||||
RDEPEND="${DEPEND}"
|
||||
Loading…
Reference in a new issue