From b163fce18c1a70510f37ed89d932cc7426b990b9 Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Sat, 19 Sep 2020 13:52:42 +0200 Subject: sys-apps/dstat: Remove old MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- sys-apps/dstat/Manifest | 1 - sys-apps/dstat/dstat-0.7.3.ebuild | 39 -------------- sys-apps/dstat/dstat-0.7.4-r1.ebuild | 59 ---------------------- sys-apps/dstat/dstat-0.7.4.ebuild | 52 ------------------- .../files/dstat-0.7.3-skip-non-sandbox-tests.patch | 15 ------ 5 files changed, 166 deletions(-) delete mode 100644 sys-apps/dstat/dstat-0.7.3.ebuild delete mode 100644 sys-apps/dstat/dstat-0.7.4-r1.ebuild delete mode 100644 sys-apps/dstat/dstat-0.7.4.ebuild delete mode 100644 sys-apps/dstat/files/dstat-0.7.3-skip-non-sandbox-tests.patch (limited to 'sys-apps') diff --git a/sys-apps/dstat/Manifest b/sys-apps/dstat/Manifest index ad77287898f6..85f5131a910e 100644 --- a/sys-apps/dstat/Manifest +++ b/sys-apps/dstat/Manifest @@ -1,2 +1 @@ -DIST dstat-0.7.3.tar.gz 135583 BLAKE2B c846a06b6039e49944d43cc36178fed74fd4e0e3a1a4418dbe0e5987763995eb36dff0245cfa7107d446b8ac2ea500e13980f87e97aa8e5b8d566ee188be1639 SHA512 db37cc8bb7afd235ae9088e76c4defaa4d76651b111fbfdcd0980bc96376de20d57964912799a413397a79651730503bdeb8fea5cb97ab4d6d81632f528aefd2 DIST dstat-0.7.4.tar.gz 139992 BLAKE2B c8226358956687a4f64e248ef539b431b9e394e87986366f9941df2e86f0dac3032261ec2ca9c816d3bc89afabc352bc8bc80f9ad3eaa6118fd16bd7b0f1e68e SHA512 d100223887ebd83d0fd1259436f39419a85df9002556abcfc8e4195aa63be73d85707dcd5c4fb56a979b29131485dce6e97c177fbfca08dc50bd0f92b15cc6f5 diff --git a/sys-apps/dstat/dstat-0.7.3.ebuild b/sys-apps/dstat/dstat-0.7.3.ebuild deleted file mode 100644 index 372d70a1fd0a..000000000000 --- a/sys-apps/dstat/dstat-0.7.3.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 ) - -inherit python-r1 - -DESCRIPTION="Versatile replacement for vmstat, iostat and ifstat" -HOMEPAGE="http://dag.wieers.com/home-made/dstat/" -SRC_URI="https://github.com/dagwieers/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" -IUSE="wifi doc examples" -REQUIRED_USE="wifi? ( ${PYTHON_REQUIRED_USE} )" - -RDEPEND=" - wifi? ( - ${PYTHON_DEPS} - net-wireless/python-wifi - )" -DEPEND="" - -PATCHES=( "${FILESDIR}/dstat-${PV}-skip-non-sandbox-tests.patch" ) - -src_install() { - emake DESTDIR="${ED}" install - einstalldocs - - if use examples; then - dodoc examples/{mstat,read}.py - fi - if use doc; then - dodoc docs/*.html - fi -} diff --git a/sys-apps/dstat/dstat-0.7.4-r1.ebuild b/sys-apps/dstat/dstat-0.7.4-r1.ebuild deleted file mode 100644 index a5d6db02953c..000000000000 --- a/sys-apps/dstat/dstat-0.7.4-r1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7} ) - -inherit python-r1 - -DESCRIPTION="Versatile replacement for vmstat, iostat and ifstat" -HOMEPAGE="http://dag.wieers.com/home-made/dstat/" -SRC_URI="https://github.com/dagwieers/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" -IUSE="doc examples wifi" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND=" - ${PYTHON_DEPS} - dev-python/six[${PYTHON_USEDEP}] - wifi? ( - net-wireless/python-wifi - )" -DEPEND="${RDEPEND}" - -PATCHES=( \ - "${FILESDIR}/dstat-${PV}-skip-non-sandbox-tests.patch" \ - "${FILESDIR}/fix-collections-deprecation-warning.patch" \ -) - -src_prepare() { - - # bug fix: allow delay to be specified - # backport from: https://github.com/dagwieers/dstat/pull/167/files - sed -i -e 's; / op\.delay; // op.delay;' "dstat" || die - - default -} - -src_install() { - python_foreach_impl python_doscript dstat - - insinto /usr/share/dstat - newins dstat dstat.py - doins plugins/dstat_*.py - - doman docs/dstat.1 - - einstalldocs - - if use examples; then - dodoc examples/{mstat,read}.py - fi - if use doc; then - dodoc docs/*.html - fi -} diff --git a/sys-apps/dstat/dstat-0.7.4.ebuild b/sys-apps/dstat/dstat-0.7.4.ebuild deleted file mode 100644 index 43f33c42343c..000000000000 --- a/sys-apps/dstat/dstat-0.7.4.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7} ) - -inherit python-r1 - -DESCRIPTION="Versatile replacement for vmstat, iostat and ifstat" -HOMEPAGE="http://dag.wieers.com/home-made/dstat/" -SRC_URI="https://github.com/dagwieers/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" -IUSE="doc examples wifi" -REQUIRED_USE="wifi? ( ${PYTHON_REQUIRED_USE} )" - -RDEPEND=" - dev-python/six[${PYTHON_USEDEP}] - wifi? ( - ${PYTHON_DEPS} - net-wireless/python-wifi - )" -DEPEND="" - -PATCHES=( \ - "${FILESDIR}/dstat-${PV}-skip-non-sandbox-tests.patch" \ - "${FILESDIR}/fix-collections-deprecation-warning.patch" \ -) - -src_prepare() { - - # bug fix: allow delay to be specified - # backport from: https://github.com/dagwieers/dstat/pull/167/files - sed -i -e 's; / op\.delay; // op.delay;' "dstat" || die - - default -} - -src_install() { - emake DESTDIR="${ED}" install - einstalldocs - - if use examples; then - dodoc examples/{mstat,read}.py - fi - if use doc; then - dodoc docs/*.html - fi -} diff --git a/sys-apps/dstat/files/dstat-0.7.3-skip-non-sandbox-tests.patch b/sys-apps/dstat/files/dstat-0.7.3-skip-non-sandbox-tests.patch deleted file mode 100644 index 48eb542ed195..000000000000 --- a/sys-apps/dstat/files/dstat-0.7.3-skip-non-sandbox-tests.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- a/Makefile 2016-03-18 13:03:22.000000000 +0000 -+++ b/Makefile 2018-10-02 11:11:00.344942941 +0100 -@@ -32,9 +32,11 @@ - rm -f examples/*.pyc plugins/*.pyc - $(MAKE) -C docs clean - -+TEST_PLUGINS=--cpufreq --disk-avgqu --disk-avgrq --disk-svctm --disk-tps --disk-util --disk-wait --dstat-cpu --dstat-ctxt --dstat-mem --dstat --helloworld --md-status --net-packets --proc-count --snooze --test --top-bio-adv --top-bio --top-childwait --top-cpu-adv --top-cpu --top-cputime-avg --top-cputime --top-int --top-io-adv --top-io --top-latency-avg --top-latency --top-mem --top-oom -+ - test: - ./dstat -taf 1 5 -- ./dstat -t --all-plugins 1 5 -+ ./dstat -t $(TEST_PLUGINS) 1 5 - - dist: clean - $(MAKE) -C docs dist -- cgit v1.2.3-65-gdbad