seclists-2020.3.ebuild

This commit is contained in:
blshkv 2020-07-18 08:50:14 +08:00
parent a8e6a4ba99
commit a856e13fde
No known key found for this signature in database
GPG key ID: 32BDCED870788F04
2 changed files with 27 additions and 0 deletions

View file

@ -1,2 +1,3 @@
DIST seclists-2020.1.tar.gz 349945327 BLAKE2B f6ba4e62ec684336a01267cc47e32f3cfa1ccbc7241d4e4065ab73982958e74ae81575d11a0b59fe4c3bc521ca5ef40c3214cc1e89c5c7a8a85eae9778bb18ad SHA512 f9f50cfcd17e1f1294ed5cdd5e412a1648e4aa7bbbb78727d21bb0a67551428aede1b18e82575d50031389d10e0f039d7eac6d9b1bf98ea11b182ab043f6806b
DIST seclists-2020.2.tar.gz 459561244 BLAKE2B a3567ad4575d9d56a81c75ca4d8d894788d2b422b33b9363ae6cbc2ecbfd3645421beb8012537da24c597aed3fda276c520e85b30197bf5f40cf612da82913e9 SHA512 7058fb7c57e9959b83a92845d1af1541510275f8dbd564b51811cdacb9bc8bcc82e421c46f78e0e9af7b565fc2bcddd00cd8258393cd2c243b6f8b92037d6f3b
DIST seclists-2020.3.tar.gz 458160434 BLAKE2B 8c2856e50794d75dd12a588f49b04a53478d9241697e5a0363f689815dc155b112a941487004ec209cbea379b3838eddbe0bb14b1611c3f798e2f4d6dbdf9b05 SHA512 3f07808e4074d6baf3fa4a7b424161c453d0f3e96b201064ce12571a54200a723e906784c8ee8bdd0cb0d6898cdff791a104873912867c42f305d97d8d4e6dc3

View file

@ -0,0 +1,26 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="A collection of multiple types of lists used during security assessments"
HOMEPAGE="https://github.com/danielmiessler/SecLists"
SRC_URI="https://github.com/danielmiessler/SecLists/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
S="${WORKDIR}/SecLists-${PV}"
src_prepare(){
default
#https://github.com/danielmiessler/SecLists/issues/226
rm ./Payloads/File-Names/max-length/* || die
}
src_install(){
insinto /usr/share/dict/seclists
doins -r *
}