Ticket #68224: py-async-lru.Portfile

File py-async-lru.Portfile, 1012 bytes (added by johankytt, 12 months ago)
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
3PortSystem          1.0
4PortGroup           python 1.0
5
6name                py-async-lru
7version             2.0.4
8revision            0
9categories-append   devel
10license             BSD
11supported_archs     noarch
12platforms           {darwin any}
13
14python.versions     38 39 310 311
15
16maintainers         openmaintainer
17
18description         Simple LRU cache for asyncio
19
20long_description    {*}${description}
21
22homepage            https://github.com/aio-libs/async-lru
23
24checksums           rmd160  597fb64512f28317f2fcf5b3ca5ac424d48591d4 \
25                    sha256  b8a59a5df60805ff63220b2a0c5b5393da5521b113cd5465a44eb037d81a5627 \
26                    size    10019
27
28if {${name} ne ${subport}} {
29    depends_build-append  port:py${python.version}-setuptools
30
31    if {${python.version} < 311} {
32        depends_build-append    port:py${python.version}-typing_extensions
33    }
34}