* [gentoo-user] emerge portage error
@ 2010-05-16 13:10 Simon
2010-05-16 13:44 ` Alan McKinnon
0 siblings, 1 reply; 4+ messages in thread
From: Simon @ 2010-05-16 13:10 UTC (permalink / raw
To: gentoo-user
Hi,
Please help me to get rid of this error while emerging portage:
# emerge portage
Calculating dependencies... done!
>>> Verifying ebuild Manifests...
>>> starting parallel fetching pid 6030
>>> Emerging (1 of 2) dev-lang/python-2.5.4-r4 to /
* Python-2.5.4.tar.bz2 RMD160 SHA1 SHA256 size ;-)
...
[ ok ]
* python-gentoo-patches-2.5.4-r3.tar.bz2 RMD160 SHA1 SHA256 size ;-)
...
[ ok ]
* checking ebuild checksums ;-)
...
[ ok ]
* checking auxfile checksums ;-)
...
[ ok ]
* checking miscfile checksums ;-)
...
[ ok ]
* checking Python-2.5.4.tar.bz2 ;-)
...
[ ok ]
* checking python-gentoo-patches-2.5.4-r3.tar.bz2 ;-)
...
[ ok ]
* "bsddb" module is out-of-date and no longer maintained inside
dev-lang/python. It has
* been additionally removed in Python 3. You should use external,
still maintained "bsddb3"
* module provided by dev-python/bsddb3 which supports both Python 2
and Python 3.
*
* ERROR: dev-lang/python-2.5.4-r4 failed.
* Call stack:
* ebuild.sh, line 49: Called pkg_setup
* python-2.5.4-r4.ebuild, line 64: Called built_with_use
'pkg_setup' 'pkg_setup'
* eutils.eclass, line 1862: Called die
* The specific snippet of code:
* die) die "$PKG does not
actually support the $1 USE flag!";;
* The die message:
* sys-devel/gcc-4.1.2 does not actually support the libffi USE flag!
*
* If you need support, post the topmost build error, and the call
stack if relevant.
* A complete build log is located at
'/var/tmp/portage/dev-lang/python-2.5.4-r4/temp/build.log'.
* The ebuild environment file is located at
'/var/tmp/portage/dev-lang/python-2.5.4-r4/temp/die.env'.
*
* Messages for package dev-lang/python-2.5.4-r4:
*
* ERROR: dev-lang/python-2.5.4-r4 failed.
* Call stack:
* ebuild.sh, line 49: Called pkg_setup
* python-2.5.4-r4.ebuild, line 64: Called built_with_use
'pkg_setup' 'pkg_setup'
* eutils.eclass, line 1862: Called die
* The specific snippet of code:
* die) die "$PKG does not
actually support the $1 USE flag!";;
* The die message:
* sys-devel/gcc-4.1.2 does not actually support the libffi USE flag!
*
* If you need support, post the topmost build error, and the call
stack if relevant.
* A complete build log is located at
'/var/tmp/portage/dev-lang/python-2.5.4-r4/temp/build.log'.
* The ebuild environment file is located at
'/var/tmp/portage/dev-lang/python-2.5.4-r4/temp/die.env'.
*
* "bsddb" module is out-of-date and no longer maintained inside
dev-lang/python. It has
* been additionally removed in Python 3. You should use external,
still maintained "bsddb3"
* module provided by dev-python/bsddb3 which supports both Python 2
and Python 3.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [gentoo-user] emerge portage error
2010-05-16 13:10 [gentoo-user] emerge portage error Simon
@ 2010-05-16 13:44 ` Alan McKinnon
2010-05-18 12:11 ` Barry Jibb
0 siblings, 1 reply; 4+ messages in thread
From: Alan McKinnon @ 2010-05-16 13:44 UTC (permalink / raw
To: gentoo-user
On Sunday 16 May 2010 15:10:16 Simon wrote:
> Hi,
>
> Please help me to get rid of this error while emerging portage:
> # emerge portage
[snip]
Yea gods, the youth of today. In my day, when I was a little whipper-snapper,
we actually read the ebuild. Why because? Because there was no-one else around
to do our looking by proxy for us!
So, in the interest of decomming the proxy in my head, herewith the magic
incantations to make your problem go "Poof!" and disappear:
Firstly, you have tools to help. equery, euse, and many more. Learn how to use
them, and use them.
Secondly, read the ebuild. portage does what the ebuild says so the master
reference to figure out why portage wants to do something is in the ebuild (or
eclasses that it inherits).
> * "bsddb" module is out-of-date and no longer maintained inside
> dev-lang/python. It has
> * been additionally removed in Python 3. You should use external,
> still maintained "bsddb3"
> * module provided by dev-python/bsddb3 which supports both Python 2
> and Python 3.
> *
> * ERROR: dev-lang/python-2.5.4-r4 failed.
> * Call stack:
> * ebuild.sh, line 49: Called pkg_setup
> * python-2.5.4-r4.ebuild, line 64: Called built_with_use
> 'pkg_setup' 'pkg_setup'
> * eutils.eclass, line 1862: Called die
> * The specific snippet of code:
> * die) die "$PKG does not
> actually support the $1 USE flag!";;
> * The die message:
> * sys-devel/gcc-4.1.2 does not actually support the libffi USE flag!
From the ebuild:
pkg_setup() {
if use berkdb; then
ewarn "\"bsddb\" module is out-of-date and no longer
maintained inside dev-lang/python. It has"
ewarn "been additionally removed in Python 3. You should use
external, still maintained \"bsddb3\""
ewarn "module provided by dev-python/bsddb3 which supports
both Python 2 and Python 3."
fi
if built_with_use sys-devel/gcc libffi; then
die "Reinstall sys-devel/gcc with \"libffi\" USE flag
disabled"
fi
}
So, to get rid of the bsddb ewarn, you need to remove that "berkdb" from USE.
And the build failure is staring you right there in the face. As we say here
at the tip of Africa, "As dit 'n slang was, het dit jou gepik" [If it were a
snake, it would have already bitten you].
You have "USE=libffi" which doesn't work. Remove it, sync the tree, rebuild
world. (your portage and gcc versions have updates available, even on stable)
--
alan dot mckinnon at gmail dot com
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [gentoo-user] emerge portage error
2010-05-16 13:44 ` Alan McKinnon
@ 2010-05-18 12:11 ` Barry Jibb
2010-05-18 12:18 ` Mick
0 siblings, 1 reply; 4+ messages in thread
From: Barry Jibb @ 2010-05-18 12:11 UTC (permalink / raw
To: gentoo-user
On 16/05/10 14:44, Alan McKinnon wrote:
> On Sunday 16 May 2010 15:10:16 Simon wrote:
>
>> Hi,
>>
>> Please help me to get rid of this error while emerging portage:
>> # emerge portage
>>
> [snip]
>
> Yea gods, the youth of today. In my day, when I was a little whipper-snapper,
> we actually read the ebuild. Why because? Because there was no-one else around
> to do our looking by proxy for us!
>
> So, in the interest of decomming the proxy in my head, herewith the magic
> incantations to make your problem go "Poof!" and disappear:
>
> Firstly, you have tools to help. equery, euse, and many more. Learn how to use
> them, and use them.
>
> Secondly, read the ebuild. portage does what the ebuild says so the master
> reference to figure out why portage wants to do something is in the ebuild (or
> eclasses that it inherits).
>
>
>> * "bsddb" module is out-of-date and no longer maintained inside
>> dev-lang/python. It has
>> * been additionally removed in Python 3. You should use external,
>> still maintained "bsddb3"
>> * module provided by dev-python/bsddb3 which supports both Python 2
>> and Python 3.
>> *
>> * ERROR: dev-lang/python-2.5.4-r4 failed.
>> * Call stack:
>> * ebuild.sh, line 49: Called pkg_setup
>> * python-2.5.4-r4.ebuild, line 64: Called built_with_use
>> 'pkg_setup' 'pkg_setup'
>> * eutils.eclass, line 1862: Called die
>> * The specific snippet of code:
>> * die) die "$PKG does not
>> actually support the $1 USE flag!";;
>> * The die message:
>> * sys-devel/gcc-4.1.2 does not actually support the libffi USE flag!
>>
> From the ebuild:
> pkg_setup() {
> if use berkdb; then
> ewarn "\"bsddb\" module is out-of-date and no longer
> maintained inside dev-lang/python. It has"
> ewarn "been additionally removed in Python 3. You should use
> external, still maintained \"bsddb3\""
> ewarn "module provided by dev-python/bsddb3 which supports
> both Python 2 and Python 3."
> fi
>
> if built_with_use sys-devel/gcc libffi; then
> die "Reinstall sys-devel/gcc with \"libffi\" USE flag
> disabled"
> fi
> }
>
>
> So, to get rid of the bsddb ewarn, you need to remove that "berkdb" from USE.
>
> And the build failure is staring you right there in the face. As we say here
> at the tip of Africa, "As dit 'n slang was, het dit jou gepik" [If it were a
> snake, it would have already bitten you].
>
>
> You have "USE=libffi" which doesn't work. Remove it, sync the tree, rebuild
> world. (your portage and gcc versions have updates available, even on stable)
>
>
>
>
How do i unsubscribe from the list? I love it, but i subscribed in error
and I cant seem to stop it!
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [gentoo-user] emerge portage error
2010-05-18 12:11 ` Barry Jibb
@ 2010-05-18 12:18 ` Mick
0 siblings, 0 replies; 4+ messages in thread
From: Mick @ 2010-05-18 12:18 UTC (permalink / raw
To: gentoo-user
On 18 May 2010 13:11, Barry Jibb <barryjibbsausagesinc@gmail.com> wrote:
> On 16/05/10 14:44, Alan McKinnon wrote:
>>
>> On Sunday 16 May 2010 15:10:16 Simon wrote:
>>
>>>
>>> Hi,
>>>
>>> Please help me to get rid of this error while emerging portage:
>>> # emerge portage
>>>
>>
>> [snip]
>>
>> Yea gods, the youth of today. In my day, when I was a little
>> whipper-snapper,
>> we actually read the ebuild. Why because? Because there was no-one else
>> around
>> to do our looking by proxy for us!
>>
>> So, in the interest of decomming the proxy in my head, herewith the magic
>> incantations to make your problem go "Poof!" and disappear:
>>
>> Firstly, you have tools to help. equery, euse, and many more. Learn how to
>> use
>> them, and use them.
>>
>> Secondly, read the ebuild. portage does what the ebuild says so the master
>> reference to figure out why portage wants to do something is in the ebuild
>> (or
>> eclasses that it inherits).
>>
>>
>>>
>>> * "bsddb" module is out-of-date and no longer maintained inside
>>> dev-lang/python. It has
>>> * been additionally removed in Python 3. You should use external,
>>> still maintained "bsddb3"
>>> * module provided by dev-python/bsddb3 which supports both Python 2
>>> and Python 3.
>>> *
>>> * ERROR: dev-lang/python-2.5.4-r4 failed.
>>> * Call stack:
>>> * ebuild.sh, line 49: Called pkg_setup
>>> * python-2.5.4-r4.ebuild, line 64: Called built_with_use
>>> 'pkg_setup' 'pkg_setup'
>>> * eutils.eclass, line 1862: Called die
>>> * The specific snippet of code:
>>> * die) die "$PKG does not
>>> actually support the $1 USE flag!";;
>>> * The die message:
>>> * sys-devel/gcc-4.1.2 does not actually support the libffi USE flag!
>>>
>>
>> From the ebuild:
>> pkg_setup() {
>> if use berkdb; then
>> ewarn "\"bsddb\" module is out-of-date and no longer
>> maintained inside dev-lang/python. It has"
>> ewarn "been additionally removed in Python 3. You should
>> use
>> external, still maintained \"bsddb3\""
>> ewarn "module provided by dev-python/bsddb3 which supports
>> both Python 2 and Python 3."
>> fi
>>
>> if built_with_use sys-devel/gcc libffi; then
>> die "Reinstall sys-devel/gcc with \"libffi\" USE flag
>> disabled"
>> fi
>> }
>>
>>
>> So, to get rid of the bsddb ewarn, you need to remove that "berkdb" from
>> USE.
>>
>> And the build failure is staring you right there in the face. As we say
>> here
>> at the tip of Africa, "As dit 'n slang was, het dit jou gepik" [If it were
>> a
>> snake, it would have already bitten you].
>>
>>
>> You have "USE=libffi" which doesn't work. Remove it, sync the tree,
>> rebuild
>> world. (your portage and gcc versions have updates available, even on
>> stable)
>>
>>
>>
>>
>
> How do i unsubscribe from the list? I love it, but i subscribed in error and
> I cant seem to stop it!
If you will be hijacking threads like this then you better unsubscribe
soon please!
Read the headers of this email message for instructions.
--
Regards,
Mick
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-05-18 12:18 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-16 13:10 [gentoo-user] emerge portage error Simon
2010-05-16 13:44 ` Alan McKinnon
2010-05-18 12:11 ` Barry Jibb
2010-05-18 12:18 ` Mick
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox