| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
| |
Patch from Pascal Terjan, fixes bug #51418
urpmq --not-available shows the packages that are installed but no
longer available in the configured media. This can be helpful to figure
out which packages are obsolete after a few distro upgrades.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
The parameter was actually implemented and working, dunno how I
overlooked that.
|
| |
|
|
|
|
|
| |
(no more possible with rpm 4.6 which doesn't handle --repackage)
|
|
|
|
|
|
|
|
|
| |
it should have been dropped in commit:
: r14827 | rgarciasuarez | 2005-02-17 16:01:39 +0100 (Thu, 17 Feb 2005) | 2 lines
: Remove obsoleted and broken --distrib-XXX command-line option
|
|
|
|
| |
signature
|
| |
|
|
|
|
|
|
| |
o handle --replacefiles, will be used by mdkonline
(require perl-URPM 3.19)
|
|
|
|
|
|
| |
o nice exit code for "bad signature" fatal error. Fixes rpmdrake continuing
on bad signature (#44575)
|
| |
|
|
|
|
|
|
| |
o instead of discarding --update when using --distrib, give it a meaning:
only add media flagged "update"
|
|
|
|
|
| |
o add --justdb
|
|
|
|
|
|
|
|
|
| |
/var/lib/rpm/installed-through-deps.list
(instead of having it in /var/lib/urpmi)
it's a saner place to put this file anyway
|
| |
|
| |
|
|
|
|
|
| |
o handle --debug-librpm
|
| |
|
|
|
|
|
| |
o add --obsoletes
|
| |
|
|
|
|
|
|
|
|
| |
o --suggests now displays the suggested packages, see --allow-suggests for
previous behaviour (#39726)
- fixing duplicated setting of options in args.pm
|
| |
|
|
|
|
|
|
| |
o --suggests is currently misleading, introduce --allow-suggests and explain
the user that --suggests really means --allow-suggests (#39726)
|
| |
|
| |
|
|
|
|
|
|
|
| |
o urpmi.addmedia --mirrorlist handles a list of mirrors/mirrorlist:
you can specify a mirror to use inside a local network, but it will
default to standard mirrors when the local mirror is not available.
|
| |
|
|
|
|
|
| |
o cdrom:// replaces removable://
|
|
|
|
|
| |
o add --conflicts
|
| |
|
|
|
|
|
|
| |
o handle mirrorlist
(need perl-Zone-TimeInfo patched for geolocalisation)
|
|
|
|
|
| |
(and in that case /var/lib/urpmi is used)
|
| |
|
|
|
|
|
|
| |
o do not parse synthesis
o drop /var/lib/urpmi/names.<medium>
|
| |
|
|
|
|
|
| |
o add --no-suggests
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
o --buildrequires deprecate --src, --src is kept for compatibility but its
behaviour is changed a little (it doesn't download src.rpm anymore)
ie implement what i suggested on cooker mailing list:
Date: Thu, 15 Nov 2007 18:21:32 +0100
Subject: urpmi --src issues, suggesting replacing --src with --buildrequires
current situation:
% urpmi /xxx/foo.src.rpm
#=> installs foo.src.rpm buildrequires
% urpmi --install-src foo bar
#=> downloads foo.src.rpm bar.src.rpm and "rpm -i"
% urpmi --help | grep -- --src
--src, -s - next package is a source package.
% urpmi --src foo
#=> urpmi says it will install foo buildrequires + foo.src.rpm
#=> in fact, it only installs foo buildrequires
weird cases in current urpmi:
% urpmi --src foo bar
#=> equiv to "urpmi --src foo ; urpmi bar"
% urpmi foo --src bar
#=> equiv to "urpmi --src foo bar" above :-(
% urpmi --src foo --src bar
#=> equiv to "urpmi --src foo bar" :-(
suggestions:
1) we could make --src a global option:
% urpmi --src foo bar
#=> would install buildrequires of foo.src.rpm and bar.src.rpm
cons: it breaks compatibility (though i'm quite sure noone uses the
previous behaviour)
2) deprecate --src, introduce with --buildrequires:
% urpmi --buildrequires foo bar
#=> would install buildrequires of foo.src.rpm and bar.src.rpm
3) when doing "urpmi /xxx/foo.src.rpm", warn the user that it should
use either "--install-src" or "--buildrequires", and that urpmi is
defaulting to "--buildrequires"
2) and 3) are implemented now
|
|
|
|
|
| |
o add --provides
|
|
|
|
|
|
| |
o deprecate --curl and --wget in favor of --downloader curl
and --downloader --wget
|
| |
|
|
|
|
|
| |
o add --sourcerpm
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- urpmf, urpmq:
o use xml info instead of hdlist when possible
o "urpmq -l" is faster (3x)
o "urpmf -l" is slower (1.5x)
o "urpmf --sourcerpm" is much faster
o see "xml-info" option in urpmi.cfg(5) to see when those files are downloaded
o new require: perl module XML::LibXML
- urpmq:
o use rpm file instead of hdlist/xml-info when file is local
o use URPM::Package->changelogs (need perl-URPM 3.06)
- urpmi.update, urpmi.addmedia, urpmi.removemedia:
o drop hdlist support replaced with xml media_info
(this imply file-deps are correctly handled, see genhdlist2(1))
- urpmi.addmedia
o new --xml-info option
|
|
|
|
|
|
|
| |
o drop option "-c" which used to clean /var/cache/urpmi/headers
since we don't use that dir anymore :)
|
|
|
|
|
| |
o drop hdlist support (will be replaced with xml media_info)
|