# -*- 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             3.0.0
revision            0

maintainers         nomaintainer
license             Apache-2
supported_archs     noarch
platforms           {darwin any}

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           rmd160  307c5fb65e20cf7ac4be792d72a897deba091bab \
                    sha256  2a8917d25b0e1f1d0d365d3c1c6ecfc7a522b1e9716e8a1a4a915126f7ccea6f \
                    size    31322

python.versions     39 310 311 312 313

if {${subport} ne ${name}} {
    depends_build-append \
                    port:py${python.version}-pbr

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