From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Mar 19 18:40:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 27F5D61A for ; Wed, 19 Mar 2014 18:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 08DB5C56 for ; Wed, 19 Mar 2014 18:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2JIe059002325 for ; Wed, 19 Mar 2014 18:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2JIe0Qp002324; Wed, 19 Mar 2014 18:40:00 GMT (envelope-from gnats) Resent-Date: Wed, 19 Mar 2014 18:40:00 GMT Resent-Message-Id: <201403191840.s2JIe0Qp002324@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B53F74BC for ; Wed, 19 Mar 2014 18:31:13 +0000 (UTC) Received: from omta03.auone-net.jp (mail-or1-f17.auone-net.jp [106.187.231.17]) by mx1.freebsd.org (Postfix) with ESMTP id 88C2DBF4 for ; Wed, 19 Mar 2014 18:31:13 +0000 (UTC) Received: from coppermine.my.domain (ZT028161.ppp.dion.ne.jp [59.128.28.161]) by omta03.auone-net.jp (au one net mail) with ESMTP id D7F821880010 for ; Thu, 20 Mar 2014 03:31:10 +0900 (JST) Message-Id: <20140320032606.da10eac03b81c5c5ac438f04@yahoo.com> Date: Thu, 20 Mar 2014 03:26:06 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/187741: math/py-symeig: Update to version 1.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 18:40:01 -0000 >Number: 187741 >Category: ports >Synopsis: math/py-symeig: Update to version 1.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Mar 19 18:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 8.4-RELEASE-p7 i386 >Organization: >Environment: >Description: - Update to version 1.5 >How-To-Repeat: >Fix: diff -urN /usr/ports/math/py-symeig/Makefile math/py-symeig/Makefile --- /usr/ports/math/py-symeig/Makefile 2014-03-11 06:35:43.000000000 +0900 +++ math/py-symeig/Makefile 2014-03-20 00:00:00.000000000 +0900 @@ -2,8 +2,7 @@ # $FreeBSD: head/math/py-symeig/Makefile 347809 2014-03-10 20:55:20Z gerald $ PORTNAME= symeig -PORTVERSION= 1.4 -PORTREVISION= 4 +PORTVERSION= 1.5 CATEGORIES= math python MASTER_SITES= SF/mdp-toolkit/mdp-toolkit/2.3 PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,8 +10,11 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Symmetrical eigenvalue routines for NumPy -BUILD_DEPENDS+= ${PYNUMPY} -RUN_DEPENDS+= ${PYNUMPY} +LICENSE= BSD +LICENSE_FILE= ${WRKSRC}/COPYRIGHT + +BUILD_DEPENDS= ${PYNUMPY} +RUN_DEPENDS= ${PYNUMPY} LATEST_LINK= py-${PORTNAME} OPTIONSFILE= ${PORT_DBDIR}/py-numpy/options @@ -22,19 +24,17 @@ USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes -OPTIONS_DEFINE= ATLAS -ATLAS_DESC= Use optimized blas library +OPTIONS_DEFINE= ATLAS + +ATLAS_DESC= Use optimized blas library +ATLAS_LIB_DEPENDS= libatlas.so:${PORTSDIR}/math/atlas +ATLAS_LIB_DEPENDS_OFF= libblas.so:${PORTSDIR}/math/blas \ + liblapack.so:${PORTSDIR}/math/lapack .include -.if ${PORT_OPTIONS:MATLAS} -LIB_DEPENDS+= libatlas.so:${PORTSDIR}/math/atlas -.if !exists(${LOCALBASE}/lib/libalapack.a) +.if ${PORT_OPTIONS:MATLAS} && !exists(${LOCALBASE}/lib/libalapack.a) IGNORE= atlas needs to be built with WITH_STATIC for symeig to function properly .endif -.else -LIB_DEPENDS+= liblapack.so:${PORTSDIR}/math/lapack \ - libblas.so:${PORTSDIR}/math/blas -.endif .include diff -urN /usr/ports/math/py-symeig/distinfo math/py-symeig/distinfo --- /usr/ports/math/py-symeig/distinfo 2014-01-23 02:59:59.000000000 +0900 +++ math/py-symeig/distinfo 2014-03-20 00:00:00.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (symeig-1.4.tar.gz) = 999556e99b03c3f98ef81ccf420ada1ba25c447c7a2739be4f44b54d5ac0f393 -SIZE (symeig-1.4.tar.gz) = 31109 +SHA256 (symeig-1.5.tar.gz) = 60cea48bfce95cce463771883a638bfbf39a99e2ea0eb562572b5668c9117719 +SIZE (symeig-1.5.tar.gz) = 16180 >Release-Note: >Audit-Trail: >Unformatted: