[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] Have `make install' write the Python version number in the #!
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1213173383 -3600 # Node ID b8fa4a11f71506b0b37252b8eebc0c6663736a05 # Parent cc4e471bbc0881498886bc73d517e0e1cd36c82f Have `make install' write the Python version number in the #! The Xen tools contain a number of Python extensions written in C. The C API to Python, used by these extensions, is not stable from one version of Python to the next. Our build system uses whatever version of Python is the default on the build system at that time to build these extensions. However, the actual scripts such as `xm' use #!/usr/bin/env python which uses whichever version of Python is the default on the deployment system at the time of invocation. If for any reason these two versions of Python are not the same (eg, because the system is built on one computer and executed on another, or because the system's gains a more recent Python installation alongside the original which changes the previous default), warnings and failures occur. In this patch I arrange for Python scripts to be installed via a special wrapper around `install', which determines the build-time Python version and path and then writes that into the #! line at the point of `make install' (or `make dist'). (It can also be overridden by setting PYTHON_PATH.) Signed-off-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- tools/Rules.mk | 5 +++++ tools/misc/Makefile | 4 ++-- tools/python/get-path | 22 ++++++++++++++++++++++ tools/python/install-wrap | 44 ++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 73 insertions(+), 2 deletions(-) diff -r cc4e471bbc08 -r b8fa4a11f715 tools/Rules.mk --- a/tools/Rules.mk Tue Jun 10 16:59:24 2008 +0100 +++ b/tools/Rules.mk Wed Jun 11 09:36:23 2008 +0100 @@ -35,6 +35,11 @@ CFLAGS-$(CONFIG_X86_32) += $(call cc-opt CFLAGS-$(CONFIG_X86_32) += $(call cc-option,$(CC),-mno-tls-direct-seg-refs) CFLAGS += $(CFLAGS-y) +DEFAULT_PYTHON_PATH := $(shell $(XEN_ROOT)/tools/python/get-path) +PYTHON_PATH ?= $(DEFAULT_PYTHON_PATH) +INSTALL_PYTHON_PROG = $(XEN_ROOT)/tools/python/install-wrap \ +"$(PYTHON_PATH)" $(INSTALL_PROG) + # Require GCC v3.4+ (to avoid issues with alignment constraints in Xen headers) check-$(CONFIG_X86) = $(call cc-ver-check,CC,0x030400,\ "Xen requires at least gcc-3.4") diff -r cc4e471bbc08 -r b8fa4a11f715 tools/misc/Makefile --- a/tools/misc/Makefile Tue Jun 10 16:59:24 2008 +0100 +++ b/tools/misc/Makefile Wed Jun 11 09:36:23 2008 +0100 @@ -32,8 +32,8 @@ install: build install: build $(INSTALL_DIR) $(DESTDIR)$(BINDIR) $(INSTALL_DIR) $(DESTDIR)$(SBINDIR) - $(INSTALL_PROG) $(INSTALL_BIN) $(DESTDIR)$(BINDIR) - $(INSTALL_PROG) $(INSTALL_SBIN) $(DESTDIR)$(SBINDIR) + $(INSTALL_PYTHON_PROG) $(INSTALL_BIN) $(DESTDIR)$(BINDIR) + $(INSTALL_PYTHON_PROG) $(INSTALL_SBIN) $(DESTDIR)$(SBINDIR) set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d install-recurse; done .PHONY: clean diff -r cc4e471bbc08 -r b8fa4a11f715 tools/python/get-path --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tools/python/get-path Wed Jun 11 09:36:23 2008 +0100 @@ -0,0 +1,22 @@ +#! /usr/bin/env bash +set -e + +check () { + set +e + p=`type -p python$v` + r=$? + set -e + if [ $r = 0 ]; then + echo >&2 "${0##*/}: will use #!$p for python programs" + printf "%s\n" "$p" + exit 0 + fi +} + +v="$(python -V 2>&1)" +v="${v#* }" +check +v="${v%.*}" +check +echo >&2 'python version not determined, will use env to find python at runtime' +printf "/usr/bin/env python\n" diff -r cc4e471bbc08 -r b8fa4a11f715 tools/python/install-wrap --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tools/python/install-wrap Wed Jun 11 09:36:23 2008 +0100 @@ -0,0 +1,44 @@ +#! /usr/bin/env bash +# usage: +# .../install-wrap $(PYTHON_PATH) install <options-to-install> <src>... <dest> +# where +# PYTHON_PATH is what to put after #! and may be `/usr/bin/env python' +# +# Used via $(INSTALL_PYTHON_PROG) in Rules.mk; PYTHON_PATH comes from +# .../get-path alongside this script + +set -e +if [ $# -lt 2 ]; then echo >&2 "${0##*/}: too few arguments"; exit 1; fi +pythonpath="$1"; shift + +install=("$1"); shift +srcs=() + +while [ $# != 0 ]; do + case "$1" in + -|--) install=("${install[@]}" "$1"); shift; break ;; + -*) install=("${install[@]}" "$1"); shift ;; + *) break ;; + esac +done +while [ $# -gt 1 ]; do + srcs=("${srcs[@]}" "$1"); shift +done +dest="$1"; shift + +destf="$dest" +for srcf in "${srcs[@]}"; do + if test -d "$dest"; then + destf="$dest/${srcf%%*/}"; + fi + org="$(sed -n '2q; /^#! *\/usr\/bin\/env python *$/p' $srcf)" + if [ "x$org" = x ]; then + "${install[@]}" "$srcf" "$destf" + continue + fi + tmpf="$destf.tmp" + "${install[@]}" "$srcf" "$tmpf" + printf >"$tmpf" "#!%s\n" "$pythonpath" + sed -e 1d "$srcf" >>"$tmpf" + mv -f "$tmpf" "$destf" +done _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |