From owner-freebsd-perl@FreeBSD.ORG Sun Sep 28 12:10:12 2008 Return-Path: Delivered-To: perl@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 44DE710657D7; Sun, 28 Sep 2008 12:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 382ED8FC17; Sun, 28 Sep 2008 12:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m8SCA1QF068131; Sun, 28 Sep 2008 12:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m8SCA102068130; Sun, 28 Sep 2008 12:10:01 GMT (envelope-from gnats) Resent-Date: Sun, 28 Sep 2008 12:10:01 GMT Resent-Message-Id: <200809281210.m8SCA102068130@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@freebsd.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Cc: perl@freebsd.org Resent-Reply-To: FreeBSD-gnats-submit@freebsd.org, Eygene Ryabinkin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A5BFA106569B for ; Sun, 28 Sep 2008 12:03:08 +0000 (UTC) (envelope-from rea-fbsd@codelabs.ru) Received: from 0.mx.codelabs.ru (0.mx.codelabs.ru [144.206.177.45]) by mx1.freebsd.org (Postfix) with ESMTP id 5A0CF8FC12 for ; Sun, 28 Sep 2008 12:03:08 +0000 (UTC) (envelope-from rea-fbsd@codelabs.ru) Received: from amnesiac.at.no.dns ([91.78.250.120]) by 0.mx.codelabs.ru with esmtps (TLSv1:CAMELLIA256-SHA:256) id 1KjuzT-000FRj-Ep for FreeBSD-gnats-submit@freebsd.org; Sun, 28 Sep 2008 16:03:07 +0400 Received: by shadow.localdomain (Postfix, from userid 1001) id 421D61719D; Sun, 28 Sep 2008 16:03:11 +0400 (MSD) Message-Id: <20080928120311.421D61719D@amnesiac.at.no.dns> Date: Sun, 28 Sep 2008 16:03:11 +0400 (MSD) From: Eygene Ryabinkin To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 X-GNATS-Notify: perl@freebsd.org Cc: Subject: ports/127695: [patch] security/p5-Net-SSLeay: shut up interactive prompt for BATCH mode X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eygene Ryabinkin List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Sep 2008 12:10:12 -0000 >Number: 127695 >Category: ports >Synopsis: [patch] security/p5-Net-SSLeay: shut up interactive prompt for BATCH mode >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Sep 28 12:10:01 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Eygene Ryabinkin >Release: FreeBSD 8.0-CURRENT amd64 >Organization: Code Labs >Environment: System: FreeBSD XXX 8.0-CURRENT FreeBSD 8.0-CURRENT #5: Tue Sep 23 18:11:49 MSD 2008 root@XXX:/usr/obj/usr/src/sys/XXX amd64 >Description: Currently security/p5-Net-SSLeay interactively prompts user about external tests during the port configuration phase: ----- Do you want to run external tests? These tests *will* *fail* if you do not have network connectivity. [n] ^C ----- It is very annoying to have this prompt during 'portupgrade -a' or the like -- it effectively hangs the process before human will type something on the keyboard, so routine upgrades of the installed ports are very "attention-hungry". >How-To-Repeat: Try to build security/p5-Net-SSLeay. >Fix: The following patch shuts up the prompt (and disables external tests) when BATCH variable is defined: --- disable-prompts-for-BATCH-mode.patch begins here --- diff -urN ./Makefile ../p5-Net-SSLeay/Makefile --- ./Makefile 2008-09-28 15:48:50.000000000 +0400 +++ ../p5-Net-SSLeay/Makefile 2008-09-28 15:53:55.000000000 +0400 @@ -7,6 +7,7 @@ PORTNAME= Net-SSLeay PORTVERSION= 1.35 +PORTREVISION= 1 CATEGORIES= security perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -20,6 +21,10 @@ MAN3= Net::SSLeay.3 Net::SSLeay::Handle.3 +.if defined(BATCH) +EXTRA_PATCHES+= ${PATCHDIR}/BATCH.patch +.endif + .if !defined(NOPORTEXAMPLES) PORTEXAMPLES= * post-install: diff -urN ./files/BATCH.patch ../p5-Net-SSLeay/files/BATCH.patch --- ./files/BATCH.patch 1970-01-01 03:00:00.000000000 +0300 +++ ../p5-Net-SSLeay/files/BATCH.patch 2008-09-28 15:48:31.000000000 +0400 @@ -0,0 +1,22 @@ +Disables prompt for the external connectivity tests. Meant to be used +in BATCH mode of port building. +--- inc/Module/Install/PRIVATE/Net/SSLeay.pm.orig 2008-09-28 15:43:59.000000000 +0400 ++++ inc/Module/Install/PRIVATE/Net/SSLeay.pm 2008-09-28 15:46:52.000000000 +0400 +@@ -45,15 +45,8 @@ + + $self->makemaker_args( CCCDLFLAGS => $opts->{cccdlflags} ); + +- if ( $self->prompt( +- "Do you want to run external tests?\n". +- "These tests *will* *fail* if you do not have network connectivity.", +- 'n', +- ) =~ /^y/i ) { +- $self->tests('t/*/*.t t/*/*/*.t'); +- } else { +- $self->tests('t/local/*.t t/handle/local/*.t'); +- } ++ # Skip tests that need network connectivity. ++ $self->tests('t/local/*.t t/handle/local/*.t'); + } + + sub ssleay_get_build_opts { --- disable-prompts-for-BATCH-mode.patch ends here --- Perhaps it will be better to conditionalize the external tests via WITH/WITHOUT variables. I can draft the needed modifications, if it is desirable. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-perl@FreeBSD.ORG Sun Sep 28 12:10:21 2008 Return-Path: Delivered-To: perl@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C74DD106564A; Sun, 28 Sep 2008 12:10:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9D1478FC22; Sun, 28 Sep 2008 12:10:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m8SCAL1I068327; Sun, 28 Sep 2008 12:10:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m8SCALfa068323; Sun, 28 Sep 2008 12:10:21 GMT (envelope-from edwin) Date: Sun, 28 Sep 2008 12:10:21 GMT Message-Id: <200809281210.m8SCALfa068323@freefall.freebsd.org> To: perl@freebsd.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/127695: [patch] security/p5-Net-SSLeay: shut up interactive prompt for BATCH mode X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 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: Sun, 28 Sep 2008 12:10:21 -0000 Synopsis: [patch] security/p5-Net-SSLeay: shut up interactive prompt for BATCH mode Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Sun Sep 28 12:10:21 UTC 2008 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=127695 From owner-freebsd-perl@FreeBSD.ORG Sun Sep 28 12:10:21 2008 Return-Path: Delivered-To: perl@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C74DD106564A; Sun, 28 Sep 2008 12:10:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9D1478FC22; Sun, 28 Sep 2008 12:10:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m8SCAL1I068327; Sun, 28 Sep 2008 12:10:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m8SCALfa068323; Sun, 28 Sep 2008 12:10:21 GMT (envelope-from edwin) Date: Sun, 28 Sep 2008 12:10:21 GMT Message-Id: <200809281210.m8SCALfa068323@freefall.freebsd.org> To: perl@freebsd.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/127695: [patch] security/p5-Net-SSLeay: shut up interactive prompt for BATCH mode X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 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: Sun, 28 Sep 2008 12:10:22 -0000 Synopsis: [patch] security/p5-Net-SSLeay: shut up interactive prompt for BATCH mode Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Sun Sep 28 12:10:21 UTC 2008 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=127695 From owner-freebsd-perl@FreeBSD.ORG Sun Sep 28 16:50:04 2008 Return-Path: Delivered-To: perl@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8AB1106568B for ; Sun, 28 Sep 2008 16:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A70818FC26 for ; Sun, 28 Sep 2008 16:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m8SGo4Ol096205 for ; Sun, 28 Sep 2008 16:50:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m8SGo402096204; Sun, 28 Sep 2008 16:50:04 GMT (envelope-from gnats) Date: Sun, 28 Sep 2008 16:50:04 GMT Message-Id: <200809281650.m8SGo402096204@freefall.freebsd.org> To: perl@FreeBSD.org From: "Yen-Ming Lee" Cc: Subject: Re: ports/127695: [patch] security/p5-Net-SSLeay: shut up interactive prompt for BATCH mode X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Yen-Ming Lee List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Sep 2008 16:50:04 -0000 The following reply was made to PR ports/127695; it has been noted by GNATS. From: "Yen-Ming Lee" To: "Eygene Ryabinkin" Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/127695: [patch] security/p5-Net-SSLeay: shut up interactive prompt for BATCH mode Date: Sun, 28 Sep 2008 09:15:44 -0700 I'm not sure what happened in your environment, but on my 7.0-RELEASE box, define BATCH=yes will trigger PERL_MM_USE_DEFAULT="YES", and then pass that prompt with default answer as expected. $ uname -a FreeBSD cn1.leeym.com 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008 root@logan.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 $ pwd /usr/ports/security/p5-Net-SSLeay $ make -V CONFIGURE_ENV OPENSSL_PREFIX=/usr LDFLAGS=" -rpath=/usr/lib:/usr/local/lib" SHELL=/bin/sh CONFIG_SHELL=/bin/sh PERL_EXTUTILS_AUTOINSTALL="--skipdeps" $ env BATCH=yes make -V CONFIGURE_ENV OPENSSL_PREFIX=/usr LDFLAGS=" -rpath=/usr/lib:/usr/local/lib" SHELL=/bin/sh CONFIG_SHELL=/bin/sh PERL_EXTUTILS_AUTOINSTALL="--skipdeps" PERL_MM_USE_DEFAULT="YES" regards, -- Yen-Ming Lee From owner-freebsd-perl@FreeBSD.ORG Mon Sep 29 05:40:05 2008 Return-Path: Delivered-To: perl@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 36AAB106569B for ; Mon, 29 Sep 2008 05:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0431D8FC29 for ; Mon, 29 Sep 2008 05:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m8T5e2c2080018 for ; Mon, 29 Sep 2008 05:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m8T5e2Ak080017; Mon, 29 Sep 2008 05:40:02 GMT (envelope-from gnats) Date: Mon, 29 Sep 2008 05:40:02 GMT Message-Id: <200809290540.m8T5e2Ak080017@freefall.freebsd.org> To: perl@FreeBSD.org From: Eygene Ryabinkin Cc: Subject: Re: ports/127695: [patch] security/p5-Net-SSLeay: shut up interactive prompt for BATCH mode X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eygene Ryabinkin 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, 29 Sep 2008 05:40:05 -0000 The following reply was made to PR ports/127695; it has been noted by GNATS. From: Eygene Ryabinkin To: Yen-Ming Lee Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/127695: [patch] security/p5-Net-SSLeay: shut up interactive prompt for BATCH mode Date: Mon, 29 Sep 2008 09:30:23 +0400 --Y+xroYBkGM9OatJL Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Yen-Ming, good day. Sun, Sep 28, 2008 at 09:15:44AM -0700, Yen-Ming Lee wrote: > I'm not sure what happened in your environment, but on my 7.0-RELEASE > box, define BATCH=3Dyes will trigger PERL_MM_USE_DEFAULT=3D"YES", and then > pass that prompt with default answer as expected. Ah, OK: I was not aware of PERL_MM_USE_DEFAULT, so I just patched the port without prior checking of the result of setting BATCH. Sorry for the noise, PR can be closed as invalid. --=20 Eygene _ ___ _.--. # \`.|\..----...-'` `-._.-'_.-'` # Remember that it is hard / ' ` , __.--' # to read the on-line manual =20 )/' _/ \ `-_, / # while single-stepping the kernel. `-'" `"\_ ,_.-;_.-\_ ', fsc/as # _.-'_./ {_.' ; / # -- FreeBSD Developers handbook=20 {_.-``-' {_/ # --Y+xroYBkGM9OatJL Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkjgZ+4ACgkQthUKNsbL7YgpQACgpyYzutZFO0SetdO2bqm/6meC zGkAmQGeF4b2UKG9axtNLpqZ0ankByN7 =QmZ7 -----END PGP SIGNATURE----- --Y+xroYBkGM9OatJL-- From owner-freebsd-perl@FreeBSD.ORG Mon Sep 29 05:43:27 2008 Return-Path: Delivered-To: perl@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A223E1065688; Mon, 29 Sep 2008 05:43:27 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 773928FC15; Mon, 29 Sep 2008 05:43:27 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m8T5hRFp080151; Mon, 29 Sep 2008 05:43:27 GMT (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m8T5hRTP080146; Mon, 29 Sep 2008 05:43:27 GMT (envelope-from leeym) Date: Mon, 29 Sep 2008 05:43:27 GMT Message-Id: <200809290543.m8T5hRTP080146@freefall.freebsd.org> To: perl@freebsd.org, rea-fbsd@codelabs.ru, leeym@FreeBSD.org, perl@FreeBSD.org From: leeym@FreeBSD.org Cc: Subject: Re: ports/127695: [patch] security/p5-Net-SSLeay: shut up interactive prompt for BATCH mode X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 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, 29 Sep 2008 05:43:27 -0000 Synopsis: [patch] security/p5-Net-SSLeay: shut up interactive prompt for BATCH mode State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Mon Sep 29 05:42:53 UTC 2008 State-Changed-Why: define BATCH=yes will do what you want. http://www.freebsd.org/cgi/query-pr.cgi?pr=127695 From owner-freebsd-perl@FreeBSD.ORG Mon Sep 29 05:43:27 2008 Return-Path: Delivered-To: perl@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A223E1065688; Mon, 29 Sep 2008 05:43:27 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 773928FC15; Mon, 29 Sep 2008 05:43:27 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m8T5hRFp080151; Mon, 29 Sep 2008 05:43:27 GMT (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m8T5hRTP080146; Mon, 29 Sep 2008 05:43:27 GMT (envelope-from leeym) Date: Mon, 29 Sep 2008 05:43:27 GMT Message-Id: <200809290543.m8T5hRTP080146@freefall.freebsd.org> To: perl@freebsd.org, rea-fbsd@codelabs.ru, leeym@FreeBSD.org, perl@FreeBSD.org From: leeym@FreeBSD.org Cc: Subject: Re: ports/127695: [patch] security/p5-Net-SSLeay: shut up interactive prompt for BATCH mode X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 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, 29 Sep 2008 05:43:27 -0000 Synopsis: [patch] security/p5-Net-SSLeay: shut up interactive prompt for BATCH mode State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Mon Sep 29 05:42:53 UTC 2008 State-Changed-Why: define BATCH=yes will do what you want. http://www.freebsd.org/cgi/query-pr.cgi?pr=127695 From owner-freebsd-perl@FreeBSD.ORG Mon Sep 29 09:10:16 2008 Return-Path: Delivered-To: perl@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B2F4106568C; Mon, 29 Sep 2008 09:10:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 738638FC28; Mon, 29 Sep 2008 09:10:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m8T9AGqt029259; Mon, 29 Sep 2008 09:10:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m8T9AGgC029255; Mon, 29 Sep 2008 09:10:16 GMT (envelope-from edwin) Date: Mon, 29 Sep 2008 09:10:16 GMT Message-Id: <200809290910.m8T9AGgC029255@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/127709: update www/p5-IMDB-Film to 0.3.5 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 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, 29 Sep 2008 09:10:16 -0000 Synopsis: update www/p5-IMDB-Film to 0.3.5 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 29 09:10:16 UTC 2008 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=127709 From owner-freebsd-perl@FreeBSD.ORG Mon Sep 29 11:08:02 2008 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4ECEC106568B for ; Mon, 29 Sep 2008 11:08:02 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 25AD08FC27 for ; Mon, 29 Sep 2008 11:08:02 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m8TB82LN042132 for ; Mon, 29 Sep 2008 11:08:02 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m8TB81u9042128 for perl@FreeBSD.org; Mon, 29 Sep 2008 11:08:01 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 29 Sep 2008 11:08:01 GMT Message-Id: <200809291108.m8TB81u9042128@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: perl@FreeBSD.org Cc: Subject: Current problem reports assigned to perl@FreeBSD.org X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 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, 29 Sep 2008 11:08:02 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/127709 perl update www/p5-IMDB-Film to 0.3.5 o ports/127388 perl www/p5-libwww - p5-www : links missing o ports/123912 perl [PATCH] Mk/bsd.perl.mk: Fix WANT_PERL5 related typos 3 problems total. From owner-freebsd-perl@FreeBSD.ORG Mon Sep 29 15:40:08 2008 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42E1C1065686; Mon, 29 Sep 2008 15:40:08 +0000 (UTC) (envelope-from jadawin@tuxaco.net) Received: from huppa.tuxaco.net (unknown [IPv6:2001:41d0:1:66c1::1]) by mx1.freebsd.org (Postfix) with ESMTP id D59738FC2B; Mon, 29 Sep 2008 15:40:07 +0000 (UTC) (envelope-from jadawin@tuxaco.net) Received: from localhost (unknown [127.0.0.1]) by huppa.tuxaco.net (Postfix) with ESMTP id 3B807A952; Mon, 29 Sep 2008 17:41:04 +0200 (CEST) X-Virus-Scanned: amavisd-new at tuxaco.net Received: from huppa.tuxaco.net ([127.0.0.1]) by localhost (huppa.tuxaco.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bkjmil-DKSTT; Mon, 29 Sep 2008 17:40:56 +0200 (CEST) Received: from ilove.tuxaco.net (ilove.tuxaco.net [82.236.143.160]) (Authenticated sender: jadawin@tuxaco.net) by huppa.tuxaco.net (Postfix) with ESMTPA id 55320A92A; Mon, 29 Sep 2008 17:40:56 +0200 (CEST) Received: by ilove.tuxaco.net (Postfix, from userid 1001) id E814884414; Mon, 29 Sep 2008 17:39:57 +0200 (CEST) To: FreeBSD-gnats-submit@freebsd.org From: Philippe Audeoud X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20080929153957.E814884414@ilove.tuxaco.net> Date: Mon, 29 Sep 2008 17:39:57 +0200 (CEST) Cc: perl@FreeBSD.org Subject: [update] update to 0.38 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Philippe Audeoud 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, 29 Sep 2008 15:40:08 -0000 >Submitter-Id: current-users >Originator: Philippe Audeoud >Organization: >Confidential: no >Synopsis: [update] update to 0.38 >Severity: non-critical >Priority: low >Category: ports >Class: update >Release: FreeBSD 7.0-PRERELEASE i386 >Environment: System: FreeBSD athines 7.0-PRERELEASE FreeBSD 7.0-PRERELEASE #1: Mon Jan 7 21:29:03 CET 2008 root@glenrothes:/usr/obj/usr/src/sys/GENERIC i386 >Description: Update to 0.38 >How-To-Repeat: >Fix: --- p5-perl-ldap.diff.1 begins here --- diff -ruN net/p5-perl-ldap.orig/Makefile net/p5-perl-ldap/Makefile --- net/p5-perl-ldap.orig/Makefile 2008-09-29 16:38:00.000000000 +0200 +++ net/p5-perl-ldap/Makefile 2008-09-29 17:28:45.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= perl-ldap -PORTVERSION= 0.36 +PORTVERSION= 0.38 CATEGORIES= net perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= Net/GBARR @@ -38,6 +38,9 @@ Net::LDAP::Control::ProxyAuth.3 \ Net::LDAP::Control::Sort.3 \ Net::LDAP::Control::SortResult.3 \ + Net::LDAP::Control::SyncDone.3 \ + Net::LDAP::Control::SyncRequest.3 \ + Net::LDAP::Control::SyncState.3 \ Net::LDAP::Control::VLV.3 \ Net::LDAP::Control::VLVResponse.3 \ Net::LDAP::DSML.3 \ @@ -49,6 +52,8 @@ Net::LDAP::FAQ.3 \ Net::LDAP::Filter.3 \ Net::LDAP::FilterMatch.3 \ + Net::LDAP::Intermediate.3 \ + Net::LDAP::Intermediate::SyncInfo.3 \ Net::LDAP::LDIF.3 \ Net::LDAP::Message.3 \ Net::LDAP::RFC.3 \ diff -ruN net/p5-perl-ldap.orig/distinfo net/p5-perl-ldap/distinfo --- net/p5-perl-ldap.orig/distinfo 2008-09-29 16:38:00.000000000 +0200 +++ net/p5-perl-ldap/distinfo 2008-09-29 16:38:35.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (perl-ldap-0.36.tar.gz) = 7bf59f7de52fc07cc8c1a7fd354e583f -SHA256 (perl-ldap-0.36.tar.gz) = 8c72ed303b7ec4496e4fb07a7108d533af677118979ac7bbeba4f20071728e2f -SIZE (perl-ldap-0.36.tar.gz) = 250315 +MD5 (perl-ldap-0.38.tar.gz) = 3ef3f9a9154351cf46d81c8ef0304614 +SHA256 (perl-ldap-0.38.tar.gz) = 87389f1abcaadd1a7e510edb5f9e7920a4c97c73f02e98c50ac936431a5db78a +SIZE (perl-ldap-0.38.tar.gz) = 258807 diff -ruN net/p5-perl-ldap.orig/pkg-plist net/p5-perl-ldap/pkg-plist --- net/p5-perl-ldap.orig/pkg-plist 2008-09-29 16:38:00.000000000 +0200 +++ net/p5-perl-ldap/pkg-plist 2008-09-29 17:31:11.000000000 +0200 @@ -17,6 +17,9 @@ %%SITE_PERL%%/Net/LDAP/Control/ProxyAuth.pm %%SITE_PERL%%/Net/LDAP/Control/Sort.pm %%SITE_PERL%%/Net/LDAP/Control/SortResult.pm +%%SITE_PERL%%/Net/LDAP/Control/SyncDone.pm +%%SITE_PERL%%/Net/LDAP/Control/SyncRequest.pm +%%SITE_PERL%%/Net/LDAP/Control/SyncState.pm %%SITE_PERL%%/Net/LDAP/Control/VLV.pm %%SITE_PERL%%/Net/LDAP/Control/VLVResponse.pm %%SITE_PERL%%/Net/LDAP/DSML.pm @@ -31,6 +34,8 @@ %%SITE_PERL%%/Net/LDAP/Filter.pm %%SITE_PERL%%/Net/LDAP/Filter.pod %%SITE_PERL%%/Net/LDAP/FilterMatch.pm +%%SITE_PERL%%/Net/LDAP/Intermediate.pm +%%SITE_PERL%%/Net/LDAP/Intermediate/SyncInfo.pm %%SITE_PERL%%/Net/LDAP/LDIF.pm %%SITE_PERL%%/Net/LDAP/LDIF.pod %%SITE_PERL%%/Net/LDAP/Message.pm @@ -50,6 +55,7 @@ @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/LDAP @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net @dirrm %%SITE_PERL%%/Net/LDAP/Control +@dirrm %%SITE_PERL%%/Net/LDAP/Intermediate @dirrm %%SITE_PERL%%/Net/LDAP/Extension @dirrm %%SITE_PERL%%/Net/LDAP @dirrm %%SITE_PERL%%/Bundle/Net --- p5-perl-ldap.diff.1 ends here --- From owner-freebsd-perl@FreeBSD.ORG Mon Sep 29 16:25:28 2008 Return-Path: Delivered-To: perl@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0D8B11065689; Mon, 29 Sep 2008 16:25:28 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D94588FC23; Mon, 29 Sep 2008 16:25:27 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m8TGPRCF071295; Mon, 29 Sep 2008 16:25:27 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m8TGPRfE071291; Mon, 29 Sep 2008 16:25:27 GMT (envelope-from linimon) Date: Mon, 29 Sep 2008 16:25:27 GMT Message-Id: <200809291625.m8TGPRfE071291@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/127720: [update] update net/p5-perl-ldap to 0.38 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 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, 29 Sep 2008 16:25:28 -0000 Old Synopsis: [update] update to 0.38 New Synopsis: [update] update net/p5-perl-ldap to 0.38 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: linimon Responsible-Changed-When: Mon Sep 29 16:24:41 UTC 2008 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=127720 From owner-freebsd-perl@FreeBSD.ORG Tue Sep 30 00:20:04 2008 Return-Path: Delivered-To: perl@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5FE3A106568D for ; Tue, 30 Sep 2008 00:20:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4ED678FC08 for ; Tue, 30 Sep 2008 00:20:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m8U0K4jl009374 for ; Tue, 30 Sep 2008 00:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m8U0K4dv009373; Tue, 30 Sep 2008 00:20:04 GMT (envelope-from gnats) Date: Tue, 30 Sep 2008 00:20:04 GMT Message-Id: <200809300020.m8U0K4dv009373@freefall.freebsd.org> To: perl@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/127388: commit references a PR X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Sep 2008 00:20:04 -0000 The following reply was made to PR ports/127388; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/127388: commit references a PR Date: Tue, 30 Sep 2008 00:16:44 +0000 (UTC) clsung 2008-09-30 00:16:36 UTC FreeBSD ports repository Modified files: www/p5-libwww Makefile distinfo pkg-plist Log: - Update to 5.816 [1] - add --aliases to CONFIGURE_ARGS [2] Changes: http://search.cpan.org/dist/libwww-perl/Changes [1] PR: porst/127388 [2] Revision Changes Path 1.79 +3 -2 ports/www/p5-libwww/Makefile 1.33 +3 -3 ports/www/p5-libwww/distinfo 1.29 +3 -0 ports/www/p5-libwww/pkg-plist _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-perl@FreeBSD.ORG Tue Sep 30 01:24:59 2008 Return-Path: Delivered-To: perl@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 29E641065692; Tue, 30 Sep 2008 01:24:59 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 004B38FC1C; Tue, 30 Sep 2008 01:24:59 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from freefall.freebsd.org (clsung@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m8U1Owoq014324; Tue, 30 Sep 2008 01:24:58 GMT (envelope-from clsung@freefall.freebsd.org) Received: (from clsung@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m8U1OwJp014320; Tue, 30 Sep 2008 01:24:58 GMT (envelope-from clsung) Date: Tue, 30 Sep 2008 01:24:58 GMT Message-Id: <200809300124.m8U1OwJp014320@freefall.freebsd.org> To: regisr@pobox.com, clsung@FreeBSD.org, perl@FreeBSD.org From: clsung@FreeBSD.org Cc: Subject: Re: ports/127388: www/p5-libwww - p5-www : links missing X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 30 Sep 2008 01:24:59 -0000 Synopsis: www/p5-libwww - p5-www : links missing State-Changed-From-To: open->closed State-Changed-By: clsung State-Changed-When: Tue Sep 30 01:24:58 UTC 2008 State-Changed-Why: Committed. Thank You. http://www.freebsd.org/cgi/query-pr.cgi?pr=127388 From owner-freebsd-perl@FreeBSD.ORG Thu Oct 2 22:36:34 2008 Return-Path: Delivered-To: perl@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E19E7106568C; Thu, 2 Oct 2008 22:36:34 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B7FF78FC0A; Thu, 2 Oct 2008 22:36:34 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (mezz@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m92MaXvg071165; Thu, 2 Oct 2008 22:36:33 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m92MaXtf071161; Thu, 2 Oct 2008 22:36:33 GMT (envelope-from mezz) Date: Thu, 2 Oct 2008 22:36:33 GMT Message-Id: <200810022236.m92MaXtf071161@freefall.freebsd.org> To: lordsith49@hotmail.com, mezz@FreeBSD.org, gnome@FreeBSD.org, perl@FreeBSD.org From: mezz@FreeBSD.org Cc: Subject: Re: ports/121472: Loading perl scripts causes irc/xchat segmentation fault X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 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: Thu, 02 Oct 2008 22:36:35 -0000 Synopsis: Loading perl scripts causes irc/xchat segmentation fault State-Changed-From-To: analyzed->open State-Changed-By: mezz State-Changed-When: Thu Oct 2 22:35:45 UTC 2008 State-Changed-Why: analyzed -> open and gnome -> perl. Responsible-Changed-From-To: gnome->perl Responsible-Changed-By: mezz Responsible-Changed-When: Thu Oct 2 22:35:45 UTC 2008 Responsible-Changed-Why: analyzed -> open and gnome -> perl. http://www.freebsd.org/cgi/query-pr.cgi?pr=121472