| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
| |
Richard Neill, but keep using grep for filtering result (#373)
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
with Magiea.
This commit consitsts of the following subversion commits:
------------------------------------------------------------------------
r1928 | dmorgan | 2011-09-13 21:44:28 +0100 (Tue, 13 Sep 2011) | 1 line
Import urpmi
------------------------------------------------------------------------
|
|
|
|
| |
of directly accessing COMP_WORDS array (should fix #54845)
|
| |
|
|
|
|
|
| |
sh urpmi.bash_completions was reporting errors when trying to run it.
Patch by Pedro MC
|
| |
|
|
|
|
|
| |
The parameter was actually implemented and working, dunno how I
overlooked that.
|
| |
|
|
|
|
|
| |
o add --justdb
|
|
|
|
|
| |
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
|
| |
|
| |
|
|
|
|
|
|
| |
only select available packages for selected medias
fix rurpmi completion
|
|
|
|
|
|
| |
o restore available-pkgs completion using "urpmq --list" by default
(it needed COMP_URPMI_HDLISTS to be set, but it should be fast enough now)
|
|
|
|
|
| |
- {cachedir}/headers is not used anymore
|
|
|
|
|
|
| |
o restore available-pkgs completion using "urpmq --list" (guillomovitch)
(but only if COMP_URPMI_HDLISTS is set since it's slow)
|
|
|
|
|
| |
o add --conflicts
|
| |
|
|
|
|
|
|
| |
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 add --sourcerpm
|
|
|
|
|
| |
o drop hdlist support (will be replaced with xml media_info)
|
|
|
|
|
| |
o new option --justdb (new perl-URPM 1.76)
|
|
|
|
|
|
| |
o handle preferred choices (through --prefer, /etc/urpmi/prefer.list
and /etc/urpmi/prefer.vendor.list)
|
|
|
|
|
| |
o new option --replacepkgs (same as rpm --replacepkgs) (#16112)
|
|
|
|
|
| |
o new option --wait-lock (#13025)
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
o explicit error when using "urpmi ---install-src" as user with remote media
o add support for "suggests": a newly suggested package is installed as if
required, but one can remove it afterwards, or use --no-suggests
- urpmf
o handle --suggests
all the work is done in perl-URPM 1.69
|
| |
|
|
|
|
|
| |
o add option --use-distrib
|
| |
|
| |
|
| |
|
|
|
|
|
| |
- add --probe-rpms for urpmi.addmedia
|
| |
|
| |
|
| |
|
| |
|