summaryrefslogtreecommitdiffstats
path: root/rules/host-python3-setuptools.make
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2015-09-03 21:07:23 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2015-09-21 10:19:22 +0200
commit0d3ed18d9eb083c9c6cafbe73f201cacd21ec125 (patch)
tree5abbcd444384410b17b002acffcb15a296f0c3f6 /rules/host-python3-setuptools.make
parent4c7f558c8e1ba4aafc2aa3741017c45484c62904 (diff)
downloadptxdist-0d3ed18d9eb083c9c6cafbe73f201cacd21ec125.tar.gz
ptxdist-0d3ed18d9eb083c9c6cafbe73f201cacd21ec125.tar.xz
host-python3-setuptools: add new package
Add setuptools support for python3 host packages, similar to what we have for python2. Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
Diffstat (limited to 'rules/host-python3-setuptools.make')
-rw-r--r--rules/host-python3-setuptools.make34
1 files changed, 34 insertions, 0 deletions
diff --git a/rules/host-python3-setuptools.make b/rules/host-python3-setuptools.make
new file mode 100644
index 000000000..26692598b
--- /dev/null
+++ b/rules/host-python3-setuptools.make
@@ -0,0 +1,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_PYTHON3_SETUPTOOLS) += host-python3-setuptools
+
+#
+# Paths and names
+#
+HOST_PYTHON3_SETUPTOOLS_VERSION := 17.0
+HOST_PYTHON3_SETUPTOOLS_MD5 := a661715d164163ec7a01a9277a6d49da
+HOST_PYTHON3_SETUPTOOLS := setuptools-$(HOST_PYTHON3_SETUPTOOLS_VERSION)
+HOST_PYTHON3_SETUPTOOLS_SUFFIX := zip
+HOST_PYTHON3_SETUPTOOLS_URL := https://pypi.python.org/packages/source/s/setuptools/$(HOST_PYTHON3_SETUPTOOLS).$(HOST_PYTHON3_SETUPTOOLS_SUFFIX)
+HOST_PYTHON3_SETUPTOOLS_SOURCE := $(SRCDIR)/$(HOST_PYTHON3_SETUPTOOLS).$(HOST_PYTHON3_SETUPTOOLS_SUFFIX)
+HOST_PYTHON3_SETUPTOOLS_DIR := $(HOST_BUILDDIR)/$(HOST_PYTHON3_SETUPTOOLS)
+HOST_PYTHON3_SETUPTOOLS_LICENSE := PSF, ZPL
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+HOST_PYTHON3_SETUPTOOLS_CONF_TOOL := python3
+
+# vim: syntax=make