# -*- 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-debtcollector
version             2.1.0
platforms           darwin
maintainers         nomaintainer
license             Apache-2
supported_archs     noarch

description         Python deprecation patterns and strategies

long_description    A collection of Python deprecation patterns and \
                    strategies that help you collect your technical \
                    debt in a non-destructive manner. The goal of this \
                    library is to provide well documented developer \
                    facing deprecation patterns that start of with a \
                    basic set and can expand into a larger set of \
                    patterns as time goes on. The desired output of \
                    these patterns is to apply the warnings module to \
                    emit DeprecationWarning or \
                    PendingDeprecationWarning or similar derivative to \
                    developers using libraries (or potentially \
                    applications) about future deprecations.
homepage            https://docs.openstack.org/debtcollector/latest/
checksums           md5     9a1014f18abbc565b8e149fd70048c22 \
                    rmd160  0525388be16b904a74450901facf99539b307201 \
                    sha256  a25fc6215560d81cb9f2a0b58d6c834f2a24010987027bde169599e138a205af \
                    size    28706

python.versions     36 37 38

if {${subport} ne ${name}} {
    livecheck.type  none

    depends_build-append \
                    port:py${python.version}-setuptools \
                    port:py${python.version}-pbr

    depends_run-append \
                    port:py${python.version}-six \
                    port:py${python.version}-wrapt
}
