You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
d587617df9
Maintainer indicated on IRC they no longer want to maintain these ports.
38 lines
1.2 KiB
Tcl
38 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-PyRSS2Gen
|
|
version 1.1
|
|
categories-append devel
|
|
platforms darwin
|
|
supported_archs noarch
|
|
license BSD
|
|
maintainers nomaintainer
|
|
|
|
description A Python library for generating RSS 2.0 feeds
|
|
long_description ${description}
|
|
homepage http://www.dalkescientific.com/Python/PyRSS2Gen.html
|
|
|
|
master_sites http://www.dalkescientific.com/Python/
|
|
distname PyRSS2Gen-${version}
|
|
checksums rmd160 0dea97364066f78189b99a512015e851601aa2fa \
|
|
sha256 2a9a3ee7c8e30cb40434ef3a295f9a60166f7d8c3eaefac9f46f7ed4b27c2269 \
|
|
size 9149
|
|
|
|
python.versions 27 35 36
|
|
|
|
if {${subport} ne ${name}} {
|
|
post-destroot {
|
|
set docdir ${prefix}/share/doc/${subport}
|
|
xinstall -d ${destroot}${docdir}
|
|
xinstall -m 644 -W ${worksrcpath} LICENSE README ${destroot}${docdir}
|
|
}
|
|
livecheck.type none
|
|
} else {
|
|
livecheck.type regex
|
|
livecheck.url ${homepage}
|
|
livecheck.regex {PyRSS2Gen-(\d+(?:\.\d+)*)}
|
|
}
|