* [gentoo-user] file collisions
@ 2011-05-26 12:15 Allan Gottlieb
2011-05-26 12:28 ` Alex Schuster
0 siblings, 1 reply; 5+ messages in thread
From: Allan Gottlieb @ 2011-05-26 12:15 UTC (permalink / raw
To: gentoo-user
emerge complains that icu (details below) will overwrite files that MAY
belong to other packages. But in fact none do. The suggestion is to
ignore the collisions. Does that mean I should simply rm the files
before retrying the emerge?
thanks,
allan
* Messages for package dev-libs/icu-4.6.1:
* Package: dev-libs/icu-4.6.1
* Repository: gentoo
* Maintainer: arfrever@gentoo.org
* USE: amd64 elibc_glibc kernel_linux multilib userland_GNU
* FEATURES: sandbox
* Applying icu-4.6.1-parallel_installation.patch ...
* This package will overwrite one or more files that may belong to other
* packages (see list below). You can use a command such as `portageq
* owners / <filename>` to identify the installed package that owns a
* file. If portageq reports that only one package owns a file then do
* NOT file a bug report. A bug report is only useful if it identifies at
* least two or more packages that are known to install the same file(s).
* If a collision occurs and you can not explain where the file came from
* then you should simply ignore the collision since there is not enough
* information to determine if a real problem exists. Please do NOT file
* a bug report at http://bugs.gentoo.org unless you report exactly which
* two packages install the same file(s). Once again, please do NOT file
* a bug report unless you have completely understood the above message.
*
* package dev-libs/icu-4.6.1 NOT merged
*
* Detected file collision(s):
*
* /usr/lib64/libicutu.so.46.1
* /usr/lib64/libicuio.so.46.1
* /usr/lib64/libiculx.so.46.1
* /usr/lib64/libicutest.so.46.1
* /usr/lib64/libicudata.so.46.1
* /usr/lib64/libicui18n.so.46.1
* /usr/lib64/libicuuc.so.46.1
* /usr/lib64/libicule.so.46.1
* /usr/lib64/icu/4.6.1/Makefile.inc
* /usr/lib64/icu/4.6.1/pkgdata.inc
* /usr/share/doc/icu-4.6.1/unicode-license.txt.bz2
* /usr/share/doc/icu-4.6.1/html/readme.html
* /usr/share/icu/4.6.1/install-sh
* /usr/share/icu/4.6.1/license.html
* /usr/share/icu/4.6.1/mkinstalldirs
* /usr/share/icu/4.6.1/config/mh-linux
*
* Searching all installed packages for file collisions...
*
* Press Ctrl-C to Stop
*
* None of the installed packages claim the file(s).
*
* Package 'dev-libs/icu-4.6.1' NOT merged due to file collisions. If
* necessary, refer to your elog messages for the whole content of the
* above message.
*
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] file collisions
2011-05-26 12:15 [gentoo-user] file collisions Allan Gottlieb
@ 2011-05-26 12:28 ` Alex Schuster
2011-05-26 16:06 ` Allan Gottlieb
0 siblings, 1 reply; 5+ messages in thread
From: Alex Schuster @ 2011-05-26 12:28 UTC (permalink / raw
To: gentoo-user
Allan Gottlieb writes:
> emerge complains that icu (details below) will overwrite files that MAY
> belong to other packages. But in fact none do. The suggestion is to
> ignore the collisions. Does that mean I should simply rm the files
> before retrying the emerge?
Yes. If you think these files might be important, then you could back them
up first. Apparently they belong to the icu stuff you are going to remerge
anyway, so deleting should be safe I think. But it's strange that those
files do not belong to any package.
Instead of removing them it would be easier to set FEATURES to -collision-
protect. And with FEATURES=keepwork you will not have to recompile icu. So,
I would do this:
FEATURES="-collision-protect keepwork" emerge -1a dev-libs/icu
Remember that you have to delete stuff in /var/tmp/portage/dev-
libs/icu-4.6.1 manually afterwards.
Wonko
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] file collisions
2011-05-26 12:28 ` Alex Schuster
@ 2011-05-26 16:06 ` Allan Gottlieb
2011-05-26 20:08 ` Mick
0 siblings, 1 reply; 5+ messages in thread
From: Allan Gottlieb @ 2011-05-26 16:06 UTC (permalink / raw
To: gentoo-user
On Thu, May 26 2011, Alex Schuster wrote:
> Allan Gottlieb writes:
>
>> emerge complains that icu (details below) will overwrite files that MAY
>> belong to other packages. But in fact none do. The suggestion is to
>> ignore the collisions. Does that mean I should simply rm the files
>> before retrying the emerge?
>
> Yes. If you think these files might be important, then you could back them
> up first. Apparently they belong to the icu stuff you are going to remerge
> anyway, so deleting should be safe I think. But it's strange that those
> files do not belong to any package.
>
> Instead of removing them it would be easier to set FEATURES to -collision-
> protect. And with FEATURES=keepwork you will not have to recompile icu. So,
> I would do this:
>
> FEATURES="-collision-protect keepwork" emerge -1a dev-libs/icu
>
> Remember that you have to delete stuff in /var/tmp/portage/dev-
> libs/icu-4.6.1 manually afterwards.
thank you for the advice, which worked fine.
allan
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] file collisions
2011-05-26 16:06 ` Allan Gottlieb
@ 2011-05-26 20:08 ` Mick
2011-05-26 20:38 ` Alex Schuster
0 siblings, 1 reply; 5+ messages in thread
From: Mick @ 2011-05-26 20:08 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: Text/Plain, Size: 1333 bytes --]
On Thursday 26 May 2011 17:06:14 Allan Gottlieb wrote:
> On Thu, May 26 2011, Alex Schuster wrote:
> > Allan Gottlieb writes:
> >> emerge complains that icu (details below) will overwrite files that MAY
> >> belong to other packages. But in fact none do. The suggestion is to
> >> ignore the collisions. Does that mean I should simply rm the files
> >> before retrying the emerge?
> >
> > Yes. If you think these files might be important, then you could back
> > them up first. Apparently they belong to the icu stuff you are going to
> > remerge anyway, so deleting should be safe I think. But it's strange
> > that those files do not belong to any package.
> >
> > Instead of removing them it would be easier to set FEATURES to
> > -collision- protect. And with FEATURES=keepwork you will not have to
> > recompile icu. So, I would do this:
> >
> > FEATURES="-collision-protect keepwork" emerge -1a dev-libs/icu
> >
> > Remember that you have to delete stuff in /var/tmp/portage/dev-
> > libs/icu-4.6.1 manually afterwards.
>
> thank you for the advice, which worked fine.
I could swear I saw the same/similar message about collisions, but in my case
the package emerged and the files were overwritten. Not sure if I have some
FEATURES setting that took care of this.
--
Regards,
Mick
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] file collisions
2011-05-26 20:08 ` Mick
@ 2011-05-26 20:38 ` Alex Schuster
0 siblings, 0 replies; 5+ messages in thread
From: Alex Schuster @ 2011-05-26 20:38 UTC (permalink / raw
To: gentoo-user
Mick writes:
> On Thursday 26 May 2011 17:06:14 Allan Gottlieb wrote:
>> On Thu, May 26 2011, Alex Schuster wrote:
>>> FEATURES="-collision-protect keepwork" emerge -1a dev-libs/icu
>>>
>>> Remember that you have to delete stuff in /var/tmp/portage/dev-
>>> libs/icu-4.6.1 manually afterwards.
>>
>> thank you for the advice, which worked fine.
>
> I could swear I saw the same/similar message about collisions, but in my case
> the package emerged and the files were overwritten. Not sure if I have some
> FEATURES setting that took care of this.
You probably do not have FEATURES="collision-protect" in make.conf, it
is not activated by default.
The similar FEATURE protect-owned is set by default, but this only
refuses to overwrite files belonging to another package.
Wonko
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-05-26 20:40 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-26 12:15 [gentoo-user] file collisions Allan Gottlieb
2011-05-26 12:28 ` Alex Schuster
2011-05-26 16:06 ` Allan Gottlieb
2011-05-26 20:08 ` Mick
2011-05-26 20:38 ` Alex Schuster
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox