Ticket #32813: Portfile

File Portfile, 1.0 KB (added by gorticus (Jason Mitchell), 13 years ago)

py-certifi Portfile, used subports

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