# -*- 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

PortSystem          1.0
PortGroup           python 1.0

name                py-pymongo
version             3.7.2
revision            0
categories-append   databases
platforms           darwin
license             Apache

python.versions     27 34 35 36 37

maintainers         {stromnov @stromnov} openmaintainer

description         Python access to mongodb
long_description \
        The PyMongo distribution contains tools for interacting with \
        the Mongo database from Python.

homepage            http://www.mongodb.org/
master_sites        pypi:[string index ${python.rootname} 0]/${python.rootname}

distname            ${python.rootname}-${version}

checksums           rmd160  418086d52ad29df99460b2b86918528ed4b7af58 \
                    sha256  8c74e2a9b594f7962c62cef7680a4cb92a96b4e6e3c2f970790da67cc0213a7e \
                    size    628611

if {${name} ne ${subport}} {
    conflicts               py${python.version}-bson

    depends_build-append    port:py${python.version}-setuptools
    post-destroot {
        xinstall -m 755 -d ${destroot}${python.prefix}/share/doc/${subport}
        xinstall -m 644 -W ${worksrcpath} README.rst \
            ${destroot}${python.prefix}/share/doc/${subport}
    }

    livecheck.type      none
}