- Update to 1.5
- Add LICENSE - Pass maintainership to submitter - While I'm here, convert to new options helper PR: ports/188413 Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com>
This commit is contained in:
parent
2a07d055c2
commit
fe7d2431f6
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=352327
2 changed files with 13 additions and 14 deletions
|
@ -2,15 +2,16 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= symeig
|
||||
PORTVERSION= 1.4
|
||||
PORTREVISION= 4
|
||||
PORTVERSION= 1.5
|
||||
CATEGORIES= math python
|
||||
MASTER_SITES= SF/mdp-toolkit/mdp-toolkit/2.3
|
||||
MASTER_SITES= SF/mdp-toolkit/mdp-toolkit/2.4
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
MAINTAINER= 5u623l20@gmail.com
|
||||
COMMENT= Symmetrical eigenvalue routines for NumPy
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
|
||||
BUILD_DEPENDS+= ${PYNUMPY}
|
||||
RUN_DEPENDS+= ${PYNUMPY}
|
||||
|
||||
|
@ -19,22 +20,20 @@ OPTIONSFILE= ${PORT_DBDIR}/py-numpy/options
|
|||
|
||||
USES= fortran
|
||||
USE_PYTHON= 2
|
||||
USE_PYDISTUTILS= yes
|
||||
USE_PYDISTUTILS=yes
|
||||
PYDISTUTILS_AUTOPLIST= yes
|
||||
|
||||
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 <bsd.port.options.mk>
|
||||
|
||||
.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 <bsd.port.mk>
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue