view gub/specs/python-config.py @ 6207:895c23f49db3

Python: add conflict dicts. Enables python-2.x builds and installs.
author Jan Nieuwenhuizen <janneke@gnu.org>
date Tue, 28 Aug 2012 11:26:57 +0200
parents 801cfb67b10e
children
line wrap: on
line source

from gub import build
from gub import misc
from gub import tools

class Python_config (build.SdkBuild):
    source = 'url://host/python-config-' + tools.python_version + '.tar.gz'
    dependencies = ['tools::python']
    def install (self):
        build.SdkBuild.install (self)
        misc.dump_python_config (self)