diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-03-26 21:40:23 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-03-28 12:22:39 +0200 |
commit | 371f11dac936b69609e99a1fc7eac0f24e422885 (patch) | |
tree | 7bda4548e2e75f4402e33cd6b7221440d4051b01 /eclass/python-any-r1.eclass | |
parent | python-single-r1.eclass: Update examples to use BDEPEND (diff) | |
download | gentoo-371f11dac936b69609e99a1fc7eac0f24e422885.tar.gz gentoo-371f11dac936b69609e99a1fc7eac0f24e422885.tar.bz2 gentoo-371f11dac936b69609e99a1fc7eac0f24e422885.zip |
python-any-r1.eclass: Use BDEPEND in examples
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/python-any-r1.eclass')
-rw-r--r-- | eclass/python-any-r1.eclass | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/eclass/python-any-r1.eclass b/eclass/python-any-r1.eclass index 313fe6b40df0..3a80fa35c577 100644 --- a/eclass/python-any-r1.eclass +++ b/eclass/python-any-r1.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: python-any-r1.eclass @@ -116,8 +116,7 @@ EXPORT_FUNCTIONS pkg_setup # # Example use: # @CODE -# DEPEND="${RDEPEND} -# ${PYTHON_DEPS}" +# BDEPEND="${PYTHON_DEPS}" # @CODE # # Example value: @@ -222,7 +221,7 @@ if [[ ! ${_PYTHON_ANY_R1} ]]; then # # Example use: # @CODE -# DEPEND="$(python_gen_any_dep ' +# BDEPEND="$(python_gen_any_dep ' # dev-python/foo[${PYTHON_SINGLE_USEDEP}] # || ( dev-python/bar[${PYTHON_USEDEP}] # dev-python/baz[${PYTHON_USEDEP}] )')" |