From owner-freebsd-perl@FreeBSD.ORG Mon Jun 16 19:32:09 2014 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2E7ABCED; Mon, 16 Jun 2014 19:32:09 +0000 (UTC) Received: from bolton.dan.me.uk (unknown [IPv6:2a01:348:61:0:96de:80ff:fee4:2f93]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "media2.dan.me.uk", Issuer "media2.dan.me.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id B357D25D4; Mon, 16 Jun 2014 19:32:07 +0000 (UTC) Received: from bolton.dan.me.uk (localhost [127.0.0.1]) by bolton.dan.me.uk (8.14.7/8.14.7) with ESMTP id s5GJW4Tg009282 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 16 Jun 2014 20:32:04 +0100 (BST) (envelope-from dan@bolton.dan.me.uk) Received: (from root@localhost) by bolton.dan.me.uk (8.14.7/8.14.7/Submit) id s5GJW4bN009281; Mon, 16 Jun 2014 20:32:04 +0100 (BST) (envelope-from dan) Date: Mon, 16 Jun 2014 20:32:04 +0100 (BST) Message-Id: <201406161932.s5GJW4bN009281@bolton.dan.me.uk> To: FreeBSD-gnats-submit@freebsd.org Subject: [PATCH] dns/p5-Net-DNS: fix broken functionality that breaks SpamAssassin! From: Daniel Austin Reply-To: Daniel Austin X-send-pr-version: 3.114 X-GNATS-Notify: Cc: perl@FreeBSD.org X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 19:32:09 -0000 >Submitter-Id: current-users >Originator: Daniel Austin >Organization: N/A >Confidential: no >Synopsis: [PATCH] dns/p5-Net-DNS: fix broken functionality that breaks SpamAssassin! >Severity: serious >Priority: medium >Category: ports >Class: change-request >Release: FreeBSD 10.0-RELEASE-p3 amd64 >Environment: System: FreeBSD media2.dan.me.uk 10.0-RELEASE-p3 FreeBSD 10.0-RELEASE-p3 #0: Tue May 13 18:31:10 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: A bug in the rushed release of 0.76 broke SpamAssassin (and presumably others) processing. >How-To-Repeat: >Fix: Patch below updates to 0.77 and fixes the errors in SpamAssassin. Maintainer CC'd --- 20140616-p5-Net-DNS.diff begins here --- diff -ruN p5-Net-DNS.orig/Makefile p5-Net-DNS/Makefile --- p5-Net-DNS.orig/Makefile 2014-06-11 16:12:01.000000000 +0100 +++ p5-Net-DNS/Makefile 2014-06-16 20:29:16.995787837 +0100 @@ -2,7 +2,7 @@ # $FreeBSD: head/dns/p5-Net-DNS/Makefile 357492 2014-06-11 15:12:01Z jadawin $ PORTNAME= Net-DNS -PORTVERSION= 0.76 +PORTVERSION= 0.77 CATEGORIES= dns net perl5 ipv6 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff -ruN p5-Net-DNS.orig/distinfo p5-Net-DNS/distinfo --- p5-Net-DNS.orig/distinfo 2014-06-11 16:12:01.000000000 +0100 +++ p5-Net-DNS/distinfo 2014-06-16 20:29:12.766780391 +0100 @@ -1,2 +1,2 @@ -SHA256 (Net-DNS-0.76.tar.gz) = 7e34965fe947de56a2cf93abf38b01a97d9c75878e3bc1dc0a80ace63f6d839f -SIZE (Net-DNS-0.76.tar.gz) = 197534 +SHA256 (Net-DNS-0.77.tar.gz) = eaceeb8a7f27619a2deab9415e628514340abadbf53d8f0ec78596591c904f57 +SIZE (Net-DNS-0.77.tar.gz) = 198190 --- 20140616-p5-Net-DNS.diff ends here ---