| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Rationale: It needs a Mageia specific patch that introduces
Time::ZoneInfo->current_zone()"
|
|
|
|
|
|
| |
where rpmquery default to outputing NVRA (vs NVR on Mageia)
reuse check_installed_fullnames() where needed instead of introducing %{NVR}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
actually it really needs genhdlist2 from rpmtools
The later provides a dummy rpmtools.pm package so that cpan testers can
be happy
We need at least 7.11 as previous versions forced vendor dir which is
usually not defined, thus resulting in:
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
ERROR: Can't create '/'
Do not have write permissions on '/'
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Which made urpmi's testsuite to fail on most cpan testers due to
genhdlist2 not being available
|
|
|
|
|
|
|
|
| |
thus fixing:
Tried to use 'urpm::args'.
Error: syntax error at /data/home/cpansand/.cpan/build/2020010714/urpmi-v8.120.3-4/blib/lib/urpm/util.pm line 71, near "/."
(Might be a runaway multi-line // string starting on line 69)
|
|
|
|
|
| |
it got broken when wee added support for rpm 4.13.0 in
commit cdcb6c6359e8ee2a590c3c40aa3b4d57ec3b1e80
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
mgaapplet and urpm* commands run as a normal user need to be able
to read the downloaded synthesis and info files.
|
| |
|
|
|
|
|
|
|
|
|
| |
This is needed to allow mgaapplet and urpm* commands run as a
normal user to work when run from a gdm-x-session, which sets
the umask to 027.
See also mga#9386 and mga#22262. We should perhaps take notice
of the msec security level.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Resolves: mga#23531
|
|
|
|
|
|
| |
we need to define %_pkgverify_level to none else locally build packages
will derail the testsuite as some pkg installations will fail with eg:
package nls-1.0-2.i386 does not verify: no digest
|
| |
|
|
|
|
|
| |
commit 6aaf7d1e438b9820164b94d3b548a858bb6abf68 was working smoothly 6
years ago but no more with perl-5.26
|
| |
|
|
|
|
|
|
|
|
|
|
| |
this is needed b/c of eg: ruby-google-api-client-doc which filelist is
11mb.
However this makes libxml2 to fail b/c XML_MAX_TEXT_LENGTH is 10mb:
$ urpmf-fast iso-grk2.gml
Entity: line 4014501: parser error : xmlSAX2Characters: huge text node
sr/share/gems/doc/google-api-client-0.13.5/ri/Google/Apis/SqladminV1beta3/Import
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
this increases the installation size as some file triggers are now quite
slow (eg: man-db)
previously tried in commit b6834f91d61d50c4ccfea3b5977363829ef3a1f8
|
| |
|
| |
|
|
|
|
| |
Should help with mga#19196.
|
|
|
|
| |
(mga#9386)
|
| |
|
|
|
|
|
|
|
|
|
| |
...when considering real kernels
Thus preventing kernel-firmware-nonfree being falsely detected as an
orphan package (mga#12361).
It should be handled by generic orphan mechanism
|
| |
|
|
|
|
| |
...which fixed %preun not aborting package erasure
|
| |
|
|
|
|
| |
now testuite pass again after droping the "gnu_compat" option
|
| |
|
|
|
|
| |
thus fixing t/superuser--orphans.t regressions
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
aria2c > 1.14 changed the output of the progress download string
it's no longer what follows:
"[#1 SIZE:176.0KiB/2.5MiB(6%) CN:3 SPD:256.22KiBs ETA:09s]"
but here is the new one from aria2c 1.16 and beyond:
"[#2c8dae 496KiB/830KiB(59%) CN:1 DL:84KiB ETA:3s]"
So the old parser no longer works...
The string parser has been rewritten by Shlomi Fish with use of
multiline mode and comments for better readability, should aria2c
progress download string change again
Dug & fixed by Giuseppe Ghibò <ghibomgx@gmail.com> and Shlomi Fish
<shlomif@shlomifish.org>
|