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-certifi |
---|
8 | version 0.0.6 |
---|
9 | python.versions 26 27 |
---|
10 | python.default_version 27 |
---|
11 | categories python devel |
---|
12 | platforms darwin |
---|
13 | maintainers openmaintainer |
---|
14 | license ISC |
---|
15 | homepage http://pypi.python.org/pypi/certifi |
---|
16 | description Python SSL Certificates |
---|
17 | long_description This packge contains a modified version of ca-bundle.crt. |
---|
18 | |
---|
19 | master_sites http://pypi.python.org/packages/source/c/certifi |
---|
20 | distname certifi-${version} |
---|
21 | |
---|
22 | checksums rmd160 65827de13f51cb9127d1b5a8097698dd074f6320 \ |
---|
23 | sha256 e839718ce80daa9853b1f47a333757d4a22cdf422e2fd8de5e579d5634a89585 |
---|
24 | |
---|
25 | if {$subport != $name} { |
---|
26 | livecheck.type none |
---|
27 | } else { |
---|
28 | livecheck.type regex |
---|
29 | livecheck.url ${homepage} |
---|
30 | livecheck.regex certifi (\\d+(\\.\\d+)+) |
---|
31 | } |
---|