You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
6c0fdf7020
See: #56074
39 lines
1.3 KiB
Tcl
39 lines
1.3 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
|
|
|
|
set _name pebl
|
|
set _n [string index ${_name} 0]
|
|
|
|
name py-${_name}
|
|
version 1.0.2
|
|
revision 1
|
|
maintainers nomaintainer
|
|
|
|
categories-append science math
|
|
license MIT
|
|
description Pebl is a python library and application for learning the structure of a Bayesian network.
|
|
long_description ${description}
|
|
|
|
platforms darwin
|
|
|
|
homepage https://pythonhosted.org/{_name}/
|
|
master_sites pypi:${_n}/${_name}/
|
|
distname ${_name}-${version}
|
|
|
|
checksums size 2489864 \
|
|
rmd160 0d6ef1e18416c27cddb5c5c44099c3c3b6425ab6 \
|
|
sha256 8458e05f596b67755f5ee83474a71a3152fa09f7405494109cba0d3d9d0932e9 \
|
|
|
|
python.versions 27
|
|
|
|
if {$subport ne $name} {
|
|
depends_lib-append port:py${python.version}-numpy \
|
|
port:py${python.version}-parsing \
|
|
port:py${python.version}-pydot
|
|
} else {
|
|
# workaround for version scheme mismatch 1.01 vs. 1.0.2
|
|
livecheck.regex "\"${_name}-\(\\d+\(?:\\.\\d+\){2,}\)\\${extract.suffix}\""
|
|
}
|