mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
math/zarray: New port: Dynamically typed N-D expression system based on xtensor
This commit is contained in:
parent
de46e513ae
commit
bd71efcc29
@ -1080,6 +1080,7 @@
|
||||
SUBDIR += yacas
|
||||
SUBDIR += yices
|
||||
SUBDIR += z3
|
||||
SUBDIR += zarray
|
||||
SUBDIR += zegrapher
|
||||
SUBDIR += zimpl
|
||||
SUBDIR += zn_poly
|
||||
|
31
math/zarray/Makefile
Normal file
31
math/zarray/Makefile
Normal file
@ -0,0 +1,31 @@
|
||||
PORTNAME= zarray
|
||||
DISTVERSION= 0.1.0
|
||||
CATEGORIES= math
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
COMMENT= Dynamically typed N-D expression system based on xtensor
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
HPP_DEPENDS= nlohmann-json>0:devel/nlohmann-json \
|
||||
xtensor>0:math/xtensor
|
||||
BUILD_DEPENDS= ${HPP_DEPENDS}
|
||||
RUN_DEPENDS= ${HPP_DEPENDS}
|
||||
TEST_DEPENDS= googletest>0:devel/googletest
|
||||
|
||||
USES= cmake compiler:c++14-lang
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= xtensor-stack
|
||||
|
||||
NO_BUILD= yes
|
||||
NO_ARCH= yes
|
||||
|
||||
do-test: install
|
||||
@cd ${WRKSRC}/test && \
|
||||
${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} . && \
|
||||
${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} && \
|
||||
${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} xtest
|
||||
|
||||
.include <bsd.port.mk>
|
3
math/zarray/distinfo
Normal file
3
math/zarray/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
TIMESTAMP = 1637955867
|
||||
SHA256 (xtensor-stack-zarray-0.1.0_GH0.tar.gz) = 2aade20297da342d67bb6a18cf9f9c427f6eef9f4bc47adc0969a0438285f35a
|
||||
SIZE (xtensor-stack-zarray-0.1.0_GH0.tar.gz) = 26632
|
3
math/zarray/pkg-descr
Normal file
3
math/zarray/pkg-descr
Normal file
@ -0,0 +1,3 @@
|
||||
zarray is a dynamically typed N-D expression system built on top of xtensor.
|
||||
|
||||
WWW: https://github.com/xtensor-stack/zarray
|
17
math/zarray/pkg-plist
Normal file
17
math/zarray/pkg-plist
Normal file
@ -0,0 +1,17 @@
|
||||
include/zarray/zarray.hpp
|
||||
include/zarray/zarray_config.hpp
|
||||
include/zarray/zarray_impl.hpp
|
||||
include/zarray/zarray_wrapper.hpp
|
||||
include/zarray/zassign.hpp
|
||||
include/zarray/zchunked_iterator.hpp
|
||||
include/zarray/zchunked_wrapper.hpp
|
||||
include/zarray/zdispatcher.hpp
|
||||
include/zarray/zdispatching_types.hpp
|
||||
include/zarray/zexpression_wrapper.hpp
|
||||
include/zarray/zfunction.hpp
|
||||
include/zarray/zmath.hpp
|
||||
include/zarray/zscalar_wrapper.hpp
|
||||
include/zarray/zwrappers.hpp
|
||||
lib/cmake/zarray/zarrayConfig.cmake
|
||||
lib/cmake/zarray/zarrayConfigVersion.cmake
|
||||
lib/cmake/zarray/zarrayTargets.cmake
|
Loading…
Reference in New Issue
Block a user