You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
49 lines
1.6 KiB
Tcl
49 lines
1.6 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 python 1.0
|
|
|
|
name py-odo
|
|
version 0.5.0
|
|
revision 0
|
|
categories-append devel
|
|
platforms darwin
|
|
license BSD
|
|
|
|
python.versions 27 35 36 37 38
|
|
|
|
maintainers {stromnov @stromnov} openmaintainer
|
|
|
|
description Data migration utilities
|
|
long_description ${description}
|
|
|
|
homepage https://github.com/ContinuumIO/odo
|
|
|
|
checksums rmd160 95168af613cbd1e94599299b7f385c31c93157e9 \
|
|
sha256 e892ffe58e87d6b1c12838c4ab252bd0ae8c0ec43e5179409309ded4929905d6 \
|
|
size 129977
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_build-append \
|
|
port:py${python.version}-setuptools
|
|
depends_lib-append port:py${python.version}-datashape \
|
|
port:py${python.version}-numpy \
|
|
port:py${python.version}-pandas \
|
|
port:py${python.version}-toolz \
|
|
port:py${python.version}-multipledispatch \
|
|
port:py${python.version}-networkx
|
|
|
|
# Fix permissions
|
|
post-extract {
|
|
fs-traverse item ${worksrcpath} {
|
|
if {[file isdirectory ${item}]} {
|
|
file attributes ${item} -permissions a+rx
|
|
} elseif {[file isfile ${item}]} {
|
|
file attributes ${item} -permissions a+r
|
|
}
|
|
}
|
|
}
|
|
|
|
livecheck.type none
|
|
}
|