Ticket #34216: Portfile

File Portfile, 1.1 KB (added by ryan@…, 12 years ago)

repoze.lru

Line 
1
2# $Id$
3
4PortSystem          1.0
5PortGroup           python 1.0
6
7name                py-repoze.lru
8set real_name       repoze.lru
9version             0.5
10python.versions     25 26 27 32
11categories          python
12license             BSD
13maintainers         nomaintainer
14description         A tiny LRU cache implementation and decorator
15long_description \
16   repoze.lru is a LRU (least recently used) cache implementation. \
17   Keys and values that are not used frequently will be evicted \
18   from the cache faster than keys and values that are used \
19   frequently. It works under Python 2.5, Python 2.6, Python 2.7, \
20   and Python 3.2.
21
22platforms           darwin
23supported_archs     noarch
24
25homepage            http://repoze.org/
26master_sites        http://pypi.python.org/packages/source/r/${real_name}/
27distname            ${real_name}-${version}
28
29checksums           rmd160  a8cdd8d1eeada80b730fed07caf7b002bac87777 \
30                    sha256  a82f38c416c0985350429810cc436a83ee2b0e260d490866e8f063d792388be5
31
32if {$name != $subport} {
33    depends_build-append port:py${python.version}-distribute
34}