From owner-freebsd-python@FreeBSD.ORG Thu Sep 23 19:41:27 2010 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D4D481065674 for ; Thu, 23 Sep 2010 19:41:27 +0000 (UTC) (envelope-from Thomas.Gellekum@gmx.de) Received: from mail.gmx.net (mailout-de.gmx.net [213.165.64.23]) by mx1.freebsd.org (Postfix) with SMTP id 3ACE68FC18 for ; Thu, 23 Sep 2010 19:41:26 +0000 (UTC) Received: (qmail invoked by alias); 23 Sep 2010 19:14:46 -0000 Received: from xdsl-87-79-60-131.netcologne.de (EHLO siegel.tg.intern) [87.79.60.131] by mail.gmx.net (mp051) with SMTP; 23 Sep 2010 21:14:46 +0200 X-Authenticated: #18235045 X-Provags-ID: V01U2FsdGVkX19fMXEJvT1fvY8eeG2IlOL+M4zPYZ3BsMms2WMAzP Oxr2wVVUJRULMR From: Thomas Gellekum To: Joe Marcus Clarke In-Reply-To: <4C93DFF5.7060007@freebsd.org> (Joe Marcus Clarke's message of "Fri, 17 Sep 2010 17:39:01 -0400") References: <4C92B6B5.20403@oitsec.umn.edu> <4C93DFF5.7060007@freebsd.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (berkeley-unix) Date: Thu, 23 Sep 2010 21:14:45 +0200 Message-ID: <86r5gkw9ui.fsf@siegel.tg.intern> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Y-GMX-Trusted: 0 Cc: gnome@freebsd.org, dokas@oitsec.umn.edu, python@freebsd.org Subject: Re: rhythmbox and python X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Sep 2010 19:41:27 -0000 --=-=-= Joe Marcus Clarke writes: > Python guys, after an upgrade to 2.6.6, starting audio/rhythmbox results > in a crash. Gdb reports: The Rhythmbox folks seem to have fixed their Python initialization code (bug 617587, ). The latest release contains this fix. I've attached a quick update for the port to 0.13.1. tg --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=rhythmbox.diff ? work Index: Makefile =================================================================== RCS file: /home/ncvs/ports/audio/rhythmbox/Makefile,v retrieving revision 1.130 diff -u -r1.130 Makefile --- Makefile 31 May 2010 01:57:31 -0000 1.130 +++ Makefile 23 Sep 2010 19:02:48 -0000 @@ -7,8 +7,8 @@ # PORTNAME= rhythmbox -PORTVERSION= 0.12.8 -PORTREVISION= 1 +PORTVERSION= 0.13.1 +#PORTREVISION= 1 CATEGORIES= audio gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 @@ -18,7 +18,7 @@ BUILD_DEPENDS= ${LOCALBASE}/include/linux/videodev2.h:${PORTSDIR}/multimedia/v4l_compat LIB_DEPENDS= musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz \ - musicbrainz3.6:${PORTSDIR}/audio/libmusicbrainz3 \ + musicbrainz3.6:${PORTSDIR}/audio/libmusicbrainz3 \ id3tag.0:${PORTSDIR}/audio/libid3tag \ totem-plparser.17:${PORTSDIR}/multimedia/totem-pl-parser \ dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ @@ -89,7 +89,7 @@ .if defined(WITH_DAAP) CONFIGURE_ARGS+= --enable-daap --with-mdns=avahi LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi-app \ - gnome-keyring:${PORTSDIR}/security/gnome-keyring + gnome-keyring:${PORTSDIR}/security/gnome-keyring PLIST_SUB+= DAAP="" .else .if exists(${LOCALBASE}/lib/libavahi-client.a) Index: distinfo =================================================================== RCS file: /home/ncvs/ports/audio/rhythmbox/distinfo,v retrieving revision 1.44 diff -u -r1.44 distinfo --- distinfo 10 May 2010 21:17:56 -0000 1.44 +++ distinfo 23 Sep 2010 19:02:48 -0000 @@ -1,3 +1,3 @@ -MD5 (gnome2/rhythmbox-0.12.8.tar.bz2) = 3e24108119264a0cbd8b4ccbd7732173 -SHA256 (gnome2/rhythmbox-0.12.8.tar.bz2) = 1752fab135808aa78a9afde78448e992020c58c07701f43c989fbabfc6352213 -SIZE (gnome2/rhythmbox-0.12.8.tar.bz2) = 5358950 +MD5 (gnome2/rhythmbox-0.13.1.tar.bz2) = 274e1105e1c26e553731886dec5d05bd +SHA256 (gnome2/rhythmbox-0.13.1.tar.bz2) = 98f9744cb80bca052f54a62bc965b134946ab6c2c107935b70de9d20c126cc7e +SIZE (gnome2/rhythmbox-0.13.1.tar.bz2) = 9787870 --=-=-=--