Gentoo Archives: gentoo-devhelp

From: Nikos Chantziaras <realnc@×××××.com>
To: gentoo-devhelp@l.g.o
Subject: [gentoo-devhelp] How does PYTHON_COMPAT work?
Date: Wed, 06 Aug 2014 12:26:43
Message-Id: lrt6t5$gi1$1@ger.gmane.org
1 I have an ebuild where:
2
3 PYTHON_COMPAT=( python3_3 python3_4 )
4 inherit distutils-r1
5
6 works just fine. Now python 3.3 doesn't work anymore for the software,
7 so I removed that. But this:
8
9 PYTHON_COMPAT=( python3_4 )
10 # or: PYTHON_COMPAT=python3_4
11 inherit distutils-r1
12
13 doesn't work. During emerge:
14
15 Calculating dependencies \
16
17 !!! Problem resolving dependencies for net-misc/livestreamer
18 ... done!
19
20 !!! The ebuild selected to satisfy "livestreamer" has unmet requirements.
21 - net-misc/livestreamer-1.9.0::Local USE="" ABI_X86="64"
22 PYTHON_TARGETS="-python3_4"
23
24 The following REQUIRED_USE flag constraints are unsatisfied:
25 python_targets_python3_4
26
27 The above constraints are a subset of the following complete expression:
28 any-of ( python_targets_python3_4 )

Replies

Subject Author
Re: [gentoo-devhelp] How does PYTHON_COMPAT work? justin <jlec@g.o>