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: Portfile 93539 2012-05-26 00:48:22Z jmr@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-couchdbkit |
---|
8 | version 0.6.5 |
---|
9 | |
---|
10 | categories python db |
---|
11 | license MIT |
---|
12 | platforms darwin |
---|
13 | maintainers blair |
---|
14 | description Python library for working with CouchDB |
---|
15 | long_description Couchdbkit provides you a full featured and easy client \ |
---|
16 | to access and manage CouchDB. It allow you to manage a \ |
---|
17 | CouchDB server, databases, doc managements and view \ |
---|
18 | access. All objects mostly reflect python objects for \ |
---|
19 | convenience. Server and databases objects could be used \ |
---|
20 | for example as easy as using a dict. |
---|
21 | |
---|
22 | homepage http://couchdbkit.org/ |
---|
23 | master_sites https://pypi.python.org/packages/source/c/couchdbkit |
---|
24 | distname couchdbkit-${version} |
---|
25 | checksums md5 d5f6382665697b0f126f68a211c1a5a2 \ |
---|
26 | sha1 64feff3bc6e47ff04d7efceeaad027036215d2c2 \ |
---|
27 | rmd160 58f1fe17b32c3b307851b9f2701a987aab8d9849 |
---|
28 | |
---|
29 | # Python >= 2.6 required |
---|
30 | # Python 3.x supported "soon" |
---|
31 | python.versions 26 27 |
---|
32 | |
---|
33 | if {$subport != $name} { |
---|
34 | depends_build port:py${python.version}-setuptools |
---|
35 | depends_lib-append port:py${python.version}-restkit |
---|
36 | } |
---|
37 | |
---|
38 | livecheck.type regex |
---|
39 | livecheck.url http://pypi.python.org/pypi/couchdbkit |
---|
40 | livecheck.regex {couchdbkit ([0-9]+\.[0-9]+(?:\.[0-9]+)?)} |
---|