Ticket #46906: Portfile

File Portfile, 1.0 KB (added by jfcaron3, 10 years ago)
Line 
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
4PortSystem          1.0
5PortGroup           python 1.0
6
7name                py-PyRSS2Gen
8version             1.1
9platforms           darwin
10license             BSD
11maintainers         nomaintainer
12
13description         Generate RSS2 using a Python data structure
14long_description    ${description}
15
16homepage            http://dalkescientific.com/Python/PyRSS2Gen.html
17master_sites        https://pypi.python.org/packages/source/P/PyRSS2Gen
18distname            PyRSS2Gen-1.1
19
20checksums           rmd160  5612ed113a3dd1c0686cefa6666707a47c8d7f1b \
21                    sha256  7960aed7e998d2482bf58716c316509786f596426f879b05f8d84e98b82c6ee7
22
23python.versions     25 26 27 32 33 34
24
25if {${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}