1 | |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-repoze.lru |
---|
8 | set real_name repoze.lru |
---|
9 | version 0.5 |
---|
10 | python.versions 25 26 27 32 |
---|
11 | categories python |
---|
12 | license BSD |
---|
13 | maintainers nomaintainer |
---|
14 | description A tiny LRU cache implementation and decorator |
---|
15 | long_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 | |
---|
22 | platforms darwin |
---|
23 | supported_archs noarch |
---|
24 | |
---|
25 | homepage http://repoze.org/ |
---|
26 | master_sites http://pypi.python.org/packages/source/r/${real_name}/ |
---|
27 | distname ${real_name}-${version} |
---|
28 | |
---|
29 | checksums rmd160 a8cdd8d1eeada80b730fed07caf7b002bac87777 \ |
---|
30 | sha256 a82f38c416c0985350429810cc436a83ee2b0e260d490866e8f063d792388be5 |
---|
31 | |
---|
32 | if {$name != $subport} { |
---|
33 | depends_build-append port:py${python.version}-distribute |
---|
34 | } |
---|