diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-02-04 13:52:09 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-02-04 13:52:09 +0000 |
commit | 7afc94d0d0d444b00149c22527a9f1c4129c64f2 (patch) | |
tree | c2fc501e555b8d0e7891d4bab2957aba5ff6ab0b /eclass | |
parent | sci-mathematics/gimps: Drop old (diff) | |
download | gentoo-2-7afc94d0d0d444b00149c22527a9f1c4129c64f2.tar.gz gentoo-2-7afc94d0d0d444b00149c22527a9f1c4129c64f2.tar.bz2 gentoo-2-7afc94d0d0d444b00149c22527a9f1c4129c64f2.zip |
Introduce python_newscript(), to install scripts with renaming. Requested in bug #454640.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 6 | ||||
-rw-r--r-- | eclass/python-utils-r1.eclass | 48 |
2 files changed, 42 insertions, 12 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 5d672dc0083a..fcaa6a891bb8 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.658 2013/02/01 21:39:50 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.659 2013/02/04 13:52:09 mgorny Exp $ + + 04 Feb 2013; Michał Górny <mgorny@gentoo.org> python-utils-r1.eclass: + Introduce python_newscript(), to install scripts with renaming. Requested in + bug #454640. 01 Feb 2013; Michał Górny <mgorny@gentoo.org> autotools-multilib.eclass, +multilib-build.eclass: diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index b42530220e11..986f7b1c92e1 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.16 2013/01/29 21:12:33 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.17 2013/02/04 13:52:09 mgorny Exp $ # @ECLASS: python-utils-r1 # @MAINTAINER: @@ -521,7 +521,34 @@ python_scriptinto() { python_doscript() { debug-print-function ${FUNCNAME} "${@}" + local f + for f; do + python_newscript "${f}" "${f##*/}" + done +} + +# @FUNCTION: python_newscript +# @USAGE: <path> <new-name> +# @DESCRIPTION: +# Install the given script into current python_scriptroot +# for the current Python implementation (${EPYTHON}), and name it +# <new-name>. +# +# The file must start with a 'python' shebang. The shebang will be +# converted, the file will be renamed to be EPYTHON-suffixed +# and a wrapper will be installed in place of the <new-name>. +# +# Example: +# @CODE +# src_install() { +# python_foreach_impl python_newscript foo.py foo +# } +# @CODE +python_newscript() { + debug-print-function ${FUNCNAME} "${@}" + [[ ${EPYTHON} ]] || die 'No Python implementation set (EPYTHON is null).' + [[ ${#} -eq 2 ]] || die "Usage: ${FUNCNAME} <path> <new-name>" local d=${python_scriptroot:-${DESTTREE}/bin} local INSDESTTREE INSOPTIONS @@ -529,18 +556,17 @@ python_doscript() { insinto "${d}" insopts -m755 - local f - for f; do - local oldfn=${f##*/} - local newfn=${oldfn}-${EPYTHON} + local f=${1} + local barefn=${2} - debug-print "${FUNCNAME}: ${oldfn} -> ${newfn}" - newins "${f}" "${newfn}" || die - _python_rewrite_shebang "${ED}/${d}/${newfn}" + local newfn=${barefn}-${EPYTHON} - # install the wrapper - _python_ln_rel "${ED}"/usr/bin/python-exec "${ED}/${d}/${oldfn}" || die - done + debug-print "${FUNCNAME}: ${f} -> ${d}/${newfn}" + newins "${f}" "${newfn}" || die + _python_rewrite_shebang "${ED}/${d}/${newfn}" + + # install the wrapper + _python_ln_rel "${ED}"/usr/bin/python-exec "${ED}/${d}/${barefn}" || die } # @ECLASS-VARIABLE: python_moduleroot |