From owner-freebsd-perl@freebsd.org Thu Nov 30 22:33:21 2017 Return-Path: Delivered-To: freebsd-perl@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1443FDEB307 for ; Thu, 30 Nov 2017 22:33:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id F00CE799B4 for ; Thu, 30 Nov 2017 22:33:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id EF585DEB306; Thu, 30 Nov 2017 22:33:20 +0000 (UTC) Delivered-To: perl@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EF009DEB305 for ; Thu, 30 Nov 2017 22:33:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) 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 DE243799B3 for ; Thu, 30 Nov 2017 22:33:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id vAUMXKXA035109 for ; Thu, 30 Nov 2017 22:33:20 GMT (envelope-from bugzilla-noreply@freebsd.org) Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: maintainer-feedback requested: [Bug 224007] devel/p5-MooseX-Getopt: Escape cyclic dependencies Date: Thu, 30 Nov 2017 22:33:20 +0000 X-Bugzilla-Type: request 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: X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? Message-ID: In-Reply-To: References: 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.25 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, 30 Nov 2017 22:33:21 -0000 Sergei Vyshenski has reassigned Bugzilla Automation 's request for maintainer-feedback to perl@FreeBSD.or= g: Bug 224007: devel/p5-MooseX-Getopt: Escape cyclic dependencies https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D224007 --- Description --- Created attachment 188439 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D188439&action= =3Dedit patch to update the port - fix BUILD_DEPENDS and TEST_DEPENDS to prevent cyclic dependencies (see be= low) - "portlint -AC" gives non-relevant warns. - testport of poudriere 3.2.99.20171127 at 11.1-release-amd64 with perl 5.2= 4.3 runs ok. - "make test" for this port (as run from within the same poudriere's jail) = say: "PASS". port (1)=20 devel/p5-MooseX-Getopt (author Karen Etheridge, maintainer perl@) depends from port devel/p5-MooseX-ConfigFromFile as BUILD_DEPENDS (but module MooseX::Getopt depends from module MooseX::ConfigFromFile only as a "test-prereq") http://search.cpan.org/~ether/MooseX-Getopt-0.71/ port (2)=20 devel/p5-MooseX-ConfigFromFile (author Karen Etheridge, maintainer kuriyama= @) depends from port devel/p5-MooseX-Types-Path-Tiny as BUILD_DEPENDS http://search.cpan.org/~ether/MooseX-ConfigFromFile-0.14/ port (3)=20 devel/p5-MooseX-Types-Path-Tiny (author Karen Etheridge, maintainer kuriyam= a@) does NOT depend from port devel/p5-MooseX-Getopt as BUILD_DEPENDS (but module MooseX::Types::Path::Tiny _explicitly_ depends from module MooseX::Getopt as a "prereq") http://search.cpan.org/~ether/MooseX-Types-Path-Tiny-0.012/ Very often all ports (1,2,3) are installed simultaneously as a common dependensies of other ports. This may be a reason why the found inconsisten= cy managed to stay hidden for so long. But port (3) if installed by itself is = not functional in present state, due to missing run_dependency from port (1).=20 Let "A -> B" mean that A depends from B as BUILD_DEPENDS Let "A ? B" mean that A does NOT depend from B as BUILD_DEPENDS At present we have build_dependencies of ports (1,2,3) as follows:=20 1 -> 2 -> 3 ? 1 We can not simply add a new build_dependency "devel/p5-MooseX-Getopt" to the port devel/p5-MooseX-Types-Path-Tiny. Because this way we get a cycle of dependencies as: 1 -> 2 -> 3 -> 1 But we can arrange build_dependencies of ports (1,2,3) as follows:=20 1 ? 2 -> 3 -> 1 with all ports (1,2,3) fully functional this time. For this we have to simultaneously edit two ports: (1) devel/p5-MooseX-Getopt - move devel/p5-MooseX-ConfigFromFile from BUILD_DEPENDS to TEST_DEPENDS (see patch of this PR) (3) devel/p5-MooseX-Types-Path-Tiny - add devel/p5-MooseX-Getopt to BUILD_DEPENDS see PR No 224006: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D224006 Maybe exp-run is needed after editing of BOTH ports (1,3), as=20 16 ports depend from devel/p5-MooseX-Getopt, 4 ports depend from devel/p5-MooseX-Types-Path-Tiny From owner-freebsd-perl@freebsd.org Thu Nov 30 22:33:21 2017 Return-Path: Delivered-To: freebsd-perl@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 840C5DEB30E for ; Thu, 30 Nov 2017 22:33:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 6BA0F799B8 for ; Thu, 30 Nov 2017 22:33:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 6AF66DEB30C; Thu, 30 Nov 2017 22:33:21 +0000 (UTC) Delivered-To: perl@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6A99CDEB30B for ; Thu, 30 Nov 2017 22:33:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) 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 58F29799B7 for ; Thu, 30 Nov 2017 22:33:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id vAUMXKXG035109 for ; Thu, 30 Nov 2017 22:33:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 224007] devel/p5-MooseX-Getopt: Escape cyclic dependencies Date: Thu, 30 Nov 2017 22:33:20 +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: svysh.fbsd@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform bug_file_loc 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: 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.25 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, 30 Nov 2017 22:33:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D224007 Bug ID: 224007 Summary: devel/p5-MooseX-Getopt: Escape cyclic dependencies Product: Ports & Packages Version: Latest Hardware: Any URL: http://search.cpan.org/~ether/MooseX-Getopt-0.71/ OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: perl@FreeBSD.org Reporter: svysh.fbsd@gmail.com Flags: maintainer-feedback?(perl@FreeBSD.org) Assignee: perl@FreeBSD.org Created attachment 188439 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D188439&action= =3Dedit patch to update the port - fix BUILD_DEPENDS and TEST_DEPENDS to prevent cyclic dependencies (see be= low) - "portlint -AC" gives non-relevant warns. - testport of poudriere 3.2.99.20171127 at 11.1-release-amd64 with perl 5.2= 4.3 runs ok. - "make test" for this port (as run from within the same poudriere's jail) = say: "PASS". port (1)=20 devel/p5-MooseX-Getopt (author Karen Etheridge, maintainer perl@) depends from port devel/p5-MooseX-ConfigFromFile as BUILD_DEPENDS (but module MooseX::Getopt depends from module MooseX::ConfigFromFi= le only as a "test-prereq") http://search.cpan.org/~ether/MooseX-Getopt-0.71/ port (2)=20 devel/p5-MooseX-ConfigFromFile (author Karen Etheridge, maintainer kuriyama= @) depends from port devel/p5-MooseX-Types-Path-Tiny as BUILD_DEPENDS http://search.cpan.org/~ether/MooseX-ConfigFromFile-0.14/ port (3)=20 devel/p5-MooseX-Types-Path-Tiny (author Karen Etheridge, maintainer kuriyam= a@) does NOT depend from port devel/p5-MooseX-Getopt as BUILD_DEPENDS (but module MooseX::Types::Path::Tiny _explicitly_ depends from mod= ule MooseX::Getopt as a "prereq") http://search.cpan.org/~ether/MooseX-Types-Path-Tiny-0.012/ Very often all ports (1,2,3) are installed simultaneously as a common dependensies of other ports. This may be a reason why the found inconsisten= cy managed to stay hidden for so long. But port (3) if installed by itself is = not functional in present state, due to missing run_dependency from port (1).=20 Let "A -> B" mean that A depends from B as BUILD_DEPENDS Let "A ? B" mean that A does NOT depend from B as BUILD_DEPENDS At present we have build_dependencies of ports (1,2,3) as follows:=20 1 -> 2 -> 3 ? 1 We can not simply add a new build_dependency "devel/p5-MooseX-Getopt" to the port devel/p5-MooseX-Types-Path-Tiny. Because this way we get a cycle of dependencies as: 1 -> 2 -> 3 -> 1 But we can arrange build_dependencies of ports (1,2,3) as follows:=20 1 ? 2 -> 3 -> 1 with all ports (1,2,3) fully functional this time. For this we have to simultaneously edit two ports: (1) devel/p5-MooseX-Getopt - move devel/p5-MooseX-ConfigFromFile from BUILD_DEPENDS to TEST_DEPENDS (see patch of this PR) (3) devel/p5-MooseX-Types-Path-Tiny - add devel/p5-MooseX-Getopt to BUILD_DEPENDS see PR No 224006: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D224006 Maybe exp-run is needed after editing of BOTH ports (1,3), as=20 16 ports depend from devel/p5-MooseX-Getopt, 4 ports depend from devel/p5-MooseX-Types-Path-Tiny --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-perl@freebsd.org Thu Nov 30 22:34:13 2017 Return-Path: Delivered-To: freebsd-perl@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B8430DEB3C6 for ; Thu, 30 Nov 2017 22:34:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 9F57A79A5A for ; Thu, 30 Nov 2017 22:34:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 9EA78DEB3C5; Thu, 30 Nov 2017 22:34:13 +0000 (UTC) Delivered-To: perl@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9E423DEB3C4 for ; Thu, 30 Nov 2017 22:34:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) 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 8C4EA79A59 for ; Thu, 30 Nov 2017 22:34:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id vAUMYD8h036617 for ; Thu, 30 Nov 2017 22:34:13 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 224007] devel/p5-MooseX-Getopt: Escape cyclic dependencies Date: Thu, 30 Nov 2017 22:34: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: svysh.fbsd@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: blocked cc 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.25 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, 30 Nov 2017 22:34:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D224007 Sergei Vyshenski changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |224006 CC| |svysh.fbsd@gmail.com Referenced Bugs: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D224006 [Bug 224006] devel/p5-MooseX-Types-Path-Tiny: Update to 0.012 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-perl@freebsd.org Thu Nov 30 22:39:48 2017 Return-Path: Delivered-To: freebsd-perl@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2CED0DEB57A for ; Thu, 30 Nov 2017 22:39:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 14C2C79B86 for ; Thu, 30 Nov 2017 22:39:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 14213DEB579; Thu, 30 Nov 2017 22:39:48 +0000 (UTC) Delivered-To: perl@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 13C83DEB578 for ; Thu, 30 Nov 2017 22:39:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) 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 0248379B85 for ; Thu, 30 Nov 2017 22:39:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id vAUMdl64043753 for ; Thu, 30 Nov 2017 22:39:47 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 224007] devel/p5-MooseX-Getopt: Escape cyclic dependencies Date: Thu, 30 Nov 2017 22:39:48 +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: svysh.fbsd@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org 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: 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.25 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, 30 Nov 2017 22:39:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D224007 Sergei Vyshenski changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|224006 | Referenced Bugs: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D224006 [Bug 224006] devel/p5-MooseX-Types-Path-Tiny: Update to 0.012 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-perl@freebsd.org Thu Nov 30 22:40:44 2017 Return-Path: Delivered-To: freebsd-perl@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 79DE4DEB5DB for ; Thu, 30 Nov 2017 22:40:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 611EC79BDD for ; Thu, 30 Nov 2017 22:40:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 6035DDEB5DA; Thu, 30 Nov 2017 22:40:44 +0000 (UTC) Delivered-To: perl@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5F775DEB5D9 for ; Thu, 30 Nov 2017 22:40:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) 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 4D6CC79BDC for ; Thu, 30 Nov 2017 22:40:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id vAUMei5b045172 for ; Thu, 30 Nov 2017 22:40:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 224007] devel/p5-MooseX-Getopt: Escape cyclic dependencies Date: Thu, 30 Nov 2017 22:40:44 +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: svysh.fbsd@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org 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: 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.25 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, 30 Nov 2017 22:40:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D224007 Sergei Vyshenski changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |224006 Referenced Bugs: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D224006 [Bug 224006] devel/p5-MooseX-Types-Path-Tiny: Update to 0.012 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-perl@freebsd.org Sat Dec 2 06:58:08 2017 Return-Path: Delivered-To: freebsd-perl@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 15448DF5F0C for ; Sat, 2 Dec 2017 06:58:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id F070663F04 for ; Sat, 2 Dec 2017 06:58:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id EFE12DF5F0B; Sat, 2 Dec 2017 06:58:07 +0000 (UTC) Delivered-To: perl@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EF8C5DF5F0A for ; Sat, 2 Dec 2017 06:58:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) 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 DCF8163F03 for ; Sat, 2 Dec 2017 06:58:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id vB26w7YE097511 for ; Sat, 2 Dec 2017 06:58:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 204455] www/p5-Catalyst-View-JSON: Update to 0.35 (required to fix www/p5-Catalyst-Devel) Date: Sat, 02 Dec 2017 06:58:07 +0000 X-Bugzilla-Reason: 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: easy, needs-patch, needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: laurellance9789@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: kuriyama@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? merge-quarterly? X-Bugzilla-Changed-Fields: cc 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.25 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, 02 Dec 2017 06:58:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D204455 hens changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |laurellance9789@gmail.com --- Comment #3 from hens --- Thanks for sharing such a nice information.=20 It is very useful for me.=20 Check your Karnataka Secondary Education Examination Board results at https://karresultsnicin.org/ --=20 You are receiving this mail because: You are on the CC list for the bug.=