diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2020-03-03 14:25:12 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-03-03 14:25:12 +0000 |
commit | 5fd5574dc0a09a629e689e073b2ae40d9cce0fa2 (patch) | |
tree | f16779179ac15627081d48d86db159ed7a0265a4 /sys-block/seekwatcher | |
parent | profiles: Update mask for app-editors/emacs pretest versions. (diff) | |
download | gentoo-5fd5574dc0a09a629e689e073b2ae40d9cce0fa2.tar.gz gentoo-5fd5574dc0a09a629e689e073b2ae40d9cce0fa2.tar.bz2 gentoo-5fd5574dc0a09a629e689e073b2ae40d9cce0fa2.zip |
sys-block/seekwatcher: drop old
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'sys-block/seekwatcher')
-rw-r--r-- | sys-block/seekwatcher/Manifest | 1 | ||||
-rw-r--r-- | sys-block/seekwatcher/files/seekwatcher-0.12_p20091015-dash-fix.patch | 26 | ||||
-rw-r--r-- | sys-block/seekwatcher/seekwatcher-0.12_p20091015-r1.ebuild | 36 |
3 files changed, 0 insertions, 63 deletions
diff --git a/sys-block/seekwatcher/Manifest b/sys-block/seekwatcher/Manifest index 7ae8b6bc75f1..f4bb7972648a 100644 --- a/sys-block/seekwatcher/Manifest +++ b/sys-block/seekwatcher/Manifest @@ -1,2 +1 @@ -DIST seekwatcher-0.12_p20091015.tar.gz 105328 BLAKE2B 6ce83dc7655ad9b070b09c745ebff881e30f352955264c3cf18902293466896a2b8ca1454d00848777aa46e1026d9c44cdf2979c0a8cc1758d794efc3f5f8fb7 SHA512 fc35399900fac83bf2921a137059f1af23e65a778aad105a9cbb8bb869328723f7e2b3bb19b28e7eed04eca65a39cb637ba5932ee4f5f3a882a7b52715a9aded DIST seekwatcher-0.13.tar.gz 25811 BLAKE2B 72c574e239a346620eb5a1c574365f18dc745e926bfb4f191dd9997ff73b26e716ded9679481be34149c3e5e424077a23a264e7dabe9423eafb396f687085dbd SHA512 687c1190a4d62ee4d7237c6930358d69d2045a7fd5af19caf9fdde8dfae8fcc64ba2d382445af2b038bc31f77c356f31b8dbff2d52cdaf4320881d1b1340dd17 diff --git a/sys-block/seekwatcher/files/seekwatcher-0.12_p20091015-dash-fix.patch b/sys-block/seekwatcher/files/seekwatcher-0.12_p20091015-dash-fix.patch deleted file mode 100644 index 0742fb9d5dff..000000000000 --- a/sys-block/seekwatcher/files/seekwatcher-0.12_p20091015-dash-fix.patch +++ /dev/null @@ -1,26 +0,0 @@ -commit e594df5c73ab550fb76895f75f71109eb3640c41 -Author: Sergei Trofimovich <slyfox@gentoo.org> -Date: Thu Feb 23 22:28:28 2012 +0300 - - seekwatcher: fix failure when /bin/sh points to dash - - Before the patch: - $ ./seekwatcher -t test.trace -o test.png -p 'sleep 5' -d /dev/sda2 - > using tracefile ./test.trace - > sh: Syntax error: Bad fd number - > Empty blktrace run found, exiting - -Upstream status: sent, not applied yet -diff --git a/cmd/seekwatcher b/cmd/seekwatcher -index 7e96bd2..23cba1c 100755 ---- a/cmd/seekwatcher -+++ b/cmd/seekwatcher -@@ -610,7 +610,7 @@ def run_blkparse(trace): - print "using tracefile %s" % os.path.join(trace_dir, x) - fh = tempfile.NamedTemporaryFile(dir=".") - os.system('blkparse -q -D ' + trace_dir + ' -i ' + x + -- ' -d ' + fh.name + ' -O >& /dev/null') -+ ' -d ' + fh.name + ' -O > /dev/null 2>&1') - loaddata(fh, rd) - return rd - diff --git a/sys-block/seekwatcher/seekwatcher-0.12_p20091015-r1.ebuild b/sys-block/seekwatcher/seekwatcher-0.12_p20091015-r1.ebuild deleted file mode 100644 index c845c1122a2d..000000000000 --- a/sys-block/seekwatcher/seekwatcher-0.12_p20091015-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python2_7 ) - -inherit eutils distutils-r1 - -DESCRIPTION="generates graphs from blktrace to help visualize IO patterns and performance" -HOMEPAGE="http://oss.oracle.com/~mason/seekwatcher/" -#SRC_URI="http://oss.oracle.com/~mason/seekwatcher/${P}.tar.bz2" -SRC_URI="https://dev.gentoo.org/~slyfox/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND="dev-python/pyrex" -RDEPEND=" - || ( - dev-python/matplotlib-python2[${PYTHON_USEDEP}] - dev-python/matplotlib[${PYTHON_USEDEP}] - ) - || ( - dev-python/numpy-python2[${PYTHON_USEDEP}] - dev-python/numpy[${PYTHON_USEDEP}] - ) - >=sys-block/blktrace-0.0.20070730162628 -" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -S=${WORKDIR}/${PN}-b392aeaf693b # hg snapshot - -PATCHES=("${FILESDIR}"/${P}-dash-fix.patch) |