summaryrefslogtreecommitdiffstats
path: root/rules/host-python-setuptools.make
blob: 66a7784ab28d4db2ab96f5151f326460a1faf154 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# -*-makefile-*-
#
# Copyright (C) 2014 by Michael Olbrich <m.olbrich@pengutronix.de>
#
# See CREDITS for details about who has contributed to this project.
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
HOST_PACKAGES-$(PTXCONF_HOST_PYTHON_SETUPTOOLS) += host-python-setuptools

#
# Paths and names
#
HOST_PYTHON_SETUPTOOLS_VERSION	:= 17.0
HOST_PYTHON_SETUPTOOLS_MD5	:= a661715d164163ec7a01a9277a6d49da
HOST_PYTHON_SETUPTOOLS		:= python-setuptools-$(HOST_PYTHON_SETUPTOOLS_VERSION)
HOST_PYTHON_SETUPTOOLS_SUFFIX	:= zip
HOST_PYTHON_SETUPTOOLS_URL	:= https://pypi.python.org/packages/source/s/setuptools/setuptools-$(HOST_PYTHON_SETUPTOOLS_VERSION).$(HOST_PYTHON_SETUPTOOLS_SUFFIX)
HOST_PYTHON_SETUPTOOLS_SOURCE	:= $(SRCDIR)/$(HOST_PYTHON_SETUPTOOLS).$(HOST_PYTHON_SETUPTOOLS_SUFFIX)
HOST_PYTHON_SETUPTOOLS_DIR	:= $(HOST_BUILDDIR)/$(HOST_PYTHON_SETUPTOOLS)
HOST_PYTHON_SETUPTOOLS_LICENSE	:= PSF, ZPL

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

HOST_PYTHON_SETUPTOOLS_CONF_TOOL	:= python

# vim: syntax=make