diff options
author | Justin Lecher <jlec@gentoo.org> | 2016-11-05 12:12:31 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2016-11-05 12:12:46 +0100 |
commit | 8582afef24ed6f51bcfffa225cc38a715289483d (patch) | |
tree | 80d09ed2fed4ae37a06e55619b412f2b3bb6398d /app-benchmarks | |
parent | sys-kernel/aufs-sources: Bump to latest genpatches and linux release (diff) | |
download | gentoo-8582afef24ed6f51bcfffa225cc38a715289483d.tar.gz gentoo-8582afef24ed6f51bcfffa225cc38a715289483d.tar.bz2 gentoo-8582afef24ed6f51bcfffa225cc38a715289483d.zip |
app-benchmarks/ioping: Drop old, bump to EAPI=6
Package-Manager: portage-2.3.2
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'app-benchmarks')
-rw-r--r-- | app-benchmarks/ioping/Manifest | 1 | ||||
-rw-r--r-- | app-benchmarks/ioping/ioping-0.8.ebuild | 35 | ||||
-rw-r--r-- | app-benchmarks/ioping/ioping-0.9.ebuild | 10 |
3 files changed, 6 insertions, 40 deletions
diff --git a/app-benchmarks/ioping/Manifest b/app-benchmarks/ioping/Manifest index c9154a7686f3..f60ffbca3ff4 100644 --- a/app-benchmarks/ioping/Manifest +++ b/app-benchmarks/ioping/Manifest @@ -1,2 +1 @@ -DIST ioping-0.8.tar.gz 10590 SHA256 e23fdbd7298e26b63986137d6007e5a72d495da7265b9edea4c12f1b0c55fe48 SHA512 f15716eb60d40db2509c51b7448dbe0d2443888ccf83f708618d72bc41c8ff8d5da2a342fd68131536c7bcb316d7f68461940797366b7c2f277cfb9b2c3b87a2 WHIRLPOOL 07e312a660a7fffbbe9c85b5b4109e130e6f41ec6486313c7ee8bd9ad730191589108db4de537529e3d8448be434be0694ea94ee1ea87a7796045b83329714f1 DIST ioping-0.9.tar.gz 23695 SHA256 951e430875987c8cfe0ed85a0bcfe1081788121a34102eb6f7c91330c63a775d SHA512 609e19c31a16a5961be0e468255f2853311162ad988d07404a8198042bec1e20cab37e192ad148536a0772efe8034a94d594671ec6fde7d37badee859796de1c WHIRLPOOL e9dec9d139b1b85f379c65d99676bfbbda30b78bf8cfa9a2a238db0e9eb43f6a2cb119ba64e35f9a81dc530b29015062b6e9585661f97449a22c35dc930dbcdd diff --git a/app-benchmarks/ioping/ioping-0.8.ebuild b/app-benchmarks/ioping/ioping-0.8.ebuild deleted file mode 100644 index 0983ec3db14f..000000000000 --- a/app-benchmarks/ioping/ioping-0.8.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit eutils - -DESCRIPTION="Simple disk I/0 latency measuring tool" -HOMEPAGE="https://code.google.com/p/ioping/" -SRC_URI="https://ioping.googlecode.com/files/${P}.tar.gz" - -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -LICENSE="GPL-3" -IUSE="" - -src_prepare() { - sed \ - -e 's: -g : :g' \ - -e 's: $(LDFLAGS) : :g' \ - -e 's: -o : $(LDFLAGS) -o :g' \ - -e 's:-s -m:-m:g' \ - -i Makefile || die -} - -src_compile() { - emake \ - CC="$(tc-getCC)" \ - PREFIX="${EPREFIX}/usr" -} - -src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install -} diff --git a/app-benchmarks/ioping/ioping-0.9.ebuild b/app-benchmarks/ioping/ioping-0.9.ebuild index ee40cf8654fb..2fad05d68db4 100644 --- a/app-benchmarks/ioping/ioping-0.9.ebuild +++ b/app-benchmarks/ioping/ioping-0.9.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit eutils @@ -11,12 +11,14 @@ HOMEPAGE="https://github.com/koct9i/ioping" SRC_URI="https://github.com/koct9i/ioping/releases/download/v${PV}/${P}.tar.gz" SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" LICENSE="GPL-3" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="" +PATCHES=( "${FILESDIR}"/${P}-sysmacros.patch ) + src_prepare() { - epatch "${FILESDIR}"/${P}-sysmacros.patch #579982 + default sed \ -e 's: -g : :g' \ -e 's: $(LDFLAGS) : :g' \ |