Ticket #33937: Portfile.2

File Portfile.2, 1.1 KB (added by larryv (Lawrence Velázquez), 12 years ago)

Portfile with build dependency on py-distribute

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2# $Id: Portfile 71797 2010-09-23 15:06:18Z jameskyle@macports.org $
3# vim: set fileencoding=utf-8 tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab filetype=tcl :
4
5PortSystem          1.0
6PortGroup           python 1.0
7
8name                py-pytools
9version             2011.5
10platforms           darwin
11maintainers         openmaintainer
12license             MIT
13description         A collection of tools for Python
14long_description    Pytools is a big bag of things that are "missing" \
15                    from the Python standard library.
16homepage            http://pypi.python.org/pypi/pytools
17
18set real_name       pytools
19distname            ${real_name}-${version}
20master_sites        http://pypi.python.org/packages/source/p/${real_name}
21checksums           md5     90107519fee21eeb7e712afb2178a568 \
22                    sha1    ebaeb51b2a80b9d5f487868ded240430a736b750 \
23                    rmd160  31250206a2026646dd293c888bf356307c90799c
24
25python.versions     26 27
26python.default_version 27
27
28if {${subport} != ${name}} {
29    depends_build-append    port:py${python.version}-distribute
30}