From owner-freebsd-gnome@FreeBSD.ORG Fri May 14 20:04:13 2010 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F3CD31065673; Fri, 14 May 2010 20:04:12 +0000 (UTC) (envelope-from carpetsmoker@daemonforums.org) Received: from cthulhu.daemonforums.org (cthulhu.daemonforums.org [94.142.244.51]) by mx1.freebsd.org (Postfix) with ESMTP id BDA0C8FC15; Fri, 14 May 2010 20:04:12 +0000 (UTC) Received: by cthulhu.daemonforums.org (Postfix, from userid 1001) id E1E7F17084; Fri, 14 May 2010 21:46:59 +0200 (CEST) To: FreeBSD-gnats-submit@freebsd.org From: Martin Tournoij X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20100514194659.E1E7F17084@cthulhu.daemonforums.org> Date: Fri, 14 May 2010 21:46:59 +0200 (CEST) Cc: gnome@freebsd.org Subject: [PATCH] x11-toolkits/py-gtk2 incorrectly depends on Numeric instead of Numpy X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Martin Tournoij List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 May 2010 20:04:13 -0000 >Submitter-Id: current-users >Originator: Martin Tournoij >Organization: >Confidential: no >Synopsis: [PATCH] x11-toolkits/py-gtk2 incorrectly depends on Numeric instead of Numpy >Severity: non-critical >Priority: low >Category: ports >Class: sw-bug >Release: FreeBSD 7.3-PRERELEASE i386 >Environment: System: FreeBSD cthulhu.daemonforums.org 7.3-PRERELEASE FreeBSD 7.3-PRERELEASE #0: Sun Feb 28 20:26:34 CET 2010 carpetsmoker@cthulhu.daemonforums.org:/usr/obj/usr/src/sys/CTHULHU i386 >Description: x11-toolkits/py-gtk2 incorrectly depends on Numeric instead of numpy. Starting with PyGTK 2.15 almost a year ago Numeric support was dropped in favor of Numpy, as noted in the release message: http://www.daa.com.au/pipermail/pygtk/2009-May/016986.html This updates the port accordingly. >How-To-Repeat: >Fix: --- py-gtk2.diff begins here --- --- Makefile.orig 2010-05-14 04:34:05.000000000 +0000 +++ Makefile 2010-05-14 03:49:28.000000000 +0000 @@ -8,7 +8,7 @@ PORTNAME= gtk PORTVERSION= 2.17.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-toolkits python MASTER_SITES= GNOME MASTER_SITE_SUBDIR= sources/pygtk/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} @@ -19,10 +19,10 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= A set of Python bindings for GTK+ -BUILD_DEPENDS= ${PYNUMERIC} \ +BUILD_DEPENDS= ${PYNUMPY} \ ${PYTHON_SITELIBDIR}/cairo/__init__.py:${PORTSDIR}/graphics/py-cairo \ ${PYTHON_SITELIBDIR}/gtk-2.0/gobject/_gobject.so:${PORTSDIR}/devel/py-gobject -RUN_DEPENDS= ${PYNUMERIC} \ +RUN_DEPENDS= ${PYNUMPY} \ ${PYTHON_SITELIBDIR}/cairo/__init__.py:${PORTSDIR}/graphics/py-cairo \ ${PYTHON_SITELIBDIR}/gtk-2.0/gobject/_gobject.so:${PORTSDIR}/devel/py-gobject --- py-gtk2.diff ends here ---