| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.1 2003/10/08 14:07:38 liquidx Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.2 2003/10/09 08:41:40 liquidx Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Alastair Tse <liquidx@gentoo.org> |
5 | # Author: Alastair Tse <liquidx@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # A Utility Eclass that should be inherited by anything that deals with |
7 | # A Utility Eclass that should be inherited by anything that deals with |
| 8 | # Python or Python modules. |
8 | # Python or Python modules. |
| … | |
… | |
| 19 | |
19 | |
| 20 | inherit alternatives |
20 | inherit alternatives |
| 21 | |
21 | |
| 22 | ECLASS="python" |
22 | ECLASS="python" |
| 23 | INHERITED="$INHERITED $ECLASS" |
23 | INHERITED="$INHERITED $ECLASS" |
|
|
24 | |
|
|
25 | python_disable_pyc() { |
|
|
26 | PYTHON_DONTCOMPILE=1 |
|
|
27 | } |
| 24 | |
28 | |
| 25 | # |
29 | # |
| 26 | # name: python_version |
30 | # name: python_version |
| 27 | # desc: run without arguments and it will export the version of python |
31 | # desc: run without arguments and it will export the version of python |
| 28 | # currently in use as $PYVER |
32 | # currently in use as $PYVER |