diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-10-09 08:41:41 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-10-09 08:41:41 +0000 |
commit | 7ed0241f4a6f05566eb597a9e7c130cc1a0086c5 (patch) | |
tree | d99101840b0d14822f08739d10629da1f259ff45 | |
parent | unmasking wxGTK and wxPython 2.4.2 (diff) | |
download | gentoo-2-7ed0241f4a6f05566eb597a9e7c130cc1a0086c5.tar.gz gentoo-2-7ed0241f4a6f05566eb597a9e7c130cc1a0086c5.tar.bz2 gentoo-2-7ed0241f4a6f05566eb597a9e7c130cc1a0086c5.zip |
adding hook to disable runtime compiling of pyc
-rw-r--r-- | eclass/distutils.eclass | 6 | ||||
-rw-r--r-- | eclass/python.eclass | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/eclass/distutils.eclass b/eclass/distutils.eclass index 3dc91edb7f72..72ec564c7e56 100644 --- a/eclass/distutils.eclass +++ b/eclass/distutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.15 2003/10/02 23:14:17 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.16 2003/10/09 08:41:41 liquidx Exp $ # # Author: Jon Nelson <jnelson@gentoo.org> # Current Maintainer: Alastair Tse <liquidx@gentoo.org> @@ -19,6 +19,8 @@ # PYTHON_SLOT_VERSION - for Zope support # DOCS - additional DOCS +inherit python + ECLASS=distutils INHERITED="$INHERITED $ECLASS" @@ -33,10 +35,12 @@ else fi distutils_src_compile() { + python_disable_pyc ${python} setup.py build "$@" || die "compilation failed" } distutils_src_install() { + python_disable_pyc ${python} setup.py install --root=${D} "$@" || die dodoc CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS PKG-INFO diff --git a/eclass/python.eclass b/eclass/python.eclass index c90ad2469aac..49ded9e41f97 100644 --- a/eclass/python.eclass +++ b/eclass/python.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.1 2003/10/08 14:07:38 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.2 2003/10/09 08:41:40 liquidx Exp $ # # Author: Alastair Tse <liquidx@gentoo.org> # @@ -22,6 +22,10 @@ inherit alternatives ECLASS="python" INHERITED="$INHERITED $ECLASS" +python_disable_pyc() { + PYTHON_DONTCOMPILE=1 +} + # # name: python_version # desc: run without arguments and it will export the version of python |