From owner-freebsd-gnome@freebsd.org Sun Dec 20 17:39:05 2015 Return-Path: Delivered-To: freebsd-gnome@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 05514A4D66E for ; Sun, 20 Dec 2015 17:39:05 +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 DE25A1536 for ; Sun, 20 Dec 2015 17:39:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id DB687A4D66D; Sun, 20 Dec 2015 17:39:04 +0000 (UTC) Delivered-To: gnome@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 C1203A4D66C for ; Sun, 20 Dec 2015 17:39:04 +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 B17CA1534 for ; Sun, 20 Dec 2015 17:39:04 +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 tBKHd4nJ047823 for ; Sun, 20 Dec 2015 17:39:04 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 202163] graphics/clutter-gtk calls missing after Gnome3 update not found Date: Sun, 20 Dec 2015 17:39:04 +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: z7dr6ut7gs@snkmail.com X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? 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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Dec 2015 17:39:05 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=202163 John Hein changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |z7dr6ut7gs@snkmail.com --- Comment #6 from John Hein --- I just hit this (updating from totem-3.16.3 to totem-3.16.4 via ports build - previously installed from packages a couple months old). It occurs because both graphics/clutter-gtk and graphics/clutter-gtk3 are installed and the multimedia/totem configure scripts looks for both (using pkg-config). If it finds both, it adds -I flags for graphics/clutter-gtk first. So it includes the clutter-gtk.h file from graphics/clutter-gtk (/usr/local/include/clutter-1.0/clutter-gtk/clutter-gtk.h) instead of the clutter-gtk.h file from graphics/clutter-gtk3 (/usr/local/include/clutter-gtk-1.0/clutter-gtk/clutter-gtk.h). That is, it looks like totem tries to be compatible with both older and newer versions of clutter-gtk* and if both are installed (clutter-gtk-0.10.8_6 and clutter-gtk3-1.6.2 in my case), the badness happens. I didn't trace that guess all the way to prove it, but that's my guess. However, it seems very likely that totem would want to use either the older clutter-gtk or the new and not both. Hmmm... actually, I take that back. It looks like the old clutter-gtk installed its headers to /usr/local/include/clutter-1.0. And totem uses pkg-config to look for >= clutter-1.0 and adds -I flags for that (i.e., headers installed by graphics/clutter). Because the old graphics/clutter-gtk installs its headers there, and totem puts graphics/clutter -I flags before graphics/clutter-gtk3 -I flags, then the old graphics/clutter-gtk include files are included causing the trouble. In my case, I looked at the things that depended on the old clutter-gtk (pkg info -dr clutter-gtk) and found that there was nothing that depended on it. So I just deleted it and totem built fine. A better fix might be to fix the totem configure process to allow clutter-gtk and clutter-gtk3 to co-exist - I suppose totem could change its configure script to put clutter-gtk-1.0 in the list of BACKEND_MODULES before clutter-1.0. That would probably work [1]. But it may be that nothing needs the old graphics/clutter-gtk anymore and it should just be removed. I have not done the ports tree auditing necessary to see if that's true or not. [1] I went back later after writing that, installed the old graphics/clutter package, ran 'make patch', modified BACKEND_MODULES in configure to put clutter-gtk-1.0 before clutter-1.0, then did 'make build'. The build completed without error. So that's a workaround and could be fed upstream in theory. I'm not sure it's worth it unless we have something in the tree that needs the old graphics/clutter-gtk. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Sun Dec 20 17:47:31 2015 Return-Path: Delivered-To: freebsd-gnome@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 2BF27A4DC2C for ; Sun, 20 Dec 2015 17:47:31 +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 171C81B58 for ; Sun, 20 Dec 2015 17:47:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 14737A4DC2B; Sun, 20 Dec 2015 17:47:31 +0000 (UTC) Delivered-To: gnome@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 140A6A4DC29 for ; Sun, 20 Dec 2015 17:47:31 +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 04BE01B55 for ; Sun, 20 Dec 2015 17:47:31 +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 tBKHlUBW064875 for ; Sun, 20 Dec 2015 17:47:30 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 202163] graphics/clutter-gtk calls missing after Gnome3 update not found Date: Sun, 20 Dec 2015 17:47: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 Only Me X-Bugzilla-Who: z7dr6ut7gs@snkmail.com X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Dec 2015 17:47:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=202163 --- Comment #7 from John Hein --- (In reply to John Hein from comment #6) I did a quick grep and found that graphics/libchamplain08 depends on graphics/gtk-clutter and graphics/geeqie depends on libchamplain08. That's the only obvious dependency left that I found. I don't know whether geeqie could be updated to avoid depending on these older packages. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Sun Dec 20 18:05:37 2015 Return-Path: Delivered-To: freebsd-gnome@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 E3EAEA4E740 for ; Sun, 20 Dec 2015 18:05:37 +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 CEF121626 for ; Sun, 20 Dec 2015 18:05:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id CC333A4E73F; Sun, 20 Dec 2015 18:05:37 +0000 (UTC) Delivered-To: gnome@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 CBCD6A4E73E for ; Sun, 20 Dec 2015 18:05:37 +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 BC9321625 for ; Sun, 20 Dec 2015 18:05:37 +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 tBKI5bs4057841 for ; Sun, 20 Dec 2015 18:05:37 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 202163] graphics/clutter-gtk calls missing after Gnome3 update not found Date: Sun, 20 Dec 2015 18:05:37 +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: z7dr6ut7gs@snkmail.com X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Dec 2015 18:05:38 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=202163 --- Comment #8 from John Hein --- (In reply to John Hein from comment #7) graphics/geeqie only depends on libchamplain08 if the 'GPS' option is on (not on by default). But I tried forcing graphics/geeqie to use the newer graphics/libchamplain by changing the configure script to point to champlain-0.12 and champlain-gtk-0.12 instead of *-0.8. It configured fine, but failed to build: bar_gps.c:578:39: error: no member named 'name' in 'struct _ChamplainMapSourceDesc' So it looks like upstream geeqie needs to release some updates to work with newer libchamplain. In short, we can't just easily delete the old graphics/clutter-gtk yet because of this dependency at least unless we also mark the GPS option in graphics/geeqie broken. But if this totem build problem becomes more widely reported, its configure script could be modified (as mentioned in comment 5) to work around old and new installed clutter-gtk* ports. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Sun Dec 20 20:00:06 2015 Return-Path: Delivered-To: freebsd-gnome@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 CDC63A49BE3 for ; Sun, 20 Dec 2015 20:00:06 +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 B6F9A1839 for ; Sun, 20 Dec 2015 20:00:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id B455DA49BE1; Sun, 20 Dec 2015 20:00:06 +0000 (UTC) Delivered-To: gnome@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 B3EFEA49BDE for ; Sun, 20 Dec 2015 20:00:06 +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 A477E1837 for ; Sun, 20 Dec 2015 20:00:06 +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 tBKK06gw026331 for ; Sun, 20 Dec 2015 20:00:06 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 202163] graphics/clutter-gtk calls missing after Gnome3 update not found Date: Sun, 20 Dec 2015 20:00: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: rkoberman@gmail.com X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Dec 2015 20:00:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=202163 --- Comment #9 from rkoberman@gmail.com --- Just to confirm that moving clutter-gtk-1.0 to before clutter-1.0 does make totem build successfully. htre resulting image rund properly, at least in quick test. The issue of confused header files, usually in the ordering is really getting to be a pain and, since poudriere always builds ports in a "virgin" environment, it fails to catch those issues which only show up when other ports are installed. Thanks, John! -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Sun Dec 20 20:47:20 2015 Return-Path: Delivered-To: freebsd-gnome@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 ACBA4A4E656 for ; Sun, 20 Dec 2015 20:47:20 +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 97CFC1C21 for ; Sun, 20 Dec 2015 20:47:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 94EF3A4E655; Sun, 20 Dec 2015 20:47:20 +0000 (UTC) Delivered-To: gnome@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 93A72A4E654 for ; Sun, 20 Dec 2015 20:47: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 803751C20 for ; Sun, 20 Dec 2015 20:47: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 tBKKlKqZ046031 for ; Sun, 20 Dec 2015 20:47:20 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 202163] graphics/clutter-gtk calls missing after Gnome3 update not found Date: Sun, 20 Dec 2015 20:47: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: rkoberman@gmail.com X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Dec 2015 20:47:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=202163 --- Comment #10 from rkoberman@gmail.com --- BTW, this is the same issue with games/gnome-nibbles. I moved nine occurrences of clutter-gtk-1.0 from after to before clutter-1.0 and it now builds and installs. (Sorry, but I am guilty of conflating these two problems which should have been separate tickets.) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Mon Dec 21 18:36:00 2015 Return-Path: Delivered-To: freebsd-gnome@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 32F75A4EE1B for ; Mon, 21 Dec 2015 18:36:00 +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 1555C1F7B for ; Mon, 21 Dec 2015 18:36:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 0B27EA4EE1A; Mon, 21 Dec 2015 18:36:00 +0000 (UTC) Delivered-To: gnome@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 0ACC3A4EE19 for ; Mon, 21 Dec 2015 18:36:00 +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 E7BD21F6F for ; Mon, 21 Dec 2015 18:35:59 +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 tBLIZxZO030961 for ; Mon, 21 Dec 2015 18:35:59 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 204871] [PATCH] converters/fribidi: update to 0.19.7 Date: Mon, 21 Dec 2015 18:36:00 +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 X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Dec 2015 18:36:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204871 --- Comment #1 from commit-hook@freebsd.org --- A commit references this bug: Author: sunpoet Date: Mon Dec 21 18:35:47 UTC 2015 New revision: 404173 URL: https://svnweb.freebsd.org/changeset/ports/404173 Log: - Update to 0.19.7 - Add LICENSE - Pet portlint: fix diff header of patch files Changes: http://cgit.freedesktop.org/fribidi/fribidi/tree/NEWS PR: 204871 Submitted by: sunpoet (myself) Approved by: maintainer (timeout, 23 days) Changes: head/converters/fribidi/Makefile head/converters/fribidi/distinfo head/converters/fribidi/files/patch-fribidi.pc.in head/converters/fribidi/pkg-plist -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Mon Dec 21 18:43:11 2015 Return-Path: Delivered-To: freebsd-gnome@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 7DDDDA4F48F for ; Mon, 21 Dec 2015 18:43:11 +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 690BE1C1D for ; Mon, 21 Dec 2015 18:43:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 685BAA4F48E; Mon, 21 Dec 2015 18:43:11 +0000 (UTC) Delivered-To: gnome@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 67F33A4F48D for ; Mon, 21 Dec 2015 18:43:11 +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 589331C1C for ; Mon, 21 Dec 2015 18:43:11 +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 tBLIhBHO046195 for ; Mon, 21 Dec 2015 18:43:11 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 204871] [PATCH] converters/fribidi: update to 0.19.7 Date: Mon, 21 Dec 2015 18:43:11 +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 X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sunpoet@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Dec 2015 18:43:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204871 Sunpoet Po-Chuan Hsieh changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|New |Closed --- Comment #2 from Sunpoet Po-Chuan Hsieh --- Committed. Thanks! -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Tue Dec 22 01:24:14 2015 Return-Path: Delivered-To: freebsd-gnome@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 663F2A4E3DC for ; Tue, 22 Dec 2015 01:24:14 +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 55280199C for ; Tue, 22 Dec 2015 01:24:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 527A5A4E3DA; Tue, 22 Dec 2015 01:24:14 +0000 (UTC) Delivered-To: gnome@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 521AFA4E3D7 for ; Tue, 22 Dec 2015 01:24:14 +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 2CA91199B for ; Tue, 22 Dec 2015 01:24:14 +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 tBM1OEA2051944 for ; Tue, 22 Dec 2015 01:24:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: maintainer-feedback requested: [Bug 205502] graphics/librsvg2: update 2.40.10 -> 2.40.12 Date: Tue, 22 Dec 2015 01:24:14 +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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Dec 2015 01:24:14 -0000 Jason Unovitch has reassigned Bugzilla Automation 's request for maintainer-feedback to gnome@FreeBSD.org: Bug 205502: graphics/librsvg2: update 2.40.10 -> 2.40.12 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205502 --- Description --- Created attachment 164477 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=164477&action=edit graphics/librsvg2: update 2.40.10 -> 2.40.12 http://www.openwall.com/lists/oss-security/2015/12/21/5 From owner-freebsd-gnome@freebsd.org Tue Dec 22 01:24:14 2015 Return-Path: Delivered-To: freebsd-gnome@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 80A45A4E3E1 for ; Tue, 22 Dec 2015 01:24:14 +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 6B302199E for ; Tue, 22 Dec 2015 01:24:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 6A8DFA4E3DF; Tue, 22 Dec 2015 01:24:14 +0000 (UTC) Delivered-To: gnome@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 6A432A4E3DE for ; Tue, 22 Dec 2015 01:24:14 +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 5ABA8199D for ; Tue, 22 Dec 2015 01:24:14 +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 tBM1OE06051956 for ; Tue, 22 Dec 2015 01:24:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 205502] graphics/librsvg2: update 2.40.10 -> 2.40.12 Date: Tue, 22 Dec 2015 01:24:14 +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: patch, patch-ready, security X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: junovitch@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? merge-quarterly? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform bug_file_loc op_sys bug_status keywords 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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Dec 2015 01:24:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205502 Bug ID: 205502 Summary: graphics/librsvg2: update 2.40.10 -> 2.40.12 Product: Ports & Packages Version: Latest Hardware: Any URL: http://www.openwall.com/lists/oss-security/2015/12/21/ 5 OS: Any Status: New Keywords: patch, patch-ready, security Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: gnome@FreeBSD.org Reporter: junovitch@freebsd.org Assignee: gnome@FreeBSD.org Flags: maintainer-feedback?(gnome@FreeBSD.org), merge-quarterly? Created attachment 164477 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=164477&action=edit graphics/librsvg2: update 2.40.10 -> 2.40.12 http://www.openwall.com/lists/oss-security/2015/12/21/5 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Tue Dec 22 01:44:44 2015 Return-Path: Delivered-To: freebsd-gnome@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 36A9BA4EAE1 for ; Tue, 22 Dec 2015 01:44: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 2171F10DB for ; Tue, 22 Dec 2015 01:44:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 20E4DA4EADF; Tue, 22 Dec 2015 01:44:44 +0000 (UTC) Delivered-To: gnome@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 207A3A4EADD for ; Tue, 22 Dec 2015 01:44: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 1103910DA for ; Tue, 22 Dec 2015 01:44: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 tBM1ihjf015650 for ; Tue, 22 Dec 2015 01:44:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 205502] graphics/librsvg2: update 2.40.10 -> 2.40.12 Date: Tue, 22 Dec 2015 01:44: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: patch, patch-ready, security X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? merge-quarterly? 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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Dec 2015 01:44:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205502 --- Comment #1 from commit-hook@freebsd.org --- A commit references this bug: Author: junovitch Date: Tue Dec 22 01:43:45 UTC 2015 New revision: 404200 URL: https://svnweb.freebsd.org/changeset/ports/404200 Log: Document two librsvg2 vulnerabilities PR: 205502 Security: CVE-2015-7557 Security: CVE-2015-7558 Security: https://vuxml.FreeBSD.org/freebsd/da634091-a84a-11e5-8f5c-002590263bf5.html Security: https://vuxml.FreeBSD.org/freebsd/d6c51737-a84b-11e5-8f5c-002590263bf5.html Changes: head/security/vuxml/vuln.xml -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Tue Dec 22 01:48:48 2015 Return-Path: Delivered-To: freebsd-gnome@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 C67ACA4EC21 for ; Tue, 22 Dec 2015 01:48:48 +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 B14AB116B for ; Tue, 22 Dec 2015 01:48:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id B0B82A4EC20; Tue, 22 Dec 2015 01:48:48 +0000 (UTC) Delivered-To: gnome@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 B05DCA4EC1F for ; Tue, 22 Dec 2015 01:48: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 A0CED116A for ; Tue, 22 Dec 2015 01:48: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 tBM1mm9E012229 for ; Tue, 22 Dec 2015 01:48:48 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 205502] graphics/librsvg2: update 2.40.10 -> 2.40.12 Date: Tue, 22 Dec 2015 01:48: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: patch, patch-ready, security X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: junovitch@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@FreeBSD.org X-Bugzilla-Target-Milestone: --- 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: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Dec 2015 01:48:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205502 Jason Unovitch changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ports-secteam@FreeBSD.org --- Comment #2 from Jason Unovitch --- The first entry was for fix committed upstream earlier this year. Documented it now as Red Hat reported both at the same time. [1] https://git.gnome.org/browse/librsvg/commit/rsvg-shapes.c?id=40af93e6eb1c94b90c3b9a0b87e0840e126bb8df The later entry is for the application crash via a stack exhaustion issue addressed through rework in 2.40.12. The attached patch is ready for review/commit and will only need to list the following in the commit message. Security: CVE-2015-7558 Security: https://vuxml.FreeBSD.org/freebsd/d6c51737-a84b-11e5-8f5c-002590263bf5.html -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Tue Dec 22 02:34:41 2015 Return-Path: Delivered-To: freebsd-gnome@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 B9A7BA4FC81 for ; Tue, 22 Dec 2015 02:34:41 +0000 (UTC) (envelope-from portscout@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 A8675162E for ; Tue, 22 Dec 2015 02:34:41 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id A7B97A4FC80; Tue, 22 Dec 2015 02:34:41 +0000 (UTC) Delivered-To: gnome@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 A75EEA4FC7E for ; Tue, 22 Dec 2015 02:34:41 +0000 (UTC) (envelope-from portscout@FreeBSD.org) 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 9BA42162D for ; Tue, 22 Dec 2015 02:34:41 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.15.2/8.15.2) with ESMTP id tBM2YfwJ044214 for ; Tue, 22 Dec 2015 02:34:41 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.15.2/8.15.2/Submit) id tBM2YfHw044203; Tue, 22 Dec 2015 02:34:41 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201512220234.tBM2YfHw044203@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, 22 Dec 2015 02:34:41 +0000 From: portscout@FreeBSD.org To: gnome@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Dec 2015 02:34:41 -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/gnome@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ finance/gnucash | 2.6.9 | 2.6.10 ------------------------------------------------+-----------------+------------ 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-gnome@freebsd.org Tue Dec 22 14:02:17 2015 Return-Path: Delivered-To: freebsd-gnome@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 0858FA4D773 for ; Tue, 22 Dec 2015 14:02:17 +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 E72141ECE for ; Tue, 22 Dec 2015 14:02:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id E4569A4D772; Tue, 22 Dec 2015 14:02:16 +0000 (UTC) Delivered-To: gnome@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 E3EEFA4D771 for ; Tue, 22 Dec 2015 14:02:16 +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 D3FAE1ECC for ; Tue, 22 Dec 2015 14:02:16 +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 tBME2GBl045929 for ; Tue, 22 Dec 2015 14:02:16 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 205281] net/avahi-app: runs after mountd causing hostname resolution failures Date: Tue, 22 Dec 2015 14:02:17 +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: needs-patch, needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: brendan+freebsd@bbqsrc.net X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Dec 2015 14:02:17 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205281 --- Comment #3 from Brendan Molloy --- (In reply to Rodrigo N. Hernandez from comment #1) Any update on this one? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Tue Dec 22 15:40:46 2015 Return-Path: Delivered-To: freebsd-gnome@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 55C51A4FA9E for ; Tue, 22 Dec 2015 15:40:46 +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 403B41FFC for ; Tue, 22 Dec 2015 15:40:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 3FD80A4FA9C; Tue, 22 Dec 2015 15:40:46 +0000 (UTC) Delivered-To: gnome@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 3F7EBA4FA9B for ; Tue, 22 Dec 2015 15:40:46 +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 2F9D91FFB for ; Tue, 22 Dec 2015 15:40:46 +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 tBMFekWi024343 for ; Tue, 22 Dec 2015 15:40:46 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 205502] graphics/librsvg2: update 2.40.10 -> 2.40.12 Date: Tue, 22 Dec 2015 15:40:45 +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, patch-ready, security X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: kwm@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback+ merge-quarterly+ X-Bugzilla-Changed-Fields: bug_status cc flagtypes.name 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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Dec 2015 15:40:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205502 Koop Mast changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |In Progress CC| |kwm@FreeBSD.org Flags|maintainer-feedback?(gnome@ |maintainer-feedback+, |FreeBSD.org), |merge-quarterly+ |merge-quarterly? | -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Tue Dec 22 15:47:06 2015 Return-Path: Delivered-To: freebsd-gnome@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 93A54A4FDC9 for ; Tue, 22 Dec 2015 15:47:06 +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 7E42E163F for ; Tue, 22 Dec 2015 15:47:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 7BDF7A4FDC8; Tue, 22 Dec 2015 15:47:06 +0000 (UTC) Delivered-To: gnome@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 7B8C0A4FDC7 for ; Tue, 22 Dec 2015 15:47:06 +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 6BE8D163E for ; Tue, 22 Dec 2015 15:47:06 +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 tBMFl6Dm039119 for ; Tue, 22 Dec 2015 15:47:06 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 205502] graphics/librsvg2: update 2.40.10 -> 2.40.12 Date: Tue, 22 Dec 2015 15:47: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: patch, patch-ready, security X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: kwm@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback+ merge-quarterly? X-Bugzilla-Changed-Fields: flagtypes.name 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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Dec 2015 15:47:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205502 Koop Mast changed: What |Removed |Added ---------------------------------------------------------------------------- Flags|merge-quarterly+ |merge-quarterly? --- Comment #3 from Koop Mast --- reset merge-quarterly flag, I can't approve that -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Wed Dec 23 01:14:18 2015 Return-Path: Delivered-To: freebsd-gnome@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 624D1A4EC55 for ; Wed, 23 Dec 2015 01:14:18 +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 4E3171961 for ; Wed, 23 Dec 2015 01:14:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 4A71AA4EC54; Wed, 23 Dec 2015 01:14:18 +0000 (UTC) Delivered-To: gnome@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 4A144A4EC53 for ; Wed, 23 Dec 2015 01:14:18 +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 3B9041960 for ; Wed, 23 Dec 2015 01:14:18 +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 tBN1EIUX095377 for ; Wed, 23 Dec 2015 01:14:18 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 205502] graphics/librsvg2: update 2.40.10 -> 2.40.12 Date: Wed, 23 Dec 2015 01:14: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: patch, patch-ready, security X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback+ merge-quarterly? 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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Dec 2015 01:14:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205502 --- Comment #4 from commit-hook@freebsd.org --- A commit references this bug: Author: junovitch Date: Wed Dec 23 01:13:43 UTC 2015 New revision: 404275 URL: https://svnweb.freebsd.org/changeset/ports/404275 Log: graphics/librsvg2: update 2.40.10 -> 2.40.12 PR: 205502 Approved by: gnome (kwm) Security: CVE-2015-7558 Security: https://vuxml.FreeBSD.org/freebsd/d6c51737-a84b-11e5-8f5c-002590263bf5.html MFH: 2015Q4 Changes: head/graphics/librsvg2/Makefile head/graphics/librsvg2/distinfo head/graphics/librsvg2/pkg-plist -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Wed Dec 23 17:27:02 2015 Return-Path: Delivered-To: freebsd-gnome@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 6CD87A4FEAF for ; Wed, 23 Dec 2015 17:27:02 +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 58EC51FDC for ; Wed, 23 Dec 2015 17:27:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 57851A4FEAE; Wed, 23 Dec 2015 17:27:02 +0000 (UTC) Delivered-To: gnome@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 5740DA4FEAD for ; Wed, 23 Dec 2015 17:27:02 +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 495931FDB for ; Wed, 23 Dec 2015 17:27:02 +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 tBNHR2Vv013062 for ; Wed, 23 Dec 2015 17:27:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 205547] finance/gnucash does not build, abort segmentation fault Date: Wed, 23 Dec 2015 17:27: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: lenzi.sergio@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@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 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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Dec 2015 17:27:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205547 Bug ID: 205547 Summary: finance/gnucash does not build, abort segmentation fault Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: gnome@FreeBSD.org Reporter: lenzi.sergio@gmail.com Flags: maintainer-feedback?(gnome@FreeBSD.org) Assignee: gnome@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Wed Dec 23 17:27:02 2015 Return-Path: Delivered-To: freebsd-gnome@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 568B4A4FEAC for ; Wed, 23 Dec 2015 17:27:02 +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 4645C1FDA for ; Wed, 23 Dec 2015 17:27:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 44DBAA4FEAB; Wed, 23 Dec 2015 17:27:02 +0000 (UTC) Delivered-To: gnome@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 44782A4FEA9 for ; Wed, 23 Dec 2015 17:27:02 +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 2060A1FD9 for ; Wed, 23 Dec 2015 17:27:02 +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 tBNHR1kt013054 for ; Wed, 23 Dec 2015 17:27:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: maintainer-feedback requested: [Bug 205547] finance/gnucash does not build, abort segmentation fault Date: Wed, 23 Dec 2015 17:27: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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Dec 2015 17:27:02 -0000 lenzi.sergio@gmail.com has reassigned Bugzilla Automation 's request for maintainer-feedback to gnome@FreeBSD.org: Bug 205547: finance/gnucash does not build, abort segmentation fault https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205547 From owner-freebsd-gnome@freebsd.org Wed Dec 23 17:31:16 2015 Return-Path: Delivered-To: freebsd-gnome@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 21528A500D4 for ; Wed, 23 Dec 2015 17:31:16 +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 0D4D5124B for ; Wed, 23 Dec 2015 17:31:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 0BB56A500D2; Wed, 23 Dec 2015 17:31:16 +0000 (UTC) Delivered-To: gnome@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 0B4CBA500D1 for ; Wed, 23 Dec 2015 17:31:16 +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 F0B541246 for ; Wed, 23 Dec 2015 17:31:15 +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 tBNHVFab022114 for ; Wed, 23 Dec 2015 17:31:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 205547] finance/gnucash does not build, abort segmentation fault Date: Wed, 23 Dec 2015 17:31: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 Many People X-Bugzilla-Who: lenzi.sergio@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: cc bug_severity 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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Dec 2015 17:31:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205547 lenzi.sergio@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lenzi.sergio@gmail.com Severity|Affects Only Me |Affects Many People --- Comment #1 from lenzi.sergio@gmail.com --- latest gnucash 2.6.10 does not build on FreeBSD 10.0 RELEASE GNC_MODULE_PATH="../../src/engine/.libs:${GNC_MODULE_PATH}" GUILE_LOAD_PATH="../../src/app-utils:../../src/core-utils:../../src/engine:../../src/gnc-module:../../src/scm:${GUILE_LOAD_PATH}" GUILE_LOAD_COMPILED_PATH="../../src/app-utils:../../src/core-utils:../../src/engine:../../src/gnc-module:../../src/scm:${GUILE_LOAD_COMPILED_PATH}" LD_LIBRARY_PATH="../../src/libqof/qof/.libs:../../src/core-utils/.libs:../../src/gnc-module/.libs:../../src/engine/.libs:../../src/app-utils/.libs:${LD_LIBRARY_PATH}" DYLD_LIBRARY_PATH="../../src/libqof/qof/.libs:../../src/core-utils/.libs:../../src/gnc-module/.libs:../../src/engine/.libs:../../src/app-utils/.libs:${DYLD_LIBRARY_PATH}" \ /usr/local/bin/guild compile -o prefs.go prefs.scm Makefile:1304: recipe for target 'business-prefs.go' failed gmake[6]: *** [business-prefs.go] Segmentation fault -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Wed Dec 23 17:59:12 2015 Return-Path: Delivered-To: freebsd-gnome@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 C2A22A50980 for ; Wed, 23 Dec 2015 17:59:12 +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 AE58F1260 for ; Wed, 23 Dec 2015 17:59:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id ACA18A5097F; Wed, 23 Dec 2015 17:59:12 +0000 (UTC) Delivered-To: gnome@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 AC36AA5097E for ; Wed, 23 Dec 2015 17:59:12 +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 9D88C125E for ; Wed, 23 Dec 2015 17:59:12 +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 tBNHxCUB076485 for ; Wed, 23 Dec 2015 17:59:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 205547] finance/gnucash does not build, abort segmentation fault Date: Wed, 23 Dec 2015 17:59: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 Many People X-Bugzilla-Who: madpilot@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: madpilot@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: assigned_to 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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Dec 2015 17:59:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205547 Guido Falsi changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|gnome@FreeBSD.org |madpilot@FreeBSD.org Status|New |Open CC| |madpilot@FreeBSD.org --- Comment #2 from Guido Falsi --- Hi, Can you attach a full log for the build failure? (you can use script(1) to do that) Can you also test the build a few times to make sure it always fails at the same point in the build? Also, since the binary segfaulting is guile, could you try recompiling the guile port (lang/guile or lang/guile2 if you're using the guile2 option) As a final note, FreeBSD 10.0 isn't supported anymore, you should really upgrade to 10.1 at least. While I can't say this is the cause of the problem, you could try on a 10.1 install if it works correctly. Thanks. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Wed Dec 23 20:21:18 2015 Return-Path: Delivered-To: freebsd-gnome@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 AB061A4F768 for ; Wed, 23 Dec 2015 20:21:18 +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 9662A1DAF for ; Wed, 23 Dec 2015 20:21:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 93329A4F765; Wed, 23 Dec 2015 20:21:18 +0000 (UTC) Delivered-To: gnome@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 92D67A4F764 for ; Wed, 23 Dec 2015 20:21:18 +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 83DCD1DAE for ; Wed, 23 Dec 2015 20:21:18 +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 tBNKLIBs013233 for ; Wed, 23 Dec 2015 20:21:18 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 205502] graphics/librsvg2: update 2.40.10 -> 2.40.12 Date: Wed, 23 Dec 2015 20:21: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: patch, patch-ready, security X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback+ merge-quarterly? 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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Dec 2015 20:21:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205502 --- Comment #5 from commit-hook@freebsd.org --- A commit references this bug: Author: junovitch Date: Wed Dec 23 20:20:56 UTC 2015 New revision: 404319 URL: https://svnweb.freebsd.org/changeset/ports/404319 Log: MFH: r404275 graphics/librsvg2: update 2.40.10 -> 2.40.12 PR: 205502 Approved by: gnome (kwm) Approved by: ports-secteam (feld) Security: CVE-2015-7558 Security: https://vuxml.FreeBSD.org/freebsd/d6c51737-a84b-11e5-8f5c-002590263bf5.html Changes: _U branches/2015Q4/ branches/2015Q4/graphics/librsvg2/Makefile branches/2015Q4/graphics/librsvg2/distinfo branches/2015Q4/graphics/librsvg2/pkg-plist -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Wed Dec 23 20:31:51 2015 Return-Path: Delivered-To: freebsd-gnome@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 53462A4FB1C for ; Wed, 23 Dec 2015 20:31:51 +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 3E59315A8 for ; Wed, 23 Dec 2015 20:31:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 3A987A4FB1A; Wed, 23 Dec 2015 20:31:51 +0000 (UTC) Delivered-To: gnome@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 3A3A3A4FB19 for ; Wed, 23 Dec 2015 20:31:51 +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 2AEFE15A5 for ; Wed, 23 Dec 2015 20:31:51 +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 tBNKVpEv036300 for ; Wed, 23 Dec 2015 20:31:51 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 205502] graphics/librsvg2: update 2.40.10 -> 2.40.12 Date: Wed, 23 Dec 2015 20:31:51 +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, patch-ready, security X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: junovitch@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback+ merge-quarterly+ X-Bugzilla-Changed-Fields: flagtypes.name 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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Dec 2015 20:31:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205502 Jason Unovitch changed: What |Removed |Added ---------------------------------------------------------------------------- Flags|merge-quarterly? |merge-quarterly+ Resolution|--- |FIXED Status|In Progress |Closed CC| |junovitch@freebsd.org --- Comment #6 from Jason Unovitch --- (In reply to Koop Mast from comment #3) merge-quarterly+ approved by ports-secteam (feld) The update passed build QA on all releases as well as a before/after build test of the active dependencies listed at http://www.freshports.org/graphics/librsvg2/ on 9.3 amd64 Poudriere -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Wed Dec 23 21:15:47 2015 Return-Path: Delivered-To: freebsd-gnome@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 668B3A50961 for ; Wed, 23 Dec 2015 21:15:47 +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 558041A40 for ; Wed, 23 Dec 2015 21:15:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 5422EA50960; Wed, 23 Dec 2015 21:15:47 +0000 (UTC) Delivered-To: gnome@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 53B90A5095F for ; Wed, 23 Dec 2015 21:15:47 +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 483551A3F for ; Wed, 23 Dec 2015 21:15:47 +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 tBNLFlOi004778 for ; Wed, 23 Dec 2015 21:15:47 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: maintainer-feedback requested: [Bug 205556] graphics/gimp-app switch to USES=execinfo localbase, use options helpers Date: Wed, 23 Dec 2015 21:15:47 +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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Dec 2015 21:15:47 -0000 Pawel Pekala has reassigned Bugzilla Automation 's request for maintainer-feedback to gnome@FreeBSD.org: Bug 205556: graphics/gimp-app switch to USES=execinfo localbase, use options helpers https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205556 --- Description --- Created attachment 164568 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=164568&action=edit USES=execinfo localbase switch, use options helpers - Switch to USES=execinfo localbase - USE options plist substitutions - Convert to options helpers From owner-freebsd-gnome@freebsd.org Wed Dec 23 21:15:47 2015 Return-Path: Delivered-To: freebsd-gnome@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 B8ED1A50967 for ; Wed, 23 Dec 2015 21:15:47 +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 A43521A43 for ; Wed, 23 Dec 2015 21:15:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id A335AA50966; Wed, 23 Dec 2015 21:15:47 +0000 (UTC) Delivered-To: gnome@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 A2E3EA50965 for ; Wed, 23 Dec 2015 21:15:47 +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 93E271A42 for ; Wed, 23 Dec 2015 21:15:47 +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 tBNLFltt004784 for ; Wed, 23 Dec 2015 21:15:47 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 205556] graphics/gimp-app switch to USES=execinfo localbase, use options helpers Date: Wed, 23 Dec 2015 21:15:47 +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: pawel@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Dec 2015 21:15:47 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205556 Bug ID: 205556 Summary: graphics/gimp-app switch to USES=execinfo localbase, use options helpers Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: gnome@FreeBSD.org Reporter: pawel@FreeBSD.org Assignee: gnome@FreeBSD.org Flags: maintainer-feedback?(gnome@FreeBSD.org) Created attachment 164568 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=164568&action=edit USES=execinfo localbase switch, use options helpers - Switch to USES=execinfo localbase - USE options plist substitutions - Convert to options helpers -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Thu Dec 24 21:10:55 2015 Return-Path: Delivered-To: freebsd-gnome@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 E9347A50169 for ; Thu, 24 Dec 2015 21:10:55 +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 D3B0B1EF7 for ; Thu, 24 Dec 2015 21:10:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id D1869A50168; Thu, 24 Dec 2015 21:10:55 +0000 (UTC) Delivered-To: gnome@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 D1261A50167 for ; Thu, 24 Dec 2015 21:10:55 +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 C16601EF6 for ; Thu, 24 Dec 2015 21:10:55 +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 tBOLAtls018796 for ; Thu, 24 Dec 2015 21:10:55 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 203270] [security/libfprint] pam_fprint fails every two times with a GLib-error Date: Thu, 24 Dec 2015 21:10:54 +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: miwi@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? 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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Dec 2015 21:10:56 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203270 Martin Wilke changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |miwi@FreeBSD.org Assignee|freebsd-ports-bugs@FreeBSD. |gnome@FreeBSD.org |org | --- Comment #1 from Martin Wilke --- Over to glib maintainers -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Fri Dec 25 12:01:59 2015 Return-Path: Delivered-To: freebsd-gnome@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 50C18A51C28 for ; Fri, 25 Dec 2015 12:01:59 +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 3EF1212E0 for ; Fri, 25 Dec 2015 12:01:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 3EC90A51C26; Fri, 25 Dec 2015 12:01:59 +0000 (UTC) Delivered-To: gnome@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 3E5F4A51C25 for ; Fri, 25 Dec 2015 12:01:59 +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 3218312DE for ; Fri, 25 Dec 2015 12:01:59 +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 tBPC1xCI072586 for ; Fri, 25 Dec 2015 12:01:59 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: maintainer-feedback requested: [Bug 205595] textproc/intltool: Script "configure" failed unexpectedly Date: Fri, 25 Dec 2015 12:01:59 +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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Dec 2015 12:01:59 -0000 Christoph Sold has reassigned Bugzilla Automation 's request for maintainer-feedback to gnome@FreeBSD.org: Bug 205595: textproc/intltool: Script "configure" failed unexpectedly https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205595 --- Description --- Created attachment 164618 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=164618&action=edit config.log as requested by protester error message Using Postmaster... ===> Configuring for intltool-0.51.0 configure: loading site script /usr/ports/Templates/config.site checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether gmake sets $(MAKE)... yes checking whether gmake supports nested variables... yes checking for perl... (cached) /usr/local/bin/perl checking for perl >= 5.8.1... 5.20.3 checking for XML::Parser... configure: error: XML::Parser perl module is required for intltool ===> Script "configure" failed unexpectedly. Please report the problem to gnome@FreeBSD.org [maintainer] and attach the "/usr/ports/textproc/intltool/work/intltool-0.51.0/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a /usr/local/sbin/pkg-static info -g -Ea). *** Error code 1 Stop. make: stopped in /usr/ports/textproc/intltool ===>>> make build failed for textproc/intltool ===>>> Aborting update From owner-freebsd-gnome@freebsd.org Fri Dec 25 12:01:59 2015 Return-Path: Delivered-To: freebsd-gnome@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 C87B6A51C30 for ; Fri, 25 Dec 2015 12:01:59 +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 ACB6512E3 for ; Fri, 25 Dec 2015 12:01:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id ACA22A51C2D; Fri, 25 Dec 2015 12:01:59 +0000 (UTC) Delivered-To: gnome@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 AC3BCA51C2C for ; Fri, 25 Dec 2015 12:01:59 +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 8267912E2 for ; Fri, 25 Dec 2015 12:01:59 +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 tBPC1xxC072856 for ; Fri, 25 Dec 2015 12:01:59 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 205595] textproc/intltool: Script "configure" failed unexpectedly Date: Fri, 25 Dec 2015 12:01:59 +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: bugs.freebsd.org@cheasy.de X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Dec 2015 12:02:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205595 Bug ID: 205595 Summary: textproc/intltool: Script "configure" failed unexpectedly Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: gnome@FreeBSD.org Reporter: bugs.freebsd.org@cheasy.de Flags: maintainer-feedback?(gnome@FreeBSD.org) Assignee: gnome@FreeBSD.org Created attachment 164618 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=164618&action=edit config.log as requested by protester error message Using Postmaster... ===> Configuring for intltool-0.51.0 configure: loading site script /usr/ports/Templates/config.site checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether gmake sets $(MAKE)... yes checking whether gmake supports nested variables... yes checking for perl... (cached) /usr/local/bin/perl checking for perl >= 5.8.1... 5.20.3 checking for XML::Parser... configure: error: XML::Parser perl module is required for intltool ===> Script "configure" failed unexpectedly. Please report the problem to gnome@FreeBSD.org [maintainer] and attach the "/usr/ports/textproc/intltool/work/intltool-0.51.0/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a /usr/local/sbin/pkg-static info -g -Ea). *** Error code 1 Stop. make: stopped in /usr/ports/textproc/intltool ===>>> make build failed for textproc/intltool ===>>> Aborting update -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Fri Dec 25 12:02:36 2015 Return-Path: Delivered-To: freebsd-gnome@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 8E21BA51CDB for ; Fri, 25 Dec 2015 12:02:36 +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 789C5139B for ; Fri, 25 Dec 2015 12:02:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 78990A51CDA; Fri, 25 Dec 2015 12:02:36 +0000 (UTC) Delivered-To: gnome@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 78334A51CD8 for ; Fri, 25 Dec 2015 12:02:36 +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 68511139A for ; Fri, 25 Dec 2015 12:02:36 +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 tBPC2a7b001497 for ; Fri, 25 Dec 2015 12:02:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 205595] textproc/intltool: Script "configure" failed unexpectedly Date: Fri, 25 Dec 2015 12:02:36 +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: bugs.freebsd.org@cheasy.de X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Dec 2015 12:02:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205595 --- Comment #1 from Christoph Sold --- Created attachment 164619 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=164619&action=edit pkg-static info log -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Fri Dec 25 12:04:15 2015 Return-Path: Delivered-To: freebsd-gnome@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 CE16BA51D8A for ; Fri, 25 Dec 2015 12:04:15 +0000 (UTC) (envelope-from cs@cheasy.de) 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 A769113CF for ; Fri, 25 Dec 2015 12:04:15 +0000 (UTC) (envelope-from cs@cheasy.de) Received: by mailman.ysv.freebsd.org (Postfix) id A734BA51D89; Fri, 25 Dec 2015 12:04:15 +0000 (UTC) Delivered-To: gnome@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 A6891A51D88 for ; Fri, 25 Dec 2015 12:04:15 +0000 (UTC) (envelope-from cs@cheasy.de) Received: from mail-wm0-x235.google.com (mail-wm0-x235.google.com [IPv6:2a00:1450:400c:c09::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 04D0C13CE for ; Fri, 25 Dec 2015 12:04:14 +0000 (UTC) (envelope-from cs@cheasy.de) Received: by mail-wm0-x235.google.com with SMTP id p187so204858957wmp.0 for ; Fri, 25 Dec 2015 04:04:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cheasy-de.20150623.gappssmtp.com; s=20150623; h=from:content-type:subject:message-id:date:to:mime-version; bh=nQfmmeSHwL8R25QhJmxp125PlFQ3EJsC7MYiPjoaV4w=; b=ECQXNX9wdYqfBcXTKFcnS7Qtm3QyHUCL3gcIbqD+Nbta7VlMGW90B9t1vszw4EHcLe qKmJ2GQ9JWw7BTn9emSyZNcC3PprDWAdHLO7n2lHzs1SRGpsELvNSE/7h2tXF++GzXTe 2seaz0qSf9+4HGxW9jfx9M8vRHNyaQNZZfKhaZs91SjMonckqAg+q32RYCIqKRbZleoR SRHKuzdrvwS2QDDpy5kq0xIkrExGCJKBaygVkGxxFWy6CDkGv1CwL/dwGr7wSSwTUiFZ 0lWb77T+pjw9gbo2E5wA2qMtOBYL5u75TqI/C5msMloLsdrmZVcC+Rw1PJr+4JEIDAJc Z/IQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:content-type:subject:message-id:date:to :mime-version; bh=nQfmmeSHwL8R25QhJmxp125PlFQ3EJsC7MYiPjoaV4w=; b=mk63ficTDvIRxSi1X7inOlbvx2EwBQ9vQXQ0jE2Ht+rsu2aLV/lJb9vgauI7y8sOKk sAYxGeHZPKezFFzK7saR6ath6fDdZ2NCuuraI64Lu2mpYu3RDZRGXlwVsjGcE2RgTPXW ut/N7f17nvuUFCDtZA7XnteZjbJPM2OboFDPpACk7SqU83WZNdSBkCo42MmruxYfOmZK Mp77AQTqN63eIiPWaNr7uYOvkz550yeJlk3iCTvUPS//946saQpv5dFrTFC6OGt9Bp4P RuEkNHyONDm+v2ptMReq4eJt1h2saU8mqorvVfV64eycqf7gMiBUkfivlRf/sfpkblmU q8OQ== X-Gm-Message-State: ALoCoQlXK/2dwDUJqM+ya0xihWVTXVSstQoRGGCQ04emekK7WNX3SEF13cxVv5kzcCnkBUBdk/2lVX4UsEU5+PvLAN5aYN/FSw== X-Received: by 10.28.5.203 with SMTP id 194mr39684750wmf.37.1451045053150; Fri, 25 Dec 2015 04:04:13 -0800 (PST) Received: from [192.168.1.50] (x590c4f17.dyn.telefonica.de. [89.12.79.23]) by smtp.gmail.com with ESMTPSA id vu4sm45052766wjc.2.2015.12.25.04.04.11 for (version=TLS1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 25 Dec 2015 04:04:12 -0800 (PST) From: Christoph Sold Subject: textproc/intltool: Script "configure" failed unexpectedly Message-Id: Date: Fri, 25 Dec 2015 13:04:11 +0100 To: gnome@FreeBSD.org Mime-Version: 1.0 (Mac OS X Mail 9.2 \(3112\)) X-Mailer: Apple Mail (2.3112) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Dec 2015 12:04:16 -0000 =3D=3D=3D> Configuring for intltool-0.51.0 configure: loading site script /usr/ports/Templates/config.site checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether gmake sets $(MAKE)... yes checking whether gmake supports nested variables... yes checking for perl... (cached) /usr/local/bin/perl checking for perl >=3D 5.8.1... 5.20.3 checking for XML::Parser... configure: error: XML::Parser perl module is = required for intltool =3D=3D=3D> Script "configure" failed unexpectedly. Please report the problem to gnome@FreeBSD.org [maintainer] and attach = the "/usr/ports/textproc/intltool/work/intltool-0.51.0/config.log" including = the output of the failure of your make command. Also, it might be a good = idea to provide an overview of all packages installed on your system (e.g. a /usr/local/sbin/pkg-static info -g -Ea). *** Error code 1 Stop. make: stopped in /usr/ports/textproc/intltool =3D=3D=3D>>> make build failed for textproc/intltool =3D=3D=3D>>> Aborting update Will report the same using bugs.freebsd.org . Merry Christmas -Christoph Sold= From owner-freebsd-gnome@freebsd.org Fri Dec 25 23:06:30 2015 Return-Path: Delivered-To: freebsd-gnome@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 29335A51007 for ; Fri, 25 Dec 2015 23:06:30 +0000 (UTC) (envelope-from andy.silva@snscommunication.com) 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 0BE961956 for ; Fri, 25 Dec 2015 23:06:30 +0000 (UTC) (envelope-from andy.silva@snscommunication.com) Received: by mailman.ysv.freebsd.org (Postfix) id 08AE7A51006; Fri, 25 Dec 2015 23:06:30 +0000 (UTC) Delivered-To: gnome@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 07016A51005 for ; Fri, 25 Dec 2015 23:06:30 +0000 (UTC) (envelope-from andy.silva@snscommunication.com) Received: from mailer238.gate85.rs.smtp.com (mailer238.gate85.rs.smtp.com [74.91.85.238]) (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 A9E711955 for ; Fri, 25 Dec 2015 23:06:28 +0000 (UTC) (envelope-from andy.silva@snscommunication.com) X-MSFBL: eyJiIjoiNzRfOTFfODVfMjM4IiwiciI6Imdub21lQGZyZWVic2Qub3JnIiwiZyI6 IlNuc3RlbGVjb21fZGVkaWNhdGVkX3Bvb2wifQ== Received: from [192.168.80.21] ([192.168.80.21:55898] helo=rs-ord-mta02-1.smtp.com) by rs-ord-mta04-3.smtp.com (envelope-from ) (ecelerity 4.1.0.46749 r(Core:4.1.0.4)) with ESMTP id 29/CF-03821-EEBCD765; Fri, 25 Dec 2015 23:06:22 +0000 X-MSFBL: eyJnIjoiU25zdGVsZWNvbV9kZWRpY2F0ZWRfcG9vbCIsInIiOiJnbm9tZUBmcmVl YnNkLm9yZyIsImIiOiJTbnN0ZWxlY29tX2RlZGljYXRlZF9wb29sIn0= DKIM-Signature: v=1; a=rsa-sha256; d=smtp.com; s=smtpcomcustomers; c=relaxed/simple; q=dns/txt; i=@smtp.com; t=1451084779; h=From:Subject:To:Date:MIME-Version:Content-Type; bh=tpr9FMRwXxkOnD6816Xyrjko/GWtA+rtTe62sWUL1D8=; b=sePFiGXiXrP8xuZH/7CY4VIqXr9IO/6ipHCNTiOw+wnSTCOrWWP16bBoz06Q1nz4 WqZs/9YcKLNfyraj2kMmW9ZnddoMafld5U8sQRy5PUP+CZWpsJNW2fy/2vjfFwI3 EL4cax4XVOhzRyXaWG35nO6iVQEsBFZeY82G/gk19Z0=; Received: from [154.20.125.37] ([154.20.125.37:44177] helo=d154-20-125-37.bchsia.telus.net) by rs-ord-mta02-1.smtp.com (envelope-from ) (ecelerity 4.1.0.46749 r(Core:4.1.0.4)) with ESMTPA id 0E/10-05881-BEBCD765; Fri, 25 Dec 2015 23:06:19 +0000 MIME-Version: 1.0 From: "Andy Silva" Reply-To: andy.silva@snscommunication.com To: gnome@freebsd.org Subject: The mHealth (Mobile Healthcare) Ecosystem: 2015 - 2030 - Opportunities, Challenges, Strategies & Forecasts (Report) X-Mailer: Smart_Send_2_0_138 Date: Fri, 25 Dec 2015 15:06:12 -0800 Message-ID: <5472423140584885422725@Ankur> X-SMTPCOM-Spam-Policy: SMTP.com is a paid relay service. We do not tolerate UCE of any kind. Please report it ASAP to abuse@smtp.com X-SMTPCOM-Tracking-Number: a0faad9c-40ed-47a4-9937-b92fd3fcc74a X-SMTPCOM-Sender-ID: 6008902 Feedback-ID: 6008902:SMTPCOM Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Dec 2015 23:06:30 -0000 The LPWA (Low Power Wide Area) Networks Ecosystem: 2015 =96 2030 =96 Opport= unities, Challenges, Strategies, Industry Verticals & Forecasts Hello=20 Hope you are doing well.=20 I wanted to bring to your attention the latest SNS Research report in which= you might be interested, " The mHealth (Mobile Healthcare) Ecosystem: 2015= =96 2030 =96 Opportunities, Challenges, Strategies & Forecasts."=20 I believe this report will be highly applicable for you. If you would like = to see the report sample or have any questions, please let me know. =20 Report Information: Release Date: September 2015 Number of Pages: 359 Number of Tables and Figures: 105 Report Overview: With more than 7 Billion mobile network subscriptions worldwide, the mobile= communications sector is rapidly gaining traction from a diverse range of = vertical sectors. Healthcare is no exception to this trend.=20 As healthcare providers seek to maximize their patient outreach while minim= izing costs, many view mobile healthcare (or mHealth) as the solution to im= prove healthcare cost=96efficiency.mHealth refers to the usage of mobile co= mmunications technology & devices to enhance access to healthcare informati= on, improve distribution of routine and emergency health services and provi= de diagnostic services. Mobile network operators also view mHealth as a lucrative opportunity for t= he monetization of their mobile connectivity services as a growing proporti= on of their subscribers adopt healthcare centric wearables. Given that mos= t operators have established themselves as reputable consumer brands, they = are also eyeing on opportunities to offer services beyond simple connectivi= ty. Many operators already offer branded or co-branded end-to-end mHealth s= olutions to their customer bases.=20 In addition, mHealth offers a multitude to opportunities to the pharmaceuti= cal industry ranging from R&D activities to securing the supply chain and, = in the battle against counterfeit drugs. Driven by the thriving ecosystem, SNS Research estimates that the mHealth m= arket will account for nearly $18 Billion in 2016 alone. Despite barriers r= elating to regulation, patient acceptance and privacy concerns, SNS Researc= h estimates further growth at a CAGR of 40% over the next 5 years. The =93mHealth (Mobile Healthcare) Ecosystem: 2015 =96 2030 =96 Opportuniti= es, Challenges, Strategies & Forecasts=93 report presents an in=96depth as= sessment of the global mHealth market. In addition to covering key market d= rivers, challenges, future roadmap, value chain analysis, deployment case s= tudies, service/product strategies and strategic recommendations, the repor= t also presents comprehensive forecasts for the mHealth market from 2015 ti= ll 2030. The forecasts and historical revenue figures are individually segm= ented for 5 individual submarkets, 29 use case categories, 5 ecosystem play= er categories, 6 geographical regions and 34 countries. The report comes with an associated Excel datasheet suite covering quantita= tive data from all numeric forecasts presented in the report. =20 Key Findings: The report has the following key findings Driven by the thriving ecosystem, SNS Research estimates that the mHealth m= arket will account for over $18 Billion in 2016 alone Despite barriers relating to regulation, patient acceptance and privacy con= cerns, SNS Research estimates further growth at a CAGR of 40% over the next= 5 years SNS Research estimates that mHealth centric wearable devices will account f= or over 130 Million unit shipments by the end of 2020. In order to gain val= uable insights from the data generated by these devices, healthcare provide= rs and other stakeholders are increasingly investing in Big Data and analyt= ics technology SNS Research estimates that Big Data and analytics technology investments i= n the healthcare sector will account for over $4 Billion by 2020, following= a CAGR of over 14% between 2015 and 2020 In a bid to reduce error rates and enhance patient monitoring, pharmaceutic= al companies are increasingly incorporating smartphone and tablet based mon= itoring apps in their clinical trials mHealth has the potential to dramatically reduce the costs of healthcare op= erations, while improving the quality of healthcare. SNS Research estimates= that by the end of 2016, mHealth could represent up to $340 Billion in ann= ual healthcare cost savings worldwide Topics Covered: The report covers the following topics: The scope and implementation of mHealth across the globe mHealth technology Market drivers and key benefits of mHealth Challenges and inhibitors to the mHealth ecosystem mHealth standardization and regulatory initiatives mHealth opportunities, use cases and applications mHealth deployment case studies Value chain analysis of the mHealth ecosystem and the recognition of key pl= ayers in each segment of the value chain mHealth industry roadmap: 2015 =96 2030 Key trends in the mHealth ecosystem; mHealth regulation & security, adoptio= n of cloud based mHealth services, alliances for ecosystem fortification, a= nd the impact of LTE deployments The role of M2M and wearable technology in the mHealth ecosystem =20 Profiles and strategies of over 200 ecosystem players Strategic recommendations for mobile network operators, wireless infrastruc= ture/device OEMs, application developers, healthcare service providers & ph= armaceutical companies to capitalize on the mHealth opportunity In-depth analysis for 5 individual submarkets and their associated mHealth = application use cases:=20 Pharmaceutical Applications Medical Information & Healthcare Management Healthcare & Fitness Remote Consultation/Diagnostic Services M2M, Wearable Technology, Sensor & Monitoring Applications=20 Historical revenue figures and forecasts till 2030 Forecast Segmentation: Market forecasts and historical revenue figures are provided for each of th= e following 5 submarkets and their 23 use case categories: Pharmaceutical Applications Safety Data Collection Consumer Education Medical Education Post=96Market Monitoring Drug Authentication Social Media Patient Compliance & Retention: Clinical Trials Information & Healthcare Management Electronic Health/Medical Records & Tracking Tools Diagnostic Tools & Medical Reference Continuing Medical Education Awareness Through Alerts Logistical & Payment Support Healthcare & Fitness Medical Compliance Fitness & Nutrition Apps Clinical Decision Support Systems Prescribable Mobile Apps Remote Consultation/Diagnostic Services Mobile Video Consultations, Collaboration & Surgery Non-Video Consultations & Collaboration Remote Collaboration in Emergency Situations M2M, Wearable Technology, Sensor & Monitoring Applications Health and Wellness Monitoring Disease Surveillance/Remote Monitoring Diagnostic Tools Technical Logistics Revenue is also split by ecosystem player: Ecosystem Player Mobile Network Operators/Connectivity Providers Mobile & mHealth Device OEMs Content & Application Providers Healthcare Service Providers Pharmaceutical Industry The following regional and country markets are also covered: Regional Markets Asia Pacific Eastern Europe Latin & Central America Middle East & Africa North America Western Europe Country Markets Argentina, Australia, Brazil, Canada, China, Czech Republic, Denmark, Finla= nd, France, Germany, India, Indonesia, Israel, Italy, Japan, Malaysia, Mex= ico, Norway, Pakistan, Philippines, Poland, Qatar, Russia, Saudi Arabia, Si= ngapore, South Africa, South Korea, Spain, Sweden, Taiwan, Thailand, UAE, U= K, USA Additional forecasts are provided for the following: Wireless M2M connections for the mHealth vertical mHealth centric wearable device shipments Mobile video calling users Annual throughput of mobile network data traffic Smartphone, feature phone, tablet, desktop PC and notebook shipments Mobile network subscriptions by region Cost saving potential of mHealth by region Big Data & analytics technology investments in the healthcare sector Key Questions Answered: The report provides answers to the following key questions: What are the key market drivers and challenges for the mHealth ecosystem=3F What are the key applications of mHealth=3F How is the mHealth value chain structured and how will it evolve overtime=3F What opportunities does mHealth offer to mobile network operators, healthca= re service providers, pharmaceutical companies and other players in the val= ue chain=3F What strategies should mobile network operators, wireless infrastructure & = device OEMs, healthcare service providers, pharmaceutical companies and app= lication developers adopt to capitalize on the mHealth opportunity=3F How big is the mHealth market, and how much revenue will it generate in 202= 0=3F What will be the installed base of mHealth M2M connections in 2020=3F How many mHealth centric wearable devices will be shipped in 2020=3F What particular submarkets does the mHealth ecosystem constitute=3F What geographical regions, countries and submarkets offer the greatest grow= th potential for mHealth=3F Who are the key players in the mHealth market=3F What level of cost savings can mHealth facilitate for healthcare service pr= oviders in each region=3F What are the key applications of LTE in the mHealth market=3F What considerations should be taken into account to devise a successful mHe= althstrategy for a hospital=3F Report Pricing: Single User License: USD 2,500 Company Wide License: USD 3,500 Ordering Process: Please contact Andy Silva on andy.silva@snscommunication.com Provide the following information: 1. Report Title - 2. Report License - (Single User/Company Wide) 3. Name - 4. Email - 5. Job Title - 6. Company - 7. Invoice Address - Please contact me if you have any questions, or wish to purchase a copy. Ta= ble of contents and List of figures mentioned below for your better inside. I look forward to hearing from you. Kind Regards Andy Silva Marketing Executive Signals and Systems Telecom Reef Tower Jumeirah Lake Towers Sheikh Zayed Road Dubai, UAE =20 ___________________________________________________________________________= __________________________________________________________________________ =20 Table of Content =20 1.1 Topics Covered 1.2 Forecast Segmentation 1.3 Key Questions Answered 1.4 Key Findings 1.5 Methodology 1.6 Target Audience 1.7 Companies & Organizations Mentioned =20 Chapter 2: An Overview of mHealth 2.1 What is mHealth=3F 2.2 The Evolution from eHealth to mHealth 2.3 Telemedicine 2.4 Health Informatics 2.5 The mHealth Business Case 2.6 Key Market Drivers 2.6.1 Increasing Penetration of Smartphones, Tablets & Wearables 2.6.2 Proliferation of Mobile Broadband Networks 2.6.3 The Rise of Chronic Diseases 2.6.4 Growing mHealth Applications: Reduction in Lead Time 2.6.5 Government & Regulatory Initiatives 2.6.6 Physicians at Forefront of Mobility Adoption 2.6.7 The Cost Saving Potential of mHealth 2.6.8 Increasing Adoption of Open Source Software 2.6.9 The Role of Developed Economies 2.6.10 The Role of Emerging Economies 2.7 Barriers to Growth 2.7.1 Security/Privacy Concerns & Absence of Legal Guidelines 2.7.2 Regulation & Efficacy of Applications 2.7.3 Operational Maintenance & Control 2.7.4 Human Behavior: Disbelief among Patients 2.7.5 Lack of Clear mHealth Strategies 2.7.6 Funding Challenges 2.8 mHealth Technologies 2.8.1 Smartphones & Tablets 2.8.2 Mobile Apps 2.8.3 Mobile Broadband: The LTE Era 2.8.4 Wearable Body Sensors 2.8.5 M2M Technology 2.8.6 Mobile Video Calling 2.9 mHealth Use Case Categories 2.9.1 Pharmaceutical Applications 2.9.2 Medical Information & Healthcare Management 2.9.3 Healthcare & Fitness 2.9.4 Remote Consultation/Diagnostic Services 2.9.5 M2M, Wearable Technology, Sensor & Monitoring Applications =20 Chapter 3: mHealth Value Chain and Industry Roadmap 3.1 The mHealth Value Chain 3.1.1 Mobile/mHealth Device, Chipset & Infrastructure OEMs 3.1.2 Mobile Network Operators 3.1.3 Healthcare Professionals & Providers 3.1.4 Insurers and Government Health Systems 3.1.5 The Pharmaceutical Industry 3.1.6 Application Developers & Integrators 3.1.7 Patients 3.2 The mHealth Industry Roadmap: 2015 =96 2030 3.2.1 2015 =96 2020: Commercialization of Consumer Centric mHealth Apps &= Devices 3.2.2 2020 =96 2025: Large Scale Proliferation of Remote Video Consultati= ons & Advanced Apps 3.2.3 2025 =96 2030: The Era of mHealth Analytics =20 Chapter 4: mHealth Use Cases 4.1 Pharmaceutical Applications 4.1.1 Safety Data Collection 4.1.2 Consumer Education 4.1.3 Medical Education 4.1.4 Post=96Market Monitoring 4.1.5 Drug Authentication 4.1.6 Social Media 4.1.7 Patient Compliance & Retention: Clinical Trials 4.2 Medical Information & Healthcare Management 4.2.1 Electronic Health/Medical Records & Tracking Tools 4.2.2 Diagnostic Tools & Medical Reference 4.2.3 Continuing Medical Education 4.2.4 Awareness through Alerts 4.2.5 Logistical & Payment Support 4.3 Healthcare & Fitness 4.3.1 Medical Compliance 4.3.2 Fitness & Nutrition Apps 4.3.3 Clinical Decision Support Systems 4.3.4 Prescribable Mobile Apps 4.4 Remote Consultation/Diagnostics Services 4.4.1 Mobile Video Consultations, Collaboration & Surgery 4.4.2 Non=96Video Consultations & Collaboration 4.4.3 Remote Collaboration in Emergency Situations 4.5 M2M, Wearable Technology, Sensor & Monitoring Applications 4.5.1 Health & Wellness Monitoring 4.5.2 Disease Surveillance/Remote Monitoring 4.5.3 Diagnostic Tools 4.5.4 Technical Logistics =20 Chapter 5: mHealth Deployment Case Studies 5.1 Apollo Hospitals Group: Enabling mHealth for the Masses 5.2 AT&T: Connected Healthcare Monitoring for the Elderly 5.3 London Air Ambulance: Utilizing EE=92s 4G LTE Network to Power Navigati= on 5.4 Novartis: Clinical Trials of the Future 5.5 Orange Healthcare: Fighting Counterfeit Drugs using SMS Technology 5.6 Praekelt Foundation: HIV/AIDS Awareness Campaign 5.7 Qualcomm: 3G=96Enabled Kit for Monitoring Asthmatic Children 5.8 Roche: Powering Clinical Trials with Smartphones 5.9 Verizon: Cloud Based Healthcare Management 5.10 WellDoc: Managing Chronic Diseases using Mobile Apps =20 Chapter 6: mHealth Solution Provider Profiles 6.1 270 Vision 6.2 3L Labs 6.3 3M 6.4 4DForce 6.5 4iii Innovations 6.6 Adidas 6.7 Aerotel Medical Systems 6.8 Aetna 6.9 AGFA Healthcare 6.10 AirStrip Technologies 6.11 Alego Health 6.12 Alivecor 6.13 AllScripts Healthcare Solutions 6.14 AMD Global Telemedicine 6.15 Amiigo 6.16 Apple 6.17 Asics 6.18 AT&T 6.19 Atlas Wearables 6.20 AthenaHealth 6.21 Augmendix 6.22 BettrLife 6.23 Bionym 6.24 Biosensics 6.25 Boston Scientific 6.26 Breakthrough Technologies 6.27 Broadcom 6.28 BSX Athletics 6.29 BlackBerry 6.30 BTS Bioengineering 6.31 Cambridge Consultants 6.32 Cambridge Temperature Concepts 6.33 CardioComm Solutions 6.34 CardioNet 6.35 Carre Technologies 6.36 Catapult 6.37 CellTrust Corporation 6.38 Cerner Corporation 6.39 Chetu 6.40 Cisco Systems 6.41 Cityzen Sciences 6.42 Codoon 6.43 Cyberdyne 6.44 DELTA 6.45 DT (Deutsche Telekom) 6.46 DocbookMD 6.47 DorsaVi (ASX) 6.48 Diversinet Corporation 6.49 Dreamtrap Commercials 6.50 EB Sport Group (Sync) 6.51 E=96Clinical Works 6.52 e=96Cycle 6.53 EdanSafe 6.54 Ekso Bionics 6.55 Emotiv Systems 6.56 Epic Systems Corporation 6.57 Epion Health 6.58 Epocrates (Part of Athena Health) 6.59 Ericsson 6.60 European Medical Network (Medical Network EMN AG) 6.61 Evena Medical 6.62 EWA Solutions AB 6.63 Extension Healthcare 6.64 Fatigue Science 6.65 Finis 6.66 Fitbit 6.67 Flyfit 6.68 Freescale Semiconductor 6.69 FRUCT MD 6.70 Garmin 6.71 Gemalto 6.72 GE Healthcare 6.73 Ginger.io 6.74 Google 6.75 GOQii 6.76 GSK (GlaxoSmithKline) 6.77 HealBe 6.78 HealthTechHatch 6.79 Honeywell Life Care Solutions 6.80 Hovding 6.81 HP 6.82 Huawei 6.83 i4C Innovations 6.84 IBM 6.85 ICEdot 6.86 Ideal Life 6.87 iHealth Lab 6.88 Imec 6.89 Imprivata 6.90 Integron Corporation 6.91 Intel Corporation 6.92 InteraXon 6.93 Intermountain Healthcare 6.94 InTouch Health 6.95 Instabeat 6.96 InvenSense 6.97 IQMax 6.98 iRhythm 6.99 Jawbone 6.100 Jaybird 6.101 Johnson & Johnson 6.102 KDDI Corporation 6.103 Ki Performance Lifestyle 6.104 KORE Telematics 6.105 Kreyos 6.106 Lark Technologies 6.107 Lechal 6.108 LG Electronics 6.109 Lumo BodyTech 6.110 Magellan (MiTAC Digital Corporation) 6.111 Medecin Direct 6.112 MedSignals 6.113 Medtronic 6.114 MedWeb 6.115 Melon 6.116 mHealthAlert 6.117 McKinsey & Company 6.118 Microsoft 6.119 Mio Global 6.120 Misfit Wearables 6.121 Moov 6.122 Moticon 6.123 Motion Computing 6.124 Motion Fitness 6.125 Motorola Mobility / Lenovo 6.126 Myontec 6.127 mQure 6.128 NeuroPro 6.129 Nike 6.130 Nonin Medical 6.131 Notch Interfaces 6.132 Novartis 6.133 NTT DoCoMo 6.134 Nuubo 6.135 NZN Labs 6.136 OnLine Tech 6.137 Omron Corporation 6.138 OMsignal 6.139 Optalert 6.140 Orange 6.141 Orpyx Medical Technologies 6.142 O=96Synce 6.143 Owlet Baby Care 6.144 Panasonic Corporation 6.145 Pharmica Consulting 6.146 Philips 6.147 Phyode 6.148 Polar Electro 6.149 Pragmasystems 6.150 Preventice 6.151 Proteus Digital Health 6.152 PUSH Design Solutions 6.153 Qardio 6.154 Qualcomm Life 6.155 Rest Devices 6.156 Roche Holding (F. Hoffmann-La Roche) 6.157 RSLSteeper 6.158 S3 Group 6.159 Samsung 6.160 Sanofi 6.161 Santech 6.162 SAP 6.163 SCOTTY Group 6.164 SenseCore 6.165 Sensible Baby 6.166 Senso Solutions 6.167 Sentimoto 6.168 Seraphim Sense 6.169 Siemens Healthcare 6.170 SK Telecom 6.171 Snaptracs 6.172 SoftBank Corporation 6.173 SoftServe 6.174 Somaxis 6.175 Sonitus Medical 6.176 Sony Corporation 6.177 Sotera Wireless 6.178 STMicroelectronics 6.179 Swissmed Mobile 6.180 Tactio Health Group 6.181 TCS (TeleCommunication Systems) 6.182 Telcare 6.183 Tele2 6.184 Telecom Italia 6.185 Telenor 6.186 TI (Texas Instruments) 6.187 Toshiba Corporation 6.188 Tunstall Healthcare 6.189 U-blox 6.190 Validic (Motivation Science) 6.191 Vancive Medical Technologies 6.192 Vodafone Group 6.193 Verizon 6.194 Vitaphone 6.195 Voxiva 6.196 Wearable Intelligence 6.197 Wellograph 6.198 WellDoc 6.199 Withings 6.200 Xiaomi 6.201 Zephyr Technology Corporation 6.202 Zinc Software 6.203 Zoll Medical Corporation 6.204 Others =20 Chapter 7: Standardization, Regulation & Development Initiatives 7.1 mHealth Alliance 7.2 GSMA=92s mHealth Program 7.3 Global mHealth Initiative 7.4 MRC (mHealth Regulatory Coalition) 7.5 WLSA (Wireless=96Life Services Alliance) 7.6 EuMHA (European mHealth Alliance) 7.7 mHealth Working Group 7.8 mHIMSS 7.9 Others 7.10 HIPAA and its Implications on mHealth =20 Chapter 8: Market Analysis & Forecasts 8.1 Global Outlook of mHealth Revenue: 2015 =96 2030 8.2 Submarket Segmentation 8.3 Pharmaceutical Applications Submarket Revenue: 2015 =96 2030 8.3.1 Safety Data Collection Use Case 8.3.2 Consumer Education Use Case 8.3.3 Medical Education Use Case 8.3.4 Post=96Market Monitoring Use Case 8.3.5 Drug Authentication Use Case 8.3.6 Social Media Use Case 8.3.7 Patient Compliance & Retention (Clinical Trials) Use Case 8.4 Medical Information & Healthcare Management Submarket Revenue: 2015 =96= 2030 8.4.1 Electronic Health/Medical Records & Tracking Tools Use Case 8.4.2 Diagnostic Tools & Medical Reference Use Case 8.4.3 Continuing Medical Education Use Case 8.4.4 Awareness through Alerts Use Case 8.4.5 Logistical & Payment Support Use Case 8.5 Healthcare & Fitness Submarket Revenue: 2015 =96 2030 8.5.1 Medical Compliance Use Case 8.5.2 Fitness & Nutrition Apps Use Case 8.5.3 Clinical Decision Support Systems Use Case 8.5.4 Prescribable Mobile Apps Use Case 8.6 Remote Consultation/Diagnostic Services Submarket Revenue: 2015 =96 2030 8.6.1 Mobile Video Consultations, Collaboration & Surgery Use Case 8.6.2 Non=96Video Consultations & Collaboration Use Case 8.6.3 Remote Collaboration in Emergency Situations Use Case 8.7 M2M, Wearable Technology, Sensor & Monitoring Applications Submarket Re= venue: 2015 =96 2030 8.7.1 Health and Wellness Monitoring Use Case 8.7.2 Disease Surveillance/Remote Monitoring Use Case 8.7.3 Diagnostic Tools Use Case 8.7.4 Technical Logistics Use Case 8.8 Segmentation by Ecosystem Player 8.8.1 Mobile Network Operators/Connectivity Providers 8.8.2 Mobile & mHealth Device OEMs 8.8.3 Content & Application Providers 8.8.4 Healthcare Service Providers 8.8.5 Pharmaceutical Industry 8.9 Regional Outlook 8.10 Asia Pacific mHealth Revenue: 2015 =96 2030 8.10.1 Country Level Segmentation 8.10.2 Australia 8.10.3 China 8.10.4 India 8.10.5 Japan 8.10.6 South Korea 8.10.7 Pakistan 8.10.8 Thailand 8.10.9 Indonesia 8.10.10 Malaysia 8.10.11 Taiwan 8.10.12 Philippines 8.10.13 Singapore 8.10.14 Rest of Asia Pacific 8.11 Eastern Europe mHealth Revenue: 2015 =96 2030 8.11.1 Country Level Segmentation 8.11.2 Czech Republic 8.11.3 Poland 8.11.4 Russia 8.11.5 Rest of Eastern Europe 8.12 Latin & Central America mHealth Revenue: 2015 =96 2030 8.12.1 Country Level Segmentation 8.12.2 Argentina 8.12.3 Brazil 8.12.4 Mexico 8.12.5 Rest of Latin & Central America 8.13 Middle East & Africa mHealth Revenue: 2015 =96 2030 8.13.1 Country Level Segmentation 8.13.2 Israel 8.13.3 Qatar 8.13.4 Saudi Arabia 8.13.5 South Africa 8.13.6 UAE 8.13.7 Rest of the Middle East & Africa 8.14 North America mHealth Revenue: 2015 =96 2030 8.14.1 Country Level Segmentation 8.14.2 USA 8.14.3 Canada 8.15 Western Europe mHealth Revenue: 2015 =96 2030 8.15.1 Country Level Segmentation 8.15.2 Denmark 8.15.3 Finland 8.15.4 France 8.15.5 Germany 8.15.6 Italy 8.15.7 Spain 8.15.8 Sweden 8.15.9 Norway 8.15.10 UK 8.15.11 Rest of Western Europe =20 Chapter 9: Conclusion & Strategic Recommendations 9.1 Are Prescribable Mobile Apps a Threat to the Pharmaceutical Industry=3F 9.2 Will mHealth Requirements Drive HD Mobile Video Deployments=3F 9.3 Is mHealth Security an All=96or=96nothing Decision=3F 9.4 Healthcare Industry Approval & Accreditation: Key to Success 9.5 Maintenance of Low Costs 9.6 Increase of Operational Efficiency 9.7 Collaborations Help in Promoting mHealth 9.8 The Importance of End User Belief 9.9 Wearable Technology: Prospects in the mHealth Ecosystem 9.10 Are Mobile Network Operators Simply Connectivity Providers for mHealth=3F 9.11 Driving Investments in Big Data & Analytics 9.12 Implementing Successful mHealth Strategies in Hospitals 9.13 Strategic Recommendations 9.13.1 Recommendations for Mobile Network Operators 9.13.2 Recommendations for Wireless Infrastructure & Device OEMs 9.13.3 Recommendations for Application Developers 9.13.4 Recommendations for Healthcare Professionals and Providers 9.13.5 Recommendations for the Pharmaceutical Industry =20 List of Figures Figure 1: Global Connected Consumer Mobile Device vs. PC Shipments: 2015 = =96 2030 (Millions of Units) Figure 2: Mobile Network Subscriptions by Region: 2015 =96 2030 (Millions) Figure 3: Annual Global Throughput of Mobile Network Data Traffic by Region= : 2015 =96 2030 (Exabytes) Figure 4: Cost Saving Potential of mHealth by Region: 2015 =96 2030 ($ Mill= ion) Figure 5: M2M Architecture Figure 6: Global Wireless M2M Connections for mHealth Applications: 2015 = =96 2030 (Millions) Figure 7: Global Mobile Video Calling Users: 2015 =96 2030 (Millions) Figure 8: mHealth Use Case Categories Figure 9: The mHealth Value Chain Figure 10: mHealth Industry Roadmap: 2015 =96 2030 Figure 11: Global mHealth Revenue: 2015 =96 2030 ($ Million) Figure 12: Global mHealth Revenue by Submarket: 2015 =96 2030 ($ Million) Figure 13: Global Pharmaceutical Applications Submarket Revenue: 2015 =96 2= 030 ($ Million) Figure 14: Global Pharmaceutical Applications Submarket Revenue by Use Case= Category: 2015 =96 2030 ($ Million) Figure 15: Global Safety Data Collection Use Case Revenue: 2015 =96 2030 ($= Million) Figure 16: Global Consumer Education Use Case Revenue: 2015 =96 2030 ($ Mil= lion) Figure 17: Global Medical Education Use Case Revenue: 2015 =96 2030 ($ Mill= ion) Figure 18: Global Post=96Market Monitoring Use Case Revenue: 2015 =96 2030 = ($ Million) Figure 19: Global Drug Authentication Use Case Revenue: 2015 =96 2030 ($ Mi= llion) Figure 20: Global Social Media Use Case Revenue: 2015 =96 2030 ($ Million) Figure 21: Global Patient Compliance & Retention (Clinical Trials) Use Case= Revenue: 2015 =96 2030 ($ Million) Figure 22: Global Medical Information & Healthcare Management Submarket Rev= enue: 2015 =96 2030 ($ Million) Figure 23: Global Medical Information & Healthcare Management Submarket Rev= enue by Use Case Category: 2015 =96 2030 ($ Million) Figure 24: Global Electronic Health/Medical Records & Tracking Tools Use Ca= se Revenue: 2015 =96 2030 ($ Million) Figure 25: Global Diagnostic Tools & Medical Reference Use Case Revenue: 20= 15 =96 2030 ($ Million) Figure 26: Global Continuing Medical Education Use Case Revenue: 2015 =96 2= 030 ($ Million) Figure 27: Global Awareness through Alerts Use Case Revenue: 2015 =96 2030 = ($ Million) Figure 28: Global Logistical & Payment Support Use Case Revenue: 2015 =96 2= 030 ($ Million) Figure 29: Global Healthcare & Fitness Submarket Revenue: 2015 =96 2030 ($ = Million) Figure 30: Global Healthcare & Fitness Submarket Revenue by Use Case Catego= ry: 2015 =96 2030 ($ Million) Figure 31: Global Medical Compliance Use Case Revenue: 2015 =96 2030 ($ Mil= lion) Figure 32: Global Fitness & Nutrition Apps Use Case Revenue: 2015 =96 2030 = ($ Million) Figure 33: Global Clinical Decision Support Systems Use Case Revenue: 2015 = =96 2030 ($ Million) Figure 34: Global Prescribable Mobile Apps Use Case Revenue: 2015 =96 2030 = ($ Million) Figure 35: Global Remote Consultation/Diagnostic Services Submarket Revenue= : 2015 =96 2030 ($ Million) Figure 36: Global Remote Consultation/Diagnostic Services Submarket Revenue= by Use Case Category: 2015 =96 2030 ($ Million) Figure 37: Global Mobile Video Consultations, Collaboration & Surgery Use C= ase Revenue: 2015 =96 2030 ($ Million) Figure 38: Global Non=96Video Consultations & Collaboration Use Case Revenu= e: 2015 =96 2030 ($ Million) Figure 39: Global Remote Collaboration in Emergency Situations Use Case Rev= enue: 2015 =96 2030 ($ Million) Figure 40: Global M2M, Wearable Technology, Sensor & Monitoring Application= s Submarket Revenue: 2015 =96 2030 ($ Million) Figure 41: Global M2M, Wearable Technology, Sensor & Monitoring Application= s Submarket Revenue by Use Case Category: 2015 =96 2030 ($ Million) Figure 42: Global Health and Wellness Monitoring Use Case Revenue: 2015 =96= 2030 ($ Million) Figure 43: Global Disease Surveillance/Remote Monitoring Use Case Revenue: = 2015 =96 2030 ($ Million) Figure 44: Global Diagnostic Tools Use Case Revenue: 2015 =96 2030 ($ Milli= on) Figure 45: Global Technical Logistics Use Case Revenue: 2015 =96 2030 ($ Mi= llion) Figure 46: Global mHealth Revenue by Ecosystem Player: 2015 =96 2030 ($ Mil= lion) Figure 47: Global Mobile Network Operators/Connectivity Providers mHealth R= evenue: 2015 =96 2030 ($ Million) Figure 48: Global Mobile & mHealth Device OEMs Revenue: 2015 =96 2030 ($ Mi= llion) Figure 49: Global mHealth Content & Application Providers Revenue: 2015 =96= 2030 ($ Million) Figure 50: Global Healthcare Service Providers mHealth Revenue: 2015 =96 20= 30 ($ Million) Figure 51: Global Pharmaceutical Industry mHealth Revenue: 2015 =96 2030 ($= Million) Figure 52: mHealth Revenue by Region: 2015 =96 2030 ($ Million) Figure 53: Asia Pacific mHealth Revenue: 2015 =96 2030 ($ Million) Figure 54: Asia Pacific mHealth Revenue by Country: 2015 =96 2030 ($ Millio= n) Figure 55: Australia mHealth Revenue: 2015 =96 2030 ($ Million) Figure 56: China mHealth Revenue: 2015 =96 2030 ($ Million) Figure 57: India mHealth Revenue: 2015 =96 2030 ($ Million) Figure 58: Japan mHealth Revenue: 2015 =96 2030 ($ Million) Figure 59: South Korea mHealth Revenue: 2015 =96 2030 ($ Million) Figure 60: Pakistan mHealth Revenue: 2015 =96 2030 ($ Million) Figure 61: Thailand mHealth Revenue: 2015 =96 2030 ($ Million) Figure 62: Indonesia mHealth Revenue: 2015 =96 2030 ($ Million) Figure 63: Malaysia mHealth Revenue: 2015 =96 2030 ($ Million) Figure 64: Taiwan mHealth Revenue: 2015 =96 2030 ($ Million) Figure 65: Philippines mHealth Revenue: 2015 =96 2030 ($ Million) Figure 66: Philippines mHealth Revenue: 2015 =96 2030 ($ Million) Figure 67: mHealth Revenue in the Rest of Asia Pacific: 2015 =96 2030 ($ Mi= llion) Figure 68: Eastern Europe mHealth Revenue: 2015 =96 2030 ($ Million) Figure 69: Eastern Europe mHealth Revenue by Country: 2015 =96 2030 ($ Mill= ion) Figure 70: Czech Republic mHealth Revenue: 2015 =96 2030 ($ Million) Figure 71: Poland mHealth Revenue: 2015 =96 2030 ($ Million) Figure 72: Russia mHealth Revenue: 2015 =96 2030 ($ Million) Figure 73: mHealth Revenue in the Rest of Eastern Europe: 2015 =96 2030 ($ = Million) Figure 74: Latin & Central America mHealth Revenue: 2015 =96 2030 ($ Millio= n) Figure 75: Latin & Central America mHealth Revenue by Country: 2015 =96 203= 0 ($ Million) Figure 76: Argentina mHealth Revenue: 2015 =96 2030 ($ Million) Figure 77: Brazil mHealth Revenue: 2015 =96 2030 ($ Million) Figure 78: Mexico mHealth Revenue: 2015 =96 2030 ($ Million) Figure 79: mHealth Revenue in the Rest of Latin & Central America: 2015 =96= 2030 ($ Million) Figure 80: Middle East & Africa mHealth Revenue: 2015 =96 2030 ($ Million) Figure 81: Middle East & Africa mHealth Revenue by Country: 2015 =96 2030 (= $ Million) Figure 82: Israel mHealth Revenue: 2015 =96 2030 ($ Million) Figure 83: Qatar mHealth Revenue: 2015 =96 2030 ($ Million) Figure 84: Saudi Arabia mHealth Revenue: 2015 =96 2030 ($ Million) Figure 85: South Africa mHealth Revenue: 2015 =96 2030 ($ Million) Figure 86: UAE mHealth Revenue: 2015 =96 2030 ($ Million) Figure 87: mHealth Revenue in the Rest of the Middle East & Africa: 2015 = =96 2030 ($ Million) Figure 88: North America mHealth Revenue: 2015 =96 2030 ($ Million) Figure 89: North America mHealth Revenue by Country: 2015 =96 2030 ($ Milli= on) Figure 90: USA mHealth Revenue: 2015 =96 2030 ($ Million) Figure 91: Canada mHealth Revenue: 2015 =96 2030 ($ Million) Figure 92: Western Europe mHealth Revenue: 2015 =96 2030 ($ Million) Figure 93: Western Europe mHealth Revenue by Country: 2015 =96 2030 ($ Mill= ion) Figure 94: Denmark mHealth Revenue: 2015 =96 2030 ($ Million) Figure 95: Finland mHealth Revenue: 2015 =96 2030 ($ Million) Figure 96: France mHealth Revenue: 2015 =96 2030 ($ Million) Figure 97: Germany mHealth Revenue: 2015 =96 2030 ($ Million) Figure 98: Italy mHealth Revenue: 2015 =96 2030 ($ Million) Figure 99: Spain mHealth Revenue: 2015 =96 2030 ($ Million) Figure 100: Sweden mHealth Revenue: 2015 =96 2030 ($ Million) Figure 101: Norway mHealth Revenue: 2015 =96 2030 ($ Million) Figure 102: UK mHealth Revenue: 2015 =96 2030 ($ Million) Figure 103: mHealth Revenue in the Rest of Western Europe: 2015 =96 2030 ($= Million) Figure 104: Global mHealth Centric Wearable Device Shipments: 2015 - 2030 (= Millions of Units) Figure 105: Global Big Data & Analytics Technology Investments in the Healt= hcare Sector: 2015 - 2030 ($ Billion) =20 =20 Thank you once again and looking forward to hearing from you. =20 Kind Regards =20 Andy Silva Marketing Executive Signals and Systems Telecom andy.silva@snscommunication.com Reef Tower Jumeirah Lake Towers Sheikh Zayed Road Dubai, UAE =20 =20 To unsubscribe send an email with unsubscribe in the subject line to: remov= e@snsreports.com From owner-freebsd-gnome@freebsd.org Sat Dec 26 07:20:36 2015 Return-Path: Delivered-To: freebsd-gnome@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 873D9A51EFE for ; Sat, 26 Dec 2015 07:20:36 +0000 (UTC) (envelope-from m-1ebn3j3m02xvi9gmqqmifak3z0v593z6iexmnqthvblphow6wjvfxnk1f0kf6@bounce.linkedin.com) Received: from maile-af.linkedin.com (maile-af.linkedin.com [108.174.3.198]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.linkedin.com", Issuer "DigiCert Secure Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4164F1F32 for ; Sat, 26 Dec 2015 07:20:36 +0000 (UTC) (envelope-from m-1ebn3j3m02xvi9gmqqmifak3z0v593z6iexmnqthvblphow6wjvfxnk1f0kf6@bounce.linkedin.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linkedin.com; s=proddkim1024; t=1451114418; bh=gGFYHTB6nSAy+mm1VogjrsGuDl9Xybxd3uPe6oQlEaw=; h=From:Subject:MIME-Version:Content-Type:To:Date:X-LinkedIn-Class: X-LinkedIn-Template:X-LinkedIn-fbl; b=YOqra6FiMEbrc0OzcMME9mM27aekwDLzMBXN3kYMd3EnNkxVEDwhbWtvnMbOqs/Cf i/lHR8zhfnREeSFbOudCbBFLKVhOnG0qB021PQ5WI6Ekxwl8aei9r5BHl0EL9uPj6Q ubM4IMFWFR4Y1DWn+Eqy4cS1h40gg/y/JPUbmPsY= From: ijecs publication Message-ID: <1675171348.770228.1451114418481.JavaMail.app@lva1-app2212.prod.linkedin.com> Subject: Hi from ijecs MIME-Version: 1.0 To: Date: Sat, 26 Dec 2015 07:20:18 +0000 (UTC) X-LinkedIn-Class: INVITE-GUEST X-LinkedIn-Template: invite_guest X-LinkedIn-fbl: m2-aszp3ge6f82vs9fqxo8pkgtut791w7rjgche7qzo26sfldcv2vk7yvigjj0fl24a5ohcpxh71zwv7c7n6cgzpwjzg88kzkrazjlsfk X-LinkedIn-Id: 0-iims1zfr-zb Content-Type: text/plain;charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Dec 2015 07:20:36 -0000 Hey, Join me and 33 million members from India (400M worldwide) on LinkedIn. Gro= w your career and find job opportunities from India and abroad. -=C2=A0ijecs Accept invite: https://www.linkedin.com/e/v2?e=3D0-iims1zfr-zb&t=3Dssuw&ek= =3Dinvite_guest&li=3D17&m=3Dinvite_guest&ts=3Dindia_d&sharedKey=3DskcdMJs7&= invitationId=3D6086414909728440320 You received an invitation to connect. LinkedIn will use your email address= to make suggestions to our members in features like People You May Know. U= nsubscribe here: https://www.linkedin.com/e/v2?e=3D0-iims1zfr-zb&t=3Dlun&mi= dToken=3DAQFmrFVhGEd36Q&ek=3Dinvite_guest&loid=3DAQGE0lDvfC848gAAAVHdKNCM7R= gn81jOb9i1GpJcG8j3k93v9c9zzKaCQNWi9Tk9unbnOuDJM5ptyfl7B6E79nU&eid=3D0-iims1= zfr-zb This email was sent to freebsd-gnome@freebsd.org. If you need assistance or have questions, please contact LinkedIn Customer = Service: https://www.linkedin.com/e/v2?e=3D0-iims1zfr-zb&a=3DcustomerServic= eUrl&ek=3Dinvite_guest © 2015 LinkedIn Corporation, 2029 Stierlin Court, Mountain View CA 940= 43. LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. From owner-freebsd-gnome@freebsd.org Sat Dec 26 10:45:36 2015 Return-Path: Delivered-To: freebsd-gnome@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 BD172A52727 for ; Sat, 26 Dec 2015 10:45:36 +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 A8D8B140F for ; Sat, 26 Dec 2015 10:45:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id A7AA2A52725; Sat, 26 Dec 2015 10:45:36 +0000 (UTC) Delivered-To: gnome@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 A74D3A52724 for ; Sat, 26 Dec 2015 10:45:36 +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 98BCE13F0 for ; Sat, 26 Dec 2015 10:45:36 +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 tBQAjah1097514 for ; Sat, 26 Dec 2015 10:45:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 205595] textproc/intltool: Script "configure" failed unexpectedly Date: Sat, 26 Dec 2015 10:45:36 +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: bugs.freebsd.org@cheasy.de X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Dec 2015 10:45:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205595 --- Comment #2 from Christoph Sold --- Workaround: Manually installing textproc/p5-XML-Parser fixes the problem. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Sat Dec 26 10:52:15 2015 Return-Path: Delivered-To: freebsd-gnome@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 4C423A528D6 for ; Sat, 26 Dec 2015 10:52:15 +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 380601760 for ; Sat, 26 Dec 2015 10:52:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 36D39A528D5; Sat, 26 Dec 2015 10:52:15 +0000 (UTC) Delivered-To: gnome@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 3585DA528D4 for ; Sat, 26 Dec 2015 10:52:15 +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 2012F175F for ; Sat, 26 Dec 2015 10:52:15 +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 tBQAqErc012541 for ; Sat, 26 Dec 2015 10:52:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 205595] textproc/intltool: Script "configure" failed unexpectedly Date: Sat, 26 Dec 2015 10:52:15 +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: bugs.freebsd.org@cheasy.de X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Dec 2015 10:52:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205595 --- Comment #3 from Christoph Sold --- Curiously, textproc/p5-XML-Parser _is_ contained in the Makefile (see below), but has neither been detected as build target, nor has it been detected by configure. < textproc/intltool/Makefile> # Created by: Ade Lovett # $FreeBSD: head/textproc/intltool/Makefile 393607 2015-08-05 19:13:24Z kwm $ PORTNAME= intltool PORTVERSION= 0.51.0 CATEGORIES= textproc gnome MASTER_SITES= https://launchpad.net/intltool/trunk/$(PORTVERSION)/+download/ DIST_SUBDIR= gnome MAINTAINER= gnome@FreeBSD.org COMMENT= Tools to internationalize various kinds of data files BUILD_DEPENDS= p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser RUN_DEPENDS= p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser USES= iconv gmake perl5 GNU_CONFIGURE= yes .include -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-gnome@freebsd.org Sat Dec 26 17:13:43 2015 Return-Path: Delivered-To: freebsd-gnome@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 A4C34A52978 for ; Sat, 26 Dec 2015 17:13:43 +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 900D219F7 for ; Sat, 26 Dec 2015 17:13:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 8D4AEA52976; Sat, 26 Dec 2015 17:13:43 +0000 (UTC) Delivered-To: gnome@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 8BF51A52975 for ; Sat, 26 Dec 2015 17:13:43 +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 731D619F6 for ; Sat, 26 Dec 2015 17:13:43 +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 tBQHDhNQ082037 for ; Sat, 26 Dec 2015 17:13:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 205595] textproc/intltool: Script "configure" failed unexpectedly Date: Sat, 26 Dec 2015 17:13:43 +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: rkoberman@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? 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-gnome@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Dec 2015 17:13:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205595 rkoberman@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rkoberman@gmail.com --- Comment #4 from rkoberman@gmail.com --- This is a VERY old problem. It may be around a decade old by now. I have spent some time looking into it with no success but it does often seem to be tied to a Perl5 upgrade. Since the workaround (re-install p5-XML-Parser) is pretty trivial, I have never felt it worth a lot of effort to track down. I guess others felt the same way. On the past, the claim was made that people had failed to follow the instructions in UPDATING, but I can assure you that I have done so on several occasions and others have said that they did, as well. -- You are receiving this mail because: You are the assignee for the bug.