# -*- 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           github 1.0
PortGroup           python 1.0

github.setup        certbot josepy 1.1.0 v
name                py-josepy
categories-append   security
license             Apache-2
maintainers         {mps @Schamschula} openmaintainer
description         JOSE protocol implementation in Python using cryptography
long_description    ${description}
platforms           darwin

python.versions     27 36 37

checksums           rmd160  c297a66f6f9f50c30c82292ed0e0a5c2c87e8d3c \
                    sha256  453c2128fc783469b7d0f515acae7dfc50b6fa2b7e3f45b3d5fca49e5f15b25f \
                    size    52130

if {${name} ne ${subport}} {
    pre-activate {
        # both py-acme and py-josepy previously conflicted because they installed files now provided by py-josepy
        if {![catch {set installed [lindex [registry_active py${python.version}-acme] 0]}]} {
            set _version [lindex $installed 1]
            if {[vercmp $_version 0.21.0] < 0} {
                # py-acme used to install some files now provided by py-josepy in versions < 0.21.0
                registry_deactivate_composite py${python.version}-acme "" [list ports_nodepcheck 1]
            }
        }
    }

    depends_lib-append  port:py${python.version}-setuptools
}