1 | # -*- 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 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-PyRSS2Gen |
---|
8 | version 1.1 |
---|
9 | platforms darwin |
---|
10 | license BSD |
---|
11 | maintainers nomaintainer |
---|
12 | |
---|
13 | description Generate RSS2 using a Python data structure |
---|
14 | long_description ${description} |
---|
15 | |
---|
16 | homepage http://dalkescientific.com/Python/PyRSS2Gen.html |
---|
17 | master_sites https://pypi.python.org/packages/source/P/PyRSS2Gen |
---|
18 | distname PyRSS2Gen-1.1 |
---|
19 | |
---|
20 | checksums rmd160 5612ed113a3dd1c0686cefa6666707a47c8d7f1b \ |
---|
21 | sha256 7960aed7e998d2482bf58716c316509786f596426f879b05f8d84e98b82c6ee7 |
---|
22 | |
---|
23 | python.versions 25 26 27 32 33 34 |
---|
24 | |
---|
25 | if {${name} ne ${subport}} { |
---|
26 | depends_build-append \ |
---|
27 | port:py${python.version}-setuptools |
---|
28 | |
---|
29 | livecheck.type none |
---|
30 | } else { |
---|
31 | livecheck.type regex |
---|
32 | livecheck.url ${master_sites} |
---|
33 | } |
---|