Gentoo Archives: gentoo-user

From: Yuan MEI <yuan.mei.list@×××××.com>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] dependency problem - how to decipher this one
Date: Fri, 30 May 2014 19:48:10
Message-Id: CANGGyWbi+xHOgEEkjwSiq0og6EmNSC2CEDe2X-YSwTumWcv_Fg@mail.gmail.com
In Reply to: Re: [gentoo-user] dependency problem - how to decipher this one by Walter Dnes
1 On Wed, May 14, 2014 at 3:39 PM, Walter Dnes <waltdnes@××××××××.org> wrote:
2
3 > On Wed, May 14, 2014 at 07:29:11PM +0200, Helmut Jarausch wrote
4 > > Hi,
5 > >
6 > > trying to emerge x11-libs/gtk+:2 (2.24.23-r1) together with
7 > > dev-libs/atk (2.12.0-r1) I get the following messages
8 > >
9 > > emerge: there are no ebuilds to satisfy
10 > > ">=dev-libs/atk-1.29.2[introspection?,abi_x86_32(-)?,abi_x86_64(-)?,
11 > > abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?]".
12 > > (dependency required by "x11-libs/gtk+-2.24.23-r1" [ebuild])
13 > > (dependency required by "x11-libs/gtk+:2" [argument])
14 > >
15 > > How can this be deciphered? How can I trace / debug the problem.
16 >
17 > Plan A) try adding the line...
18 >
19 > dev-libs/atk -introspection
20 >
21 > ...to /etc/portage/package.use
22 >
23 > Plan B) if some other package requires atk built with introspection,
24 > then make sure that atk is not built with any of abi_x86_32, or
25 > abi_x86_64, abi_x86_x32, or abi_mips_n32, or abi_mips_n64, or
26 > abi_mips_o32. I.e. if you're running on AMD or Intel, add the line...
27 >
28 > dev-libs/atk -abi_x86_32 -abi_x86_64 -abi_x86_x32
29 >
30 > ...to /etc/portage/package.use
31 >
32 > In both cases (Plan A and Plan B), execute the command...
33 >
34 > emerge -1 atk
35 >
36 > ...immediately afterwards.
37 >
38
39 I have a similar problem:
40
41 # emerge -pvuDN world
42
43 These are the packages that would be merged, in order:
44
45 Calculating dependencies ... done!
46
47 emerge: there are no ebuilds to satisfy
48 ">=media-libs/audiofile-0.1.9[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?]".
49 (dependency required by "media-libs/libsdl-1.2.15-r5" [ebuild])
50 (dependency required by "dev-libs/zziplib-0.13.60-r1[sdl]" [installed])
51 (dependency required by "dev-tex/luatex-0.76.0" [installed])
52 (dependency required by "app-text/epspdf-0.6.0" [installed])
53 (dependency required by "app-text/texlive-2013[epspdf]" [installed])
54 (dependency required by "app-doc/doxygen-1.8.3.1[latex]" [installed])
55 (dependency required by "x11-proto/xproto-7.0.26[doc]" [ebuild])
56 (dependency required by "x11-libs/gtk+-2.24.23" [ebuild])
57 (dependency required by "gnome-base/libglade-2.6.4-r1" [ebuild])
58 (dependency required by "dev-lisp/clisp-2.49-r8[gtk]" [installed])
59 (dependency required by "app-text/xindy-2.4" [installed])
60 # emerge -pv audiofile
61
62 These are the packages that would be merged, in order:
63
64 Calculating dependencies ... done!
65 [ebuild R ] media-libs/audiofile-0.3.6-r1:0/1 USE="flac -static-libs
66 {-test}" ABI_X86="(64) (-32) (-x32)" 0 kB
67
68 Total: 1 package (1 reinstall), Size of downloads: 0 kB
69
70 I tried Plan B but the problem persists. Any ideas?
71
72 Thanks,
73
74 Yuan