Bug 670210
Summary: | Fails to install/upgrade | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | darrell pfeifer <darrellpf> |
Component: | Thunar | Assignee: | Kevin Fenzi <kevin> |
Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
Severity: | medium | Docs Contact: | |
Priority: | low | ||
Version: | rawhide | CC: | christoph.wickert, kevin, mtasaka, pertusus |
Target Milestone: | --- | Keywords: | Reopened |
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2011-01-22 07:36:24 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
darrell pfeifer
2011-01-17 14:55:49 UTC
Workaround is to remove rm -rf /usr/share/doc/Thunar/ then do the upgrade. This is an bug in rpm, see bug 447156 *** This bug has been marked as a duplicate of bug 447156 *** You may want to say that this is a bug in rpm, but actually the fact is that we always fixed this issue on individual components' side. So as (currently) this issue is not supposed to be fixed in rpm side, Thunar must fix this. Reopening. Can you suggest a working spec patch? I think Christoph has tried the typical suggestions to work around this bug with no luck. See: https://bugzilla.redhat.com/show_bug.cgi?id=447156#c13 Patches welcome. One example: http://koji.fedoraproject.org/scratch/mtasaka/task_2734026/ ------------------------------------------------------------------ diff --git a/Thunar.spec b/Thunar.spec index 9f5297e..5c4384d 100644 --- a/Thunar.spec +++ b/Thunar.spec @@ -2,7 +2,7 @@ Name: Thunar Version: 1.2.0 -Release: 1%{?dist} +Release: 1.1%{?dist} Summary: Thunar File Manager Group: User Interface/Desktops @@ -122,6 +122,15 @@ desktop-file-install --vendor "" \ rm -rf $RPM_BUILD_ROOT +%pre +for target in %{_defaultdocdir}/Thunar/html/*/images +do + if [ -d $target ] + then + rm -rf $target + fi +done + %post /sbin/ldconfig update-desktop-database &> /dev/null ||: ------------------------------------------------------------------ ok, seems to work around it in simple testing. Pushed to rawhide. http://koji.fedoraproject.org/koji/taskinfo?taskID=2736332 Thanks! |