Ticket #33140: Portfile

File Portfile, 1.4 KB (added by conall+macports@…, 12 years ago)
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
3# $Id$
4
5PortSystem          1.0
6PortGroup           python 1.0
7
8name                py-gflags
9version             2.0
10categories-append   devel
11license             BSD
12maintainers         conall.net:conall+macports
13description         Python equivalent of google-gflag, a getopt() replacement.
14
15long_description \
16    A library that implements commandline flags processing. As such it's a \
17    replacement for getopt(). It has: \
18        * increased flexibility, including built-in support for Python types \
19        * the ability to define flags in the source file in which they're \
20          used. (This last is its major difference from OptParse.) 
21
22platforms           darwin
23homepage            http://code.google.com/p/python-gflags/
24master_sites        http://python-gflags.googlecode.com/files/
25distname            python-gflags-${version}
26
27checksums           sha1    db309e6964b102ff36de319ce551db512a78281e \
28                    rmd160  b54a08bbb4dfb79cea17aef60e65f0847aab0a26 \
29                    sha256  311066217acb8cd8519a4c872cb3fe64f02bcf105802bb761ab0de55c2386cd6
30
31depends_build-append    port:py${python.version}-distribute
32
33python.versions     24 25 26 27
34python.default_version 27
35
36livecheck.type      googlecode
37livecheck.regex     python-gflags-(\[0-9\.-\]+).tar.gz
38   
39