summaryrefslogtreecommitdiffstats
path: root/rules
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2009-05-31 09:03:26 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2009-05-31 09:03:26 +0000
commit72caca3887d3699c4bf7f9c11f0b13558d3be42e (patch)
tree2580637b7a0e3db9955c13baee4d1ebe3cdf74d0 /rules
parent730e3204ade43ff86aa8e102cffe142915b8057b (diff)
downloadptxdist-72caca3887d3699c4bf7f9c11f0b13558d3be42e.tar.gz
ptxdist-72caca3887d3699c4bf7f9c11f0b13558d3be42e.tar.xz
[python] remove 2.4 and 3.0 leftovers
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@10619 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules')
-rw-r--r--rules/host-python24.in8
-rw-r--r--rules/host-python24.make76
-rw-r--r--rules/host-python30.in5
-rw-r--r--rules/host-python30.make110
4 files changed, 0 insertions, 199 deletions
diff --git a/rules/host-python24.in b/rules/host-python24.in
deleted file mode 100644
index 7967b736a..000000000
--- a/rules/host-python24.in
+++ /dev/null
@@ -1,8 +0,0 @@
-## SECTION=hosttools_noprompt
-
-config HOST_PYTHON24
- tristate
- help
- Python is an interpreted, interactive,
- object-oriented, extensible programming language.
-
diff --git a/rules/host-python24.make b/rules/host-python24.make
deleted file mode 100644
index b3d1f28b5..000000000
--- a/rules/host-python24.make
+++ /dev/null
@@ -1,76 +0,0 @@
-# -*-makefile-*-
-# $Id$
-#
-# Copyright (C) 2006 by Robert Schwebel
-#
-# 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_PYTHON24) += host-python24
-
-#
-# Paths and names
-#
-HOST_PYTHON24 = $(PYTHON24)
-HOST_PYTHON24_DIR = $(HOST_BUILDDIR)/$(HOST_PYTHON24)
-
-
-# ----------------------------------------------------------------------------
-# Get
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/host-python24.get: $(STATEDIR)/python24.get
- @$(call targetinfo)
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Extract
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/host-python24.extract:
- @$(call targetinfo)
- @$(call clean, $(HOST_PYTHON24_DIR))
- @$(call extract, PYTHON24, $(HOST_BUILDDIR))
- @$(call patchin, PYTHON24, $(HOST_PYTHON24_DIR))
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-HOST_PYTHON24_PATH := PATH=$(HOST_PATH)
-HOST_PYTHON24_ENV := $(HOST_ENV)
-HOST_PYTHON24_COMPILE_ENV := DESTDIR=/
-
-#
-# autoconf
-#
-HOST_PYTHON24_AUTOCONF := $(HOST_AUTOCONF)
-
-# ----------------------------------------------------------------------------
-# Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/host-python24.install:
- @$(call targetinfo)
- @$(call install, HOST_PYTHON24,,h)
-
- sed -i -e "s/^\(LDFLAGS=\).*$$/\1/" "$(PTXCONF_SYSROOT_HOST)/lib/python2.4/config/Makefile"
-
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Clean
-# ----------------------------------------------------------------------------
-
-host-python24_clean:
- rm -rf $(STATEDIR)/host-python24.*
- rm -rf $(HOST_PYTHON24_DIR)
-
-# vim: syntax=make
diff --git a/rules/host-python30.in b/rules/host-python30.in
deleted file mode 100644
index bb6e788f0..000000000
--- a/rules/host-python30.in
+++ /dev/null
@@ -1,5 +0,0 @@
-## SECTION=hosttools_noprompt
-
-config HOST_PYTHON30
- tristate
-
diff --git a/rules/host-python30.make b/rules/host-python30.make
deleted file mode 100644
index 8d977d395..000000000
--- a/rules/host-python30.make
+++ /dev/null
@@ -1,110 +0,0 @@
-# -*-makefile-*-
-# $Id$
-#
-# Copyright (C) 2008 by Robert Schwebel <r.schwebel@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_PYTHON30) += host-python30
-
-#
-# Paths and names
-#
-HOST_PYTHON30_DIR = $(HOST_BUILDDIR)/$(PYTHON30)
-
-# ----------------------------------------------------------------------------
-# Get
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/host-python30.get: $(STATEDIR)/python30.get
- @$(call targetinfo)
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Extract
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/host-python30.extract:
- @$(call targetinfo)
- @$(call clean, $(HOST_PYTHON30_DIR))
- @$(call extract, PYTHON30, $(HOST_BUILDDIR))
- @$(call patchin, PYTHON30, $(HOST_PYTHON30_DIR))
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-HOST_PYTHON30_PATH := PATH=$(HOST_PATH)
-HOST_PYTHON30_ENV := $(HOST_ENV)
-
-#
-# autoconf
-#
-HOST_PYTHON30_AUTOCONF := \
- $(HOST_AUTOCONF) \
- --enable-shared \
- --disable-profiling \
- --with-suffix="" \
- --without-pydebug \
- --without-system-ffi \
- --without-signal-module \
- --with-doc-strings \
- --with-pymalloc \
- --without-wctype-functions \
- --without-fpectl \
- --disable-ipv6
-
-#ifdef PTXCONF_PYTHON30__IPV6
-#HOST_PYTHON30_AUTOCONF += --enable-ipv6
-#else
-#HOST_PYTHON30_AUTOCONF += --disable-ipv6
-#endif
-#ifdef PTXCONF_ARCH_X86
-#HOST_PYTHON30_AUTOCONF += --with-tsc
-#else
-#HOST_PYTHON30_AUTOCONF += --without-tsc
-#endif
-
-$(STATEDIR)/host-python30.prepare:
- @$(call targetinfo)
- @$(call clean, $(HOST_PYTHON30_DIR)/config.cache)
- cd $(HOST_PYTHON30_DIR) && \
- $(HOST_PYTHON30_PATH) $(HOST_PYTHON30_ENV) \
- ./configure $(HOST_PYTHON30_AUTOCONF)
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Compile
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/host-python30.compile:
- @$(call targetinfo)
- cd $(HOST_PYTHON30_DIR) && $(HOST_PYTHON30_PATH) $(MAKE) $(PARALLELMFLAGS)
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/host-python30.install:
- @$(call targetinfo)
- @$(call install, HOST_PYTHON30,,h)
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Clean
-# ----------------------------------------------------------------------------
-
-host-python30_clean:
- rm -rf $(STATEDIR)/host-python30.*
- rm -rf $(HOST_PYTHON30_DIR)
-
-# vim: syntax=make