changeset 3448:f0a1b0872dbb

build-python: New build tool package.
author John W. Eaton <jwe@octave.org>
date Thu, 23 Jan 2014 15:09:13 -0500
parents 690a00576e5e
children 36968660f724
files Makefile.in index.html src/build-python.mk
diffstat 3 files changed, 28 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.in	Thu Jan 23 12:44:22 2014 -0500
+++ b/Makefile.in	Thu Jan 23 15:09:13 2014 -0500
@@ -160,11 +160,6 @@
   REQUIREMENTS += bsdtar
 endif
 
-# if we want jit (llvm) we need python
-ifeq ($(ENABLE_JIT),yes)
-  REQUIREMENTS += python
-endif
-
 LIBTOOL     := libtool
 LIBTOOLIZE  := libtoolize
 
--- a/index.html	Thu Jan 23 12:44:22 2014 -0500
+++ b/index.html	Thu Jan 23 15:09:13 2014 -0500
@@ -1042,6 +1042,11 @@
         <td id="build-pkg-config-website"><a href="http://www.freedesktop.org/wiki/Software/pkg-config">pkg-config</a></td>
     </tr>
     <tr>
+        <td id="build-python-package">python</td>
+        <td id="build-python-version">2.7.6</td>
+        <td id="build-python-website"><a href="http://www.python.org">python</a></td>
+    </tr>
+    <tr>
         <td id="build-texinfo-package">texinfo</td>
         <td id="build-texinfo-version">4.13a</td>
         <td id="build-texinfo-website"><a href="http://www.gnu.org/software/texinfo">texinfo</a></td>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/build-python.mk	Thu Jan 23 15:09:13 2014 -0500
@@ -0,0 +1,23 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG             := build-python
+$(PKG)_IGNORE   :=
+$(PKG)_CHECKSUM := 8328d9f1d55574a287df384f4931a3942f03da64
+$(PKG)_SUBDIR   := Python-$($(PKG)_VERSION)
+$(PKG)_FILE     := Python-$($(PKG)_VERSION).tgz
+$(PKG)_URL      := http://www.python.org/ftp/python/2.7.6/$($(PKG)_FILE)
+$(PKG)_DEPS     := build-gcc
+
+define $(PKG)_UPDATE
+    echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
+    echo $($(PKG)_VERSION)
+endef
+
+define $(PKG)_BUILD
+    mkdir '$(1).build'
+    cd    '$(1).build' && '$(1)/configure' \
+        --prefix='$(BUILD_TOOLS_PREFIX)'
+    $(MAKE) -C '$(1).build' -j '$(JOBS)'
+    $(MAKE) -C '$(1).build' -j 1 install
+endef