You are not logged in.
For example, i have installed netbeans, eclipse, umbrello and qtcreator. If i run:
pacman --create-group 'programming' netbeans eclipse umbrello qtcreatorThe programming group is created with the selected packages.
So if i run:
pacman -S programmingall the packages in the "programming group" are installed or updated. Same thing for removing packages and so on.
What do you think?
Last edited by Hyugga (2011-04-02 23:42:52)
Offline
I don't see that usefull since you are typing all the program names when creating the group. Isn't it easier to just call pacman -S ...?
Offline
I have a 'modified' group that includes all the packages I build from ABS that I don't want overwritten: then in pacman.conf it is just a case of adding
IgnoreGroup = modifiedOffline
I don't see that usefull since you are typing all the program names when creating the group. Isn't it easier to just call pacman -S ...?
Yes but only once. And it's easy to remove all the packages at once. Just pacman -Rns programming removes them all.
Last edited by Hyugga (2011-04-03 00:07:51)
Offline
You can already do this.
mkdir ~/pacmangroups
printf '%s\n' foopkg barpkg bazpkg | sort > ~/pacmangroups/programming
pacman -S - < ~/pacmangroups/programming
Removing is a little tricker...
pacman -R - < <(comm -12 ~/pacmangroups/programming <(pacman -Qq))
Offline