You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
2b95be1104
- deprecated - fix livecheck, switch to PyPI
42 lines
1.4 KiB
Tcl
42 lines
1.4 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
|
|
PortGroup deprecated 1.0
|
|
|
|
name py-taskplan
|
|
version 1.3.3
|
|
revision 0
|
|
license MIT
|
|
platforms darwin freebsd
|
|
supported_archs noarch
|
|
maintainers nomaintainer
|
|
description Simple task planner capable of resource allocation.
|
|
long_description A simple task planner capable of resource allocation, \
|
|
interruptions (holidays, etc), HTML plan generation \
|
|
and HTML gantt chart generation.
|
|
|
|
homepage http://www.mechanicalcat.net/tech/pytaskplan/
|
|
master_sites pypi:p/pytaskplan
|
|
distname pytaskplan-${version}
|
|
checksums rmd160 a68fe10d1311fb9fc123d86f85b4d2553b503127 \
|
|
sha256 a7043e1de7440d829105e8975a1a5d112567374f77d3f6111ba9be1f3c561534 \
|
|
size 10300
|
|
|
|
deprecated.upstream_support no
|
|
|
|
python.versions 27
|
|
|
|
if {${name} ne ${subport}} {
|
|
post-destroot {
|
|
set docdir ${prefix}/share/doc/${subport}
|
|
xinstall -d ${destroot}${docdir}
|
|
xinstall -m 0644 -W ${worksrcpath} README.txt CHANGES.txt \
|
|
${destroot}${docdir}
|
|
}
|
|
|
|
livecheck.type none
|
|
} else {
|
|
livecheck.name pytaskplan
|
|
}
|