Ticket #51998: new_Portfile_py-backports-functools_lru_cache

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