You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
2ace89a855
- remove py34 subport - use python.rootname
62 lines
2.1 KiB
Tcl
62 lines
2.1 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-BitVector
|
|
version 3.4.9
|
|
revision 0
|
|
|
|
categories-append math
|
|
platforms darwin
|
|
supported_archs noarch
|
|
license PSF
|
|
maintainers {petr @petrrr} openmaintainer
|
|
|
|
description A memory-efficient packed representation for bit arrays
|
|
long_description The BitVector class is for a memory-efficient packed \
|
|
representation of bit arrays and for logical operations \
|
|
on such arrays. It is written in pure Python.
|
|
|
|
homepage https://engineering.purdue.edu/kak/dist/${python.rootname}-${version}.html
|
|
distname ${python.rootname}-${version}
|
|
master_sites https://engineering.purdue.edu/kak/dist
|
|
|
|
checksums rmd160 c037bc5d90011bce25813ee752f1f61b8ad9336a \
|
|
sha256 a5e94cbb4804213b1f0c32d84517cd8f0bb8c689b5eb8055d351632e220a5edd \
|
|
size 128306
|
|
|
|
python.versions 27 35 36 37
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_build-append port:py${python.version}-setuptools
|
|
|
|
test.run yes
|
|
test.cmd ${python.bin} TestBitVector/Test.py
|
|
test.target {}
|
|
|
|
# delete redundant files & avoid testing different version
|
|
pre-patch {
|
|
delete {*}[glob ${worksrcpath}/TestBitVector/BitVector.py]
|
|
|
|
# create link for testing
|
|
ln -s ../BitVector/BitVector.py ${worksrcpath}/TestBitVector/BitVector.py
|
|
}
|
|
|
|
# Adding documentation & examples
|
|
post-destroot {
|
|
set dest_doc ${destroot}${prefix}/share/doc/${subport}
|
|
copy ${worksrcpath}/${distname}.html ${dest_doc}
|
|
|
|
# Avoid creation of example directory
|
|
delete ${dest_doc}/examples
|
|
copy ${worksrcpath}/Examples ${dest_doc}/examples
|
|
}
|
|
|
|
livecheck.type none
|
|
} else {
|
|
livecheck.type regex
|
|
livecheck.url [lindex ${master_sites} 0]
|
|
livecheck.regex "${python.rootname}-(\\d+(\\.\\d+)+)\\${extract.suffix}"
|
|
}
|