Gentoo Archives: gentoo-commits

From: Krzysztof Pawlik <nelchael@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/nelchael:master commit in: eclass/
Date: Sat, 03 Mar 2012 18:03:03
Message-Id: 1330797767.d2da3fa38c166446de16e6806ea3860d6c461a12.nelchael@gentoo
1 commit: d2da3fa38c166446de16e6806ea3860d6c461a12
2 Author: Krzysztof Pawlik <none <AT> none>
3 AuthorDate: Sat Mar 3 18:02:47 2012 +0000
4 Commit: Krzysztof Pawlik <nelchael <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 3 18:02:47 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/nelchael.git;a=commit;h=d2da3fa3
7
8 Documentation for eclass.
9
10 ---
11 eclass/python-distutils-ng.eclass | 14 +++++++++++++-
12 1 files changed, 13 insertions(+), 1 deletions(-)
13
14 diff --git a/eclass/python-distutils-ng.eclass b/eclass/python-distutils-ng.eclass
15 index ca6eaa8..3260d1b 100644
16 --- a/eclass/python-distutils-ng.eclass
17 +++ b/eclass/python-distutils-ng.eclass
18 @@ -13,7 +13,19 @@
19 # The Python eclass is designed to allow an easier installation of Python
20 # packages and their incorporation into the Gentoo Linux system.
21 #
22 -# TODO: Document implementations!
23 +# This eclass provides functions for following phases:
24 +# - src_prepare - you can define python_prepare_all function that will be run
25 +# before creating implementation-specific directory and python_prepare
26 +# function that will be run for each implementation
27 +# - src_configure - you can define python_configure function that will be run
28 +# for each implementation
29 +# - src_compile - you can define python_compile function that will be run for
30 +# each implementation, default function will run `setup.py build'
31 +# - src_test - you can define python_test function that will be run for each
32 +# implementation
33 +# - src_install - you can define python_install function that will be run for
34 +# each implementation and python_install_all that will be run in original
35 +# directory (so it wil lnot contain any implementation-specific files)
36
37 # @ECLASS-VARIABLE: PYTHON_COMPAT
38 # @DESCRIPTION: