From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AD01715807A for ; Sat, 07 Jun 2025 01:36:13 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 96DBD342FB0 for ; Sat, 07 Jun 2025 01:36:13 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 8D2511102BE; Sat, 07 Jun 2025 01:36:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 864571102BE for ; Sat, 07 Jun 2025 01:36:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3F77E342FB0 for ; Sat, 07 Jun 2025 01:36:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C6ED19FB for ; Sat, 07 Jun 2025 01:36:10 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1749258033.c178cbec3f17601cc11c05d4b44ab0e647e67af2.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/dstat/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/dstat/dstat-0.7.4-r2.ebuild sys-apps/dstat/dstat-0.7.4-r3.ebuild X-VCS-Directories: sys-apps/dstat/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c178cbec3f17601cc11c05d4b44ab0e647e67af2 X-VCS-Branch: master Date: Sat, 07 Jun 2025 01:36:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d2e5946c-c041-48df-8761-54d0d140c189 X-Archives-Hash: 08c69f7a502fa1924fda174117384c6b commit: c178cbec3f17601cc11c05d4b44ab0e647e67af2 Author: Sam James gentoo org> AuthorDate: Sat Jun 7 01:00:33 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jun 7 01:00:33 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c178cbec sys-apps/dstat: drop 0.7.4-r2, 0.7.4-r3 Signed-off-by: Sam James gentoo.org> sys-apps/dstat/dstat-0.7.4-r2.ebuild | 60 ------------------------------------ sys-apps/dstat/dstat-0.7.4-r3.ebuild | 60 ------------------------------------ 2 files changed, 120 deletions(-) diff --git a/sys-apps/dstat/dstat-0.7.4-r2.ebuild b/sys-apps/dstat/dstat-0.7.4-r2.ebuild deleted file mode 100644 index 93106c7cf568..000000000000 --- a/sys-apps/dstat/dstat-0.7.4-r2.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..11} ) - -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 ~mips ppc ppc64 sparc x86 ~x86-linux" -IUSE="doc examples" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND="${PYTHON_DEPS} - dev-python/six[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}/dstat-${PV}-skip-non-sandbox-tests.patch" - "${FILESDIR}/fix-collections-deprecation-warning.patch" - "${FILESDIR}/dstat-0.7.4-fix-csv-output.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 -} - -src_test() { - python_foreach_impl emake test -} diff --git a/sys-apps/dstat/dstat-0.7.4-r3.ebuild b/sys-apps/dstat/dstat-0.7.4-r3.ebuild deleted file mode 100644 index 67f83c126efb..000000000000 --- a/sys-apps/dstat/dstat-0.7.4-r3.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..12} ) - -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 ~mips ppc ppc64 sparc x86 ~x86-linux" -IUSE="doc examples" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND="${PYTHON_DEPS} - dev-python/six[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}/dstat-${PV}-skip-non-sandbox-tests.patch" - "${FILESDIR}/fix-collections-deprecation-warning.patch" - "${FILESDIR}/dstat-0.7.4-fix-csv-output.patch" - "${FILESDIR}/dstat-${PV}-fix-backslash-in-regex.patch" -) - -src_prepare() { - # bug fix: allow delay to be specified - # backport from: https://github.com/dagwieers/dstat/pull/167/files - sed -e 's; / op\.delay; // op.delay;' -i "dstat" || die - - default -} - -src_test() { - python_foreach_impl emake test -} - -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 -}