diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2009-09-30 08:59:55 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2009-09-30 08:59:55 +0000 |
commit | 0224a17da88081ef9de2850dcec028c471b612db (patch) | |
tree | f135c82b5574c539aa5b46c38fc57d135a573e4a /mail-client | |
parent | stable x86, security bug 258592 (diff) | |
download | gentoo-2-0224a17da88081ef9de2850dcec028c471b612db.tar.gz gentoo-2-0224a17da88081ef9de2850dcec028c471b612db.tar.bz2 gentoo-2-0224a17da88081ef9de2850dcec028c471b612db.zip |
remove script that is not really needed and does not work with Portage 2.2_rc40 and above, bug 285372 by parafin <help AT imtrappedininter DOT net>
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'mail-client')
-rw-r--r-- | mail-client/claws-mail/ChangeLog | 8 | ||||
-rw-r--r-- | mail-client/claws-mail/files/plugins-rebuild.sh | 43 |
2 files changed, 7 insertions, 44 deletions
diff --git a/mail-client/claws-mail/ChangeLog b/mail-client/claws-mail/ChangeLog index cb2014eed8b4..82afada0037e 100644 --- a/mail-client/claws-mail/ChangeLog +++ b/mail-client/claws-mail/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for mail-client/claws-mail # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/claws-mail/ChangeLog,v 1.135 2009/09/22 00:56:34 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/claws-mail/ChangeLog,v 1.136 2009/09/30 08:59:55 fauli Exp $ + + 30 Sep 2009; Christian Faulhammer <fauli@gentoo.org> + -files/plugins-rebuild.sh: + remove script that is not really needed and does not work with Portage + 2.2_rc40 and above, bug 285372 by parafin <help AT imtrappedininter DOT + net> 22 Sep 2009; Christian Faulhammer <fauli@gentoo.org> -claws-mail-3.7.1: clean up diff --git a/mail-client/claws-mail/files/plugins-rebuild.sh b/mail-client/claws-mail/files/plugins-rebuild.sh deleted file mode 100644 index 62a259101170..000000000000 --- a/mail-client/claws-mail/files/plugins-rebuild.sh +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/claws-mail/files/plugins-rebuild.sh,v 1.3 2008/06/11 22:48:14 opfer Exp $ -#!/bin/bash - -if [ -d "${ROOT}"/var/db/pkg ]; then - cd "${ROOT}"/var/db/pkg -else - echo "ERROR: package database not found" - exit 1 -fi - -if ls -d mail-client/sylpheed-claws-[a-z]* &> /dev/null; then - echo "Looking for sylpheed-claws plugins to rename ..." - OLDPLUGINS=$(for d in mail-client/sylpheed-claws-[a-z]*; do /usr/lib/portage/bin/pkgname ${d} | cut -d' ' -f 1; done) - echo - echo "Found old plugins for rename:" - echo "${OLDPLUGINS}" - echo - echo "Unmerging old plugins to prevent file collisions..." - echo - emerge -C $* ${OLDPLUGINS} - echo - echo "Installing renamed versions with given emerge options: $*" - echo - sleep 2 - emerge $* ${OLDPLUGINS//sylpheed-claws/claws-mail} -elif ls -d mail-client/claws-mail-[a-z]* &> /dev/null; then - echo "Looking for claws-mail plugins to rebuild ..." - PLUGINS=$(for d in mail-client/claws-mail-[a-z]*; do /usr/lib/portage/bin/pkgname ${d} | cut -d' ' -f 1; done) - echo - echo "Found plugins for rebuilding:" - echo "${PLUGINS}" - echo - echo "Rebuilding with given emerge options: $*" - sleep 2 - emerge $* ${PLUGINS} -fi -if [ -z "${PLUGINS}${OLDPLUGINS}" ]; then - echo - echo "No plugins found." - echo -fi |