From owner-svn-ports-head@FreeBSD.ORG Thu Mar 26 20:51:55 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 59A28F5A; Thu, 26 Mar 2015 20:51:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 3A8118D5; Thu, 26 Mar 2015 20:51:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2QKptav085333; Thu, 26 Mar 2015 20:51:55 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2QKprp7085329; Thu, 26 Mar 2015 20:51:53 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201503262051.t2QKprp7085329@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 26 Mar 2015 20:51:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r382343 - in head/net: . rdapper X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Mar 2015 20:51:55 -0000 Author: pi Date: Thu Mar 26 20:51:52 2015 New Revision: 382343 URL: https://svnweb.freebsd.org/changeset/ports/382343 QAT: https://qat.redports.org/buildarchive/r382343/ Log: New port: net/rdapper rdapper is a command-line client for the Registration Data Access Protocol (RDAP), as described in the RDAP RFCs (7480 - 7485). This tool will send an RDAP query to an RDAP server over HTTP or HTTPS, parse the JSON response, and display it in human-readable form. WWW: https://github.com/jodrell/rdapper Submitted by: pi Added: head/net/rdapper/ head/net/rdapper/Makefile (contents, props changed) head/net/rdapper/distinfo (contents, props changed) head/net/rdapper/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Thu Mar 26 20:43:08 2015 (r382342) +++ head/net/Makefile Thu Mar 26 20:51:52 2015 (r382343) @@ -987,6 +987,7 @@ SUBDIR += radvd SUBDIR += raggle SUBDIR += ranch + SUBDIR += rdapper SUBDIR += rdesktop SUBDIR += rdist6 SUBDIR += recvnet Added: head/net/rdapper/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rdapper/Makefile Thu Mar 26 20:51:52 2015 (r382343) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= rdapper +PORTVERSION= 20150326 +CATEGORIES= net +MASTER_SITES= GH + +MAINTAINER= pi@FreeBSD.org +COMMENT= Command-line Registration Data Access Protocol (RDAP) client + +LICENSE= GPLv2 + +RUN_DEPENDS= p5-JSON-Path>=0:${PORTSDIR}/devel/p5-JSON-Path + +USES= perl5 +USE_GITHUB= yes +GH_ACCOUNT= jodrell +GH_TAGNAME= c6961117a5 +USE_PERL5= configure run + +PLIST_FILES= bin/rdapper man/man1/rdapper.1.gz + +.include Added: head/net/rdapper/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rdapper/distinfo Thu Mar 26 20:51:52 2015 (r382343) @@ -0,0 +1,2 @@ +SHA256 (jodrell-rdapper-20150326-c6961117a5_GH0.tar.gz) = 31cf5149e65d4251630fe392ffbfd1e7098b2de3a1a9613613fdf48e24c3c5d4 +SIZE (jodrell-rdapper-20150326-c6961117a5_GH0.tar.gz) = 13826 Added: head/net/rdapper/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rdapper/pkg-descr Thu Mar 26 20:51:52 2015 (r382343) @@ -0,0 +1,8 @@ +rdapper is a command-line client for the Registration Data Access +Protocol (RDAP), as described in the RDAP RFCs (7480 - 7485). + +This tool will send an RDAP query to an RDAP server over HTTP or +HTTPS, parse the JSON response, and display it in human-readable +form. + +WWW: https://github.com/jodrell/rdapper