Bug 1339420
| Summary: | bash-completion-extras provides files provided by RHEL bash-completion package | ||
|---|---|---|---|
| Product: | [Fedora] Fedora EPEL | Reporter: | Aaron Howell <bugzilla> |
| Component: | bash-completion-extras | Assignee: | Jim Perrin <jperrin> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | low | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | epel7 | CC: | jperrin, tis |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | bash-completion-extras-2.1-11.el7 | Doc Type: | If docs needed, set a value |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2016-07-15 14:16:51 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: | |||
|
Description
Aaron Howell
2016-05-25 01:52:36 UTC
Confirmed. I'll have fixed update out soon. bash-completion-extras-2.1-10.el7 has been submitted as an update to Fedora EPEL 7. https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-1db95de7a7 bash-completion-extras-2.1-10.el7 has been pushed to the Fedora EPEL 7 testing repository. If problems still persist, please make note of it in this bug report. See https://fedoraproject.org/wiki/QA:Updates_Testing for instructions on how to install test updates. You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-1db95de7a7 One more conflict in bash-completion-extras-2.1-10.el7. rpm -qf /usr/share/bash-completion/completions/rpm rpm-4.11.3-17.el7.x86_64 bash-completion-extras-2.1-10.el7.noarch I'd add Requires: /usr/share/bash-completion/completions/rpm so that symlinks can still be provided in bash-completion-extras package or rename rpm to rpmbuild so there is no need for dependency or symlink. Good pickup - I had only checked those files provided in the bash-completion package. Small script to check for dupes (which confirms rpm) for EACH in /usr/share/bash-completion/completions/*; do if [ $(rpm -qf $EACH | wc -l) -gt 1 ]; then echo $EACH; rpm -qf $EACH; fi; done /usr/share/bash-completion/completions/rpm rpm-4.11.3-17.el7.x86_64 bash-completion-extras-2.1-10.el7.noarch Cheers Aaron You only check for installed packages. I used yum provides lookup to find out all conflicts and rpm was only one I could find. I let this go longer than I should have. -11 should have rpm removed as well. will push/build momentarily (In reply to Tuomo Soini from comment #6) > You only check for installed packages. I used yum provides lookup to find > out all conflicts and rpm was only one I could find. Can't believe I can say this. Code or it didn't happen! :) It's a good idea - this is what I came up with (uses repoquery which is better to use than yum in scripts) - might help as a test for this package (Only thing is its slow) for EACH in $(sudo repoquery --plugins -q --list bash-completion-extras | grep "^/usr/share/bash-completion/completions/"); do if [ $(sudo repoquery --plugins -q --whatprovides $EACH | wc -l) -gt 1 ]; then echo -e "\n$EACH"; else echo -n "."; fi; done FYI I can see the build in https://apps.fedoraproject.org/packages/bash-completion-extras/builds/ But can't see it https://bodhi.fedoraproject.org/updates/?packages=bash-completion-extras bash-completion-extras-2.1-11.el7 has been submitted as an update to Fedora EPEL 7. https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-57322c5a9c bash-completion-extras-2.1-11.el7 has been pushed to the Fedora EPEL 7 testing repository. If problems still persist, please make note of it in this bug report. See https://fedoraproject.org/wiki/QA:Updates_Testing for instructions on how to install test updates. You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-57322c5a9c bash-completion-extras-2.1-11.el7 has been pushed to the Fedora EPEL 7 stable repository. If problems still persist, please make note of it in this bug report. |