diff options
author | Ian Stakenvicius <axs@gentoo.org> | 2013-01-14 21:50:41 +0000 |
---|---|---|
committer | Ian Stakenvicius <axs@gentoo.org> | 2013-01-14 21:50:41 +0000 |
commit | dad9e2283854190312cc7b19a809653d9250e945 (patch) | |
tree | 42d5c9def5943b4d35e996775a32da9b2c889c45 /app-portage | |
parent | Version bump. Bug #451736 (diff) | |
download | gentoo-2-dad9e2283854190312cc7b19a809653d9250e945.tar.gz gentoo-2-dad9e2283854190312cc7b19a809653d9250e945.tar.bz2 gentoo-2-dad9e2283854190312cc7b19a809653d9250e945.zip |
fixed a regression and an ebuild coding error
(Portage version: 2.1.11.38/cvs/Linux x86_64, signed Manifest commit with key 2B6559ED)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/eix/ChangeLog | 8 | ||||
-rw-r--r-- | app-portage/eix/eix-0.28.1.ebuild (renamed from app-portage/eix/eix-0.28.0.ebuild) | 11 |
2 files changed, 13 insertions, 6 deletions
diff --git a/app-portage/eix/ChangeLog b/app-portage/eix/ChangeLog index ad4fe5007bb4..df0be299427d 100644 --- a/app-portage/eix/ChangeLog +++ b/app-portage/eix/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-portage/eix # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.442 2013/01/14 13:54:01 axs Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.443 2013/01/14 21:50:41 axs Exp $ + +*eix-0.28.1 (14 Jan 2013) + + 14 Jan 2013; Ian Stakenvicius <axs@gentoo.org> -eix-0.28.0.ebuild, + +eix-0.28.1.ebuild: + fixed a regression and an ebuild coding error *eix-0.28.0 (14 Jan 2013) diff --git a/app-portage/eix/eix-0.28.0.ebuild b/app-portage/eix/eix-0.28.1.ebuild index 35a0a71929b3..ded602c5b2ce 100644 --- a/app-portage/eix/eix-0.28.0.ebuild +++ b/app-portage/eix/eix-0.28.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.28.0.ebuild,v 1.1 2013/01/14 13:54:01 axs Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.28.1.ebuild,v 1.1 2013/01/14 21:50:41 axs Exp $ EAPI=5 @@ -25,10 +25,11 @@ DEPEND="${RDEPEND} nls? ( sys-devel/gettext )" pkg_setup() { - if [[ ${REPLACING_VERSIONS//./} -lt 0253 ]]; then - local eixcache="${EROOT}"/var/cache/${PN} - [[ -f ${eixcache} ]] && rm -f "${eixcache}" - fi + case " ${REPLACING_VERSIONS}" in + *\ 0.[0-9].*|*\ 0.1[0-9].*|*\ 0.2[0-4].*|*\ 0.25.0*) + local eixcache="${EROOT}/var/cache/${PN}" + test -f "${eixcache}" && rm -f -- "${eixcache}";; + esac } src_prepare() { |