Ticket #38898: Portfile.2

File Portfile.2, 1.6 KB (added by jkrage@…, 11 years ago)

Portfile for py-couchdbkit 0.6.5

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: Portfile 93539 2012-05-26 00:48:22Z jmr@macports.org $
3
4PortSystem          1.0
5PortGroup           python 1.0
6
7name                py-couchdbkit
8version             0.6.5
9
10categories          python db
11license             MIT
12platforms           darwin
13maintainers         blair
14description         Python library for working with CouchDB
15long_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
22homepage            http://couchdbkit.org/
23master_sites        https://pypi.python.org/packages/source/c/couchdbkit
24distname            couchdbkit-${version}
25checksums           md5 d5f6382665697b0f126f68a211c1a5a2 \
26                    sha1 64feff3bc6e47ff04d7efceeaad027036215d2c2 \
27                    rmd160 58f1fe17b32c3b307851b9f2701a987aab8d9849
28
29# Python >= 2.6 required
30# Python 3.x supported "soon"
31python.versions     26 27
32
33if {$subport != $name} {
34    depends_build       port:py${python.version}-setuptools
35    depends_lib-append  port:py${python.version}-restkit
36}
37
38livecheck.type      regex
39livecheck.url       http://pypi.python.org/pypi/couchdbkit
40livecheck.regex     {couchdbkit ([0-9]+\.[0-9]+(?:\.[0-9]+)?)}