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 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-backports-functools_lru_cache |
---|
8 | version 1.2.1 |
---|
9 | categories-append devel |
---|
10 | platforms darwin |
---|
11 | license MIT |
---|
12 | |
---|
13 | maintainers nomaintainer |
---|
14 | |
---|
15 | description Backport of functools.lru_cache from Python 3.3 as \ |
---|
16 | published at ActiveState \ |
---|
17 | (http://code.activestate.com/recipes/578078/) |
---|
18 | long_description ${description} |
---|
19 | |
---|
20 | homepage https://github.com/jaraco/backports.functools_lru_cache |
---|
21 | master_sites pypi:b/backports.functools_lru_cache |
---|
22 | distname backports.functools_lru_cache-${version} |
---|
23 | |
---|
24 | checksums rmd160 7cb67361aed652c6d3f6b472da850bba1e4dda0f \ |
---|
25 | sha256 1c20e07f1a8a36a19d5d258b6b076e588d78d8fc7c2c4487ffe3a280f55a7bd1 |
---|
26 | |
---|
27 | python.versions 27 |
---|
28 | |
---|
29 | if {${name} ne ${subport}} { |
---|
30 | depends_build-append port:py${python.version}-setuptools |
---|
31 | livecheck.type none |
---|
32 | } else { |
---|
33 | livecheck.type pypi |
---|
34 | } |
---|