Bug 465164
| Summary: | Wrong dependencies | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Matěj Cepl <mcepl> |
| Component: | perl-Config-IniHash | Assignee: | Chris Weyl <cweyl> |
| Status: | CLOSED NEXTRELEASE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 9 | CC: | cweyl, mcepl, perl-devel |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2008-10-20 22:08:33 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: | |||
perl-Config-IniHash-3.00.00-2.fc8 has been submitted as an update for Fedora 8. http://admin.fedoraproject.org/updates/perl-Config-IniHash-3.00.00-2.fc8 perl-Config-IniHash-3.00.00-2.fc9 has been submitted as an update for Fedora 9. http://admin.fedoraproject.org/updates/perl-Config-IniHash-3.00.00-2.fc9 perl-Config-IniHash-3.00.00-2.fc9 has been pushed to the Fedora 9 testing repository. If problems still persist, please make note of it in this bug report. If you want to test the update, you can install it with su -c 'yum --enablerepo=updates-testing update perl-Config-IniHash'. You can provide feedback for this update here: http://admin.fedoraproject.org/updates/F9/FEDORA-2008-8565 perl-Config-IniHash-3.00.00-2.fc8 has been pushed to the Fedora 8 testing repository. If problems still persist, please make note of it in this bug report. If you want to test the update, you can install it with su -c 'yum --enablerepo=updates-testing update perl-Config-IniHash'. You can provide feedback for this update here: http://admin.fedoraproject.org/updates/F8/FEDORA-2008-8566 perl-Config-IniHash-3.00.00-2.fc9 has been pushed to the Fedora 9 stable repository. If problems still persist, please make note of it in this bug report. perl-Config-IniHash-3.00.00-2.fc8 has been pushed to the Fedora 8 stable repository. If problems still persist, please make note of it in this bug report. |
Given this testcase: #!/usr/bin/perl use strict; use Config::IniHash; use Data::Dumper; my $hashreference; my $filename; my %options; $hashreference = ReadINI("test.ini", %options); print "\$hashreference = $hashreference\n" . "-" x 65 . "\n"; print Data::Dumper->Dumpxs([%options],['%options']); and this INI file: [windows] bugs=all freedom=limited drm=full [linux] bugs=plenty freedom=full drm=none I would expect some meaningful output. Except that I get: [matej@viklef perl-bug]$ perl testCase.pl ERROR autoloading Hash::Case::Lower : Can't locate Hash/Case/Lower.pm in @INC (@INC contains: /usr/lib/perl5/5.10.0/i386-linux-thread-multi /usr/lib/perl5/5.10.0 /usr/local/lib/perl5/site_perl/5.10.0/i386-linux-thread-multi /usr/local/lib/perl5/site_perl/5.10.0 /usr/lib/perl5/vendor_perl/5.10.0/i386-linux-thread-multi /usr/lib/perl5/vendor_perl/5.10.0 /usr/lib/perl5/vendor_perl /usr/local/lib/perl5/site_perl /usr/lib/perl5/site_perl .) at (eval 12) line 1. BEGIN failed--compilation aborted at (eval 12) line 1. at testCase.pl line 11 [matej@viklef perl-bug]$ Version-Release number of selected component (if applicable): perl-Config-IniHash-2.9.0-3.fc9.noarch How reproducible: 100% Steps to Reproduce: 1.see above 2. 3. Actual results: see above Expected results: see above Additional info: