From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 01:30:02 2015 Return-Path: Delivered-To: perl@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 AB701C34 for ; Sun, 8 Feb 2015 01:30:02 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 960DD182 for ; Sun, 8 Feb 2015 01:30:02 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t181U2kN078926 for ; Sun, 8 Feb 2015 01:30:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: maintainer-feedback requested: [Bug 197404] [patch] net/p5-IO-Interface fix modbuild on FreeBSD Date: Sun, 08 Feb 2015 01:30:02 +0000 X-Bugzilla-Type: request Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 01:30:02 -0000 Lawrence Chen has reassigned Bugzilla Automation 's request for maintainer-feedback to perl@FreeBSD.org: Bug 197404: [patch] net/p5-IO-Interface fix modbuild on FreeBSD https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197404 --- Description --- Created attachment 152696 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=152696&action=edit my patch After this port was upgraded from 1.06 to 1.09, I had incorrectly assumed that my port (see bug 196528) failing was a problem with its use IO::Interface methods marked as deprecated. However, this didn't solve the problem. My port would continue to fail with: Error: Illegal seek And, in dmesg, lines like this would appear: WARNING pid 10917 (perl): ioctl sign-extension ioctl ffffffffc0206933 WARNING pid 10917 (perl): ioctl sign-extension ioctl ffffffffc0206921 In deeper investigation, found that the problem was in net/p5-IO-Interface. In looking at the change log, between 1.06 and 1.09, the upstream applied a patch for a segfault in 1.07 and another in 1.08. 1.08 was also the first Git version. In 1.09, converted to use Module::Build. The problem is the CONFIGURE portion that was in Makefile.PL was not replicated into Build.PL, so it wasn't checking if it was being built on FreeBSD, OpenBSD or NetBSD. Or testing for the presence of two headerfiles. So, the compile was missing 3 compiler flags (DEFINES). I waited to see if this port would get fixed, or rolled back to 1.08, but didn't seem either wanted to take place. So, after figuring out what specific change to Build.PL I needed and fed it into 'poudriere testport', I submitted a report to cpan for IO::Interface (#101985). Made an additional change to Makefile to satisfy warning from poudriere QA. --- Comment #1 from Bugzilla Automation --- Auto-assigned to maintainer perl@FreeBSD.org From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 01:30:02 2015 Return-Path: Delivered-To: perl@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 E4E4BC35 for ; Sun, 8 Feb 2015 01:30:02 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 B1F3A183 for ; Sun, 8 Feb 2015 01:30:02 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t181U2tY078929 for ; Sun, 8 Feb 2015 01:30:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 197404] [patch] net/p5-IO-Interface fix modbuild on FreeBSD Date: Sun, 08 Feb 2015 01:30:02 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: beastie@tardisi.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 01:30:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197404 Bug ID: 197404 Summary: [patch] net/p5-IO-Interface fix modbuild on FreeBSD Product: Ports & Packages Version: Latest Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: perl@FreeBSD.org Reporter: beastie@tardisi.com Assignee: perl@FreeBSD.org Flags: maintainer-feedback?(perl@FreeBSD.org) Created attachment 152696 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=152696&action=edit my patch After this port was upgraded from 1.06 to 1.09, I had incorrectly assumed that my port (see bug 196528) failing was a problem with its use IO::Interface methods marked as deprecated. However, this didn't solve the problem. My port would continue to fail with: Error: Illegal seek And, in dmesg, lines like this would appear: WARNING pid 10917 (perl): ioctl sign-extension ioctl ffffffffc0206933 WARNING pid 10917 (perl): ioctl sign-extension ioctl ffffffffc0206921 In deeper investigation, found that the problem was in net/p5-IO-Interface. In looking at the change log, between 1.06 and 1.09, the upstream applied a patch for a segfault in 1.07 and another in 1.08. 1.08 was also the first Git version. In 1.09, converted to use Module::Build. The problem is the CONFIGURE portion that was in Makefile.PL was not replicated into Build.PL, so it wasn't checking if it was being built on FreeBSD, OpenBSD or NetBSD. Or testing for the presence of two headerfiles. So, the compile was missing 3 compiler flags (DEFINES). I waited to see if this port would get fixed, or rolled back to 1.08, but didn't seem either wanted to take place. So, after figuring out what specific change to Build.PL I needed and fed it into 'poudriere testport', I submitted a report to cpan for IO::Interface (#101985). Made an additional change to Makefile to satisfy warning from poudriere QA. --- Comment #1 from Bugzilla Automation --- Auto-assigned to maintainer perl@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 01:30:59 2015 Return-Path: Delivered-To: perl@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 7B852C9E for ; Sun, 8 Feb 2015 01:30:59 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 62EE9222 for ; Sun, 8 Feb 2015 01:30:59 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t181Ux4d081040 for ; Sun, 8 Feb 2015 01:30:59 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 197404] [patch] net/p5-IO-Interface fix modbuild on FreeBSD Date: Sun, 08 Feb 2015 01:30:59 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: beastie@tardisi.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 01:30:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197404 --- Comment #2 from Lawrence Chen --- Created attachment 152697 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=152697&action=edit poudriere testport results on 9.3/amd64 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 02:22:18 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E3563F80 for ; Sun, 8 Feb 2015 02:22:18 +0000 (UTC) Received: from apnoea.adamw.org (apnoea.adamw.org [204.109.59.150]) (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 C249483E for ; Sun, 8 Feb 2015 02:22:18 +0000 (UTC) Received: by apnoea.adamw.org (Postfix, from userid 1002) id B69261276BA; Sat, 7 Feb 2015 19:22:11 -0700 (MST) Date: Sat, 7 Feb 2015 19:22:11 -0700 From: Adam Weinberger To: perl@FreeBSD.org Subject: devel/p5-Moo maintainership Message-ID: <20150208022211.GA35283@apnoea.adamw.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Editor: Vim 7.3 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-Adamw: ADAMW!!! X-URL: http://www.adamw.org User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 02:22:19 -0000 Hi everyone, I use p5-Moo pretty heavily these days, and I'd like to look after the port. Would it be okay with the FreeBSD-perl team if I took over maintainership of the port? # Adam -- Adam Weinberger adamw@adamw.org http://www.adamw.org From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 03:16:48 2015 Return-Path: Delivered-To: perl@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 261096FB for ; Sun, 8 Feb 2015 03:16:48 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 0E6D3D5B for ; Sun, 8 Feb 2015 03:16:48 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t183Gl10042022 for ; Sun, 8 Feb 2015 03:16:47 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 197404] [patch] net/p5-IO-Interface fix modbuild on FreeBSD Date: Sun, 08 Feb 2015 03:16:47 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: pi@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: blocked Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 03:16:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197404 Kurt Jaeger changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |196528 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 03:16:47 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 22CA26F6 for ; Sun, 8 Feb 2015 03:16:47 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 0A464D57 for ; Sun, 8 Feb 2015 03:16:47 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t183GkAm042008 for ; Sun, 8 Feb 2015 03:16:46 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 196528] [MAINTAINER] [PATCH] net-mgmt/nagios-check_dhcp.pl: patch to make it work with net/p5-IO-Interface 1.09 Date: Sun, 08 Feb 2015 03:16:47 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: pi@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: cc dependson Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 03:16:47 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196528 Kurt Jaeger changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pi@FreeBSD.org Depends on| |197404 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 03:21:07 2015 Return-Path: Delivered-To: perl@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 1C9D8839 for ; Sun, 8 Feb 2015 03:21:07 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 04B19D7F for ; Sun, 8 Feb 2015 03:21:07 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t183L6mN046830 for ; Sun, 8 Feb 2015 03:21:06 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 197404] [patch] net/p5-IO-Interface fix modbuild on FreeBSD Date: Sun, 08 Feb 2015 03:21:07 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 03:21:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197404 --- Comment #3 from commit-hook@freebsd.org --- A commit references this bug: Author: pi Date: Sun Feb 8 03:20:10 UTC 2015 New revision: 378629 URL: https://svnweb.freebsd.org/changeset/ports/378629 Log: net/p5-IO-Interface: fix build on FreeBSD Build.PL wasn't checking if it was being built on FreeBSD, OpenBSD or NetBSD. Or testing for the presence of two headerfiles. So, the compile was missing 3 compiler flags (DEFINES). PR: 197404 Submitted by: Lawrence Chen Changes: head/net/p5-IO-Interface/Makefile head/net/p5-IO-Interface/files/ head/net/p5-IO-Interface/files/patch-Build.PL -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 03:28:49 2015 Return-Path: Delivered-To: perl@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 A9D9B871 for ; Sun, 8 Feb 2015 03:28:49 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 91E88E1C for ; Sun, 8 Feb 2015 03:28:49 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t183Sn4W053928 for ; Sun, 8 Feb 2015 03:28:49 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 197404] [patch] net/p5-IO-Interface fix modbuild on FreeBSD Date: Sun, 08 Feb 2015 03:28:49 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: pi@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: resolution cc bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 03:28:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197404 Kurt Jaeger changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED CC| |pi@FreeBSD.org Status|New |Closed --- Comment #4 from Kurt Jaeger --- Committed, thanks. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 03:28:50 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1285B875 for ; Sun, 8 Feb 2015 03:28:50 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 EE1F5E1F for ; Sun, 8 Feb 2015 03:28:49 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t183SnMf053944 for ; Sun, 8 Feb 2015 03:28:49 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 196528] [MAINTAINER] [PATCH] net-mgmt/nagios-check_dhcp.pl: patch to make it work with net/p5-IO-Interface 1.09 Date: Sun, 08 Feb 2015 03:28:50 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: pi@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 03:28:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196528 Bug 196528 depends on bug 197404, which changed state. Bug 197404 Summary: [patch] net/p5-IO-Interface fix modbuild on FreeBSD https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197404 What |Removed |Added ---------------------------------------------------------------------------- Status|New |Closed Resolution|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 03:30:03 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1D78B8C4 for ; Sun, 8 Feb 2015 03:30:03 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 04D82E27 for ; Sun, 8 Feb 2015 03:30:03 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t183U2Px055212 for ; Sun, 8 Feb 2015 03:30:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 196528] [MAINTAINER] [PATCH] net-mgmt/nagios-check_dhcp.pl: patch to make it work with net/p5-IO-Interface 1.09 Date: Sun, 08 Feb 2015 03:30:03 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: pi@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 03:30:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196528 Kurt Jaeger changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |Closed Resolution|--- |FIXED --- Comment #5 from Kurt Jaeger --- Closing this bug as the root cause is fixed in PR 197404. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 18:25:07 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 07B57316 for ; Sun, 8 Feb 2015 18:25:07 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 E2A63914 for ; Sun, 8 Feb 2015 18:25:06 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t18IP6cf013784 for ; Sun, 8 Feb 2015 18:25:06 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 197211] devel/p5-Moo has old dependency on p5-Dist-CheckConflicts Date: Sun, 08 Feb 2015 18:25:06 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adamw@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 18:25:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197211 Adam Weinberger changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|New |Closed --- Comment #2 from Adam Weinberger --- Committed -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 18:25:18 2015 Return-Path: Delivered-To: perl@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 C6795334 for ; Sun, 8 Feb 2015 18:25:18 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 AD313918 for ; Sun, 8 Feb 2015 18:25:18 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t18IPIJi013897 for ; Sun, 8 Feb 2015 18:25:18 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 197211] devel/p5-Moo has old dependency on p5-Dist-CheckConflicts Date: Sun, 08 Feb 2015 18:25:18 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 18:25:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197211 --- Comment #3 from commit-hook@freebsd.org --- A commit references this bug: Author: adamw Date: Sun Feb 8 18:24:59 UTC 2015 New revision: 378664 URL: https://svnweb.freebsd.org/changeset/ports/378664 Log: Remove the dependency on p5-Dist-CheckConflicts; it was removed from Moo in version 1.004. Bump PORTREVISION for this. While here, add an XS option that pulls in Class::XSAccessor and Sub::Name for speed boosts. In the next version, the Sub::Name dependency will change. PR: 197211 Changes: head/devel/p5-Moo/Makefile -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 18:27:13 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A69343F for ; Sun, 8 Feb 2015 18:27:13 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 41A6F931 for ; Sun, 8 Feb 2015 18:27:13 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t18IRDdo014665 for ; Sun, 8 Feb 2015 18:27:13 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 197213] [patch] update devel/p5-Import-Into to 1.002004 Date: Sun, 08 Feb 2015 18:27:13 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adamw@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 18:27:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197213 Adam Weinberger changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |Closed Resolution|--- |FIXED --- Comment #2 from Adam Weinberger --- Committed -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 18:28:29 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C92E3557 for ; Sun, 8 Feb 2015 18:28:29 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 B040F94A for ; Sun, 8 Feb 2015 18:28:29 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t18ISTfX015138 for ; Sun, 8 Feb 2015 18:28:29 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 197215] [patch] update devel/p5-strictures to 1.005006 Date: Sun, 08 Feb 2015 18:28:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adamw@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 18:28:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197215 Adam Weinberger changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|New |Closed --- Comment #2 from Adam Weinberger --- Committted. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 18:29:20 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 59B07574 for ; Sun, 8 Feb 2015 18:29:20 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 41014950 for ; Sun, 8 Feb 2015 18:29:20 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t18ITKQh015476 for ; Sun, 8 Feb 2015 18:29:20 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 197215] [patch] update devel/p5-strictures to 1.005006 Date: Sun, 08 Feb 2015 18:29:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 18:29:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197215 --- Comment #3 from commit-hook@freebsd.org --- A commit references this bug: Author: adamw Date: Sun Feb 8 18:28:24 UTC 2015 New revision: 378666 URL: https://svnweb.freebsd.org/changeset/ports/378666 Log: Update to 1.005006. Changes: https://metacpan.org/changes/distribution/strictures PR: 197215 Changes: head/devel/p5-strictures/Makefile head/devel/p5-strictures/distinfo -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 18:32:10 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 18FB26A7 for ; Sun, 8 Feb 2015 18:32:10 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 F3D269F6 for ; Sun, 8 Feb 2015 18:32:09 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t18IW9Xg034683 for ; Sun, 8 Feb 2015 18:32:09 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 196284] [patch] update textproc/p5-Perl-Critic to 1.123 (or 1.12.3 according to the Makefile) Date: Sun, 08 Feb 2015 18:32:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adamw@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 18:32:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196284 Adam Weinberger changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|New |Closed --- Comment #2 from Adam Weinberger --- Committed. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 18:32:21 2015 Return-Path: Delivered-To: perl@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 F25C26CA for ; Sun, 8 Feb 2015 18:32:21 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 D8C349FC for ; Sun, 8 Feb 2015 18:32:21 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t18IWLA1036903 for ; Sun, 8 Feb 2015 18:32:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 196284] [patch] update textproc/p5-Perl-Critic to 1.123 (or 1.12.3 according to the Makefile) Date: Sun, 08 Feb 2015 18:32:22 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 18:32:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196284 --- Comment #3 from commit-hook@freebsd.org --- A commit references this bug: Author: adamw Date: Sun Feb 8 18:32:05 UTC 2015 New revision: 378667 URL: https://svnweb.freebsd.org/changeset/ports/378667 Log: Update to 1.123. Changes: https://metacpan.org/changes/distribution/Perl-Critic PR: 196284 Changes: head/textproc/p5-Perl-Critic/Makefile head/textproc/p5-Perl-Critic/distinfo head/textproc/p5-Perl-Critic/pkg-plist -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 18:39:23 2015 Return-Path: Delivered-To: perl@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 3EABD7FF for ; Sun, 8 Feb 2015 18:39:23 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 25F2EA25 for ; Sun, 8 Feb 2015 18:39:23 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t18IdNvd055649 for ; Sun, 8 Feb 2015 18:39:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 196144] lang/perl5.18: Multiple required perl modules missing after perl5-5.16.4_11 upgrade Date: Sun, 08 Feb 2015 18:39:23 +0000 X-Bugzilla-Reason: AssignedTo CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adamw@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 18:39:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196144 Adam Weinberger changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |adamw@FreeBSD.org --- Comment #2 from Adam Weinberger --- This PR has been sitting for a while now. Have you been able to resolve this problem? This sounds like what's described in the 20141217 entry in /usr/ports/UPDATING. Can you please verify that you followed those step, and let us know whether the problem is resolved for you? -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 18:41:10 2015 Return-Path: Delivered-To: perl@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 BEB89893 for ; Sun, 8 Feb 2015 18:41:10 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 A4280ACC for ; Sun, 8 Feb 2015 18:41:10 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t18IfApR058973 for ; Sun, 8 Feb 2015 18:41:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 195193] [PATCH] www/p5-FCGI upgrade to 0.77 Date: Sun, 08 Feb 2015 18:41:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adamw@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: cc attachments.ispatch attachments.mimetype Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 18:41:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195193 Adam Weinberger changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |adamw@FreeBSD.org Attachment #149662|0 |1 is patch| | Attachment #149662|text/diff |text/plain mime type| | -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 18:54:27 2015 Return-Path: Delivered-To: perl@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 D1857E99 for ; Sun, 8 Feb 2015 18:54:27 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 B8A61C30 for ; Sun, 8 Feb 2015 18:54:27 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t18IsRnE003791 for ; Sun, 8 Feb 2015 18:54:27 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 195193] [PATCH] www/p5-FCGI upgrade to 0.77 Date: Sun, 08 Feb 2015 18:54:27 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 18:54:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195193 --- Comment #3 from commit-hook@freebsd.org --- A commit references this bug: Author: adamw Date: Sun Feb 8 18:53:59 UTC 2015 New revision: 378671 URL: https://svnweb.freebsd.org/changeset/ports/378671 Log: Update to 0.77. PP support was dropped, so remove the PP option. Changes: https://metacpan.org/changes/distribution/FCGI PR: 195193 Submitted by: Geoffroy Desvernay Changes: head/www/p5-FCGI/Makefile head/www/p5-FCGI/distinfo head/www/p5-FCGI/pkg-plist -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 18:55:46 2015 Return-Path: Delivered-To: perl@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 636B6EF0 for ; Sun, 8 Feb 2015 18:55:46 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 4A6D6C3C for ; Sun, 8 Feb 2015 18:55:46 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t18Itk7d004594 for ; Sun, 8 Feb 2015 18:55:46 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 195193] [PATCH] www/p5-FCGI upgrade to 0.77 Date: Sun, 08 Feb 2015 18:55:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adamw@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 18:55:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195193 Adam Weinberger changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|New |Closed --- Comment #4 from Adam Weinberger --- Hi Geoffroy, I've committed this patch. Thanks for the submission and sorry for the long delay. I did not include your work on building this port against www/fcgi, as it builds and runs just fine on its own. If there is a reason to compile against www/fcgi instead that I am not seeing, please let me know! -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 19:26:20 2015 Return-Path: Delivered-To: perl@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 62C06DED for ; Sun, 8 Feb 2015 19:26:20 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 4A5D5EF0 for ; Sun, 8 Feb 2015 19:26:20 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t18JQKag097213 for ; Sun, 8 Feb 2015 19:26:20 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 196144] lang/perl5.18: Multiple required perl modules missing after perl5-5.16.4_11 upgrade Date: Sun, 08 Feb 2015 19:26:20 +0000 X-Bugzilla-Reason: AssignedTo CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: rkoberman@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 19:26:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196144 --- Comment #3 from rkoberman@gmail.com --- This was a one-time problem after the upgrade to 5.18. I did follow the instructions in 20141217 but had several dependencies missing (as opposed to no upgraded). I manually re-installed the missing ports without incident. I assume that the issue was related to the rather disturbing error message I included in the ticket. If others have not seen this, I guess this can be closed as I have seen no further problems and have no way to easily try it again. (I am not about to remove perl5.18 and re-install 5.16 along with all perl ports.) -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 19:29:58 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8BAB2EBF for ; Sun, 8 Feb 2015 19:29:58 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 71A21F12 for ; Sun, 8 Feb 2015 19:29:58 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t18JTwX2098744 for ; Sun, 8 Feb 2015 19:29:58 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 196144] lang/perl5.18: Multiple required perl modules missing after perl5-5.16.4_11 upgrade Date: Sun, 08 Feb 2015 19:29:58 +0000 X-Bugzilla-Reason: AssignedTo CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adamw@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 19:29:58 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196144 Adam Weinberger changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|New |Closed --- Comment #4 from Adam Weinberger --- Thanks for the update. I'm not seeing this problem cropping up elsewhere so there's not much I can do on this end. I'm going to close out this ticket. I'm glad that you were able to successfully resolve the problem though! -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 21:00:04 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28BAB853 for ; Sun, 8 Feb 2015 21:00:04 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 F40AB9EB for ; Sun, 8 Feb 2015 21:00:03 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t18L03QT068893 for ; Sun, 8 Feb 2015 21:00:03 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <201502082100.t18L03QT068893@kenobi.freebsd.org> From: bugzilla-noreply@FreeBSD.org To: perl@FreeBSD.org Subject: Problem reports for perl@FreeBSD.org that need special attention X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 Date: Sun, 08 Feb 2015 21:00:03 +0000 Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 21:00:04 -0000 To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- In Progress | 194230 | [NEW PORT] devel/p5-Router-R3 - XS wrapper around 1 problems total for which you should take action. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 21:14:34 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 63173404 for ; Sun, 8 Feb 2015 21:14:34 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 4A2CEC6F for ; Sun, 8 Feb 2015 21:14:34 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t18LEY5q068687 for ; Sun, 8 Feb 2015 21:14:34 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 194230] [NEW PORT] devel/p5-Router-R3 - XS wrapper around a C library R3 Date: Sun, 08 Feb 2015 21:14:34 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: patch-ready X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: pi@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pi@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 21:14:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194230 Kurt Jaeger changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pi@FreeBSD.org Assignee|perl@FreeBSD.org |pi@FreeBSD.org --- Comment #11 from Kurt Jaeger --- Testing @work. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 21:39:16 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 632A5D4D for ; Sun, 8 Feb 2015 21:39:16 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 298F3E70 for ; Sun, 8 Feb 2015 21:39:16 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id BAB99BDC1F; Sun, 8 Feb 2015 22:39:12 +0100 (CET) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id A0361BDC1D; Sun, 8 Feb 2015 22:39:12 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id 2BE77258D9A5; Sun, 8 Feb 2015 22:39:09 +0100 (CET) Date: Sun, 08 Feb 2015 22:39:09 +0100 From: Mathieu Arnold To: Adam Weinberger , perl@FreeBSD.org Subject: Re: devel/p5-Moo maintainership Message-ID: <422A9C481A3173A4519DD952@atuin.in.mat.cc> In-Reply-To: <20150208022211.GA35283@apnoea.adamw.org> References: <20150208022211.GA35283@apnoea.adamw.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 21:39:16 -0000 +--On 7 f=C3=A9vrier 2015 19:22:11 -0700 Adam Weinberger wrote: | Hi everyone, |=20 | I use p5-Moo pretty heavily these days, and I'd like to look after the | port. Would it be okay with the FreeBSD-perl team if I took over | maintainership of the port? My thinking would be for you to join perl@ and keep it updated, so that if you go awol any member of perl@ can keep it up-to-date. --=20 Mathieu Arnold From owner-freebsd-perl@FreeBSD.ORG Sun Feb 8 22:34:36 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 60D09BA6; Sun, 8 Feb 2015 22:34:36 +0000 (UTC) Received: from apnoea.adamw.org (apnoea.adamw.org [204.109.59.150]) (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 3BFA6694; Sun, 8 Feb 2015 22:34:36 +0000 (UTC) Received: from [192.168.192.25] (67-0-108-129.albq.qwest.net [67.0.108.129]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by apnoea.adamw.org (Postfix) with ESMTPSA id 8033E127BA5; Sun, 8 Feb 2015 15:34:34 -0700 (MST) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2070.6\)) Subject: Re: devel/p5-Moo maintainership From: Adam Weinberger In-Reply-To: <422A9C481A3173A4519DD952@atuin.in.mat.cc> Date: Sun, 8 Feb 2015 15:34:32 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: <580C358D-A376-4135-B2F5-E2999686683C@adamw.org> References: <20150208022211.GA35283@apnoea.adamw.org> <422A9C481A3173A4519DD952@atuin.in.mat.cc> To: Mathieu Arnold X-Mailer: Apple Mail (2.2070.6) Cc: perl@FreeBSD.org X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 08 Feb 2015 22:34:36 -0000 > On 8 Feb, 2015, at 14:39, Mathieu Arnold wrote: >=20 > +--On 7 f=C3=A9vrier 2015 19:22:11 -0700 Adam Weinberger = > wrote: > | Hi everyone, > |=20 > | I use p5-Moo pretty heavily these days, and I'd like to look after = the > | port. Would it be okay with the FreeBSD-perl team if I took over > | maintainership of the port? >=20 > My thinking would be for you to join perl@ and keep it updated, so = that if > you go awol any member of perl@ can keep it up-to-date. Hi mat, az privately sent me a similar suggestion last night. Sounded like a = good plan so I did just that :-) Thanks! # Adam --=20 Adam Weinberger adamw@adamw.org http://www.adamw.org From owner-freebsd-perl@FreeBSD.ORG Tue Feb 10 09:42:40 2015 Return-Path: Delivered-To: perl@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 3323BAD5 for ; Tue, 10 Feb 2015 09:42:40 +0000 (UTC) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (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 1EF1FF81 for ; Tue, 10 Feb 2015 09:42:40 +0000 (UTC) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.14.9/8.14.9) with ESMTP id t1A9gdGh079810 for ; Tue, 10 Feb 2015 09:42:39 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.14.9/8.14.9/Submit) id t1A9gdNi079809; Tue, 10 Feb 2015 09:42:39 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201502100942.t1A9gdNi079809@portscout.freebsd.org> X-Authentication-Warning: portscout.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Tue, 10 Feb 2015 09:42:39 +0000 From: portscout@FreeBSD.org To: perl@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 10 Feb 2015 09:42:40 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/perl@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ archivers/p5-Compress-LZW | 0.03 | 0.04 ------------------------------------------------+-----------------+------------ devel/p5-MooseX-Params-Validate | 0.19 | 0.21 ------------------------------------------------+-----------------+------------ net/p5-Net-GitHub | 0.71 | 0.72 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-perl@FreeBSD.ORG Tue Feb 10 20:38:33 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 81271BCE for ; Tue, 10 Feb 2015 20:38:33 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 6696E369 for ; Tue, 10 Feb 2015 20:38:33 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1AKcXZa095063 for ; Tue, 10 Feb 2015 20:38:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 197480] not correct path in databases/p5-DBI and p5-BDB-mysql (squid mysql-auth building) Date: Tue, 10 Feb 2015 20:38:33 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 10 Feb 2015 20:38:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197480 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-ports-bugs@FreeBSD. |perl@FreeBSD.org |org | Summary|not correct path in p5-DBI |not correct path in |and p5-BDB-mysql (squid |databases/p5-DBI and |mysql-auth building) |p5-BDB-mysql (squid | |mysql-auth building) --- Comment #1 from Mark Linimon --- Assign to maintainer of databases/p5-DBI. However, I think you are going to find that the problem is of having two different perl versions. I am not an expert on that myself so cannot recommend a proper fix. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Tue Feb 10 21:21:31 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 21D708A8 for ; Tue, 10 Feb 2015 21:21:31 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 074E3A51 for ; Tue, 10 Feb 2015 21:21:31 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1ALLUEU000270 for ; Tue, 10 Feb 2015 21:21:30 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 197480] not correct path in databases/p5-DBI and p5-BDB-mysql (squid mysql-auth building) Date: Tue, 10 Feb 2015 21:21:31 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: mat@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 10 Feb 2015 21:21:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197480 Mathieu Arnold changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |Not A Bug Status|New |Closed --- Comment #2 from Mathieu Arnold --- Perl 5.14 is not supported any more. Upgrade to Perl 5.18 and try again. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Thu Feb 12 08:11:41 2015 Return-Path: Delivered-To: perl@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 B7495EA2 for ; Thu, 12 Feb 2015 08:11:41 +0000 (UTC) Received: from smtp-out05.msg.oleane.net (smtp-out05.msg.oleane.net [62.161.7.3]) by mx1.freebsd.org (Postfix) with ESMTP id E8D17A9F for ; Thu, 12 Feb 2015 08:11:40 +0000 (UTC) Received: from smtp27.msg.oleane.net (smtp27.mail.priv [172.17.20.149]) by smtp-out05.msg.oleane.net with ESMTP id t1C8BYYV015791 for ; Thu, 12 Feb 2015 09:11:34 +0100 Received: from smtp27.msg.oleane.net (localhost.localdomain [127.0.0.1]) by smtp27.msg.oleane.net (MTA-AV) with ESMTP id t1C8BXNx016371 for ; Thu, 12 Feb 2015 09:11:33 +0100 Received: from [192.168.1.77] ([194.2.97.226]) (authenticated) by smtp27.msg.oleane.net (MSA) with ESMTP id t1C8B8EJ015312 for ; Thu, 12 Feb 2015 09:11:31 +0100 X-DKIM: Sendmail DKIM Filter v2.8.3 smtp27.msg.oleane.net t1C8B8EJ015312 DKIM-Signature: v=1; a=rsa-sha1; c=simple/simple; d=fr.oleane.com; s=orange; t=1423728693; bh=PHZQhsEuoYe/LJis0xB7CuHJ7g8=; h=Date:Mime-version:Subject:From:To:Message-Id:Content-Type; b=s2G0zbw+lOw2Wtbxxt6SaBBXnpmCt5+hwybhdBaujPv0giyS+DbZbx7L+OP2WUT6G 8vJ7VZZbmBa6kjHdcazhA4EzG0GACJx+3ke36K3BwHtQ0IHQot+ZRKgFFzQc+0d39K FIAslYTmO0g0a4NpnsMs/zxY1DUafc+jEfep3FD0= X-Oleane-Rep: REPA Date: Thu, 12 Feb 2015 09:11:31 +0100 Mime-version: 1.0 Subject: Visit the Nation's Largest Wound Care Exhibit Hall, San Antonio, TX, April 29-May 3 From: To: pkg-descr|perl Message-Id: <212911.MXSCLTFX@fr.oleane.com> X-Mailer: MBM 5.6.3-FR Original-recipient: rfc822;perl@freebsd.org X-Backend: vm-smtp-sophos20v3 X-Backend: vm-smtp-sophos04v3 X-Spam-Flag: NO X-PMX-Spam: Probability=9% X-PMX-Spam: Probability=9% X-PFSI-Info: PMX 6.0.0.2142326, Antispam-Engine: 2.7.2.2107409, Antispam-Data: 2015.2.12.80024 (no virus found) X-Orange-Auth: bmV3c2xldHRlcmNtZkBsZXNlZGltMS5mci5mdG8= Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 12 Feb 2015 08:11:41 -0000 SAWC Spring 2015 a:link { text-decoration: none !important; color: #1b1464; } a:visited { text-decoration: none !important; color: #1b1464; } a:hover { text-decoration: none !important; color: #1b1464; } a:active { text-decoration: none !important; color: #1b1464; } #outlook a { padding: 0; } /* Force Outlook to provide a "view in browser" button=2E */ body { width: 100% !important; margin: 0; padding: 0; } =2EReadMsgBody { width: 100%; } =2EExternalClass { width: 100%; } /* Force Hotmail to display emails at full width */ body { -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; } =2Eyshortcuts, =2Eyshortcuts a, =2Eyshortcuts a:link, =2Eyshortcuts a:visited, =2Eysh= ortcuts a:hover, =2Eyshortcuts a span { text-decoration: none !important; border-bottom: none !important; background: none !important; } /* Reset Margins and Paddings */ h1, h2, h3, p { margin-top: 0 !important; margin-right: 0 !important; margin-bottom: 10px !import! ant; margin-left: 0 !important; } img { border: 0; display: block; -ms-interpolation-mode: bicubic; } =2Eimg-inline { display: inline; border: 0; vertical-align: -2px; -moz-border-radius: 0 !important; -webkit-border-radius: 0 !important; border-radius: 0 !important; } =2EBGtable { height: 100% !important; margin: 0; padding: 0; width: 100% !important; } br { line-height: 20px; } @media only screen and (max-width: 640px) { img[class~=3Dimg] { width: 100% !important; height: 100% !important; max-height: auto !important; max-width: auto !important; } img[class~=3Dimgspkr] { width: 100% !important; height: 100% !important; max-height: 94px !important; max-width: 73px !important; } img[class~=3Dimgevent] { width: 100% !important; height: 100% !important; max-height: 205px !important; max-width: 248px !important; text-align: center !important; } img[class~=3Dcontainer] { width: 100% !important; height: 10px !important; } td[class~=3Dsidebar-maincontent-right] { padding-left: 10p! x !important; } td[class~=3Dsidebar-maincontent] { padding-right: 10px !important; } td[class~=3Dgeneral-td] { padding: 10px 10px 0 10px !important; } td[class~=3Dgeneral-img-td] { padding: 10px !important; } /*------Table Size------*/ table[class~=3Drow] { width: 560px !important; } table[class=3Dsidebar] { width: 38% !important; } table[class=3Dmaincontent] { width: 62% !important; } table[class~=3Dcol2] { width: 50% !important; } table[class~=3Dcol3] { width: 33% !important; } table[class~=3Dcol-2-3] { width: 67% !important; } table[class~=3Dcol4] { width: 50% !important; } /*-------footer table---*/ table[class=3Dfooter-left] { width: 65% !important; } table[class=3Dfooter-right] { width: 35% !important; } /*-------img-size------*/ img[class=3Dwrap] { width: 100% !important; height: 10px !important; } img[class=3Dimg-166h] { max-width: 130px !important; } img[class=3Ddevider-img] { width: 100% !important; height: 10px !important; } } @media only screen and (max-width: 4! 80px) { /*container*/ table[class~=3Drow] { width: 400px !important; } ! /*small table*/ table[class=3Dsidebar] { width: 100% !important; } table[class=3Dmaincontent] { width: 100% !important; } table[class~=3Dcol2] { width: 100% !important; } table[class~=3Dcol3][class~=3Dfull] { width: 100% !important; } table[class~=3Dcol-2-3] { width: 100% !important; } table[class~=3Dcol3] { width: 50% !important; } table[class~=3Dcol4] { width: 50% !important; } /*footer table*/ table[class=3Dfooter-left] { width: 100% !important; } table[class=3Dfooter-right] { width: 100% !important; } table[class=3Dfooter-left] td { text-align: left !important; } table[class=3Dfooter-right] td { text-align: left !important; } /*-------img-size------*/ table[class~=3Dcol4] =2Eimg { max-width: 100% !important; } td[class~=3Dsidebar-maincontent] { padding: 0 !important; } td[class~=3Dsidebar-maincontent-right] { padding: 0 !important; } td[class~=3Dwebonly], span[class~=3Dwebonly] { display: none !important; } } @media only screen and (max-width: 360px) { table[class~=3Dro! w] { width: 320px !important; } table[class~=3Dcol3], table[class~=3Dcol4] { width: 100% !important; } img[class=3Dimg-166h] { width: 100px !important; } img[class=3Dwrap] { width: 98% !important; height: 10px !important; } td[class~=3Dtop-bar] { padding: 5px 10px !important; } } @media only screen and (max-width: 320px) { table[class~=3Drow] { width: 300px !important; } img[class=3Dimg-166h] { width: 80px !important; } } Nothing Compares to the Larg= est Wound Care Exhibit Hall in the Nation Come see why more than 200 exhibitors choose to showcase t= heir products, solutions and services at the Symposium for Advanced Wound Care Spring (SAWC Spring)/Wo= und Healing Society (WHS) meeting=2E Register now to peruse the 40,000 squ= are foot hall filled with leading companies showcasing the latest = in wound care technology=2E SAWC Spring/WHS also offers the largest and most well-respected mul= tidisciplinary wound care program in the nation with ! 80+ provocative new sessions sharing late-breaking research across six ! = dynamic tracks=2E These lecture tracks include =2E=2E=2E Advanced Practice Association= For The Advancement of Wound Care Clinical Practice Limb Preservation Post-Acute Care Wound Healing Society Wound Prevention and Therapeutics You will also find yourself surrounded by the largest gathering of = wound care clinicians from all over the country with whom you can = network=2E Nothing compares to SAWC Spring/WHS, which is why you need= to register now to be a part of not just the biggest, but the= best event in wound care this country has to offer! To view the accreditation information for this program, click her= e= =2E To unsubscribe or change your subscription options, please contact: newsle= tterSAWC From owner-freebsd-perl@FreeBSD.ORG Thu Feb 12 09:35:08 2015 Return-Path: Delivered-To: perl@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D476408 for ; Thu, 12 Feb 2015 09:35:08 +0000 (UTC) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (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 ED5B3616 for ; Thu, 12 Feb 2015 09:35:07 +0000 (UTC) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.14.9/8.14.9) with ESMTP id t1C9Z7sI044982 for ; Thu, 12 Feb 2015 09:35:07 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.14.9/8.14.9/Submit) id t1C9Z75F044981; Thu, 12 Feb 2015 09:35:07 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201502120935.t1C9Z75F044981@portscout.freebsd.org> X-Authentication-Warning: portscout.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Thu, 12 Feb 2015 09:35:07 +0000 From: portscout@FreeBSD.org To: perl@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 12 Feb 2015 09:35:08 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/perl@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ astro/p5-Astro-SpaceTrack | 0.089 | 0.090 ------------------------------------------------+-----------------+------------ databases/p5-DBD-CSV | 0.46 | 0.48 ------------------------------------------------+-----------------+------------ devel/p5-IO-AIO | 4.31 | 4.32 ------------------------------------------------+-----------------+------------ dns/p5-Net-DNS-SEC | 0.21 | 0.22 ------------------------------------------------+-----------------+------------ ftp/p5-Net-FTPSSL | 0.25 | 0.26 ------------------------------------------------+-----------------+------------ textproc/p5-Pod-Simple | 3.29 | 3.29_3 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-perl@FreeBSD.ORG Thu Feb 12 21:18:03 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0C4156F3 for ; Thu, 12 Feb 2015 21:18:03 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 E5553D69 for ; Thu, 12 Feb 2015 21:18:02 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1CLI2uh096780 for ; Thu, 12 Feb 2015 21:18:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 195194] [PATCH] upgrade databases/p5-SQL-Translator to 0.11020 Date: Thu, 12 Feb 2015 21:18:02 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dgeo@centrale-marseille.fr X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: attachments.isobsolete cc attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 12 Feb 2015 21:18:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D195194 geoffroy desvernay changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #149614|0 |1 is obsolete| | CC| |dgeo@centrale-marseille.fr --- Comment #3 from geoffroy desvernay --- Created attachment 152920 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D152920&action= =3Dedit upgrade to 0.11021 see https://metacpan.org/changes/distribution/SQL-Translator Upgrade to 0.11020 already done elsewhere in the meantime =E2=80=A6 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-perl@FreeBSD.ORG Thu Feb 12 21:18:16 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C80DD7F6 for ; Thu, 12 Feb 2015 21:18:16 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 AD9C8D6E for ; Thu, 12 Feb 2015 21:18:16 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1CLIGPI096867 for ; Thu, 12 Feb 2015 21:18:16 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 195194] [PATCH] upgrade databases/p5-SQL-Translator to 0.11021 Date: Thu, 12 Feb 2015 21:18:16 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dgeo@centrale-marseille.fr X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 12 Feb 2015 21:18:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195194 geoffroy desvernay changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|[PATCH] upgrade |[PATCH] upgrade |databases/p5-SQL-Translator |databases/p5-SQL-Translator |to 0.11020 |to 0.11021 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Thu Feb 12 21:22:08 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B8F709AA for ; Thu, 12 Feb 2015 21:22:08 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 9E885E2F for ; Thu, 12 Feb 2015 21:22:08 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1CLM8FB003870 for ; Thu, 12 Feb 2015 21:22:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 195194] [PATCH] upgrade databases/p5-SQL-Translator to 0.11021 Date: Thu, 12 Feb 2015 21:22:08 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: pi@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pi@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: cc assigned_to bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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, 12 Feb 2015 21:22:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195194 Kurt Jaeger changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pi@FreeBSD.org Assignee|perl@FreeBSD.org |pi@FreeBSD.org Status|New |In Progress --- Comment #4 from Kurt Jaeger --- testing @work and thanks for your patience. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Fri Feb 13 01:31:34 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AB67D348 for ; Fri, 13 Feb 2015 01:31:34 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 91400C3D for ; Fri, 13 Feb 2015 01:31:34 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1D1VYTA081606 for ; Fri, 13 Feb 2015 01:31:34 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 174280] lang/perl5.16 make install fails on pkgng database file conflict with p5-IO-Compress-2.045 Date: Fri, 13 Feb 2015 01:31:33 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adamw@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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: Fri, 13 Feb 2015 01:31:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=174280 Adam Weinberger changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Progress |Closed CC| |adamw@FreeBSD.org Resolution|--- |Feedback Timeout --- Comment #5 from Adam Weinberger --- It's been two years since this bug was filed, and 15 months since a ping was sent out unreturned. perl5.12 was removed about a year ago, so hopefully everybody has successfully upgraded perl and IO::Compress by now. Closing this PR. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Fri Feb 13 01:42:01 2015 Return-Path: Delivered-To: perl@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 6BCCF563 for ; Fri, 13 Feb 2015 01:42:01 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 5273FD3A for ; Fri, 13 Feb 2015 01:42:01 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1D1g1tV090759 for ; Fri, 13 Feb 2015 01:42:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 184392] [maintainer update] devel/p5-MooseX-Attribute-ENV Date: Fri, 13 Feb 2015 01:42:01 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adamw@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution cc bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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: Fri, 13 Feb 2015 01:42:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=184392 Adam Weinberger changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |Unable to Reproduce CC| |adamw@FreeBSD.org Status|In Progress |Closed --- Comment #2 from Adam Weinberger --- I see no current build failures for DBIx::VersionedDDL. The Moose dependency of >=1.19 is already well above the 0.48 called for in the META.yml. Alan, I'm going to close out this PR as I don't think it's relevant anymore, but please correct me if I'm wrong. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Fri Feb 13 01:46:01 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A80F1689 for ; Fri, 13 Feb 2015 01:46:01 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 8EBA9D5D for ; Fri, 13 Feb 2015 01:46:01 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1D1k1ls092264 for ; Fri, 13 Feb 2015 01:46:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 184394] [maintainer-update] databases/p5-DBIx-VersionedDDL Date: Fri, 13 Feb 2015 01:46:01 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adamw@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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: Fri, 13 Feb 2015 01:46:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=184394 Adam Weinberger changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |Unable to Reproduce Status|In Progress |Closed CC| |adamw@FreeBSD.org --- Comment #2 from Adam Weinberger --- I'm not seeing any current build failures, and AFAICT there's not much reason to inflate the dependency requirements beyond those required by the META.yml. I'm going to close out this PR because the build failure you referenced is no longer present, but please correct me if the patch still needs to be applied. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Fri Feb 13 01:48:50 2015 Return-Path: Delivered-To: perl@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 A0B37952 for ; Fri, 13 Feb 2015 01:48:50 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 8743BD83 for ; Fri, 13 Feb 2015 01:48:50 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1D1moBd093286 for ; Fri, 13 Feb 2015 01:48:50 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 163323] x11/rxvt-unicode fails to build with perl-5.12.4_3 and p5-ExtUtils-* Date: Fri, 13 Feb 2015 01:48:49 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adamw@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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: Fri, 13 Feb 2015 01:48:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=163323 Adam Weinberger changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |adamw@FreeBSD.org --- Comment #7 from Adam Weinberger --- Given that perl5.12 was removed a year ago, I think we need some updated information. Does this problem still occur with 5.16, 5.18, or 5.20? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sat Feb 14 17:21:09 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 58D89D99 for ; Sat, 14 Feb 2015 17:21:09 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 3F093C5C for ; Sat, 14 Feb 2015 17:21:09 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1EHL9pU025828 for ; Sat, 14 Feb 2015 17:21:09 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 197105] [patch] devel/p5-JIRA-Client: Update to 0.42 Date: Sat, 14 Feb 2015 17:21:09 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adamw@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: cc resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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: Sat, 14 Feb 2015 17:21:09 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197105 Adam Weinberger changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |adamw@FreeBSD.org Resolution|--- |FIXED Status|New |Closed --- Comment #4 from Adam Weinberger --- Thanks for the update, Brad. I bumped the patch to 0.43, and added in a reference to the deprecation warning. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-perl@FreeBSD.ORG Sat Feb 14 17:21:11 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EA76DD9E for ; Sat, 14 Feb 2015 17:21:11 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 CED65C5F for ; Sat, 14 Feb 2015 17:21:11 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1EHLBRq025867 for ; Sat, 14 Feb 2015 17:21:11 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 197105] [patch] devel/p5-JIRA-Client: Update to 0.42 Date: Sat, 14 Feb 2015 17:21:12 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 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: Sat, 14 Feb 2015 17:21:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197105 --- Comment #5 from commit-hook@freebsd.org --- A commit references this bug: Author: adamw Date: Sat Feb 14 17:20:24 UTC 2015 New revision: 378971 URL: https://svnweb.freebsd.org/changeset/ports/378971 Log: Update to 0.43. Add a note in pkg-descr about the deprecation of this module. PR: 197105 (based on) Submitted by: brd Changes: head/devel/p5-JIRA-Client/Makefile head/devel/p5-JIRA-Client/distinfo head/devel/p5-JIRA-Client/pkg-descr -- You are receiving this mail because: You are the assignee for the bug.