From owner-svn-ports-all@freebsd.org Sun Sep 4 08:27:10 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4A44FBCFFB7; Sun, 4 Sep 2016 08:27:10 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0D3D8215; Sun, 4 Sep 2016 08:27:09 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u848R9AE043630; Sun, 4 Sep 2016 08:27:09 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u848R8p3043626; Sun, 4 Sep 2016 08:27:08 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609040827.u848R8p3043626@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 4 Sep 2016 08:27:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421312 - in head/security: . rubygem-nessus_rest X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Sep 2016 08:27:10 -0000 Author: antoine Date: Sun Sep 4 08:27:08 2016 New Revision: 421312 URL: https://svnweb.freebsd.org/changeset/ports/421312 Log: New port: security/rubygem-nessus_rest Ruby library for Nessus JSON/REST interface. This library is used for communication with Nessus over REST interface. You can start, stop, pause and resume scan. Watch progress and status of scan, download report, etc. WWW: https://github.com/kost/nessus_rest-ruby Added: head/security/rubygem-nessus_rest/ head/security/rubygem-nessus_rest/Makefile (contents, props changed) head/security/rubygem-nessus_rest/distinfo (contents, props changed) head/security/rubygem-nessus_rest/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Sep 4 08:21:48 2016 (r421311) +++ head/security/Makefile Sun Sep 4 08:27:08 2016 (r421312) @@ -991,6 +991,7 @@ SUBDIR += rubygem-metasploit-payloads SUBDIR += rubygem-metasploit_data_models SUBDIR += rubygem-metasploit_payloads-mettle + SUBDIR += rubygem-nessus_rest SUBDIR += rubygem-net-scp SUBDIR += rubygem-net-sftp SUBDIR += rubygem-net-ssh Added: head/security/rubygem-nessus_rest/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-nessus_rest/Makefile Sun Sep 4 08:27:08 2016 (r421312) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= nessus_rest +PORTVERSION= 0.1.4 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Communicate with Nessus Scanner over REST/JSON interface + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +NO_ARCH= yes + +USE_RUBY= yes +USES= gem + +.include Added: head/security/rubygem-nessus_rest/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-nessus_rest/distinfo Sun Sep 4 08:27:08 2016 (r421312) @@ -0,0 +1,3 @@ +TIMESTAMP = 1472927514 +SHA256 (rubygem/nessus_rest-0.1.4.gem) = f5d8a0c998885264c0c474619e10f0b0af8a927a8236e6a8cfbd91ac8ed2f8f6 +SIZE (rubygem/nessus_rest-0.1.4.gem) = 11264 Added: head/security/rubygem-nessus_rest/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-nessus_rest/pkg-descr Sun Sep 4 08:27:08 2016 (r421312) @@ -0,0 +1,5 @@ +Ruby library for Nessus JSON/REST interface. This library is used for +communication with Nessus over REST interface. You can start, stop, pause and +resume scan. Watch progress and status of scan, download report, etc. + +WWW: https://github.com/kost/nessus_rest-ruby