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 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python 1.0 |
---|
5 | |
---|
6 | name py-async-lru |
---|
7 | version 2.0.4 |
---|
8 | revision 0 |
---|
9 | categories-append devel |
---|
10 | license BSD |
---|
11 | supported_archs noarch |
---|
12 | platforms {darwin any} |
---|
13 | |
---|
14 | python.versions 38 39 310 311 |
---|
15 | |
---|
16 | maintainers openmaintainer |
---|
17 | |
---|
18 | description Simple LRU cache for asyncio |
---|
19 | |
---|
20 | long_description {*}${description} |
---|
21 | |
---|
22 | homepage https://github.com/aio-libs/async-lru |
---|
23 | |
---|
24 | checksums rmd160 597fb64512f28317f2fcf5b3ca5ac424d48591d4 \ |
---|
25 | sha256 b8a59a5df60805ff63220b2a0c5b5393da5521b113cd5465a44eb037d81a5627 \ |
---|
26 | size 10019 |
---|
27 | |
---|
28 | if {${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 | } |
---|