From owner-freebsd-gnome@FreeBSD.ORG Sun Nov 4 14:41:01 2012 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7B3EE7AE for ; Sun, 4 Nov 2012 14:41:01 +0000 (UTC) (envelope-from portscout@null.zi0r.com) Received: from null.zi0r.com (null.zi0r.com [71.245.171.204]) by mx1.freebsd.org (Postfix) with ESMTP id 339038FC1D for ; Sun, 4 Nov 2012 14:41:01 +0000 (UTC) Received: from null.zi0r.com (localhost [127.0.0.1]) by null.zi0r.com (8.14.5/8.14.5) with ESMTP id qA4Eeruj061134 for ; Sun, 4 Nov 2012 09:40:53 -0500 (EST) (envelope-from portscout@null.zi0r.com) Received: (from portscout@localhost) by null.zi0r.com (8.14.5/8.14.5/Submit) id qA4EerKH060926; Sun, 4 Nov 2012 09:40:53 -0500 (EST) (envelope-from portscout) Message-Id: <201211041440.qA4EerKH060926@null.zi0r.com> MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain Date: Sun, 4 Nov 2012 09:40:53 -0500 From: portscout@portscout.zi0r.com 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.14 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, 04 Nov 2012 14:41:01 -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 ------------------------------------------------+-----------------+------------ audio/pulseaudio | 0.9.23 | 2.99.1 ------------------------------------------------+-----------------+------------ deskutils/gnote | 0.7.6 | 3.7.0 ------------------------------------------------+-----------------+------------ textproc/link-grammar | 4.7.4 | 4.7.9 ------------------------------------------------+-----------------+------------ 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 If wish to stop receiving portscout reminders, please contact portscout@portscout.freebsd.org Thanks. From owner-freebsd-gnome@FreeBSD.ORG Sun Nov 4 14:56:12 2012 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CE0B9311 for ; Sun, 4 Nov 2012 14:56:12 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from ainaz.pair.com (ainaz.pair.com [209.68.2.66]) by mx1.freebsd.org (Postfix) with ESMTP id A83EA8FC12 for ; Sun, 4 Nov 2012 14:56:12 +0000 (UTC) Received: from [192.168.0.129] (vie-188-118-240-184.dsl.sil.at [188.118.240.184]) by ainaz.pair.com (Postfix) with ESMTPSA id 601F43F40F for ; Sun, 4 Nov 2012 09:56:11 -0500 (EST) Date: Sun, 4 Nov 2012 15:56:14 +0100 (CET) From: Gerald Pfeifer To: gnome@FreeBSD.org Subject: Re: PATCH: fontconfig: don't run ${LDCONFIG} as user, or at least don't abort In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 04 Nov 2012 14:56:12 -0000 I now applied the second patch after maintainer timeout. If you prefer, the first patch still could be factored in to do this conditionally as Mk/bsd.port.mk does. Though I am wondering whether this really shouldn't be handled differently (more by the general ports infrastructure). Gerald On Sun, 5 Aug 2012, Gerald Pfeifer wrote: > In a test environment of mine I am installing packages as ordinary > user, with INSTALL_AS_USER=1. > > Now, I actually would have thought that the ports/Mk infrastructure > takes care of running ${LDCONFIG} at the right point in time, but in > any case, the two patches below both fix the failure in post-install. > > The second is more in line with what Mk/bsd.port.mk does for the > plist -- @exec ${LDCONFIG} -m ${USE_LDCONFIG} || ${TRUE} -- and is > the one I'd recommend. > > Okay? > > Gerald > > Index: fontconfig/Makefile > =================================================================== > RCS file: /home/pcvs/ports/x11-fonts/fontconfig/Makefile,v > retrieving revision 1.80 > diff -u -r1.80 Makefile > --- fontconfig/Makefile 20 May 2012 17:40:21 -0000 1.80 > +++ fontconfig/Makefile 5 Aug 2012 04:01:01 -0000 > @@ -61,9 +61,10 @@ > s|%%LOCALBASE%%|${LOCALBASE}|' < ${FILESDIR}/pkg-install.in \ > > ${PKGINSTALL} > .if !defined(PACKAGE_BUILDING) > +. if !defined(INSTALL_AS_USER) > @${LDCONFIG} -m ${PREFIX}/lib > +. endif > @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL > - > .endif > > .include > > > Index: fontconfig/Makefile > =================================================================== > RCS file: /home/pcvs/ports/x11-fonts/fontconfig/Makefile,v > retrieving revision 1.80 > diff -u -r1.80 Makefile > --- fontconfig/Makefile 20 May 2012 17:40:21 -0000 1.80 > +++ fontconfig/Makefile 5 Aug 2012 04:16:09 -0000 > @@ -61,7 +61,7 @@ > s|%%LOCALBASE%%|${LOCALBASE}|' < ${FILESDIR}/pkg-install.in \ > > ${PKGINSTALL} > .if !defined(PACKAGE_BUILDING) > - @${LDCONFIG} -m ${PREFIX}/lib > + -@${LDCONFIG} -m ${PREFIX}/lib > @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL > > .endif > From owner-freebsd-gnome@FreeBSD.ORG Sun Nov 4 15:19:15 2012 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 64EEFD6C for ; Sun, 4 Nov 2012 15:19:15 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-la0-f54.google.com (mail-la0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id D198C8FC14 for ; Sun, 4 Nov 2012 15:19:14 +0000 (UTC) Received: by mail-la0-f54.google.com with SMTP id e12so4490328lag.13 for ; Sun, 04 Nov 2012 07:19:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=tIzkOaTKAyQPRFXfZEtWwEP51nVOHwrkc1KoEaDL0/I=; b=sgwEsZC0BK+2tjIYj55ZprwbxP2CdKwsjE5YyvrlvwmSV1j2B68eCbmW69joKraMvG Z2yYO/Z7x8BPBxj1iOOxYXBqYtrNeYp/zP23i+rCKXFKyFHS7bAKZxAL2wua6KpFu3D7 YdXuz+0mq9GjdQhgVLxDwMXiuCKNNQ6Rk5Atk= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:x-gm-message-state; bh=tIzkOaTKAyQPRFXfZEtWwEP51nVOHwrkc1KoEaDL0/I=; b=PifZ8DomSWQoxqC0K2so+xU5IOoptQhQp9aL5Xep8TGJhy2VUJJcNlNWszNVkjw7iC WMI2bQoUU1ajFP3Z4E2GAc2cI0+xh/esPa+xkuHrLp6woUVjJYua/QbI2FURX8oQBjY/ /a3HJ9isTMS+cmMv42x4fZ82GfmOIN2IObwtWNnM/676Q0RslILksfAOJlKTWMySixov aqBO9rCGPIqHzljT1gR+P0Zk0G827zzfeCnPM87ox5VLr2J6ninnAUwZy7Chykcc18jy 8DS9BfSgeTFHcrU80J0p8LZYBJ/LWRhn+s6Q7arqnnX0Mi9WVHJMI5QrJq2yyQc7sqFC 6wYw== Received: by 10.152.103.243 with SMTP id fz19mr6787282lab.27.1352042352998; Sun, 04 Nov 2012 07:19:12 -0800 (PST) MIME-Version: 1.0 Received: by 10.112.25.166 with HTTP; Sun, 4 Nov 2012 07:18:42 -0800 (PST) In-Reply-To: References: From: Eitan Adler Date: Sun, 4 Nov 2012 10:18:42 -0500 Message-ID: Subject: Re: PATCH: fontconfig: don't run ${LDCONFIG} as user, or at least don't abort To: Gerald Pfeifer Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQmSEpy9YkPXnR8R0aiMI2yntquDEh348E+MjMzmXKs/LVnVk1j2BqftL9sQWk/0GRBF0n/8 Cc: gnome@freebsd.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 04 Nov 2012 15:19:15 -0000 On 4 November 2012 09:56, Gerald Pfeifer wrote: > I now applied the second patch after maintainer timeout. If you prefer, > the first patch still could be factored in to do this conditionally as > Mk/bsd.port.mk does. > > Though I am wondering whether this really shouldn't be handled > differently (more by the general ports infrastructure). +1 Perhaps LDCONFIG come become "true" when run from INSTALL_AS_USER ? -- Eitan Adler From owner-freebsd-gnome@FreeBSD.ORG Mon Nov 5 11:06:47 2012 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 63128DF0 for ; Mon, 5 Nov 2012 11:06:47 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 45C4A8FC16 for ; Mon, 5 Nov 2012 11:06:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id qA5B6lVn001518 for ; Mon, 5 Nov 2012 11:06:47 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id qA5B6kfX001516 for gnome@FreeBSD.org; Mon, 5 Nov 2012 11:06:46 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 5 Nov 2012 11:06:46 GMT Message-Id: <201211051106.qA5B6kfX001516@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: gnome@FreeBSD.org Subject: Current problem reports assigned to gnome@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 05 Nov 2012 11:06:47 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/173274 gnome devel/glib20: Update to 2.33.8 o ports/173249 gnome devel/gamin: Allow building with newer versions of dev o ports/172819 gnome destination of x11-fonts/bitstream-vera o ports/172645 gnome graphics/gimp is outdated o ports/172487 gnome x11/zenity update (version and options framework) o ports/172371 gnome x11/yelp -- Build failure o ports/172177 gnome Missing run time dependencies in devel/xdg-utils o ports/172157 gnome x11/babl: Version 0.1.10 avaialble and usable o ports/171676 gnome Update devel/glib20 to 2.32.4 o ports/171616 gnome audio/esound: small hardcoded read/write timeouts o ports/171553 gnome accessibility/orca has no speech server o ports/171530 gnome x11/yelp: no longer builds with new libxul port o ports/171381 gnome [patch] finance/gnucash fails to generate and install o ports/171306 gnome Port deskutils/hamster-applet depends on port devel/py o ports/171302 gnome net/ekiga3 won't build with KDE4 o ports/170895 gnome upgrade lang/vala to 0.17.5 (first step to unbreak net o ports/170737 gnome x11-toolkits/gtk20 GTK based application crashes very o ports/170434 gnome [patch] Correct devel/py-gobject Dependency Declaratio o ports/170191 gnome x11/zenity o ports/170032 gnome Some ports not bumped after libogg update o ports/170031 gnome Many GNOME ports not bumped after libogg update o ports/169650 gnome [patch] graphics/gimp-app: do not depend on -lexecinfo o ports/169649 gnome [patch] graphics/gegl: do not depend on -lexecinfo, it o ports/169512 gnome [PATCH] x11/yelp update-desktop-database after install o ports/169343 gnome [patch] graphics/cairo: add qt4 surface o ports/169328 gnome net/avahi-app unconditionally overwrites modified conf o ports/168835 gnome graphics/inkscape 0.48.2 will crash throwing exception o ports/168568 gnome x11-toolkits/gtk20 fails to build (minor bug in port) o ports/168464 gnome [patch] graphics/gegl: prevent automake-1.11 rerun f ports/168427 gnome needs path prefix in RUN_DEPENDS in ports-mgmt/package o ports/168220 gnome [patch] misc/shared-mime-info: do not register auto-ge o ports/167645 gnome x11/gnome2: Cannot see KDE software on GNOME applicati o ports/167199 gnome x11-fm/nautilus 2.32.2.1 Gnome2.32 Doesn't auto mount s ports/165227 gnome [UPDATE] libgsf-1.14.22, goffice-0.9.1, gnumeric-1.11. o ports/164222 gnome switching users in gnome3 invokes sanity check f ports/163722 gnome sysutils/gnome-settings-daemon: crash with abort trap p ports/162227 gnome [patch] devel/glade3: update to 3.8.0 o ports/161676 gnome databases/libgda4: [UPDATE] to 4.2.9; improvements o ports/161494 gnome devel/anjuta: gmake[3]: Entering directory `/usr/ports p ports/161164 gnome [PATCH] devel/glade3: update to 3.10.0 p ports/160490 gnome [PATCH] x11-toolkits/gtk20: drag and drop broken in vn p ports/159928 gnome Updates graphics/clutter to 1.6.16 a ports/159613 gnome [PATCH] misc/gnomehier: use dirrmtry for PREFIX/share/ f ports/148244 gnome x11/gnome2: gnome desktop and HAL prevent umount witho s ports/145301 gnome [patch] sysutils/hal: /usr/local/etc/rc.d/hald startup 45 problems total. From owner-freebsd-gnome@FreeBSD.ORG Mon Nov 5 13:59:20 2012 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B3351D99 for ; Mon, 5 Nov 2012 13:59:20 +0000 (UTC) (envelope-from peter@vereshagin.org) Received: from mx1.skyriver.ru (ns1.skyriver.ru [89.108.118.221]) by mx1.freebsd.org (Postfix) with ESMTP id 69E558FC15 for ; Mon, 5 Nov 2012 13:59:19 +0000 (UTC) Received: from localhost (unknown [93.182.129.86]) by mx1.skyriver.ru (Postfix) with ESMTPSA id B99DD5AEB; Mon, 5 Nov 2012 17:59:07 +0400 (MSK) Date: Mon, 5 Nov 2012 17:58:39 +0400 From: Peter Vereshagin To: epiphany-list@gnome.org, gnome@freebsd.org Subject: Re: libproxy disuse? Message-ID: <20121105135839.GA5328@external.screwed.box> References: <20121030154334.GB7109@external.screwed.box> <63edbe84daa03f16937c275a3745f051@vanschouwen.info> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <63edbe84daa03f16937c275a3745f051@vanschouwen.info> Organization: ' X-Face: 8T>{1owI$Byj]]a; ^G]kRf*dkq>E-3':F>4ODP[#X4s"dr?^b&2G@'3lukno]A1wvJ_L(~u 6>I2ra/<,j1%@C[LN=>p#_}RIV+#:KTszp-X$bQOj,K X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 05 Nov 2012 13:59:20 -0000 Hello. 2012/11/05 13:43:35 +0100 Reinout van Schouwen => To epiphany-list@gnome.org : RvS> > epiphany-2.30.6_3 libproxy-0.4.6 RvS> RvS> That epiphany version is obsolete. Please try if the problem still RvS> exists in the latest release (3.6.x) and file a bug at RvS> http://bugzilla.gnome.org/ if that is the case. Sure. Shall give a try especially if no gnome3 libraries are required. There is no mention about the latest version on Epiphany's web site. Without counting 2.90's, the 2.30.6 seems to be the latest of the 'stable' versions while 3.7.1 is a 'current' one as I see from from the git tags list: http://git.gnome.org/browse/epiphany/refs/tags I'd like to have an idea if this is an issue to be reported and where to by a former Galeon user. :) Just have an ajax app that works badly in midori but 'just fine' in epiphany. And, need a proxy. I think I'd try a patch for this particular bug. Does it exist? Think it's just the same luck as to try epiphany3. -- Peter Vereshagin (http://vereshagin.org) pgp: A0E26627 From owner-freebsd-gnome@FreeBSD.ORG Mon Nov 5 14:41:39 2012 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A48A6A4E for ; Mon, 5 Nov 2012 14:41:39 +0000 (UTC) (envelope-from portscout@null.zi0r.com) Received: from null.zi0r.com (null.zi0r.com [71.245.171.204]) by mx1.freebsd.org (Postfix) with ESMTP id 5D5288FC17 for ; Mon, 5 Nov 2012 14:41:39 +0000 (UTC) Received: from null.zi0r.com (localhost [127.0.0.1]) by null.zi0r.com (8.14.5/8.14.5) with ESMTP id qA5EfcWm075912 for ; Mon, 5 Nov 2012 09:41:38 -0500 (EST) (envelope-from portscout@null.zi0r.com) Received: (from portscout@localhost) by null.zi0r.com (8.14.5/8.14.5/Submit) id qA5EfccZ075722; Mon, 5 Nov 2012 09:41:38 -0500 (EST) (envelope-from portscout) Message-Id: <201211051441.qA5EfccZ075722@null.zi0r.com> MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain Date: Mon, 5 Nov 2012 09:41:38 -0500 From: portscout@portscout.zi0r.com 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.14 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, 05 Nov 2012 14:41:39 -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 ------------------------------------------------+-----------------+------------ devel/gio-fam-backend | 2.28.8 | 2.35.1 ------------------------------------------------+-----------------+------------ devel/glib20 | 2.28.8 | 2.35.1 ------------------------------------------------+-----------------+------------ devel/glib20-reference | 2.28.8 | 2.35.1 ------------------------------------------------+-----------------+------------ devel/glibmm-reference | 2.28.2 | 2.34.1 ------------------------------------------------+-----------------+------------ x11-toolkits/gtk20 | 2.24.6 | 3.7.0 ------------------------------------------------+-----------------+------------ x11-toolkits/gtk20-reference | 2.24.6 | 3.7.0 ------------------------------------------------+-----------------+------------ 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 If wish to stop receiving portscout reminders, please contact portscout@portscout.freebsd.org Thanks. From owner-freebsd-gnome@FreeBSD.ORG Tue Nov 6 02:35:34 2012 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 29656CEB for ; Tue, 6 Nov 2012 02:35:34 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-lb0-f182.google.com (mail-lb0-f182.google.com [209.85.217.182]) by mx1.freebsd.org (Postfix) with ESMTP id 990528FC1A for ; Tue, 6 Nov 2012 02:35:33 +0000 (UTC) Received: by mail-lb0-f182.google.com with SMTP id b5so31066lbd.13 for ; Mon, 05 Nov 2012 18:35:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:from:date:message-id:subject:to:content-type; bh=jfaz1UisYtHoSSsn9kljsSVhLZxjlFQ9vHEZqnPHtJA=; b=edbsKlZs5evolHt5elUY7ddOAVbujHMSozy/OcLQMaYRgfCzQqpQ/OM1eNC0i++MSU uCPQrhBxLSJfJmI1W21actyw60T5ADTBm12NLbbVpiO1Np5pKufpRMB2hpvoMOgS2CFn rGNC147S6k4h3Ryyx2xIxW88gKOsHHPMQlGLw= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type :x-gm-message-state; bh=jfaz1UisYtHoSSsn9kljsSVhLZxjlFQ9vHEZqnPHtJA=; b=ctkBJwprWUbflspkt/E39eZj8qLnW54I4uuWZKtiUSQQ5nbFAdVUqUDTZ/IRmxM72k Jegi7qYLZ5pFzGCZlke0vbbz5u5c360xCV2a14rOkhpVt7h65DS3kAj1W6sg7AFI2/ao WsLoc/0J+Z02kTvSn8Soso0TxxxzHt5GpHth7bL35wxk++zYwZvybxMeg5m6Z4/DOBjK EdZCwyLW7SFsPD/gXqfUeJQR0MJ6A85W1BHNj+mUjW6DgzUjMRr2Dh/oTwmnf1OdX/hv xnMSe9jJPL+aGXsiwYDV5pidBFZEopvWgEKodNyW3OuQlj0EwaJeAgdrJZ2xu+p+9Fkz dZrw== Received: by 10.152.102.234 with SMTP id fr10mr11081258lab.28.1352169332383; Mon, 05 Nov 2012 18:35:32 -0800 (PST) MIME-Version: 1.0 Received: by 10.112.25.166 with HTTP; Mon, 5 Nov 2012 18:35:00 -0800 (PST) From: Eitan Adler Date: Mon, 5 Nov 2012 21:35:00 -0500 Message-ID: Subject: gnome news page & other obsolete pages To: gnome@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQnr03VbvA8ndRPdTGpiUzACidy2xQLVfKNYGiD2GPrDATesMv6ApEVsCyRzxwVmwfjrFPRv X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 06 Nov 2012 02:35:34 -0000 Does gnome@ have any plans to use http://www.freebsd.org/gnome/newsflash.html ? Would anyone object if I removed it? Same with http://www.freebsd.org/gnome/docs/faq232.html ? -- Eitan Adler From owner-freebsd-gnome@FreeBSD.ORG Tue Nov 6 14:40:10 2012 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 53D818C9 for ; Tue, 6 Nov 2012 14:40:10 +0000 (UTC) (envelope-from portscout@portscout.zi0r.com) Received: from null.zi0r.com (null.zi0r.com [71.245.171.204]) by mx1.freebsd.org (Postfix) with ESMTP id 129148FC1D for ; Tue, 6 Nov 2012 14:40:09 +0000 (UTC) Received: from null.zi0r.com (localhost [127.0.0.1]) by null.zi0r.com (8.14.5/8.14.5) with ESMTP id qA6Ee9Hr003881 for ; Tue, 6 Nov 2012 09:40:09 -0500 (EST) (envelope-from portscout@portscout.zi0r.com) Received: (from portscout@localhost) by null.zi0r.com (8.14.5/8.14.5/Submit) id qA6Ee9rE003854; Tue, 6 Nov 2012 09:40:09 -0500 (EST) (envelope-from portscout) Message-Id: <201211061440.qA6Ee9rE003854@null.zi0r.com> MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain Date: Tue, 6 Nov 2012 09:40:09 -0500 From: portscout@portscout.zi0r.com 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.14 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, 06 Nov 2012 14:40:10 -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 ------------------------------------------------+-----------------+------------ devel/glibmm | 2.28.2 | 2.34.1 ------------------------------------------------+-----------------+------------ graphics/gtk-update-icon-cache | 2.24.6 | 3.7.0 ------------------------------------------------+-----------------+------------ 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 If wish to stop receiving portscout reminders, please contact portscout@portscout.freebsd.org Thanks. From owner-freebsd-gnome@FreeBSD.ORG Tue Nov 6 16:37:37 2012 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8A44DC74 for ; Tue, 6 Nov 2012 16:37:37 +0000 (UTC) (envelope-from bounce_ac9@equilibrix.com) Received: from mail4.equilibrix.com (mail4.equilibrix.com [65.182.207.33]) by mx1.freebsd.org (Postfix) with ESMTP id 5BA528FC08 for ; Tue, 6 Nov 2012 16:37:36 +0000 (UTC) Received: from [108.163.198.66] (108.163.198.66) by mail4.equilibrix.com id hj4ucs1e2lk4 for ; Tue, 6 Nov 2012 11:32:23 -0500 (envelope-from ) To: From: North American Bancard NY Subject: Merchant Account rates as low as 1.03% - Ask Empire NAB how! Date: Tue, 06 Nov 2012 10:29:16 -0600 MIME-Version: 1.0 SUBSID: 9341223 X-mid: Z25vbWVAZnJlZWJzZC5vcmcgLCBjNDY1MiAsIG00NjAyICwgczE5MDU0 X-Mailer: ACEM X-Sender: Message-ID: <20121106163224.16887.1055747216.swift@server.equilibrix.com> Content-Type: text/plain; charset=utf-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 06 Nov 2012 16:37:37 -0000 EMPIRENAB Do you really know what your rate is? Or you think so Let EMPIRE NAB evaluate your current rate and service fees. Our low rates can save you $$ We specialize in flexible terms, fast approvals, award winning customer support and $500 if we can't lower your current rates tremendously. Our rates are as low as 1.03% Free Terminals Custom Gift Cards Available http://server.equilibrix.com/ac/lt.php?c=4652&m=4602&nl=266&s=ac7890b801979132de6523f33b3a1edc&lid=35999&l=-http--www.empirenab.com For a complimentary evaluation call Nan Bandoh 866-517-4558 From owner-freebsd-gnome@FreeBSD.ORG Wed Nov 7 08:28:19 2012 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5851AB6F for ; Wed, 7 Nov 2012 08:28:19 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from portsmonj.FreeBSD.org (portsmonj.freebsd.org [69.147.83.46]) by mx1.freebsd.org (Postfix) with ESMTP id 4405A8FC1C for ; Wed, 7 Nov 2012 08:28:19 +0000 (UTC) Received: from portsmonj.freebsd.org (portsmonj.freebsd.org [69.147.83.46]) by portsmonj.FreeBSD.org (8.14.5/8.14.4) with ESMTP id qA78SJmD064599 for ; Wed, 7 Nov 2012 08:28:19 GMT (envelope-from linimon@FreeBSD.org) Date: Wed, 7 Nov 2012 08:28:19 GMT Message-Id: <201211070828.qA78SJmD064599@portsmonj.FreeBSD.org> From: linimon@FreeBSD.org To: gnome@FreeBSD.org Subject: FreeBSD ports that you maintain which are currently marked broken X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Nov 2012 08:28:19 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically notify users of ports that are marked as "broken" in their Makefiles. In many cases these ports are failing to compile on some subset of the FreeBSD build environments. The most common problem is that recent versions of -CURRENT include gcc4.2, which is much stricter than older versions. The next most common problem is that compiles succeed on the i386 architecture (e.g. the common Intel PC), but fail on one or more of the other architectures due to assumptions about things such as size of various types, byte-alignment issues, and so forth. In occasional cases we see that the same port may have different errors in different build environments. The script that runs on the build cluster uses heuristics to try to 'guess' the error type to help you isolate problems, but it is only a rough guide. One more note: on occasion, there are transient build errors seen on the build farm. Unfortunately, there is not yet any way for this algorithm to tell the difference (humans are much, much better at this kind of thing.) The errors are listed below. In the case where the same problem exists on more than one build environment, the URL points to the latest errorlog for that type. (By 'build environment' here we mean 'combination of 7.x/8.x/9.x/-current with target architecture'.) (Note: the dates are included to help you to gauge whether or not the error still applies to the latest version. The program that generates this report is not yet able to determine this automatically.) portname: graphics/py-clutter broken because: bad plist build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.8.20120812220927/py27-clutter-1.0.2_3.log (_Aug_19_04:43:00_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=py-clutter portname: x11/gnome-shell broken because: Doesn't build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=gnome-shell If these errors are ones that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Every effort has been made to make sure that these error reports really do correspond to a port that you maintain. However, due to the fact that this is an automated process, it may indeed generate false matches. If one of these errors fits that description, please forward this email to the author of this software, Mark Linimon , so that he can attempt to fix the problem in the future. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-gnome@FreeBSD.ORG Wed Nov 7 08:29:25 2012 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 17F84DF9 for ; Wed, 7 Nov 2012 08:29:25 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from portsmonj.FreeBSD.org (portsmonj.freebsd.org [69.147.83.46]) by mx1.freebsd.org (Postfix) with ESMTP id 03CE78FC1D for ; Wed, 7 Nov 2012 08:29:25 +0000 (UTC) Received: from portsmonj.freebsd.org (portsmonj.freebsd.org [69.147.83.46]) by portsmonj.FreeBSD.org (8.14.5/8.14.4) with ESMTP id qA78TP2S071599 for ; Wed, 7 Nov 2012 08:29:25 GMT (envelope-from linimon@FreeBSD.org) Date: Wed, 7 Nov 2012 08:29:25 GMT Message-Id: <201211070829.qA78TP2S071599@portsmonj.FreeBSD.org> From: linimon@FreeBSD.org To: gnome@FreeBSD.org Subject: FreeBSD ports that you maintain which are currently scheduled for deletion X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Nov 2012 08:29:25 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically schedule removal of ports that have been judged to have outlived their usefulness. Often, this is due to a better alternative having become available and/or the cessation of development on the existing port. In some cases, ports are marked for removal because they fail to build and install correctly from their sources, or otherwise fail in operation. The ports, and the reason and date that they have been scheduled for removal, are listed below. If no one has stepped forward before that time to propose a way to fix the problems (such as via a PR), the ports will be deleted. portname: editors/glimmer description: A full featured code editor for GNOME with many advanced features maintainer: gnome@FreeBSD.org deprecated because: Depends on the expired gtkglarea through py-gtk expiration date: 2012-11-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=glimmer portname: x11-toolkits/py-gtk description: A set of Python bindings for GTK maintainer: gnome@FreeBSD.org deprecated because: Depends on the expired gtkglarea expiration date: 2012-11-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=py-gtk If this problem is one that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-gnome@FreeBSD.ORG Thu Nov 8 10:22:27 2012 Return-Path: Delivered-To: freebsd-gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ED4C1E67 for ; Thu, 8 Nov 2012 10:22:27 +0000 (UTC) (envelope-from dleg@free.fr) Received: from smtp4-g21.free.fr (smtp4-g21.free.fr [IPv6:2a01:e0c:1:1599::13]) by mx1.freebsd.org (Postfix) with ESMTP id 527058FC18 for ; Thu, 8 Nov 2012 10:22:25 +0000 (UTC) Received: from merisier.infomultien.fr (unknown [88.176.109.102]) by smtp4-g21.free.fr (Postfix) with ESMTP id 9F6934C8049 for ; Thu, 8 Nov 2012 11:22:19 +0100 (CET) Message-ID: <509B87D1.9090909@free.fr> Date: Thu, 08 Nov 2012 11:22:09 +0100 From: Didier LEGRAND User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121108 Thunderbird/16.0.2 MIME-Version: 1.0 To: freebsd-gnome@FreeBSD.org Subject: Bug 657949 - Update of gtk2 (2.24.5-3 -> 2.24.6-1) renders File >Save >"Choose Format" list unreadable X-Enigmail-Version: 1.4.5 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigBC15869AC2B85A4B8F4AE3DC" X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 08 Nov 2012 10:22:28 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigBC15869AC2B85A4B8F4AE3DC Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Dear FreeBSD Gnome Maintainers, As you can see on the subject line of my e-mail, the Gtk2 release of the current port tree contains a severe bug which was corrected since the 2.24.7 release. https://bugzilla.gnome.org/show_bug.cgi?id=3D657949 Is it possible to update the port tree with this release or a more recent one ? Please excuse my bad English (I'm french). Sincerely yours. --=20 Didier LEGRAND Email : dleg@free.fr --------------enigBC15869AC2B85A4B8F4AE3DC Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) Comment: Using GnuPG with Mozilla - http://www.enigmail.net/ iEYEARECAAYFAlCbh9kACgkQXiakafcsUENR2gCdFOOjB0pnL1X1tsDLG0A/JHpZ dyEAnRuoAcTYxBlwhw6dXngjmhsflZMl =+HDE -----END PGP SIGNATURE----- --------------enigBC15869AC2B85A4B8F4AE3DC-- From owner-freebsd-gnome@FreeBSD.ORG Thu Nov 8 10:58:17 2012 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E2CAF39D for ; Thu, 8 Nov 2012 10:58:17 +0000 (UTC) (envelope-from kwm@rainbow-runner.nl) Received: from fep12.mx.upcmail.net (fep12.mx.upcmail.net [62.179.121.32]) by mx1.freebsd.org (Postfix) with ESMTP id 2AAF48FC0A for ; Thu, 8 Nov 2012 10:58:16 +0000 (UTC) Received: from edge03.upcmail.net ([192.168.13.238]) by viefep12-int.chello.at (InterMail vM.8.01.05.05 201-2260-151-110-20120111) with ESMTP id <20121108105810.QJKS2716.viefep12-int.chello.at@edge03.upcmail.net>; Thu, 8 Nov 2012 11:58:10 +0100 Received: from [127.0.0.1] ([178.84.132.32]) by edge03.upcmail.net with edge id Lyy91k0160i5fp603yy9qj; Thu, 08 Nov 2012 11:58:10 +0100 X-SourceIP: 178.84.132.32 Message-ID: <509B903F.6060203@rainbow-runner.nl> Date: Thu, 08 Nov 2012 11:58:07 +0100 From: Koop Mast User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20121026 Thunderbird/16.0.2 MIME-Version: 1.0 To: Didier LEGRAND Subject: Re: Bug 657949 - Update of gtk2 (2.24.5-3 -> 2.24.6-1) renders File >Save >"Choose Format" list unreadable References: <509B87D1.9090909@free.fr> In-Reply-To: <509B87D1.9090909@free.fr> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 121107-1, 07-11-2012), Outbound message X-Antivirus-Status: Clean Cc: freebsd-gnome@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 08 Nov 2012 10:58:17 -0000 On 8-11-2012 11:22, Didier LEGRAND wrote: > Dear FreeBSD Gnome Maintainers, > > As you can see on the subject line of my e-mail, the Gtk2 release of the > current port tree contains a severe bug which was corrected since the > 2.24.7 release. > > https://bugzilla.gnome.org/show_bug.cgi?id=657949 > > Is it possible to update the port tree with this release or a more > recent one ? > > Please excuse my bad English (I'm french). > > Sincerely yours. > This is all ready planned, glib and gtk 2 and gtk 3. Specificly gtk20 will get a update to the latest (2.14.13). All this will happen after FreeBSD 9.1 is released. -Koop From owner-freebsd-gnome@FreeBSD.ORG Thu Nov 8 12:27:42 2012 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 064D3712 for ; Thu, 8 Nov 2012 12:27:42 +0000 (UTC) (envelope-from otacilio.neto@bsd.com.br) Received: from mail-gg0-f182.google.com (mail-gg0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id A96A28FC08 for ; Thu, 8 Nov 2012 12:27:40 +0000 (UTC) Received: by mail-gg0-f182.google.com with SMTP id l1so568795ggn.13 for ; Thu, 08 Nov 2012 04:27:40 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:x-enigmail-version:content-type :content-transfer-encoding:x-gm-message-state; bh=MkJhgc6yoBdgmDU8TDPhqGFpl1IWvxpOhGDb8VMGbOE=; b=PROF7V/y3fXziLIfjzTunSvXQdHS0959GkSwTudnd7r57yT5AObZitJBL+WFrkVp5Q tcJdKqwfK8Yj3ecF5gE9iO/VDpx8gV20A75M+klGUcPzi8t+Wvle5RvkUL2rK9AiTcNa EomyxcrGZAj3bXJvGmxmdt6iLa7NrjNQJtvOEo1Cdxl/ANQ/Oir3Vy+sh4KYCSTakFLN 0EGtYST4TUKqfibemEMDG0PqyT7NDfQqCFf2FF0r4+BZC8CuwvuKu0ISRwkyGiNhrPO8 +LKTEuCBBA3bBSAoJl3wQhoNGloMf+DzoSxq4sn3/sVbS0aJoNQBI2cbSGbK9jhQ5nEG Yemg== Received: by 10.101.106.33 with SMTP id i33mr2305975anm.51.1352377660081; Thu, 08 Nov 2012 04:27:40 -0800 (PST) Received: from [192.168.1.114] ([150.165.130.201]) by mx.google.com with ESMTPS id g2sm26657192yhj.9.2012.11.08.04.27.37 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 08 Nov 2012 04:27:39 -0800 (PST) Message-ID: <509BA52C.4040708@bsd.com.br> Date: Thu, 08 Nov 2012 09:27:24 -0300 From: =?ISO-8859-1?Q?Otac=EDlio?= User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20120919 Thunderbird/15.0.1 MIME-Version: 1.0 To: freebsd-gnome@freebsd.org Subject: Re: Bug 657949 - Update of gtk2 (2.24.5-3 -> 2.24.6-1) renders File >Save >"Choose Format" list unreadable References: <509B87D1.9090909@free.fr> <509B903F.6060203@rainbow-runner.nl> In-Reply-To: <509B903F.6060203@rainbow-runner.nl> X-Enigmail-Version: 1.4.3 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Gm-Message-State: ALoCoQkjJf20C0EgkARI4irMsbbnFTKUXiKc/TYdKxq7hSI6eXJgPxktDqtwjf93TeazdRjYeMTx X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 08 Nov 2012 12:27:42 -0000 On 08/11/2012 07:58, Koop Mast wrote: > On 8-11-2012 11:22, Didier LEGRAND wrote: >> Dear FreeBSD Gnome Maintainers, >> >> As you can see on the subject line of my e-mail, the Gtk2 release of the >> current port tree contains a severe bug which was corrected since the >> 2.24.7 release. >> >> https://bugzilla.gnome.org/show_bug.cgi?id=657949 >> >> Is it possible to update the port tree with this release or a more >> recent one ? >> >> Please excuse my bad English (I'm french). >> >> Sincerely yours. >> > > This is all ready planned, glib and gtk 2 and gtk 3. Specificly gtk20 > will get a update to the latest (2.14.13). All this will happen after > FreeBSD 9.1 is released. > > -Koop I have compiled Libreoffice with GTK3 DEBUG=off: Install debug symbols GNOME=on: GNOME desktop environment support GTK2=off: GTK+ 2 GUI toolkit support GTK3=on: GTK+ 3 GUI toolkit support JAVA=on: Add java support (XML Filters, macros) KDE4=off: KDE 4 desktop environment support MMEDIA=on: Enable multimedia backend for impress PGSQL=on: Build with PostgreSQL-SDBC driver SDK=off: Build with SDK SVG=on: SVG image format support SYSTRAY=off: Enable systemtray quickstarter WEBDAV=on: Enable webdav protocol gtk-3.0.12_2 And this bug occurs here also. -Otacílio From owner-freebsd-gnome@FreeBSD.ORG Fri Nov 9 01:35:25 2012 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C3945FED for ; Fri, 9 Nov 2012 01:35:25 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell0.rawbw.com (shell0.rawbw.com [198.144.192.45]) by mx1.freebsd.org (Postfix) with ESMTP id 90CE88FC0C for ; Fri, 9 Nov 2012 01:35:25 +0000 (UTC) Received: from eagle.yuri.org (stunnel@localhost [127.0.0.1]) (authenticated bits=0) by shell0.rawbw.com (8.14.4/8.14.4) with ESMTP id qA91ZJZ6044286 for ; Thu, 8 Nov 2012 17:35:19 -0800 (PST) (envelope-from yuri@rawbw.com) Message-ID: <509C5DD7.7050808@rawbw.com> Date: Thu, 08 Nov 2012 17:35:19 -0800 From: Yuri User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121107 Thunderbird/16.0.2 MIME-Version: 1.0 To: gnome@freebsd.org Subject: xdg-email fails to find kmailservice in kde4 environment Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 09 Nov 2012 01:35:25 -0000 I have kde4 installed. chrome's way to fulfill mailto: links is to call xdg-email. And it fails to find kmailservice: $ xdg-email xxx@xxx.xxx /usr/local/bin/xdg-email: kmailservice: not found test: : bad number test: : bad number test: : bad number The first line is the problem I am talking about, the other three lines is some other issue. kmailserver is in /usr/local/kde4/lib/kde4/libexec/ directory which isn't normally in PATH. That's why the problem occurs. Even though xdg-utils is under the gnome maintenance, it should still work with kde4 since some non-gnome programs chose to use it too. xdg-utils-1.0.2 Thanks, Yuri From owner-freebsd-gnome@FreeBSD.ORG Fri Nov 9 06:26:19 2012 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A771AEA8 for ; Fri, 9 Nov 2012 06:26:19 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell0.rawbw.com (shell0.rawbw.com [198.144.192.45]) by mx1.freebsd.org (Postfix) with ESMTP id 85F858FC08 for ; Fri, 9 Nov 2012 06:26:19 +0000 (UTC) Received: from eagle.yuri.org (stunnel@localhost [127.0.0.1]) (authenticated bits=0) by shell0.rawbw.com (8.14.4/8.14.4) with ESMTP id qA96QH2f078628 for ; Thu, 8 Nov 2012 22:26:17 -0800 (PST) (envelope-from yuri@rawbw.com) Message-ID: <509CA209.6010604@rawbw.com> Date: Thu, 08 Nov 2012 22:26:17 -0800 From: Yuri User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121107 Thunderbird/16.0.2 MIME-Version: 1.0 To: freebsd-gnome@freebsd.org Subject: How to mount MTP directory through fuse,gvfs,gphoto2 ? Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 09 Nov 2012 06:26:19 -0000 I need to read the files from the smartphone, the protocol is MTP through usb link. gphoto2 is able to see it: $ gphoto2 --auto-detect Model Port ---------------------------------------------------------- Samsung GT-P7310/P7510/N7000/I9100/Galaxy Tab 7.7/10.1/S2/Nexus/Note usb:/dev/usb,/dev/ugen3.3 $ gphoto2 --list-files There is no file in folder '/'. There is no file in folder '/store_00010001'. There is no file in folder '/store_00010001/.android_secure'. ... However, I see that ubuntu is able to mount such folder automatically through fuse/gvfs/gphoto2. Even though this has issues and files can't be currently read from such folder on Ubuntu. Is there any HOWTO about how to mount MTP folder through fuse/gvfs/gphoto2? All my attempts to mount fail: # gvfs-mount -d "gphoto2://[usb:/dev/usb,/dev/ugen3.3]/" gvfs-mountpoint/ (gvfs-mount:11851): GVFS-RemoteVolumeMonitor-WARNING **: cannot connect to the session bus: org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken. (gvfs-mount:11851): GVFS-RemoteVolumeMonitor-WARNING **: cannot connect to the session bus: org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken. No volume for device file gphoto2://[usb:/dev/usb,/dev/ugen3.3]/ dbus is running. Anybody knows how to mount it? 9.1-RC3 amd64, kde4 Yuri From owner-freebsd-gnome@FreeBSD.ORG Fri Nov 9 07:32:47 2012 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3B0CDFF7; Fri, 9 Nov 2012 07:32:47 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 090118FC08; Fri, 9 Nov 2012 07:32:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id qA97WkYk029695; Fri, 9 Nov 2012 07:32:46 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id qA97Wklr029691; Fri, 9 Nov 2012 07:32:46 GMT (envelope-from edwin) Date: Fri, 9 Nov 2012 07:32:46 GMT Message-Id: <201211090732.qA97Wklr029691@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/173267: update of devel/gvfs port to disable gvfs-afc-volume-monitor X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 09 Nov 2012 07:32:47 -0000 Synopsis: update of devel/gvfs port to disable gvfs-afc-volume-monitor Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Fri Nov 9 07:32:46 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=173267 From owner-freebsd-gnome@FreeBSD.ORG Sat Nov 10 13:23:23 2012 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 63985633 for ; Sat, 10 Nov 2012 13:23:23 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-lb0-f182.google.com (mail-lb0-f182.google.com [209.85.217.182]) by mx1.freebsd.org (Postfix) with ESMTP id CE00F8FC0A for ; Sat, 10 Nov 2012 13:23:22 +0000 (UTC) Received: by mail-lb0-f182.google.com with SMTP id b5so4676179lbd.13 for ; Sat, 10 Nov 2012 05:23:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=U3aUi17a0UEkcGQhJyLqxCPE0XP1cyXVrL3eodOJcHU=; b=RDU9dBCfw2wVf1pQNrFOgCdgtRAVzz/Szeogw6EXV3yxd7oxb6pQyTexdKFEP5xqCs 4OnTh0So+mlaTLWaDF48cUJvYApev/LOFcUdWRgfZpb4u/NbYuP+R4KA01B801vKi5RU pqkTmjyT+eY09Hy3E9BSguEhwmAYp9kFbnlFw= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type:x-gm-message-state; bh=U3aUi17a0UEkcGQhJyLqxCPE0XP1cyXVrL3eodOJcHU=; b=M35uTcXdR0pj/aIXsg4o/0aYVhf1ZznMu2eFs95G2JINPwDCy192/KIio237PswFyw jDcKRNHL7jON/fqbd4blZNT9wGtGvlViEHo9spsR3IOjWHAU8rlJk0qaZ2o2z40CBECu hGZYxPOZf6cliXtDKvlzyHyvzyxArjjKnKd9teV8hbe4kYawg+qiOATJCVYRpF8dUP+g F6GYbPx3bmS9NdPIGBhdvh7nZwD6Kc8jraE4U+hZHxFNem85OI+xBgiKpcolMb002hRT rnm8zoFPc/JhEXo0rB39yp04eBVIqa3a7kruUSc7KU/SKy9edxjTI8dmHU9rwMeq02iu HNjA== Received: by 10.152.104.115 with SMTP id gd19mr13438108lab.13.1352553801657; Sat, 10 Nov 2012 05:23:21 -0800 (PST) MIME-Version: 1.0 Received: by 10.112.25.166 with HTTP; Sat, 10 Nov 2012 05:22:51 -0800 (PST) In-Reply-To: References: From: Eitan Adler Date: Sat, 10 Nov 2012 08:22:51 -0500 Message-ID: Subject: Re: gnome news page & other obsolete pages To: gnome@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQl1U1mqw9yPlGTXdtU9phLvuVf8GiafZDs63YN3MPPz0/1CJie1guDioipjAFhnQEvg+7k0 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 10 Nov 2012 13:23:23 -0000 On 5 November 2012 21:35, Eitan Adler wrote: > Does gnome@ have any plans to use http://www.freebsd.org/gnome/newsflash.html ? > > Would anyone object if I removed it? > > Same with http://www.freebsd.org/gnome/docs/faq232.html ? ping. -- Eitan Adler From owner-freebsd-gnome@FreeBSD.ORG Sat Nov 10 14:39:04 2012 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BCC68D65 for ; Sat, 10 Nov 2012 14:39:04 +0000 (UTC) (envelope-from portscout@portscout.zi0r.com) Received: from null.zi0r.com (null.zi0r.com [71.245.171.204]) by mx1.freebsd.org (Postfix) with ESMTP id 7A0ED8FC1C for ; Sat, 10 Nov 2012 14:39:04 +0000 (UTC) Received: from null.zi0r.com (localhost [127.0.0.1]) by null.zi0r.com (8.14.5/8.14.5) with ESMTP id qAAEcw75013683 for ; Sat, 10 Nov 2012 09:38:58 -0500 (EST) (envelope-from portscout@portscout.zi0r.com) Received: (from portscout@localhost) by null.zi0r.com (8.14.5/8.14.5/Submit) id qAAEcvuT012345; Sat, 10 Nov 2012 09:38:57 -0500 (EST) (envelope-from portscout) Message-Id: <201211101438.qAAEcvuT012345@null.zi0r.com> MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain Date: Sat, 10 Nov 2012 09:38:57 -0500 From: portscout@portscout.zi0r.com 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.14 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, 10 Nov 2012 14:39:04 -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 ------------------------------------------------+-----------------+------------ net-im/telepathy-glib | 0.12.7 | 0.20.1 ------------------------------------------------+-----------------+------------ 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 If wish to stop receiving portscout reminders, please contact portscout@portscout.freebsd.org Thanks. From owner-freebsd-gnome@FreeBSD.ORG Sat Nov 10 23:19:09 2012 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1B706B37; Sat, 10 Nov 2012 23:19:09 +0000 (UTC) (envelope-from saper@saper.info) Received: from l.saper.info (l.saper.info [IPv6:2001:41d0:1:d467::1000]) by mx1.freebsd.org (Postfix) with ESMTP id 9F1BF8FC08; Sat, 10 Nov 2012 23:19:08 +0000 (UTC) Received: from l.saper.info (uucp@localhost [127.0.0.1]) by l.saper.info (8.14.5/8.14.5) with ESMTP id qAANJ6S4083883 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 10 Nov 2012 23:19:07 GMT (envelope-from saper@saper.info) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=saper.info; s=Mar2008; t=1352589547; bh=gvx/pxqmFTOtji2cxBKE41zDATPe2nf1Y1nmnch2lf4=; h=Date:To:Subject:From:Reply-To:Cc; b=mIS0AeTdBy5JaolyMzqtUSVRtREmvThTpb3f+vkz09xPY4qNXPk2UuPCwXYH/AJW+ K9BvilxWg6LY+XQ3rG37XoIdCoXmFKTbhPLlrwFcehEEKscbRi6WbepitScCllAiBz LXiUGrBfWmyNw+5FuQh0ymSAyJKkwbvmsGw9K/RU= Received: (from uucp@localhost) by l.saper.info (8.14.5/8.14.5/Submit) with UUCP id qAANJ6s3083882; Sat, 10 Nov 2012 23:19:06 GMT (envelope-from saper@saper.info) Received: from radziecki.saper.info (saper@localhost [127.0.0.1]) by radziecki.saper.info (8.14.5/8.14.5) with ESMTP id qAANItCv004764 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sat, 10 Nov 2012 23:18:56 GMT (envelope-from saper@saper.info) Received: (from saper@localhost) by radziecki.saper.info (8.14.5/8.14.5/Submit) id qAANItsO004763; Sat, 10 Nov 2012 23:18:55 GMT (envelope-from saper) Date: Sat, 10 Nov 2012 23:18:55 GMT Message-Id: <201211102318.qAANItsO004763@radziecki.saper.info> To: FreeBSD-gnats-submit@freebsd.org Subject: devel/libical: Update to 0.48 From: Marcin Cieslak X-send-pr-version: 3.113 X-GNATS-Notify: Cc: gnome@freebsd.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Marcin Cieslak List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Nov 2012 23:19:09 -0000 >Submitter-Id: current-users >Originator: Marcin Cieslak >Synopsis: devel/libical: Update to 0.48 >Severity: non-critical >Priority: medium >Category: ports >Class: update >Release: FreeBSD 10.0-CURRENT amd64 >Environment: System: FreeBSD radziecki.saper.info 10.0-CURRENT FreeBSD 10.0-CURRENT #2 r241671M: Thu Oct 18 09:38:06 CEST 2012 saper@radziecki.saper.info:/a/icybox/obj/usr/src/sys/VAIO amd64 >Description: libical is now at 0.48 Citadel git trunk needs ical_unknown_token_handling >How-To-Repeat: >Fix: diff -ruN libical-0.44/Makefile libical/Makefile --- libical-0.44/Makefile 2012-11-10 23:03:31.000000000 +0000 +++ libical/Makefile 2012-11-10 23:02:44.000000000 +0000 @@ -6,7 +6,7 @@ # PORTNAME= libical -PORTVERSION= 0.44 +PORTVERSION= 0.48 CATEGORIES= devel MASTER_SITES= SF/freeassociation/${PORTNAME}/${PORTNAME}-${PORTVERSION} From owner-freebsd-gnome@FreeBSD.ORG Sat Nov 10 23:20:09 2012 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7086FB8C; Sat, 10 Nov 2012 23:20:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 407638FC13; Sat, 10 Nov 2012 23:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id qAANK9m1049794; Sat, 10 Nov 2012 23:20:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id qAANK9v2049790; Sat, 10 Nov 2012 23:20:09 GMT (envelope-from edwin) Date: Sat, 10 Nov 2012 23:20:09 GMT Message-Id: <201211102320.qAANK9v2049790@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/173540: devel/libical: Update to 0.48 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 10 Nov 2012 23:20:09 -0000 Synopsis: devel/libical: Update to 0.48 Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Sat Nov 10 23:20:09 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=173540