diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-01-01 06:09:04 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-01-01 06:09:04 +0000 |
commit | 227ae97ba0f60f2d4b22a71b4b418b7a5890b12e (patch) | |
tree | c90b3897b31dd34dec04e27b9eb8e1dc0e3b3190 /app-portage | |
parent | Removed old app-portage/layman-{1.0.6,1.0.10} with bad download locations. (diff) | |
download | gentoo-2-227ae97ba0f60f2d4b22a71b4b418b7a5890b12e.tar.gz gentoo-2-227ae97ba0f60f2d4b22a71b4b418b7a5890b12e.tar.bz2 gentoo-2-227ae97ba0f60f2d4b22a71b4b418b7a5890b12e.zip |
1.4.1 bump. This fixes a bug in the new ipv6 support.
(Portage version: 2.2_rc20_p12370/cvs/Linux 2.6.28-1225-x86-64 i686)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/mirrorselect/ChangeLog | 8 | ||||
-rw-r--r-- | app-portage/mirrorselect/mirrorselect-1.4.1.ebuild (renamed from app-portage/mirrorselect/mirrorselect-1.4.ebuild) | 15 |
2 files changed, 18 insertions, 5 deletions
diff --git a/app-portage/mirrorselect/ChangeLog b/app-portage/mirrorselect/ChangeLog index dbef7a19017b..9e927c85ec42 100644 --- a/app-portage/mirrorselect/ChangeLog +++ b/app-portage/mirrorselect/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-portage/mirrorselect # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/mirrorselect/ChangeLog,v 1.70 2009/01/01 01:10:32 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/mirrorselect/ChangeLog,v 1.71 2009/01/01 06:09:04 zmedico Exp $ + +*mirrorselect-1.4.1 (01 Jan 2009) + + 01 Jan 2009; Zac Medico <zmedico@gentoo.org> -mirrorselect-1.4.ebuild, + +mirrorselect-1.4.1.ebuild: + 1.4.1 bump. This fixes a bug in the new ipv6 support. *mirrorselect-1.4 (01 Jan 2009) diff --git a/app-portage/mirrorselect/mirrorselect-1.4.ebuild b/app-portage/mirrorselect/mirrorselect-1.4.1.ebuild index e8f1f05b8c23..df40b9dd13b8 100644 --- a/app-portage/mirrorselect/mirrorselect-1.4.ebuild +++ b/app-portage/mirrorselect/mirrorselect-1.4.1.ebuild @@ -1,10 +1,12 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/mirrorselect/mirrorselect-1.4.ebuild,v 1.1 2009/01/01 01:10:33 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/mirrorselect/mirrorselect-1.4.1.ebuild,v 1.1 2009/01/01 06:09:04 zmedico Exp $ + +inherit eutils DESCRIPTION="Tool to help select distfiles mirrors for Gentoo" HOMEPAGE="http://www.gentoo.org/" -SRC_URI="mirror://gentoo/${PF}.tar.bz2" +SRC_URI="mirror://gentoo/${PF%.*}.tar.bz2 mirror://gentoo/$PF.patch.bz2" LICENSE="GPL-2" SLOT="0" @@ -15,8 +17,13 @@ IUSE="" RDEPEND=">=dev-util/dialog-0.7 net-analyzer/netselect" -S="${WORKDIR}" +S=$WORKDIR + +src_unpack() { + unpack $A + epatch $PF.patch +} src_install() { - dosbin "${S}"/mirrorselect || die + dosbin mirrorselect || die } |