You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-07-10 12:19:27 -07:00
34b3070336
for pf in */*/Portfile
do
ed -s "$pf" <<-'EOF'
1,3g/^[[:space:]]*#[[:space:]]*\$Id.*\$[[:space:]]*$/d
1g/^[[:space:]]*$/d
w
q
EOF
done
32 lines
893 B
Plaintext
32 lines
893 B
Plaintext
PortSystem 1.0
|
|
PortGroup python 1.0
|
|
|
|
name py-unit
|
|
version 1.4.1
|
|
revision 1
|
|
categories-append devel
|
|
license PSF
|
|
maintainers nomaintainer
|
|
platforms darwin freebsd
|
|
supported_archs noarch
|
|
description python testing framework
|
|
long_description python testing framework, py-unit is the python \
|
|
language version of JUnit
|
|
|
|
homepage http://pyunit.sourceforge.net/
|
|
master_sites sourceforge:pyunit
|
|
distname pyunit-${version}
|
|
checksums md5 658ff16afc469a3898260cc72bbea993
|
|
|
|
python.versions 27
|
|
|
|
if {${name} ne ${subport}} {
|
|
post-destroot {
|
|
xinstall -m 644 -W ${worksrcpath} doc/PyUnit.html CHANGES \
|
|
${destroot}${prefix}/share/doc/${subport}
|
|
xinstall -m 644 -W ${worksrcpath}/examples README alltests.py \
|
|
listtests.py manytests.py widget.py widgettests.py \
|
|
withjpython.py ${destroot}${prefix}/share/doc/${subport}/examples
|
|
}
|
|
}
|