31
8
Is there a simple way to skip a certain upgrade in emerge -auvD world
?
For example, currently there is a broken media-sound/teamspeak-server-bin-3.0.5-r1
marked as stable in the portage tree which breaks the whole upgrade since that package is the first one in the list. Of course I could simply mask this version using the package.mask
file, but I'd prefer an environment variable or commandline switch to skip it only right now - it will probably be fixed soon anyway.
Note that I do not want to use emerge -auvD1 list of working packages
(i.e. only updating the other packages by specifying all their names).
I haven't been able to find an example of someone excluding multiple packages in one statement, so for reference: each package requires an
--exclude
tag afaik.emerge --deep --update @world -av --exclude=chromium --exclude=firefox
. – NuclearPeon – 2018-10-08T05:14:34.277note: space is a separator, so e.g. use
--exclude="teamspeak-server-bin gstreamer"
– Florian Castellane – 2019-12-08T23:49:53.483