From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 24 06:30:03 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A96CF16A469 for ; Thu, 24 May 2007 06:30:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 890FB13C489 for ; Thu, 24 May 2007 06:30:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l4O6U3Qs017295 for ; Thu, 24 May 2007 06:30:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l4O6U2vm017293; Thu, 24 May 2007 06:30:02 GMT (envelope-from gnats) Resent-Date: Thu, 24 May 2007 06:30:02 GMT Resent-Message-Id: <200705240630.l4O6U2vm017293@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Nils Vogels Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C45A16A400 for ; Thu, 24 May 2007 06:23:22 +0000 (UTC) (envelope-from root@imhotep.yuckfou.org) Received: from ssdd.xs4all.nl (ssdd.xs4all.nl [195.64.89.117]) by mx1.freebsd.org (Postfix) with ESMTP id A8A7213C43E for ; Thu, 24 May 2007 06:23:21 +0000 (UTC) (envelope-from root@imhotep.yuckfou.org) Received: by imhotep.yuckfou.org (Postfix, from userid 0) id 19136C8; Thu, 24 May 2007 08:23:21 +0200 (CEST) Message-Id: <20070524062321.19136C8@imhotep.yuckfou.org> Date: Thu, 24 May 2007 08:23:21 +0200 (CEST) From: Nils Vogels To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/112926: [PATCH] security/p5-PGP-Sign: update to 0.20 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2007 06:30:03 -0000 >Number: 112926 >Category: ports >Synopsis: [PATCH] security/p5-PGP-Sign: update to 0.20 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu May 24 06:30:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Nils Vogels >Release: FreeBSD 5.4-RELEASE-p6 i386 >Organization: IS-Root >Environment: System: FreeBSD imhotep.yuckfou.org 5.4-RELEASE-p6 FreeBSD 5.4-RELEASE-p6 #0: Fri Aug 5 19:36:46 CEST >Description: - Update to 0.20 Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-PGP-Sign-0.20.patch begins here --- diff -ruN --exclude=CVS /usr/ports/security/p5-PGP-Sign/Makefile /disk/3/home/nivo/ports/p5-PGP-Sign/Makefile --- /usr/ports/security/p5-PGP-Sign/Makefile Fri Sep 3 03:26:51 2004 +++ /disk/3/home/nivo/ports/p5-PGP-Sign/Makefile Thu May 24 08:20:42 2007 @@ -6,7 +6,7 @@ # PORTNAME= PGP-Sign -PORTVERSION= 0.19 +PORTVERSION= 0.20 CATEGORIES= security perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= PGP @@ -38,28 +38,28 @@ RUN_DEPENDS= pgp:${PORTSDIR}/security/pgp PGPSTYLE?= PGP2 .ifndef PGP -PGP!= which pgp || ${ECHO} ${PREFIX}/bin/pgp +PGP!= ${WHICH} pgp || ${ECHO} ${PREFIX}/bin/pgp .endif .elif (${DEFAULTPGP} == PGP5 ) RUN_DEPENDS= pgps:${PORTSDIR}/security/pgp5 PGPSTYLE?= PGP5 .ifndef PGPS -PGPS!= which pgps || ${ECHO} ${PREFIX}/bin/pgps +PGPS!= ${WHICH} pgps || ${ECHO} ${PREFIX}/bin/pgps .endif .ifndef PGPV -PGPV!= which pgpv || ${ECHO} ${PREFIX}/bin/pgpv +PGPV!= ${WHICH} pgpv || ${ECHO} ${PREFIX}/bin/pgpv .endif .elif (${DEFAULTPGP} == PGP6) RUN_DEPENDS= pgp:${PORTSDIR}/security/pgp6 PGPSTYLE?= PGP6 .ifndef PGP -PGP!= which pgp || ${ECHO} ${PREFIX}/bin/pgp +PGP!= ${WHICH} pgp || ${ECHO} ${PREFIX}/bin/pgp .endif .elif (${DEFAULTPGP} == GPG) RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg PGPSTYLE?= GPG .ifndef PGP -PGP!= which gpg || ${ECHO} ${PREFIX}/bin/gpg +PGP!= ${WHICH} gpg || ${ECHO} ${PREFIX}/bin/gpg .endif .else .error Unsupported DEFAULTPGP value. See the Makefile for a list of acceptable values. diff -ruN --exclude=CVS /usr/ports/security/p5-PGP-Sign/distinfo /disk/3/home/nivo/ports/p5-PGP-Sign/distinfo --- /usr/ports/security/p5-PGP-Sign/distinfo Fri Nov 25 19:01:07 2005 +++ /disk/3/home/nivo/ports/p5-PGP-Sign/distinfo Thu May 24 08:19:14 2007 @@ -1,3 +1,3 @@ -MD5 (PGP-Sign-0.19.tar.gz) = d7a461db926dd3d826591562135926df -SHA256 (PGP-Sign-0.19.tar.gz) = cd950577ac26d61d8e0637abdb96ccfb2e02a8e168c7792408ccba5011982114 -SIZE (PGP-Sign-0.19.tar.gz) = 31313 +MD5 (PGP-Sign-0.20.tar.gz) = a4b25e00c3d30651d859e29b2995b7b9 +SHA256 (PGP-Sign-0.20.tar.gz) = ded97d202a3059779a595ae51c40074d749f30cc78bd4b106f7bb84fe38f7281 +SIZE (PGP-Sign-0.20.tar.gz) = 31623 --- p5-PGP-Sign-0.20.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: