diff options
-rw-r--r-- | ChangeLog | 91 | ||||
-rw-r--r-- | urpm.pm | 2 | ||||
-rw-r--r-- | urpmi.spec | 8 |
3 files changed, 99 insertions, 2 deletions
@@ -1,3 +1,94 @@ +2006-01-04 13:15 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpm.pm: Refactoring + +2006-01-04 12:09 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * pod/rurpmi.8.pod: Document last change in rurpmi + +2006-01-04 11:29 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpmi: rurpmi shouldn't allow to install unsigned packages + +2006-01-04 10:26 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpm.pm: Speed and space optimisation when retrieving list of rpm + files for a media. + +2006-01-03 19:54 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpm.pm: There's no point in scanning all media for a matching + MD5SUM, just directly look at the media we're updating. In case + of multiple enabled media using the same hdlist, only one used to + be correctly marked modified, so the changes of md5sum for others + were silently ignored, and breakage ensued. + +2006-01-03 19:11 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpm.pm: Add explicit loop names + +2006-01-03 18:35 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpmi: Count failed transactions, so when displaying counter you + don't get an off-by-one error at the end if a transaction failed. + +2006-01-03 18:19 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpm.pm: Don't bother comparing all md5sums if we haven't gotten + it from the mirror + +2006-01-03 11:30 Shiva Huang <blueshiva at giga.net.tw> + + * po/zh_TW.po: updated po file + +2005-12-30 10:49 Inigo Salvador Azurmendi <xalba at euskalnet.net> + + * po/eu.po: osatuta + +2005-12-29 13:14 Pavel Maryanov <acid_jack at ukr.net> + + * po/ru.po: updated translation + fixed bug + +2005-12-29 11:58 neoclust + + * po/de.po: Update translation by Frank Köster + +2005-12-29 11:06 Inigo Salvador Azurmendi <xalba at euskalnet.net> + + * po/eu.po: amaitu gabe + +2005-12-29 03:27 Pjetur G. Hjaltason <pjetur at pjetur.net> + + * po/is.po: Fix missing, spelling, better translations + +2005-12-28 14:08 Willy Sudiarto Raharjo <willysr at gmail.com> + + * po/id.po: Updated + +2005-12-26 07:48 mmodem + + * po/pt.po: [no log message] + +2005-12-23 15:27 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpmi: Don't update media twice when restarting urpmi + +2005-12-23 14:45 Funda Wang <fundawang at linux.net.cn> + + * po/: af.po, ar.po, az.po, bg.po, bn.po, br.po, bs.po, ca.po, + cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, + fa.po, fi.po, fr.po, fur.po, ga.po, gl.po, he.po, hi.po, hr.po, + hu.po, id.po, is.po, it.po, ja.po, ka.po, ko.po, ky.po, lt.po, + lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, nn.po, pa_IN.po, + pl.po, pt.po, pt_BR.po, ro.po, ru.po, sc.po, sk.po, sl.po, sq.po, + sr.po, sr@Latn.po, sv.po, tg.po, th.po, tl.po, tr.po, uk.po, + urpmi.pot, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: + Updated POT file. + +2005-12-23 11:32 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpm.pm, urpmi.spec: 4.8.5-1mdk + 2005-12-23 11:18 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> * urpmi: Fix --auto-update bug : urpmi was loosing the skip list @@ -11,7 +11,7 @@ use urpm::util; use urpm::sys; use urpm::cfg; -our $VERSION = '4.8.5'; +our $VERSION = '4.8.6'; our @ISA = qw(URPM); use URPM; @@ -7,7 +7,7 @@ ################################################################## %define name urpmi -%define version 4.8.5 +%define version 4.8.6 %define release %mkrel 1 %define group %(perl -e 'print "%_vendor" =~ /\\bmandr/i ? "System/Configuration/Packaging" : "System Environment/Base"') @@ -248,6 +248,12 @@ if (-e "/etc/urpmi/urpmi.cfg") { %{compat_perl_vendorlib}/urpm/ldap.pm %changelog +* Wed Jan 04 2006 Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> 4.8.6-1mdk +- rurpmi now doesn't install packages with unmatching signatures +- Fix MD5SUM bug +- Count correctly transactions even when some of them failed +- Don't update media twice when restarting urpmi + * Fri Dec 23 2005 Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> 4.8.5-1mdk - New urpmi option, --auto-update - New urpme option, --noscripts |