This commit is contained in:
Anton Bolshakov 2025-10-03 09:01:57 +08:00
parent 7f83e8846a
commit 4e8649e3f7
No known key found for this signature in database
GPG key ID: 32BDCED870788F04
3 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,3 @@
DIST nuclei_3.4.10_linux_amd64.zip 33657343 BLAKE2B f3bb6c45f54546367d86067922a7fbe067673b9100761ef4244d8a6d3212fcfb21efa36f51cfcfe9698dea0a09c4d2345dd35d6ac3c81c0027d6850925f028e7 SHA512 b947faa88a81842d4da8028fd5270fefbf3a4e6adf88a772d5312ac3bbde0bf693a61f640181a86d8ffe0cc737c9a6fe72d7107f380de1a822018c6b075a3c79
DIST nuclei_3.4.10_linux_arm.zip 31183819 BLAKE2B d9c8f07ff10240db1a0c573450f4bbc4c2cb7b2af740b8b8887edbd52a49263cdc3b036c1cfe49c391d60113c642774376aab7b8c7c81a44bb789b4c9803f0a2 SHA512 467a98b4aa168a16af15a3c2cab5e0be04dc9066021b8dfa37550d747d77aea18951a0bdca5a3621f9bc3f61d5a52b2cb90406da22612deef1e4b1186b1138e4
DIST nuclei_3.4.10_linux_arm64.zip 30171177 BLAKE2B abbb08d4545b1f69918f40f179127e4b661d560d9c4d498fe972197e7c1252460c116e2e5f62a5a379f2f0de4ca50483922b695cf85b7f5384d0f5ce3bb30537 SHA512 c8d6bff1ba83b573973a9576a923244b9059f62682aa5d801f9a2dadb6267a040ea0ed89f3d1bf7654e488827282852ba3020678afc86a83d4d6da9386301921

View file

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>unknown@pentoo.ch</email>
<name>Author Unknown</name>
</maintainer>
<upstream>
<remote-id type="github">projectdiscovery/nuclei</remote-id>
</upstream>
</pkgmetadata>

View file

@ -0,0 +1,24 @@
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="High-performance vulnerability based on YAML templates"
HOMEPAGE="https://github.com/projectdiscovery/nuclei"
SRC_URI="amd64? ( https://github.com/projectdiscovery/nuclei/releases/download/v${PV}/nuclei_${PV}_linux_amd64.zip )
arm? ( https://github.com/projectdiscovery/nuclei/releases/download/v${PV}/nuclei_${PV}_linux_arm.zip )
arm64? ( https://github.com/projectdiscovery/nuclei/releases/download/v${PV}/nuclei_${PV}_linux_arm64.zip )"
S="${WORKDIR}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64"
BDEPEND="app-arch/unzip"
QA_PREBUILD="*"
src_install() {
newbin "nuclei" "${PN}"
}