From owner-svn-ports-all@FreeBSD.ORG Fri Sep 19 18:33:03 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EBA9AE9E; Fri, 19 Sep 2014 18:33:03 +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 BD4E7A2E; Fri, 19 Sep 2014 18:33:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8JIX3PL069683; Fri, 19 Sep 2014 18:33:03 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8JIX3KD069680; Fri, 19 Sep 2014 18:33:03 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201409191833.s8JIX3KD069680@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Fri, 19 Sep 2014 18:33:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r368584 - in head/www/jdresolve: . files 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.18-1 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: Fri, 19 Sep 2014 18:33:04 -0000 Author: pi Date: Fri Sep 19 18:33:02 2014 New Revision: 368584 URL: http://svnweb.freebsd.org/changeset/ports/368584 QAT: https://qat.redports.org/buildarchive/r368584/ Log: www/jdresolve: fix use of p5-Net-DNS in jdresolve PR: 192500 Submitted by: Dave Stoddard Approved by: christophe@labouisse.org (maintainer timeout) Added: head/www/jdresolve/files/ head/www/jdresolve/files/patch-jdresolve (contents, props changed) Modified: head/www/jdresolve/Makefile head/www/jdresolve/pkg-descr Modified: head/www/jdresolve/Makefile ============================================================================== --- head/www/jdresolve/Makefile Fri Sep 19 18:09:47 2014 (r368583) +++ head/www/jdresolve/Makefile Fri Sep 19 18:33:02 2014 (r368584) @@ -3,7 +3,7 @@ PORTNAME= jdresolve PORTVERSION= 0.6.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://www.jdrowell.com/projects/jdresolve/ PATCH_SITES= ${MASTER_SITES} @@ -15,8 +15,9 @@ COMMENT= IP addresse to hostname program BUILD_DEPENDS= p5-Net-DNS>=0:${PORTSDIR}/dns/p5-Net-DNS RUN_DEPENDS:= ${BUILD_DEPENDS} -USES= perl5 +USES= perl5 shebangfix NO_BUILD= yes +SHEBANG_FILES= jdresolve DOC1= AUTHORS BUGS CHANGELOG COPYING CREDITS INSTALL README TODO Added: head/www/jdresolve/files/patch-jdresolve ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/jdresolve/files/patch-jdresolve Fri Sep 19 18:33:02 2014 (r368584) @@ -0,0 +1,11 @@ +--- jdresolve.orig 2014-09-04 21:09:39 UTC ++++ jdresolve +@@ -857,7 +857,7 @@ + # For each DNS answer, check the data received + if ($type eq 'H') { + if (defined $_->{ptrdname}) { +- $hosts{$query}{NAME} = $_->{ptrdname}; ++ $hosts{$query}{NAME} = join(".",@{$_->{ptrdname}->{label}}); + $hosts{$query}{RESOLVED} = 'N'; + + $resolved = 1; Modified: head/www/jdresolve/pkg-descr ============================================================================== --- head/www/jdresolve/pkg-descr Fri Sep 19 18:09:47 2014 (r368583) +++ head/www/jdresolve/pkg-descr Fri Sep 19 18:33:02 2014 (r368584) @@ -13,4 +13,4 @@ Included is a tiny shell script called r jdresolve when resolving a single IP address. Think of it as a smart replacement for the 'host' utility that comes with bind-utils. -WWW: http://www.jdrowell.com/archives/projects/jdresolve/index.html +WWW: https://github.com/jdrowell/jdresolve