Files
2026-04-04 22:56:38 -04:00

40 lines
1.2 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-beniget
version 0.5.0
revision 0
categories-append devel
supported_archs noarch
platforms {darwin any}
license BSD
maintainers {reneeotten @reneeotten} openmaintainer
description Extract semantic information about static Python code
long_description {*}${description}
homepage https://github.com/serge-sans-paille/beniget/
checksums rmd160 5dccd7de8ecb506fd62114114d5778370881ede1 \
sha256 e7af11fa8ec7de3d3eb3d98b1e722d15d44017d8b35d8aa11d54f6719b312f22 \
size 37097
python.versions 310 311 312 313 314
if {${name} ne ${subport}} {
depends_lib-append \
port:py${python.version}-gast
post-destroot {
set docdir ${prefix}/share/doc/${subport}
xinstall -d ${destroot}${docdir}
xinstall -m 0644 -W ${worksrcpath} README.rst \
LICENSE ${destroot}${docdir}
}
test.run yes
}