# -*- 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

PortSystem          1.0
PortGroup           python 1.0
PortGroup           select 1.0

set base_name       csvkit
name                py-$base_name
version             1.0.2
python.versions     27 35 36
categories-append   textproc
platforms           darwin
maintainers         {gmail.com:esafak @esafak} openmaintainer
license             MIT
supported_archs     noarch

description         A suite of utilities for converting to and working with CSV, the king of tabular file formats
long_description    csvkit is a suite of utilities for converting to and working with CSV, \
                    the king of tabular file formats. csvkit is to tabular data what the \
                    standard Unix text processing suite (grep, sed, cut, sort) is to text. \
                    As such, csvkit adheres to the Unix philosophy.

homepage            https://pypi.python.org/pypi/$base_name
master_sites        pypi:c/$base_name

checksums           md5     846c2e9b2ae4e948299258f3e0f534f2 \
                    rmd160  606c600968196dfadb37260a6e7834a1ef4767b8 \
                    sha256  5a897f87c920dec3e7debc31102dfe774a8d704641bfafa98e04729bd4d26e17

distname            $base_name-${version}

if {${name} ne ${subport}} {
    livecheck.type      none

    depends_build-append \
                        port:py${python.version}-setuptools \
                        port:py${python.version}-coverage \
                        port:py${python.version}-sphinx \
                        port:py${python.version}-sphinx_rtd_theme \
                        port:py${python.version}-nose \
                        port:py${python.version}-tox

    depends_lib-append  port:${base_name}_select \
                        port:py${python.version}-agate \
                        port:py${python.version}-agate-excel \
                        port:py${python.version}-agate-dbf \
                        port:py${python.version}-agate-sql \
                        port:py${python.version}-six

    select.group        $base_name
    select.file         ${filespath}/py${python.version}-$base_name
} else {
    livecheck.type      regex
    livecheck.url       ${homepage}
    livecheck.regex     $base_name (\\d+(\\.\\d+)+)
}