You are not logged in.

#1 2011-01-29 11:22:50

ibendiben
Member
Registered: 2007-10-10
Posts: 519

[SOLVED] double groups in pacman -Sg

pacman -Sg | sort | uniq -d
lxde
vim-plugins
xfce4-goodies

Is that supposed to be? Thought I should report...

Last edited by ibendiben (2011-01-29 14:30:42)

Offline

#2 2011-01-29 11:28:23

Allan
Pacman
From: Brisbane, AU
Registered: 2007-06-09
Posts: 11,672
Website

Re: [SOLVED] double groups in pacman -Sg

My guess is that some packages in those groups are in [extra] and some in [community].

Offline

#3 2011-01-29 14:15:50

ibendiben
Member
Registered: 2007-10-10
Posts: 519

Re: [SOLVED] double groups in pacman -Sg

Allan wrote:

My guess is that some packages in those groups are in [extra] and some in [community].

But that's the case for more groups:

[archie@archlinux ~]$ pacman -Sl | grep -w "$(pacman -Sgq lxde)"
extra libfm 0.1.14-2
extra lxde-common 0.5.0-3
extra lxde-icon-theme 0.0.1-1
extra lxdm 0.3.0-1
extra lxmenu-data 0.1.1-1
extra lxpanel 0.5.6-1
extra lxsession-lite 0.4.5-1
extra menu-cache 0.3.2-1
extra openbox 3.4.11.2-2
extra pcmanfm 0.9.8-2
community gpicview 0.2.1-3
community lxappearance 0.5.0-1
community lxlauncher 0.2.1-3
community lxrandr 0.1.1-1
community lxtask 0.1.3-1
community lxterminal 0.1.9-1
community openbox-themes 1.0.2-1
[archie@archlinux ~]$ pacman -Sl | grep -w "$(pacman -Sgq gnome)"
extra epiphany 2.30.6-2
extra epiphany-extensions 2.32.0-1
extra gnome-applets 2.32.1.1-1
extra gnome-backgrounds 2.32.0-1
extra gnome-control-center 2.32.1-1
extra gnome-desktop 2.32.1-1
extra gnome-desktop-sharp 2.26.0-5
extra gnome-icon-theme 2.31.0-1
extra gnome-keyring 2.32.1-1
extra gnome-keyring-sharp 1.0.2-2
extra gnome-media 2.32.0-3
extra gnome-media-pulse 2.32.0-3
extra gnome-mime-data 2.18.0-4
extra gnome-panel 2.32.1-1
extra gnome-panel-bonobo 2.32.1-1
extra gnome-screensaver 2.30.2-1
extra gnome-session 2.32.1-1
extra gnome-settings-daemon 2.32.1-2
extra gnome-settings-daemon-pulse 2.32.1-2
extra gnome-terminal 2.32.1-1
extra gnome-themes 2.32.1-1
extra gnome-themes-extras 2.22.0-2
extra gnome2-user-docs 2.32.0-1
extra metacity 2.30.3-1
extra nautilus 2.32.2.1-1
extra nautilus-sendto 2.32.0-1
extra notification-daemon 0.4.0-4
extra python-metacity 2.32.0-3
extra yelp 2.30.2-1
community nautilus-actions 3.0.6-1
community nautilus-open-terminal 0.18-2
community nautilus-share 0.7.2-5
[archie@archlinux ~]$ pacman -Sl | grep -w "$(pacman -Sgq xfce4)"
extra exo 0.6.0-2
extra garcon 0.1.5-1
extra gnome-terminal 2.32.1-1
extra gtk-xfce-engine 2.8.0-1
extra libxfce4ui 4.8.0-1
extra libxfce4util 4.8.1-1
extra libxfcegui4 4.8.0-1
extra mousepad 0.2.16-2
extra terminal 0.4.5-2
extra thunar 1.2.0-1
extra thunar-archive-plugin 0.3.0-1
extra thunar-media-tags-plugin 0.1.2-6
extra thunar-vfs 1.2.0-2
extra thunar-volman 0.6.0-1
extra tumbler 0.1.6-1
extra xfce-utils 4.8.0-1
extra xfce4-appfinder 4.8.0-1
extra xfce4-mixer 4.6.1-2
extra xfce4-panel 4.8.0-1
extra xfce4-session 4.8.0-1
extra xfce4-settings 4.8.0-1
extra xfconf 4.8.0-1
extra xfdesktop 4.8.0-1
extra xfprint 4.6.1-4
extra xfwm4 4.8.0-1
extra xfwm4-themes 4.6.0-1
community nautilus-open-terminal 0.18-2
community thunar-thumbnailers 0.4.1-3

Offline

#4 2011-01-29 14:21:37

wonder
Developer
From: Bucharest, Romania
Registered: 2006-07-05
Posts: 5,941
Website

Re: [SOLVED] double groups in pacman -Sg

your query is invalid.

gnome group contains nautilus and it found all packages from repos that contains the string nautilus. That's why it has nautilus-actions, nautilus-open-terminal even that they are NOT in gnome group.

This applies to all you have pasted, from lxde and xfce as well.

Last edited by wonder (2011-01-29 14:22:50)


Give what you have. To someone, it may be better than you dare to think.

Offline

#5 2011-01-29 14:22:29

ibendiben
Member
Registered: 2007-10-10
Posts: 519

Re: [SOLVED] double groups in pacman -Sg

My bad:

pacman -Sgq xfce4 | grep -w "$(pacman -Slq community)"

returns nothing
same for

pacman -Sgq gnome | grep -w "$(pacman -Slq community)"

so Allan is right (ofcourse)!

Last edited by ibendiben (2011-01-29 14:34:05)

Offline

#6 2011-01-29 14:24:04

ibendiben
Member
Registered: 2007-10-10
Posts: 519

Re: [SOLVED] double groups in pacman -Sg

Ah, wonder was faster!
and yes... probably -w isn't sufficiant... oh well

Last edited by ibendiben (2011-01-29 14:34:26)

Offline

#7 2011-01-29 14:28:59

ibendiben
Member
Registered: 2007-10-10
Posts: 519

Re: [SOLVED] double groups in pacman -Sg

Yes that's right wrong query... -w should've been -x

Offline

Board footer

Powered by FluxBB