Ticket #54280: Portfile

File Portfile, 1.6 KB (added by lockhart (Thomas Lockhart), 7 years ago)

Portfile for new port required by py-sphinx

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
3PortSystem          1.0
4PortGroup           python 1.0
5PortGroup           select 1.0
6
7name                py-sphinxcontrib-websupport
8version             1.0.1
9categories-append   textproc devel
10license             BSD
11maintainers         {jmr @jmroot} gmail.com:michel.sylvan openmaintainer
12description         Python documentation generator web extensions
13long_description \
14    Sphinx is a tool that makes it easy to create intelligent and beautiful \
15    documentation for Python projects (or other documents consisting of \
16    multiple reStructuredText sources), written by Georg Brandl. It was \
17    originally created to translate the new Python documentation, but has now \
18    been cleaned up in the hope that it will be useful to many other projects.
19
20platforms           darwin
21supported_archs     noarch
22
23homepage            http://sphinx-doc.org/
24master_sites        pypi:s/sphinxcontrib-websupport/
25distname            sphinxcontrib-websupport-${version}
26
27checksums           md5     84df26463b1ba65b07f926dbe2055665 \
28checksum            rmd160  e1c6a97368c1ada9f976b2f8d98cf3527e972eb4 \
29checksum            sha256  7a85961326aa3a400cd4ad3c816d70ed6f7c740acd7ce5d78cd0a67825072eb9
30
31python.versions     27 34 35 36
32
33if {$subport ne $name} {
34    depends_build   port:py${python.version}-setuptools
35
36    depends_lib     port:py${python.version}-docutils \
37                    port:py${python.version}-setuptools
38    # depends_run     port:py${python.version}-sphinx
39
40    livecheck.type  none
41} else {
42    livecheck.type  pypi
43}