| Summary: | hg-git needs python module ordereddict | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora EPEL | Reporter: | Randy Zagar <zagar> | ||||
| Component: | hg-git | Assignee: | Christopher Meng <i> | ||||
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||
| Severity: | high | Docs Contact: | |||||
| Priority: | unspecified | ||||||
| Version: | el6 | CC: | i | ||||
| Target Milestone: | --- | ||||||
| Target Release: | --- | ||||||
| Hardware: | noarch | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | hg-git-0.4.0-2.el6 | Doc Type: | Bug Fix | ||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2013-11-18 21:07:23 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: | |||||
| Attachments: |
|
||||||
Confirmed at util.py. hg-git-0.4.0-2.el6 has been submitted as an update for Fedora EPEL 6. https://admin.fedoraproject.org/updates/hg-git-0.4.0-2.el6 hg-git-0.4.0-3.fc20 has been submitted as an update for Fedora 20. https://admin.fedoraproject.org/updates/hg-git-0.4.0-3.fc20 hg-git-0.4.0-3.fc19 has been submitted as an update for Fedora 19. https://admin.fedoraproject.org/updates/hg-git-0.4.0-3.fc19 hg-git-0.4.0-3.fc18 has been submitted as an update for Fedora 18. https://admin.fedoraproject.org/updates/hg-git-0.4.0-3.fc18 Package hg-git-0.4.0-2.el6: * should fix your issue, * was pushed to the Fedora EPEL 6 testing repository, * should be available at your local mirror within two days. Update it with: # su -c 'yum update --enablerepo=epel-testing hg-git-0.4.0-2.el6' as soon as you are able to. Please go to the following url: https://admin.fedoraproject.org/updates/FEDORA-EPEL-2013-12062/hg-git-0.4.0-2.el6 then log in and leave karma (feedback). hg-git-0.4.0-3.fc20 has been pushed to the Fedora 20 stable repository. If problems still persist, please make note of it in this bug report. hg-git-0.4.0-3.fc19 has been pushed to the Fedora 19 stable repository. If problems still persist, please make note of it in this bug report. hg-git-0.4.0-3.fc18 has been pushed to the Fedora 18 stable repository. If problems still persist, please make note of it in this bug report. hg-git-0.4.0-2.el6 has been pushed to the Fedora EPEL 6 stable repository. If problems still persist, please make note of it in this bug report. |
Created attachment 821678 [details] updated spec file that requires python-ordereddict Description of problem: The mercurial extension "hg-git" will not work without the python module "ordereddict". An additional "Require" statement is needed Require: python-ordereddict Version-Release number of selected component (if applicable): hg-git-0.4.0-1.el6.noarch How reproducible: Always Steps to Reproduce: 1. yum -y install hg-git 2. python -c "import hggit" 3. Actual results: prompt# python -c "import hggit" Traceback (most recent call last): File "<string>", line 1, in <module> File "/usr/lib/python2.6/site-packages/hggit/__init__.py", \ line 42, in <module> import gitrepo, hgrepo File "/usr/lib/python2.6/site-packages/hggit/gitrepo.py", \ line 13, in <module> from git_handler import GitHandler File "/usr/lib/python2.6/site-packages/hggit/git_handler.py", \ line 29, in <module> import util File "/usr/lib/python2.6/site-packages/hggit/util.py", \ line 5, in <module> from ordereddict import OrderedDict ImportError: No module named ordereddict Expected results: prompt# python -c "import hggit" prompt# Additional info: