From owner-freebsd-ruby@FreeBSD.ORG Sun Dec 20 03:46:09 2009 Return-Path: Delivered-To: freebsd-ruby@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 40B30106566B for ; Sun, 20 Dec 2009 03:46:09 +0000 (UTC) (envelope-from ksmakoto@dd.iij4u.or.jp) Received: from mfo10.iij4u.or.jp (mfo10.iij4u.or.jp [210.138.174.80]) by mx1.freebsd.org (Postfix) with ESMTP id DCE7C8FC18 for ; Sun, 20 Dec 2009 03:46:08 +0000 (UTC) Received: by mfo.iij4u.or.jp (mfo10) id nBK3CkHR008409; Sun, 20 Dec 2009 12:12:46 +0900 Received: by mo.iij4u.or.jp (mo11) id nBK3CiIw014902; Sun, 20 Dec 2009 12:12:44 +0900 Received: from norikura.localdomain (p191.net219096052.tokai.or.jp [219.96.52.191]) by mbox.iij4u.or.jp (mbox11) id nBK3CiT3016770; Sun, 20 Dec 2009 12:12:44 +0900 Date: Sun, 20 Dec 2009 12:12:44 +0900 From: "KISHIMOTO, Makoto" To: freebsd-ruby@freebsd.org Message-Id: <20091220121244.f0eaf37c.ksmakoto@dd.iij4u.or.jp> X-Mailer: Sylpheed 2.7.1 (GTK+ 2.16.6; amd64-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: [PATCH] portupgrade, get_all_depends method crashes X-BeenThere: freebsd-ruby@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Ruby discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Dec 2009 03:46:09 -0000 Hello, In portupgrade, get_all_depends method crashes if portdir not found. (for example http://www.freebsd.org/cgi/query-pr.cgi?pr=140192 ) following patch is workaround. --- portupgrade.ORG 2009-12-20 10:11:00.000000000 +0900 +++ portupgrade 2009-12-20 10:16:10.000000000 +0900 @@ -834,7 +834,7 @@ depends = Set.new portdir = $portsdb.portdir(origin) - return nil if not File.directory?(portdir) + return [] if not File.directory?(portdir) begin run_make_config(portdir, origin) if $config From owner-freebsd-ruby@FreeBSD.ORG Mon Dec 21 07:29:06 2009 Return-Path: Delivered-To: ruby@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92E8F106568D for ; Mon, 21 Dec 2009 07:29:06 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mail.droso.net (koala.ipv6.droso.net [IPv6:2001:6c8:6:c:20d:56ff:fe6f:f935]) by mx1.freebsd.org (Postfix) with ESMTP id 5AB3B8FC1F for ; Mon, 21 Dec 2009 07:29:06 +0000 (UTC) Received: from koala.droso.net (localhost.droso.net [IPv6:::1]) by mail.droso.net (Postfix) with ESMTP id A5DDA1CCA5 for ; Mon, 21 Dec 2009 08:29:05 +0100 (CET) From: linimon@FreeBSD.org To: ruby@freebsd.org Message-Id: <20091221072905.A5DDA1CCA5@mail.droso.net> Date: Mon, 21 Dec 2009 08:29:05 +0100 (CET) Cc: Subject: FreeBSD ports that you maintain which are currently marked broken X-BeenThere: freebsd-ruby@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: FreeBSD-specific Ruby discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Dec 2009 07:29:06 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically notify users of ports that are marked as "broken" in their Makefiles. In many cases these ports are failing to compile on some subset of the FreeBSD build environments. The most common problem is that recent versions of -CURRENT include gcc4.2, which is much stricter than older versions. The next most common problem is that compiles succeed on the i386 architecture (e.g. the common Intel PC), but fail on one or more of the other architectures due to assumptions about things such as size of various types, byte-alignment issues, and so forth. In occasional cases we see that the same port may have different errors in different build environments. The script that runs on the build cluster uses heuristics to try to 'guess' the error type to help you isolate problems, but it is only a rough guide. One more note: on occasion, there are transient build errors seen on the build farm. Unfortunately, there is not yet any way for this algorithm to tell the difference (humans are much, much better at this kind of thing.) The errors are listed below. In the case where the same problem exists on more than one build environment, the URL points to the latest errorlog for that type. (By 'build environment' here we mean 'combination of 6.x/7.x/-current with target architecture'.) (Note: the dates are included to help you to gauge whether or not the error still applies to the latest version. The program that generates this report is not yet able to determine this automatically.) portname: x11-toolkits/ruby-panelapplet broken because: does not build with GNOME 2.26. build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=ruby-panelapplet If these errors are ones that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Every effort has been made to make sure that these error reports really do correspond to a port that you maintain. However, due to the fact that this is an automated process, it may indeed generate false matches. If one of these errors fits that description, please forward this email to the author of this software, Mark Linimon , so that he can attempt to fix the problem in the future. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-ruby@FreeBSD.ORG Mon Dec 21 07:30:43 2009 Return-Path: Delivered-To: ruby@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D773F106570C for ; Mon, 21 Dec 2009 07:30:43 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mail.droso.net (koala.ipv6.droso.net [IPv6:2001:6c8:6:c:20d:56ff:fe6f:f935]) by mx1.freebsd.org (Postfix) with ESMTP id 9F3078FC21 for ; Mon, 21 Dec 2009 07:30:43 +0000 (UTC) Received: from koala.droso.net (localhost.droso.net [IPv6:::1]) by mail.droso.net (Postfix) with ESMTP id DEE461CC96 for ; Mon, 21 Dec 2009 08:30:42 +0100 (CET) From: linimon@FreeBSD.org To: ruby@freebsd.org Message-Id: <20091221073042.DEE461CC96@mail.droso.net> Date: Mon, 21 Dec 2009 08:30:42 +0100 (CET) Cc: Subject: FreeBSD ports that you maintain which are currently scheduled for deletion X-BeenThere: freebsd-ruby@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: FreeBSD-specific Ruby discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Dec 2009 07:30:43 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically schedule removal of ports that have been judged to have outlived their usefulness. Often, this is due to a better alternative having become available and/or the cessation of development on the existing port. In some cases, ports are marked for removal because they fail to build and install correctly from their sources, or otherwise fail in operation. The ports, and the reason and date that they have been scheduled for removal, are listed below. If no one has stepped forward before that time to propose a way to fix the problems (such as via a PR), the ports will be deleted. portname: x11-toolkits/ruby-panelapplet description: Ruby binding for libpanel-applet maintainer: ruby@FreeBSD.org status: BROKEN deprecated because: has been broken for 7 months expiration date: 2010-01-08 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=ruby-panelapplet If this problem is one that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-ruby@FreeBSD.ORG Mon Dec 21 08:30:02 2009 Return-Path: Delivered-To: ruby@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F19AC1065693 for ; Mon, 21 Dec 2009 08:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E0C998FC0C for ; Mon, 21 Dec 2009 08:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nBL8U2Mo022538 for ; Mon, 21 Dec 2009 08:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nBL8U2Xw022530; Mon, 21 Dec 2009 08:30:02 GMT (envelope-from gnats) Date: Mon, 21 Dec 2009 08:30:02 GMT Message-Id: <200912210830.nBL8U2Xw022530@freefall.freebsd.org> To: ruby@FreeBSD.org From: "KISHIMOTO, Makoto" Cc: Subject: Re: ports/140192: ports-mgmt/portupgrade-devel fails to install a new port. X-BeenThere: freebsd-ruby@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "KISHIMOTO, Makoto" List-Id: FreeBSD-specific Ruby discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Dec 2009 08:30:03 -0000 The following reply was made to PR ports/140192; it has been noted by GNATS. From: "KISHIMOTO, Makoto" To: bug-followup@FreeBSD.org, jimmiejaz@gmail.com Cc: Subject: Re: ports/140192: ports-mgmt/portupgrade-devel fails to install a new port. Date: Mon, 21 Dec 2009 17:25:12 +0900 Hi, This is quick fix. --- portupgrade.ORG 2009-12-20 10:11:00.000000000 +0900 +++ portupgrade 2009-12-20 10:16:10.000000000 +0900 @@ -834,7 +834,7 @@ depends = Set.new portdir = $portsdb.portdir(origin) - return nil if not File.directory?(portdir) + return [] if not File.directory?(portdir) begin run_make_config(portdir, origin) if $config From owner-freebsd-ruby@FreeBSD.ORG Mon Dec 21 11:08:24 2009 Return-Path: Delivered-To: ruby@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 278E710656B3 for ; Mon, 21 Dec 2009 11:08:24 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F15E58FC19 for ; Mon, 21 Dec 2009 11:08:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nBLB8NCO005494 for ; Mon, 21 Dec 2009 11:08:23 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nBLB8N2Y005492 for ruby@FreeBSD.org; Mon, 21 Dec 2009 11:08:23 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 21 Dec 2009 11:08:23 GMT Message-Id: <200912211108.nBLB8N2Y005492@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: ruby@FreeBSD.org Cc: Subject: Current problem reports assigned to ruby@FreeBSD.org X-BeenThere: freebsd-ruby@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Ruby discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Dec 2009 11:08:24 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/141183 ruby ports/japanese/ruby-chasen update s ports/140880 ruby ports-mgmt/portupgrade: portversion confused with ezm3 o ports/140364 ruby ports-mgmt/portupgrade-devel: #! line substitution is o ports/140273 ruby ports-mgmt/portupgrade-devel chokes on bsdpan pkgs o ports/140192 ruby ports-mgmt/portupgrade-devel fails to install a new po o ports/140008 ruby ports-mgmt/portupgrade: many papercut omissions on por o ports/138796 ruby [patch] - update converters/ruby-lv o ports/137958 ruby ports-mgmt/portupgrade fails with recursive dependency o ports/137708 ruby ports-mgmt/portupgrade: portupgrade -cRn is broken s ports/134714 ruby ports-mgmt/portupgrade deletes user data without quest o ports/134182 ruby ports-mgmt/portupgrade incorrectly handles manual reje o ports/131111 ruby ports-mgmt/portupgrade-devel: completely removes packa o ports/129930 ruby ports-mgmt/portupgrade - portinstall tries to install o ports/129891 ruby ports-mgmt/portupgrade fails to recognize variations o o ports/128881 ruby ports-mgmt/portupgrade backtrace o ports/127889 ruby ports-mgmt/portupgrade detects spurious failures and s o ports/127019 ruby ports-mgmt/portupgrade does not recognize fail conditi o ports/126140 ruby ports-mgmt/portupgrade runtime error o ports/125936 ruby ports-mgmt/portupgrade -R fails if BUILD_DEP's are not o ports/112818 ruby ports-mgmt/portupgrade -a fails with database error 20 problems total. From owner-freebsd-ruby@FreeBSD.ORG Mon Dec 21 12:40:04 2009 Return-Path: Delivered-To: ruby@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0348F106568D for ; Mon, 21 Dec 2009 12:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BC4F28FC1C for ; Mon, 21 Dec 2009 12:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nBLCe387094814 for ; Mon, 21 Dec 2009 12:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nBLCe3or094813; Mon, 21 Dec 2009 12:40:03 GMT (envelope-from gnats) Date: Mon, 21 Dec 2009 12:40:03 GMT Message-Id: <200912211240.nBLCe3or094813@freefall.freebsd.org> To: ruby@FreeBSD.org From: "Akinori MUSHA" Cc: Subject: Re: ports/140192: ports-mgmt/portupgrade-devel fails to install a new port. X-BeenThere: freebsd-ruby@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Akinori MUSHA List-Id: FreeBSD-specific Ruby discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Dec 2009 12:40:04 -0000 The following reply was made to PR ports/140192; it has been noted by GNATS. From: "Akinori MUSHA" To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/140192: ports-mgmt/portupgrade-devel fails to install a new port. Date: Mon, 21 Dec 2009 21:30:00 +0900 Makoto's patch is a correct and reasonable fix. Maintainers, please apply it. -- Akinori MUSHA / http://akinori.org/ From owner-freebsd-ruby@FreeBSD.ORG Mon Dec 21 22:22:26 2009 Return-Path: Delivered-To: freebsd-ruby@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 90F10106568F for ; Mon, 21 Dec 2009 22:22:26 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from mx0.deglitch.com (backbone.deglitch.com [IPv6:2001:16d8:fffb:4::abba]) by mx1.freebsd.org (Postfix) with ESMTP id 3C5768FC18 for ; Mon, 21 Dec 2009 22:22:26 +0000 (UTC) Received: from orion.SpringDaemons.com (adsl-99-48-191-9.dsl.snfc21.sbcglobal.net [99.48.191.9]) by mx0.deglitch.com (Postfix) with ESMTPA id 0D1FF8FC4E; Tue, 22 Dec 2009 01:22:25 +0300 (MSK) Received: from orion (localhost [127.0.0.1]) by orion.SpringDaemons.com (Postfix) with SMTP id 1729D39C24; Mon, 21 Dec 2009 14:22:19 -0800 (PST) Date: Mon, 21 Dec 2009 14:22:19 -0800 From: Stanislav Sedov To: "KISHIMOTO, Makoto" Message-Id: <20091221142219.0e51b1a8.stas@FreeBSD.org> In-Reply-To: <20091220121244.f0eaf37c.ksmakoto@dd.iij4u.or.jp> References: <20091220121244.f0eaf37c.ksmakoto@dd.iij4u.or.jp> Organization: The FreeBSD Project X-Mailer: carrier-pigeon Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-ruby@freebsd.org Subject: Re: [PATCH] portupgrade, get_all_depends method crashes X-BeenThere: freebsd-ruby@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Ruby discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Dec 2009 22:22:26 -0000 On Sun, 20 Dec 2009 12:12:44 +0900 "KISHIMOTO, Makoto" mentioned: > Hello, > > In portupgrade, get_all_depends method crashes if portdir not found. > (for example http://www.freebsd.org/cgi/query-pr.cgi?pr=140192 ) > > following patch is workaround. > > --- portupgrade.ORG 2009-12-20 10:11:00.000000000 +0900 > +++ portupgrade 2009-12-20 10:16:10.000000000 +0900 > @@ -834,7 +834,7 @@ > depends = Set.new > > portdir = $portsdb.portdir(origin) > - return nil if not File.directory?(portdir) > + return [] if not File.directory?(portdir) > > begin > run_make_config(portdir, origin) if $config Thank you, I committed your fix to projects CVS. -- Stanislav Sedov ST4096-RIPE From owner-freebsd-ruby@FreeBSD.ORG Mon Dec 21 22:25:23 2009 Return-Path: Delivered-To: ruby@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D96001065676; Mon, 21 Dec 2009 22:25:23 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B141A8FC1D; Mon, 21 Dec 2009 22:25:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nBLMPNEH032341; Mon, 21 Dec 2009 22:25:23 GMT (envelope-from stas@freefall.freebsd.org) Received: (from stas@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nBLMPNnu032337; Mon, 21 Dec 2009 22:25:23 GMT (envelope-from stas) Date: Mon, 21 Dec 2009 22:25:23 GMT Message-Id: <200912212225.nBLMPNnu032337@freefall.freebsd.org> To: jimmiejaz@gmail.com, stas@FreeBSD.org, ruby@FreeBSD.org From: stas@FreeBSD.org Cc: Subject: Re: ports/140192: ports-mgmt/portupgrade-devel fails to install a new port. X-BeenThere: freebsd-ruby@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Ruby discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Dec 2009 22:25:23 -0000 Synopsis: ports-mgmt/portupgrade-devel fails to install a new port. State-Changed-From-To: open->closed State-Changed-By: stas State-Changed-When: Mon Dec 21 22:25:23 UTC 2009 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=140192