mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-19 13:20:57 +02:00
yara-python: fix issue https://github.com/pentoo/pentoo-overlay/issues/397
This commit is contained in:
parent
b98c91d03f
commit
b90b262814
3 changed files with 9 additions and 21 deletions
|
|
@ -1,2 +1,2 @@
|
|||
DIST yara-python-3.7.0.tar.gz 30722 BLAKE2B 0576ecc29278c4e68d7bc195b42816a3bacf3d45833326c7c9c3acd50f11e386ebb90661379517af91c3da95f2af6875b09bd020afabe9dcd7e8c22219cbb3f4 SHA512 96d43620787f3369843a3255c3dc6ec7e8dd8afedcb8a5414d964c9a30f4e91277156a2543dd9dc28474fc1cfdbedc90e46ed76c83481673fc2c39dd6dc97f73
|
||||
DIST yara-3.8.1.tar.gz 715968 BLAKE2B 9fe5a2aaf410f0e1fafb9e97caafc27509aeef74eea9abb9d75678d581c046b490b79d7d7a6760de7c446cc911ffc2c9b2d70efe0b84f5323ece2121ba0b32c6 SHA512 32acb7b7336eebe2fe2c10ba6e8b23fea4e91148c289d15b53119bbed3dfe27508fbd90aef5c036a5b6a7e31e0f73ec8885e30093c598f9bc04bd9d64ac0ac7e
|
||||
DIST yara-python-3.8.1.tar.gz 31526 BLAKE2B d60ce931736205b5f2d85944404503fe58a00c0f72ccc684cd0793c6f13b6ef525280bc912ae0a86cc952d5cf4aa9c27d3e658bcb117f5fcc74ca442bc4a26f2 SHA512 5d52e2f374cf8d8a2b8afc794edaeded6a433fc184b285575bc53e8f98280e003ac2f9f2b9219c961cf2cffe82df343e74401412435ce8a8e7eff461148f7bf2
|
||||
|
|
|
|||
|
|
@ -3,12 +3,13 @@
|
|||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python{2_7,3_6} )
|
||||
PYTHON_COMPAT=( python{2_7,3_6,3_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"
|
||||
SRC_URI="https://github.com/virustotal/yara-python/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
||||
https://github.com/virustotal/yara/archive/v${PV}.tar.gz -> yara-${PV}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
|
|
@ -16,3 +17,8 @@ KEYWORDS="~amd64 ~x86"
|
|||
|
||||
DEPEND="=app-forensics/yara-${PV}"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
cp -r "${WORKDIR}/yara-${PV}/"* "${S}/yara/"
|
||||
default
|
||||
}
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python{2_7,3_6} )
|
||||
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