diff options
-rw-r--r-- | ChangeLog | 87 | ||||
-rw-r--r-- | urpm.pm | 2 | ||||
-rw-r--r-- | urpmi.spec | 14 |
3 files changed, 98 insertions, 5 deletions
@@ -1,3 +1,90 @@ +2006-01-25 17:15 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * pod/urpmi.8.pod: More docs + +2006-01-25 16:59 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * pod/urpmi.8.pod: Document that we can install build dependencies + from specfiles + +2006-01-25 16:54 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpm.pm: Oops, accidental deletion + +2006-01-25 16:33 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpm.pm: Correctly register specfiles in depslist + +2006-01-25 15:26 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpm.pm, urpmi: Allow to install specfiles via urpmi (like source + rpms) + +2006-01-24 12:13 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpm/util.pm: Use Digest::MD5 when available + +2006-01-24 11:16 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * gurpmi2, urpm.pm, urpmi, urpmi.addmedia, urpm/args.pm: Update + copyrights for files modified in 2006 + +2006-01-24 11:10 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpmq: Escape media names in the output of urpmq --dump-config + (based on a patch by Michael Scherer) + +2006-01-24 10:52 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * pod/urpmq.8.pod: urpmq doc nits + +2006-01-19 21:59 neoclust + + * po/de.po: Update translation by Frank Köster + +2006-01-18 17:27 Shiva Huang <blueshiva at giga.net.tw> + + * po/zh_TW.po: updated po file + +2006-01-18 11:19 Willy Sudiarto Raharjo <willysr at gmail.com> + + * po/id.po: Updated + +2006-01-18 06:44 mmodem + + * po/pt.po: [no log message] + +2006-01-18 06:01 mmodem + + * po/pt.po: [no log message] + +2006-01-17 14:04 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. + +2006-01-16 14:24 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpmi, po/fr.po: French translation nit, plus a note to + translators + +2006-01-16 10:39 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpmi.addmedia, pod/urpmi.addmedia.8.pod, urpm/args.pm: Remove + documentation for options that don't exist, and improve + documentation of --distrib. + +2006-01-13 17:15 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpm.pm, urpmi.spec: 5.8.7-1mdk + 2006-01-13 12:01 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> * urpmi.spec: Add BuildRequires for regression tests @@ -11,7 +11,7 @@ use urpm::util; use urpm::sys; use urpm::cfg; -our $VERSION = '4.8.7'; +our $VERSION = '4.8.8'; our @ISA = qw(URPM); use URPM; @@ -7,7 +7,7 @@ ################################################################## %define name urpmi -%define version 4.8.7 +%define version 4.8.8 %define release %mkrel 1 %define group %(perl -e 'print "%_vendor" =~ /\\bmandr/i ? "System/Configuration/Packaging" : "System Environment/Base"') @@ -27,15 +27,15 @@ Summary: Command-line software installation tools URL: http://search.cpan.org/dist/%{name}/ Requires: %{req_webfetch} eject gnupg Requires(pre): perl-Locale-gettext >= 1.01-14mdk -Requires(pre): perl-URPM >= 1.22 -Requires: perl-URPM >= 1.22 +Requires(pre): perl-URPM >= 1.32 +Requires: perl-URPM >= 1.32 #- this one is require'd by urpmq, so it's not found [yet] by perl.req Requires: perl-MDV-Packdrakeng >= 1.01 BuildRequires: bzip2-devel BuildRequires: gettext BuildRequires: perl-File-Slurp BuildRequires: perl-ldap -BuildRequires: perl-URPM >= 1.22 +BuildRequires: perl-URPM >= 1.32 BuildRequires: perl-MDV-Packdrakeng BuildRequires: perl-Locale-gettext >= 1.01-14mdk BuildRoot: %{_tmppath}/%{name}-buildroot @@ -249,6 +249,12 @@ if (-e "/etc/urpmi/urpmi.cfg") { %{compat_perl_vendorlib}/urpm/ldap.pm %changelog +* Wed Jan 25 2006 Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> 4.8.8-1mdk +- urpmi can now install specfile dependencies +- Escape media names in urpmq --dump-config (Michael Scherer) +- Require latest perl-URPM +- Better docs + * Fri Jan 13 2006 Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> 4.8.7-1mdk - Allow to install SRPMs as a non-root user (Pascal Terjan) - Better diagnostics in a few cases |