You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
69 lines
2.5 KiB
Tcl
69 lines
2.5 KiB
Tcl
# -*- 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 github 1.0
|
|
PortGroup python 1.0
|
|
|
|
github.setup tensorflow datasets 4.2.0 v
|
|
revision 0
|
|
name py-${github.author}-${github.project}
|
|
|
|
platforms darwin
|
|
license Apache-2
|
|
maintainers nomaintainer
|
|
|
|
description tensorflow/datasets is a library of datasets ready \
|
|
to use with TensorFlow.
|
|
long_description TensorFlow Datasets provides many public datasets \
|
|
as tf.data.Datasets.
|
|
|
|
homepage https://github.com/tensorflow/datasets
|
|
|
|
checksums rmd160 944a35cd05aea1191b583c29eb75edf6af404959 \
|
|
sha256 9dffaa868efc69cb8f28bca162d5b44b119749eaa8924d61f1e80e0defd3c864 \
|
|
size 78439236
|
|
|
|
python.versions 37 38 39
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_build-append \
|
|
port:py${python.version}-setuptools
|
|
|
|
depends_run-append \
|
|
port:py${python.version}-absl \
|
|
port:py${python.version}-attrs \
|
|
port:py${python.version}-dill \
|
|
port:py${python.version}-future \
|
|
port:py${python.version}-numpy \
|
|
port:py${python.version}-promise \
|
|
port:py${python.version}-protobuf3 \
|
|
port:py${python.version}-requests \
|
|
port:py${python.version}-six \
|
|
port:py${python.version}-tensorflow-metadata \
|
|
port:py${python.version}-termcolor \
|
|
port:py${python.version}-tqdm \
|
|
port:py${python.version}-wrapt
|
|
|
|
depends_test-append \
|
|
port:py${python.version}-jupyter \
|
|
port:py${python.version}-mako \
|
|
port:py${python.version}-pytest \
|
|
port:py${python.version}-pytest-xdist \
|
|
port:py${python.version}-tensorflow-data-validation
|
|
|
|
test.run yes
|
|
test.cmd py.test-${python.branch}
|
|
test.target
|
|
test.env-append \
|
|
PYTHONPATH=${worksrcpath}/build/lib
|
|
|
|
post-destroot {
|
|
set docdir ${prefix}/share/doc/${subport}
|
|
xinstall -d ${destroot}${docdir}
|
|
xinstall -m 0644 -W ${worksrcpath} LICENSE README.md \
|
|
${destroot}${docdir}
|
|
}
|
|
|
|
livecheck.type none
|
|
}
|