[bin] add bump_misc to make split packages easier to deal with

This commit is contained in:
Sławomir Nizio 2012-10-01 15:00:20 +02:00
parent 3c26a9013e
commit e3ed67db6b
1 changed files with 43 additions and 0 deletions

43
bin/bump_misc Executable file
View File

@ -0,0 +1,43 @@
#!/bin/sh
# script that makes it easier to bump split packages
# (and perhaps other fun stuff)
list="git subversion transmission"
cmd="emerge -av"
what=$1
if [ -z "$what" ]; then
echo "What to compile? [$list]"
read what
fi
case $what in
git)
$cmd \
dev-vcs/git::sabayon-distro \
dev-vcs/git-cvs \
dev-vcs/git-gui-tools \
dev-vcs/git-subversion \
www-apps/gitweb
;;
subversion)
$cmd \
dev-vcs/subversion::sabayon-distro \
dev-vcs/subversion-java
;;
transmission)
$cmd \
net-p2p/transmission-base \
net-p2p/transmission-cli \
net-p2p/transmission-daemon \
net-p2p/transmission-gtk \
net-p2p/transmission-qt4 \
net-p2p/transmission::sabayon-distro
;;
*)
echo "Excuse me, but I non capisco." >&2
[ -n "$1" ] && echo "Run without any parameter for interactive use." >&2
exit 1
esac