Ticket #58902: Portfile

File Portfile, 1.3 KB (added by juergennagel, 5 years ago)

Portfile for py-pathspec

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
2PortSystem          1.0
3PortGroup           github 1.0
4PortGroup           python 1.0
5
6name                py-pathspec
7version             0.5.9
8categories          python
9platforms           darwin
10license             MPL-2
11maintainers         nomaintainer
12supported_archs     noarch
13description         Utility library for gitignore style pattern matching of file paths.
14long_description    pathspec is a utility library for pattern matching of file paths. So far this only includes Git's wildmatch pattern matching which itself is derived from Rsync's wildmatch. Git uses wildmatch for its gitignore files.
15homepage            https://github.com/cpburnz/python-path-specification
16master_sites        pypi:[string index ${python.rootname} 0]/${python.rootname}
17distname            ${python.rootname}-${version}
18
19checksums           rmd160  f48d65b4f91b0f8bafc71684e5ab089c446d4da4 \
20                    sha256  54a5eab895d89f342b52ba2bffe70930ef9f8d96e398cccf530d21fa0516a873 \
21                    size    25473
22
23python.versions     27 34 35 36 37
24
25if {${name} ne ${subport}} {
26    depends_build-append \
27                            port:py${python.version}-setuptools
28}