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