| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
reports its error messages if any
|
|
|
|
|
| |
On CentOS7, the error message is:
'This account is currently not available.'
|
|
|
|
|
|
| |
where rpmquery default to outputing NVRA (vs NVR on Mageia)
reuse check_installed_fullnames() where needed instead of introducing %{NVR}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
as seen in CPAN reports:
<<<
...retrieving failed: no webfetch found, supported webfetch are: curl,
wget, prozilla, aria2
no metadata found for medium "various"
>>>
Whic results in:
<<<
Test Summary Report
-------------------
t/superuser--http.t (Wstat:
2560 Tests: 11 Failed: 10)
Failed tests: 2-11
Non-zero exit status: 10
Files=40, Tests=3775, 953 wallclock secs ( 1.19 usr 0.08 sys + 309.33
cusr 52.13 csys = 362.73 CPU)
Result: FAIL
Failed 1/40 test programs. 10/3775 subtests failed.
make: *** [Makefile:1155: test_dynamic] Error 255
(/usr/bin/make test exited with 512)
CPAN::Reporter: Test result is 'fail', One or more tests failed.
>>>
And indeed:
$ rpm -q curl wget prozilla aria2
package curl is not installed
package wget is not installed
package prozilla is not installed
package aria2 is not installed
Should have been done in commit 360f05b8db2029cb62c11f7eddb7fb57f3b774f1
|
|
|
|
|
|
|
|
|
| |
else File::Path::mkpath() in urpm::create_var_lib_rpm() tries to
create directories in /root/rpmbuild/urpmi*/t/root (but as nobody),
thus it stat every directory in $PWD, which fails (due to permissions!)
then try to create them which fails (due to directory already existing)
another solution would be to use a mkstemp()ed directory in TMPDIR...
|
| |
|
|
|