nmap-vulners: v1.0 initial release

This commit is contained in:
blshkv 2017-12-27 20:17:09 +08:00
parent bced127e14
commit 83ed82e2cc
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1 @@
DIST nmap-vulners-1.0.tar.gz 187062 SHA256 2f82295877fe71d21889154007c0282a8d4f39115eb5695f184a871d47b1db9a SHA512 732a6a2457a1f8441b45a02a37254cc9ca48a79545cfd6233aa94b2e146478c508475b53fcece233d9dba13410fc0c19fd7ef913a6c7fca9b6bcc6b7f1311474 WHIRLPOOL 93cee5f00f7974ec00503538febaacc1ba480f2da85bf222f2071968cf216f5c8f75c089b532259ab9b23965a95b62977f0aba22edd5c9e8eee32881472a7175

View file

@ -0,0 +1,27 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
#inherit git-r3
DESCRIPTION="NSE script based on Vulners.com API"
HOMEPAGE="https://github.com/vulnersCom/nmap-vulners"
#EGIT_REPO_URI="https://github.com/vulnersCom/nmap-vulners.git"
#EGIT_COMMIT="6add677dceca02a7a2c3e8fd080f9f9d045eb03f"
SRC_URI="https://github.com/vulnersCom/nmap-vulners/archive/v${PV}-release.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~arm"
DEPEND=""
RDEPEND="net-analyzer/nmap[nse]"
S="${WORKDIR}/${P}-release"
src_install() {
insinto /usr/share/nmap/scripts/vulners
doins vulners.nse
dodoc README.md
}