diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-12-05 20:59:41 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-12-05 20:59:41 +0000 |
commit | eb5dcc37b78652ecd3f10f3dfab6191cc410ee6e (patch) | |
tree | 19183e1d2fd34dcc09f92e3819f3f320d65e4f01 /sys-apps/iproute2 | |
parent | Version bump and remove old. (diff) | |
download | gentoo-2-eb5dcc37b78652ecd3f10f3dfab6191cc410ee6e.tar.gz gentoo-2-eb5dcc37b78652ecd3f10f3dfab6191cc410ee6e.tar.bz2 gentoo-2-eb5dcc37b78652ecd3f10f3dfab6191cc410ee6e.zip |
Clean up code a bit and drop MY_P handling which hopefully should no longer be needed.
(Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/iproute2')
-rw-r--r-- | sys-apps/iproute2/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/iproute2/iproute2-2.6.38.ebuild | 33 | ||||
-rw-r--r-- | sys-apps/iproute2/iproute2-3.1.0.ebuild | 24 | ||||
-rw-r--r-- | sys-apps/iproute2/iproute2-9999.ebuild | 24 |
4 files changed, 38 insertions, 50 deletions
diff --git a/sys-apps/iproute2/ChangeLog b/sys-apps/iproute2/ChangeLog index 1b770144c517..170b3ca437ee 100644 --- a/sys-apps/iproute2/ChangeLog +++ b/sys-apps/iproute2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/iproute2 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.176 2011/12/03 10:28:48 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.177 2011/12/05 20:59:41 vapier Exp $ + + 05 Dec 2011; Mike Frysinger <vapier@gentoo.org> iproute2-2.6.38.ebuild, + iproute2-3.1.0.ebuild, iproute2-9999.ebuild: + Clean up code a bit and drop MY_P handling which hopefully should no longer + be needed. 03 Dec 2011; Mike Frysinger <vapier@gentoo.org> iproute2-3.1.0.ebuild, iproute2-9999.ebuild: diff --git a/sys-apps/iproute2/iproute2-2.6.38.ebuild b/sys-apps/iproute2/iproute2-2.6.38.ebuild index 9a04fe7c566a..e0bb05287fee 100644 --- a/sys-apps/iproute2/iproute2-2.6.38.ebuild +++ b/sys-apps/iproute2/iproute2-2.6.38.ebuild @@ -1,29 +1,26 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-2.6.38.ebuild,v 1.3 2011/10/18 21:41:55 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-2.6.38.ebuild,v 1.4 2011/12/05 20:59:41 vapier Exp $ -EAPI=4 +EAPI="4" -EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git" -[[ ${PV} == "9999" ]] && SCM_ECLASS="git-2" +inherit eutils toolchain-funcs flag-o-matic -if [[ ${PV} == *.*.*.* ]] ; then - MY_PV=${PV%.*}-${PV##*.} +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git" + inherit git-2 + SRC_URI="" + #KEYWORDS="" else - MY_PV=${PV} + SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.bz2" + KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" fi -MY_P="${PN}-${MY_PV}" - -inherit eutils toolchain-funcs flag-o-matic base ${SCM_ECLASS} -unset SCM_ECLASS DESCRIPTION="kernel routing and traffic control utilities" HOMEPAGE="http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2" -[[ ${PV} == "9999" ]] || SRC_URI="http://developer.osdl.org/dev/iproute2/download/${MY_P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -[[ ${PV} == "9999" ]] || KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" IUSE="atm berkdb minimal" RDEPEND="!net-misc/arpd @@ -35,15 +32,9 @@ DEPEND="${RDEPEND} >=sys-kernel/linux-headers-2.6.27 elibc_glibc? ( >=sys-libs/glibc-2.7 )" -S=${WORKDIR}/${MY_P} - -PATCHES=( - "${FILESDIR}"/${PN}-2.6.29.1-hfsc.patch #291907 - "${FILESDIR}"/${PN}-2.6.38-parallel-build.patch -) - src_prepare() { - base_src_prepare + epatch "${FILESDIR}"/${PN}-2.6.29.1-hfsc.patch #291907 + epatch "${FILESDIR}"/${PN}-2.6.38-parallel-build.patch sed -i \ -e "/^LIBDIR/s:=.*:=/$(get_libdir):" \ diff --git a/sys-apps/iproute2/iproute2-3.1.0.ebuild b/sys-apps/iproute2/iproute2-3.1.0.ebuild index f454cc9cd298..fecae23cc683 100644 --- a/sys-apps/iproute2/iproute2-3.1.0.ebuild +++ b/sys-apps/iproute2/iproute2-3.1.0.ebuild @@ -1,28 +1,26 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.1.0.ebuild,v 1.2 2011/12/03 10:28:48 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.1.0.ebuild,v 1.3 2011/12/05 20:59:41 vapier Exp $ -EAPI=4 +EAPI="4" -EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git" +inherit eutils toolchain-funcs flag-o-matic -if [[ ${PV} == *.*.*.* ]] ; then - MY_PV=${PV%.*}-${PV##*.} +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git" + inherit git-2 + SRC_URI="" + #KEYWORDS="" else - MY_PV=${PV} + SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.bz2" + KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" fi -MY_P="${PN}-${MY_PV}" - -inherit eutils toolchain-funcs flag-o-matic -[[ ${PV} == "9999" ]] && inherit git-2 DESCRIPTION="kernel routing and traffic control utilities" HOMEPAGE="http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2" -[[ ${PV} == "9999" ]] || SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -[[ ${PV} == "9999" ]] || KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" IUSE="atm berkdb minimal" RDEPEND="!net-misc/arpd @@ -34,8 +32,6 @@ DEPEND="${RDEPEND} >=sys-kernel/linux-headers-2.6.27 elibc_glibc? ( >=sys-libs/glibc-2.7 )" -S=${WORKDIR}/${MY_P} - src_prepare() { epatch "${FILESDIR}"/${PN}-3.1.0-mtu.patch #291907 diff --git a/sys-apps/iproute2/iproute2-9999.ebuild b/sys-apps/iproute2/iproute2-9999.ebuild index 9cf6e68943eb..b4d22821b958 100644 --- a/sys-apps/iproute2/iproute2-9999.ebuild +++ b/sys-apps/iproute2/iproute2-9999.ebuild @@ -1,28 +1,26 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-9999.ebuild,v 1.18 2011/12/03 10:28:48 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-9999.ebuild,v 1.19 2011/12/05 20:59:41 vapier Exp $ -EAPI=4 +EAPI="4" -EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git" +inherit eutils toolchain-funcs flag-o-matic -if [[ ${PV} == *.*.*.* ]] ; then - MY_PV=${PV%.*}-${PV##*.} +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git" + inherit git-2 + SRC_URI="" + #KEYWORDS="" else - MY_PV=${PV} + SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.bz2" + KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" fi -MY_P="${PN}-${MY_PV}" - -inherit eutils toolchain-funcs flag-o-matic -[[ ${PV} == "9999" ]] && inherit git-2 DESCRIPTION="kernel routing and traffic control utilities" HOMEPAGE="http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2" -[[ ${PV} == "9999" ]] || SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -[[ ${PV} == "9999" ]] || KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" IUSE="atm berkdb minimal" RDEPEND="!net-misc/arpd @@ -34,8 +32,6 @@ DEPEND="${RDEPEND} >=sys-kernel/linux-headers-2.6.27 elibc_glibc? ( >=sys-libs/glibc-2.7 )" -S=${WORKDIR}/${MY_P} - src_prepare() { epatch "${FILESDIR}"/${PN}-3.1.0-mtu.patch #291907 |