From owner-svn-ports-all@FreeBSD.ORG Thu Feb 26 19:08:14 2015 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.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 33651EC0 for ; Thu, 26 Feb 2015 19:08:14 +0000 (UTC) Received: from mail-la0-f50.google.com (mail-la0-f50.google.com [209.85.215.50]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CFCA76C1 for ; Thu, 26 Feb 2015 19:08:13 +0000 (UTC) Received: by labgf13 with SMTP id gf13so13004914lab.9 for ; Thu, 26 Feb 2015 11:08:06 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc:content-type; bh=ebyqeKcMY6ny6M+6QMDL3izxiDyVZQawP2BA7e2bUY0=; b=bI2jrRlFj4FF7hA6+4jCmXdxuh4gHUnLjnZCG76fyljBLuZn1ijJRdWTjm2flqikDm vR4f37AaxbecopOwFIbaMNmGFTNLoGRwpjjSHbDWFNtkaK9lTSqXMCABHbFsrLki1k0Q nCVKDQ7DKHB/4bmLmrt1EKyYvoiL+eVmvu3ObMD0z/L2gFEP9SHcxYUu9YY2VJDfeLbX bem3vjBfTc43vaMaSa/bJdECrpaaq51dPyMWkYiw7cX//ZJsgc/0TQlp6tn/fbK1GeCr F/YFKPoNqS/1MCR6Wa3Y1j93/Xyw+u09jK5l3XLi1iuInHckO2Tx/+ABGIyMe4yVVYaZ zswQ== X-Gm-Message-State: ALoCoQmcP8oLBf7nf4ZjPv0ZM5kqvelo9s2MlBEARHnsaLu6zu4C3wT8HI0zroolTmKQkF6sYUj/ X-Received: by 10.152.197.34 with SMTP id ir2mr9206328lac.36.1424977686263; Thu, 26 Feb 2015 11:08:06 -0800 (PST) MIME-Version: 1.0 Sender: sunpoet@sunpoet.net Received: by 10.112.142.39 with HTTP; Thu, 26 Feb 2015 11:07:45 -0800 (PST) In-Reply-To: <201502261713.t1QHDuZO006063@svn.freebsd.org> References: <201502261713.t1QHDuZO006063@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Fri, 27 Feb 2015 03:07:45 +0800 X-Google-Sender-Auth: gFYVfRKyYidFxbipekHhayCDpZs Message-ID: Subject: Re: svn commit: r380027 - head/dns/p5-Net-DNS To: Adam Weinberger Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org 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: Thu, 26 Feb 2015 19:08:14 -0000 On Fri, Feb 27, 2015 at 1:13 AM, Adam Weinberger wrote: > Author: adamw > Date: Thu Feb 26 17:13:56 2015 > New Revision: 380027 > URL: https://svnweb.freebsd.org/changeset/ports/380027 > QAT: https://qat.redports.org/buildarchive/r380027/ > > Log: > Update to 0.83. Register dependencies on Digest::MD5 and Digest::SHA. > Also, add an SSHFP option for SSH2 fingerprint records support. > > Changes: https://metacpan.org/changes/distribution/Net-DNS > > Modified: > head/dns/p5-Net-DNS/Makefile > head/dns/p5-Net-DNS/distinfo > head/dns/p5-Net-DNS/pkg-plist > > Modified: head/dns/p5-Net-DNS/Makefile > > ============================================================================== > --- head/dns/p5-Net-DNS/Makefile Thu Feb 26 17:03:27 2015 > (r380026) > +++ head/dns/p5-Net-DNS/Makefile Thu Feb 26 17:13:56 2015 > (r380027) > @@ -2,7 +2,7 @@ > # $FreeBSD$ > > PORTNAME= Net-DNS > -PORTVERSION= 0.82 > +PORTVERSION= 0.83 > CATEGORIES= dns net perl5 ipv6 > MASTER_SITES= CPAN > PKGNAMEPREFIX= p5- > @@ -13,12 +13,15 @@ COMMENT= Perl5 interface to the DNS reso > LICENSE= ART10 GPLv1 > LICENSE_COMB= dual > > -BUILD_DEPENDS= p5-Digest-HMAC>=1.01:${PORTSDIR}/security/p5-Digest-HMAC > +BUILD_DEPENDS= p5-Digest-HMAC>=1.01:${PORTSDIR}/security/p5-Digest-HMAC \ > + p5-Digest-MD5>=2.13:${PORTSDIR}/security/p5-Digest-MD5 \ > + p5-Digest-SHA>=5.23:${PORTSDIR}/security/p5-Digest-SHA > Why add back p5-Digest-MD5 and p5-Digest-SHA? We have newer versions in core (of lang/perl5.*). e.g. Digest::MD5 2.51 and Digest::SHA 5.71 in Perl 5.16. Regards, sunpoet