deskbar-applet uncoditionally depends on devel/py-simplejson, but it actually should not. simplejson only used in ${WRKSRC}/deskbar/handlers/googlesearch.py: """ try: import json except: try: import simplejson as json except: pass """ It tries first to import json module (that is a part of python since 2.6) and fallbacks to simplejson if json module is not found. This patch make it depend on devel/py-simplejson only if python version < 2.6. Fix: Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->gnome Over to maintainer (via the GNATS Auto Assign Tool)
kwm 2011-09-12 18:40:00 UTC FreeBSD ports repository Modified files: deskutils/deskbar-applet Makefile Log: Make py-simplejson a depend if python is below 2.6. PR: ports/160388 Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru> Revision Changes Path 1.52 +6 -3 ports/deskutils/deskbar-applet/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed thanks