diff options
author | Michał Górny <mgorny@gentoo.org> | 2012-11-01 21:49:34 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2012-11-01 21:49:34 +0000 |
commit | c8d73cfd3abfc5373319d0b1de6ffbe640b1385e (patch) | |
tree | 7ae16791d5655648320318969eed97e3b648bb44 /eclass | |
parent | version bump (diff) | |
download | gentoo-2-c8d73cfd3abfc5373319d0b1de6ffbe640b1385e.tar.gz gentoo-2-c8d73cfd3abfc5373319d0b1de6ffbe640b1385e.tar.bz2 gentoo-2-c8d73cfd3abfc5373319d0b1de6ffbe640b1385e.zip |
Minor documentation improvements.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/python-r1.eclass | 13 |
2 files changed, 11 insertions, 7 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index ece547b8e6ea..54fe8aa446e9 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.496 2012/11/01 21:43:22 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.497 2012/11/01 21:49:34 mgorny Exp $ + + 01 Nov 2012; Michał Górny <mgorny@gentoo.org> python-r1.eclass: + Minor documentation improvements. 01 Nov 2012; Michał Górny <mgorny@gentoo.org> python-r1.eclass: Mark _python_ln_rel as @INTERNAL. diff --git a/eclass/python-r1.eclass b/eclass/python-r1.eclass index 46fa62c3e8b5..7c678a55ea7e 100644 --- a/eclass/python-r1.eclass +++ b/eclass/python-r1.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/python-r1.eclass,v 1.15 2012/11/01 21:43:22 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python-r1.eclass,v 1.16 2012/11/01 21:49:34 mgorny Exp $ # @ECLASS: python-r1 # @MAINTAINER: @@ -87,8 +87,7 @@ fi # # It will cause the Python dependencies to look like: # @CODE -# python_targets_pythonX_Y? ( -# dev-lang/python:X_Y[gdbm,ncurses(-)?] ) +# python_targets_pythonX_Y? ( dev-lang/python:X.Y[gdbm,ncurses(-)?] ) # @CODE # @ECLASS-VARIABLE: PYTHON_DEPS @@ -99,14 +98,15 @@ fi # Example use: # @CODE # RDEPEND="${PYTHON_DEPS} -# dev-foo/mydep" +# dev-foo/mydep" # DEPEND="${RDEPEND}" # @CODE # # Example value: # @CODE -# python_targets2_6? ( dev-lang/python:2.6[gdbm] ) -# python_targets2_7? ( dev-lang/python:2.7[gdbm] ) +# dev-python/python-exec +# python_targets_python2_6? ( dev-lang/python:2.6[gdbm] ) +# python_targets_python2_7? ( dev-lang/python:2.7[gdbm] ) # @CODE # @ECLASS-VARIABLE: PYTHON_USEDEP @@ -212,6 +212,7 @@ _python_set_globals # # Example value: # @CODE +# /usr/lib64/python2.6/site-packages # @CODE # @FUNCTION: python_export |