Files

50 lines
1.7 KiB
Tcl
Raw Permalink Normal View History

2022-06-07 10:41:41 -04:00
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
PortSystem 1.0
PortGroup python 1.0
name py-aesara
2024-09-08 23:43:30 -04:00
version 2.9.4
2022-06-07 10:41:41 -04:00
revision 0
categories-append devel
supported_archs noarch
2022-12-07 18:51:53 +11:00
platforms {darwin any}
2022-06-07 10:41:41 -04:00
license BSD
maintainers {reneeotten @reneeotten} openmaintainer
description Optimizing compiler for evaluating mathematical expressions \
on CPUs and GPUs.
long_description {*}${description}
homepage https://github.com/aesara-devs/aesara
2024-09-08 23:43:30 -04:00
checksums rmd160 db7f30f99552c65d0375c27d773e6509ecc536cb \
sha256 704eecf24a0165b2eefcf23539eb0f0c5973081ee3b9ecd8a97b80e1f301ad7a \
size 4424643
2022-06-07 10:41:41 -04:00
2025-10-14 10:57:56 -04:00
python.versions 310 311 312
2023-02-25 22:00:06 -05:00
python.pep517_backend hatch
2022-06-07 10:41:41 -04:00
2024-01-13 07:24:47 -05:00
patchfiles-append patch-pyproject.toml.diff
2022-06-07 10:41:41 -04:00
if {${name} ne ${subport}} {
depends_build-append \
2023-02-25 22:00:06 -05:00
port:py${python.version}-hatch-vcs
2022-06-07 10:41:41 -04:00
depends_lib-append \
port:py${python.version}-numpy \
port:py${python.version}-scipy \
port:py${python.version}-filelock \
port:py${python.version}-etuples \
port:py${python.version}-logical-unification \
port:py${python.version}-minikanren \
port:py${python.version}-cons \
2024-01-12 15:52:33 -05:00
port:py${python.version}-typing_extensions
2023-02-25 22:00:06 -05:00
post-destroot {
file delete ${destroot}${python.pkgd}/bin/__init__.py
delete ${destroot}${python.pkgd}/bin/__pycache__
}
2022-06-07 10:41:41 -04:00
}