Bug 1174989
| Summary: | GProject geany plugin fails to display icons | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Van de Bugger <van.de.bugger> |
| Component: | geany-plugins | Assignee: | Dominic Hopf <dmaphy> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 21 | CC: | dmaphy, jonathan.underwood, pingou |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | geany-plugins-1.25-1.fc21 | Doc Type: | Bug Fix |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2015-07-10 19:12:41 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
geany-plugins-1.24-4.fc22 has been submitted as an update for Fedora 22. https://admin.fedoraproject.org/updates/geany-plugins-1.24-4.fc22 geany-plugins-1.24-4.fc21 has been submitted as an update for Fedora 21. https://admin.fedoraproject.org/updates/geany-plugins-1.24-4.fc21 Please excuse my late reaction on this issue. It seems I just overlooked this issue within a hundred of other bugs. :( The update mentioned above should fix your issue. Please feel free to check it out and confirm. :) Package geany-plugins-1.24-4.fc22: * should fix your issue, * was pushed to the Fedora 22 testing repository, * should be available at your local mirror within two days. Update it with: # su -c 'yum update --enablerepo=updates-testing geany-plugins-1.24-4.fc22' as soon as you are able to. Please go to the following url: https://admin.fedoraproject.org/updates/FEDORA-2015-10785/geany-plugins-1.24-4.fc22 then log in and leave karma (feedback). The new rpm does not work for me. The bug is not fixed. geany-plugins-gproject-1.24-4.fc22.x86_64.rpm does not have any scriplets: > $ rpm -q --scripts -p geany-plugins-gproject-1.24-4.fc22.x86_64.rpm > I see you have added this to the end of spec: > %post > gtk-update-icon-cache -qf %{_datadir}/icons/hicolor &>/dev/null || : > > %postun > gtk-update-icon-cache -qf %{_datadir}/icons/hicolor &>/dev/null || : It seems %post and %postun do not have effect on subpackage. I guess it should be written as > %post gproject > gtk-update-icon-cache -qf %{_datadir}/icons/hicolor &>/dev/null || : > > %postun gproject > gtk-update-icon-cache -qf %{_datadir}/icons/hicolor &>/dev/null || : geany-plugins-1.24-5.fc22 has been pushed to the Fedora 22 stable repository. If problems still persist, please make note of it in this bug report. geany-plugins-1.25-1.fc22 has been submitted as an update for Fedora 22. https://admin.fedoraproject.org/updates/geany-plugins-1.25-1.fc22 geany-plugins-1.25-1.fc21 has been submitted as an update for Fedora 21. https://admin.fedoraproject.org/updates/geany-plugins-1.25-1.fc21 geany-plugins-1.25-1.fc22 has been pushed to the Fedora 22 stable repository. If problems still persist, please make note of it in this bug report. geany-plugins-1.25-1.fc21 has been pushed to the Fedora 21 stable repository. If problems still persist, please make note of it in this bug report. |
Description of problem: GProject, a geany plugin, fails to display its icons in the top of "Project" tab of sidebar. Instead of 4 color icons it shows 4 gray placeholders. Version-Release number of selected component (if applicable): geany 1.24.1-3.fc21 geany-plugins-gproject 1.24-3.fc21 How reproducible: Always. Steps to Reproduce: 1. yum install geany 2. yum install geany-plugins-gproject 3. Start geany. 4. Enable GProject plugin via Tools -> Plugin manager. 5. Open or create a project. 6. Open "Project" tab in sidebar. Actual results: At the top should be 4 color icons: Reload all (blue round arrow), Expand all (green plus), Collapse all (red minus), Follow active editor (yellow right arrow). Expected results: Instead of color icons, there are 4 plaseholders: gray stylized images of empty picture frame. Additional info: geany-plugins-gproject RPM package installs required icons to /usr/share/icons/hicolor/ directory, so icons are in the system, but GProject fails to display them. If I run the command (from root account): # gtk-update-icon-cache /usr/share/icons/hicolor/ and restart geany, everything is ok: GProject displays color icons. It seems this command should be added to post-install (and post-uninstall) scriplet of the RPM package.