First Last Prev Next    No search results available      Search page      Enter new bug
Bug#: 165002
Alias:
Product:
Component:
Status: RESOLVED
Resolution: FIXED
Assigned To: Gentoo Linux Gnome Desktop Team <gnome@gentoo.org>
Hardware:
OS:
Version:
Priority:
Severity:
Reporter: Ulrich Müller <ulm@gentoo.org>
Add CC:
CC:
URL:
Summary:
Status Whiteboard:
Keywords:

Filename Description Type Creator Created Size Actions
Create a New Attachment (proposed patch, testcase, etc.) View All

Bug 165002 depends on: Show dependency tree
Show dependency graph
Bug 165002 blocks:
Votes: 0    Show votes for this bug    Vote for this bug

Additional Comments: (this is where you put emerge --info)







View Bug Activity   |   Format For Printing   |   XML   |   Clone This Bug


Description:   Opened: 2007-02-02 16:41 0000
emerge of gnome-games-2.16.2 stops in src_install() asking for keyboard input:

gzip:
/var/tmp/portage/gnome-extra/gnome-games-2.16.2/image/usr/share/doc/gnome-games-2.16.2/./AUTHORS.gz
already exists; do you wish to overwrite (y or n)?

This happens for files AUTHORS, ChangeLog, NEWS, README, and TODO (they are
installed by gnome2.eclass and then again in the first "for" loop in
src_install).

Proposed bugfix:
Add a flag "-mindepth 1" to the first "find" command in src_install():
-    $(find . -maxdepth 1 -type d ! -name po ! -name libgames-support); do
+    $(find . -mindepth 1 -maxdepth 1 -type d ! -name po ! -name
libgames-support); do

------- Comment #1 From Daniel Gryniewicz 2007-02-04 16:24:45 0000 -------
This has got to be related to your bashrc somehow, as the default environment
doesn't ask you to overwrite; that said, that loop is definitely wrong for
gnome-games, which has tons of authors files.  I don't think your loop is right
either, although it will solve your problems, because it will skip all the
extra AUTHORs files.  I'll try to come up with a better solution.

------- Comment #2 From Daniel Gryniewicz 2007-02-04 16:33:31 0000 -------
Ah, I misunderstood your proposed fix.  It would work.  I've just removed those
files from the DOCS variable.

------- Comment #3 From Ulrich Müller 2007-02-04 19:17:12 0000 -------
(In reply to comment #1)
> This has got to be related to your bashrc somehow, as the default environment
> doesn't ask you to overwrite;

The bug was triggered by the new "ecompress" feature of portage, see bug
#164971 for a discussion.

First Last Prev Next    No search results available      Search page      Enter new bug