public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2021-09-08 12:24 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2021-09-08 12:24 UTC (permalink / raw
  To: gentoo-commits

commit:     d2a560187c928c06c16fb88387957f4c241c0cae
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep  8 12:22:50 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Sep  8 12:24:03 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2a56018

sys-process/iotop-c: initial import (from ::guru)

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/Manifest            |  1 +
 sys-process/iotop-c/iotop-c-1.18.ebuild | 36 +++++++++++++++++++++++++++++++++
 sys-process/iotop-c/iotop-c-9999.ebuild | 34 +++++++++++++++++++++++++++++++
 sys-process/iotop-c/metadata.xml        | 18 +++++++++++++++++
 4 files changed, 89 insertions(+)

diff --git a/sys-process/iotop-c/Manifest b/sys-process/iotop-c/Manifest
new file mode 100644
index 00000000000..4c6717c0a8c
--- /dev/null
+++ b/sys-process/iotop-c/Manifest
@@ -0,0 +1 @@
+DIST iotop-c-1.18.tar.gz 114838 BLAKE2B 8b3e13d00de4a5cd385a2d441d84bb27cc1d03a27012163b9628285c31176698bf840951e39199abef11b2d3c0413d500d6e7699f32a3b542360a1333307d00e SHA512 f0affbfdb106eb36078e7994860155f52d47878017f47e64d69aa7c04cc29756ca516a6634fd19d6d39c931100b9a0e93e07ca2f4d14c18014dc1c4f477907ea

diff --git a/sys-process/iotop-c/iotop-c-1.18.ebuild b/sys-process/iotop-c/iotop-c-1.18.ebuild
new file mode 100644
index 00000000000..b6d52c5d05f
--- /dev/null
+++ b/sys-process/iotop-c/iotop-c-1.18.ebuild
@@ -0,0 +1,36 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit fcaps linux-info toolchain-funcs
+
+DESCRIPTION="top utility for IO (C port)"
+HOMEPAGE="https://github.com/Tomas-M/iotop"
+SRC_URI="https://github.com/Tomas-M/iotop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/iotop-${PV}"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="sys-libs/ncurses:=
+	!sys-process/iotop"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS ~VM_EVENT_COUNTERS"
+
+FILECAPS=(
+	cap_net_admin=eip usr/bin/iotop
+)
+
+src_compile() {
+	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
+}
+
+src_install() {
+	dobin iotop
+	dodoc README.md
+	doman iotop.8
+}

diff --git a/sys-process/iotop-c/iotop-c-9999.ebuild b/sys-process/iotop-c/iotop-c-9999.ebuild
new file mode 100644
index 00000000000..b05952298d1
--- /dev/null
+++ b/sys-process/iotop-c/iotop-c-9999.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+EGIT_REPO_URI="https://github.com/Tomas-M/iotop"
+inherit fcaps git-r3 linux-info toolchain-funcs
+
+DESCRIPTION="top utility for IO (C port)"
+HOMEPAGE="https://github.com/Tomas-M/iotop"
+
+LICENSE="GPL-2+"
+SLOT="0"
+
+RDEPEND="sys-libs/ncurses:=
+	!sys-process/iotop"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS ~VM_EVENT_COUNTERS"
+
+FILECAPS=(
+	cap_net_admin=eip usr/bin/iotop
+)
+
+src_compile() {
+	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
+}
+
+src_install() {
+	dobin iotop
+	dodoc README.md
+	doman iotop.8
+}

diff --git a/sys-process/iotop-c/metadata.xml b/sys-process/iotop-c/metadata.xml
new file mode 100644
index 00000000000..e99460ff502
--- /dev/null
+++ b/sys-process/iotop-c/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>arthurzam@gentoo.org</email>
+		<name>Arthur Zamarin</name>
+	</maintainer>
+	<longdescription lang="en">
+Your Linux server is too slow or load is too high? One of the possible causes of such symptoms may be high IO (input/output) waiting time, which basically means that some of your processes need to read or write to a hard drive while it is too slow and not ready yet, serving data for some other processes.
+
+Common practice is to use iostat -x in order to find out which block device (hard drive) is slow, but such information is not always much helpful. It could help you much more if you knew which process reads or writes the most data from your slow disk, so you could possibly renice it using ionice or even kill it.
+
+IOTop will identify processes, which use high amount of input/output requests on your machine. It is similar to the well known top utility, but instead of showing you what consumes CPU the most, it lists processes by their IO consumption. Inspired by iotop python script from Guillaume Chazarain, but rewritten to C by Vyacheslav Trushkin so it now runs without python at all.
+	</longdescription>
+	<upstream>
+		<remote-id type="github">Tomas-M/iotop</remote-id>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2021-09-21  9:38 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2021-09-21  9:38 UTC (permalink / raw
  To: gentoo-commits

commit:     e16723ebd669c84a2ceb84e268beea98b84d9b2b
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 21 09:38:18 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Sep 21 09:38:18 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e16723eb

sys-process/iotop-c: add 1.19

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/Manifest            |  1 +
 sys-process/iotop-c/iotop-c-1.19.ebuild | 36 +++++++++++++++++++++++++++++++++
 2 files changed, 37 insertions(+)

diff --git a/sys-process/iotop-c/Manifest b/sys-process/iotop-c/Manifest
index 4c6717c0a8c..1eddfc18a3e 100644
--- a/sys-process/iotop-c/Manifest
+++ b/sys-process/iotop-c/Manifest
@@ -1 +1,2 @@
 DIST iotop-c-1.18.tar.gz 114838 BLAKE2B 8b3e13d00de4a5cd385a2d441d84bb27cc1d03a27012163b9628285c31176698bf840951e39199abef11b2d3c0413d500d6e7699f32a3b542360a1333307d00e SHA512 f0affbfdb106eb36078e7994860155f52d47878017f47e64d69aa7c04cc29756ca516a6634fd19d6d39c931100b9a0e93e07ca2f4d14c18014dc1c4f477907ea
+DIST iotop-c-1.19.tar.gz 115025 BLAKE2B 0b45a73afc5dd160692fa1a3d028afff2b4b242a008470679a669182baa56b133f5fd26f9cb3ed20ebfe18b7fdeba9ca98a7801299c8c9b8d776a58fed2725d2 SHA512 489ddd67eb4e9159058c94f614534290b302abd5af8b424f6c42df20f21362c60dc30e7fd0bac883b8bf032e72843b4b82dbfb77b670258728ef0fa9dbb7dfa3

diff --git a/sys-process/iotop-c/iotop-c-1.19.ebuild b/sys-process/iotop-c/iotop-c-1.19.ebuild
new file mode 100644
index 00000000000..b6d52c5d05f
--- /dev/null
+++ b/sys-process/iotop-c/iotop-c-1.19.ebuild
@@ -0,0 +1,36 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit fcaps linux-info toolchain-funcs
+
+DESCRIPTION="top utility for IO (C port)"
+HOMEPAGE="https://github.com/Tomas-M/iotop"
+SRC_URI="https://github.com/Tomas-M/iotop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/iotop-${PV}"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="sys-libs/ncurses:=
+	!sys-process/iotop"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS ~VM_EVENT_COUNTERS"
+
+FILECAPS=(
+	cap_net_admin=eip usr/bin/iotop
+)
+
+src_compile() {
+	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
+}
+
+src_install() {
+	dobin iotop
+	dodoc README.md
+	doman iotop.8
+}


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2021-10-05  5:34 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2021-10-05  5:34 UTC (permalink / raw
  To: gentoo-commits

commit:     9deb5709b934b703ab3c9aef334db2052c2b96df
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  5 05:33:47 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Oct  5 05:34:28 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9deb5709

sys-process/iotop-c: add 1.20

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/Manifest            |  1 +
 sys-process/iotop-c/iotop-c-1.20.ebuild | 36 +++++++++++++++++++++++++++++++++
 2 files changed, 37 insertions(+)

diff --git a/sys-process/iotop-c/Manifest b/sys-process/iotop-c/Manifest
index 1eddfc18a3e..85039c026d2 100644
--- a/sys-process/iotop-c/Manifest
+++ b/sys-process/iotop-c/Manifest
@@ -1,2 +1,3 @@
 DIST iotop-c-1.18.tar.gz 114838 BLAKE2B 8b3e13d00de4a5cd385a2d441d84bb27cc1d03a27012163b9628285c31176698bf840951e39199abef11b2d3c0413d500d6e7699f32a3b542360a1333307d00e SHA512 f0affbfdb106eb36078e7994860155f52d47878017f47e64d69aa7c04cc29756ca516a6634fd19d6d39c931100b9a0e93e07ca2f4d14c18014dc1c4f477907ea
 DIST iotop-c-1.19.tar.gz 115025 BLAKE2B 0b45a73afc5dd160692fa1a3d028afff2b4b242a008470679a669182baa56b133f5fd26f9cb3ed20ebfe18b7fdeba9ca98a7801299c8c9b8d776a58fed2725d2 SHA512 489ddd67eb4e9159058c94f614534290b302abd5af8b424f6c42df20f21362c60dc30e7fd0bac883b8bf032e72843b4b82dbfb77b670258728ef0fa9dbb7dfa3
+DIST iotop-c-1.20.tar.gz 124352 BLAKE2B ec14a70e7952b6a5d4a74dbac3cd3c5f18e4b4c447d7b8c8515f8e59f4d859ed8110da44329f5cf2ed36cac764c509d080cb7b75b0caa50896fa77abe84880ca SHA512 1e4b5a9f166ff021b53e13a1c975328b6f966e468c3bf834a0504e41b7c3f3f9052516d6b57082692871a69b5675a86d16fb7f487e2aa44dbb5e81a8a0d806bb

diff --git a/sys-process/iotop-c/iotop-c-1.20.ebuild b/sys-process/iotop-c/iotop-c-1.20.ebuild
new file mode 100644
index 00000000000..b6d52c5d05f
--- /dev/null
+++ b/sys-process/iotop-c/iotop-c-1.20.ebuild
@@ -0,0 +1,36 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit fcaps linux-info toolchain-funcs
+
+DESCRIPTION="top utility for IO (C port)"
+HOMEPAGE="https://github.com/Tomas-M/iotop"
+SRC_URI="https://github.com/Tomas-M/iotop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/iotop-${PV}"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="sys-libs/ncurses:=
+	!sys-process/iotop"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS ~VM_EVENT_COUNTERS"
+
+FILECAPS=(
+	cap_net_admin=eip usr/bin/iotop
+)
+
+src_compile() {
+	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
+}
+
+src_install() {
+	dobin iotop
+	dodoc README.md
+	doman iotop.8
+}


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2021-10-10  2:20 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2021-10-10  2:20 UTC (permalink / raw
  To: gentoo-commits

commit:     c17c2a4df2ae4f6e402c20df508156ceb8dbfdd4
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 10 02:18:47 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 10 02:18:47 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c17c2a4d

sys-process/iotop-c: Keyword 1.20 arm64, #816960

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.20.ebuild b/sys-process/iotop-c/iotop-c-1.20.ebuild
index b6d52c5d05f..276f22bb604 100644
--- a/sys-process/iotop-c/iotop-c-1.20.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.20.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2021-10-10 20:40 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2021-10-10 20:40 UTC (permalink / raw
  To: gentoo-commits

commit:     dfb94ced8dbf1cc04a39af03689f84538a73844b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 10 20:40:27 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 10 20:40:27 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfb94ced

sys-process/iotop-c: Keyword 1.20 arm, #816960

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.20.ebuild b/sys-process/iotop-c/iotop-c-1.20.ebuild
index 276f22bb604..dc0ad0349ff 100644
--- a/sys-process/iotop-c/iotop-c-1.20.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.20.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2021-10-17 19:25 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2021-10-17 19:25 UTC (permalink / raw
  To: gentoo-commits

commit:     c908404b2484abc1e9076e82b00ce9412b4ed50f
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 17 19:21:24 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 17 19:24:26 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c908404b

sys-process/iotop-c: drop 1.18

v1.19 isn't removed as it would be asked for stabilization in 4 days

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/Manifest            |  1 -
 sys-process/iotop-c/iotop-c-1.18.ebuild | 36 ---------------------------------
 2 files changed, 37 deletions(-)

diff --git a/sys-process/iotop-c/Manifest b/sys-process/iotop-c/Manifest
index 85039c026d2..4a8531cb148 100644
--- a/sys-process/iotop-c/Manifest
+++ b/sys-process/iotop-c/Manifest
@@ -1,3 +1,2 @@
-DIST iotop-c-1.18.tar.gz 114838 BLAKE2B 8b3e13d00de4a5cd385a2d441d84bb27cc1d03a27012163b9628285c31176698bf840951e39199abef11b2d3c0413d500d6e7699f32a3b542360a1333307d00e SHA512 f0affbfdb106eb36078e7994860155f52d47878017f47e64d69aa7c04cc29756ca516a6634fd19d6d39c931100b9a0e93e07ca2f4d14c18014dc1c4f477907ea
 DIST iotop-c-1.19.tar.gz 115025 BLAKE2B 0b45a73afc5dd160692fa1a3d028afff2b4b242a008470679a669182baa56b133f5fd26f9cb3ed20ebfe18b7fdeba9ca98a7801299c8c9b8d776a58fed2725d2 SHA512 489ddd67eb4e9159058c94f614534290b302abd5af8b424f6c42df20f21362c60dc30e7fd0bac883b8bf032e72843b4b82dbfb77b670258728ef0fa9dbb7dfa3
 DIST iotop-c-1.20.tar.gz 124352 BLAKE2B ec14a70e7952b6a5d4a74dbac3cd3c5f18e4b4c447d7b8c8515f8e59f4d859ed8110da44329f5cf2ed36cac764c509d080cb7b75b0caa50896fa77abe84880ca SHA512 1e4b5a9f166ff021b53e13a1c975328b6f966e468c3bf834a0504e41b7c3f3f9052516d6b57082692871a69b5675a86d16fb7f487e2aa44dbb5e81a8a0d806bb

diff --git a/sys-process/iotop-c/iotop-c-1.18.ebuild b/sys-process/iotop-c/iotop-c-1.18.ebuild
deleted file mode 100644
index b6d52c5d05f..00000000000
--- a/sys-process/iotop-c/iotop-c-1.18.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit fcaps linux-info toolchain-funcs
-
-DESCRIPTION="top utility for IO (C port)"
-HOMEPAGE="https://github.com/Tomas-M/iotop"
-SRC_URI="https://github.com/Tomas-M/iotop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/iotop-${PV}"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="sys-libs/ncurses:=
-	!sys-process/iotop"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS ~VM_EVENT_COUNTERS"
-
-FILECAPS=(
-	cap_net_admin=eip usr/bin/iotop
-)
-
-src_compile() {
-	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
-}
-
-src_install() {
-	dobin iotop
-	dodoc README.md
-	doman iotop.8
-}


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2021-10-21 23:28 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2021-10-21 23:28 UTC (permalink / raw
  To: gentoo-commits

commit:     648a60d37a7442caf15b21fc035e66b50beabcd8
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 21 23:27:08 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Oct 21 23:27:08 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=648a60d3

sys-process/iotop-c: Stabilize 1.19 x86, #819213

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.19.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.19.ebuild b/sys-process/iotop-c/iotop-c-1.19.ebuild
index b6d52c5d05f..79fbee9dbfd 100644
--- a/sys-process/iotop-c/iotop-c-1.19.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.19.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2021-10-21 23:28 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2021-10-21 23:28 UTC (permalink / raw
  To: gentoo-commits

commit:     fd3f39055c6a3f830b32c99ef4f9bc074604c1ea
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 21 23:28:01 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Oct 21 23:28:01 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd3f3905

sys-process/iotop-c: Stabilize 1.19 amd64, #819213

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.19.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.19.ebuild b/sys-process/iotop-c/iotop-c-1.19.ebuild
index 79fbee9dbfd..dcc5914b7b3 100644
--- a/sys-process/iotop-c/iotop-c-1.19.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.19.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2021-11-06 21:22 Jakov Smolić
  0 siblings, 0 replies; 55+ messages in thread
From: Jakov Smolić @ 2021-11-06 21:22 UTC (permalink / raw
  To: gentoo-commits

commit:     d0c0d89e25eaf485881ecb1916cf5c86f3c5de72
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Nov  6 21:21:58 2021 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Nov  6 21:21:58 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0c0d89e

sys-process/iotop-c: Stabilize 1.20 amd64, #822153

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.20.ebuild b/sys-process/iotop-c/iotop-c-1.20.ebuild
index dc0ad0349ff..826911c2713 100644
--- a/sys-process/iotop-c/iotop-c-1.20.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.20.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2021-11-07  1:34 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2021-11-07  1:34 UTC (permalink / raw
  To: gentoo-commits

commit:     4d7e103bb6cea4854191d66121c72a9eff5a3a14
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  7 01:33:18 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Nov  7 01:33:18 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d7e103b

sys-process/iotop-c: Stabilize 1.20 arm, #822153

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.20.ebuild b/sys-process/iotop-c/iotop-c-1.20.ebuild
index 826911c2713..deaa656dc16 100644
--- a/sys-process/iotop-c/iotop-c-1.20.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.20.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 arm ~arm64 ~x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2021-11-07  6:40 Agostino Sarubbo
  0 siblings, 0 replies; 55+ messages in thread
From: Agostino Sarubbo @ 2021-11-07  6:40 UTC (permalink / raw
  To: gentoo-commits

commit:     44694316026ac59979749b897d769239d5c17f45
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  7 06:40:38 2021 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Nov  7 06:40:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44694316

sys-process/iotop-c: x86 stable wrt bug #822153

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.20.ebuild b/sys-process/iotop-c/iotop-c-1.20.ebuild
index deaa656dc16..048a712f033 100644
--- a/sys-process/iotop-c/iotop-c-1.20.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.20.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~x86"
+KEYWORDS="amd64 arm ~arm64 x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2021-11-09 21:36 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2021-11-09 21:36 UTC (permalink / raw
  To: gentoo-commits

commit:     308453702651bb0ef8f6e344a345b4154e77f6a5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  9 21:35:35 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov  9 21:35:35 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30845370

sys-process/iotop-c: Stabilize 1.20 arm64, #822153

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.20.ebuild b/sys-process/iotop-c/iotop-c-1.20.ebuild
index 048a712f033..3701db1dea7 100644
--- a/sys-process/iotop-c/iotop-c-1.20.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.20.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 x86"
+KEYWORDS="amd64 arm arm64 x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2022-01-29  9:13 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2022-01-29  9:13 UTC (permalink / raw
  To: gentoo-commits

commit:     5043538f72f7a47bff59a1a9377bad94e1a95b3a
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 29 08:42:16 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 29 09:13:26 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5043538f

sys-process/iotop-c: add 1.21

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/Manifest            |  1 +
 sys-process/iotop-c/iotop-c-1.21.ebuild | 36 +++++++++++++++++++++++++++++++++
 2 files changed, 37 insertions(+)

diff --git a/sys-process/iotop-c/Manifest b/sys-process/iotop-c/Manifest
index 4a8531cb148f..17a93e204986 100644
--- a/sys-process/iotop-c/Manifest
+++ b/sys-process/iotop-c/Manifest
@@ -1,2 +1,3 @@
 DIST iotop-c-1.19.tar.gz 115025 BLAKE2B 0b45a73afc5dd160692fa1a3d028afff2b4b242a008470679a669182baa56b133f5fd26f9cb3ed20ebfe18b7fdeba9ca98a7801299c8c9b8d776a58fed2725d2 SHA512 489ddd67eb4e9159058c94f614534290b302abd5af8b424f6c42df20f21362c60dc30e7fd0bac883b8bf032e72843b4b82dbfb77b670258728ef0fa9dbb7dfa3
 DIST iotop-c-1.20.tar.gz 124352 BLAKE2B ec14a70e7952b6a5d4a74dbac3cd3c5f18e4b4c447d7b8c8515f8e59f4d859ed8110da44329f5cf2ed36cac764c509d080cb7b75b0caa50896fa77abe84880ca SHA512 1e4b5a9f166ff021b53e13a1c975328b6f966e468c3bf834a0504e41b7c3f3f9052516d6b57082692871a69b5675a86d16fb7f487e2aa44dbb5e81a8a0d806bb
+DIST iotop-c-1.21.tar.gz 127634 BLAKE2B 9dd84bd3a1c7fe44b8e393114428b3d7f1c8f313ad6fcc13e94ff2ed3d139ce45f2bc6c365218de865f67550fe9ed2bf320566f13b7b0190f2cc1a57026a52f1 SHA512 2cc01767f234b46ed2d02e96dc97e684cf6174c63038026362a4f6e08b30a4321cb9597727b64710162c5dc35fbb94306fc719d69fa5320f691849f91f8b62bf

diff --git a/sys-process/iotop-c/iotop-c-1.21.ebuild b/sys-process/iotop-c/iotop-c-1.21.ebuild
new file mode 100644
index 000000000000..111007bba443
--- /dev/null
+++ b/sys-process/iotop-c/iotop-c-1.21.ebuild
@@ -0,0 +1,36 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit fcaps linux-info toolchain-funcs
+
+DESCRIPTION="top utility for IO (C port)"
+HOMEPAGE="https://github.com/Tomas-M/iotop"
+SRC_URI="https://github.com/Tomas-M/iotop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/iotop-${PV}"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+RDEPEND="sys-libs/ncurses:=
+	!sys-process/iotop"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS ~VM_EVENT_COUNTERS"
+
+FILECAPS=(
+	cap_net_admin=eip usr/bin/iotop
+)
+
+src_compile() {
+	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
+}
+
+src_install() {
+	dobin iotop
+	dodoc README.md
+	doman iotop.8
+}


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2022-05-05  5:38 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2022-05-05  5:38 UTC (permalink / raw
  To: gentoo-commits

commit:     37fc739a959f4f4f526b060b2dd788e9935d0e29
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu May  5 05:38:06 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu May  5 05:38:06 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37fc739a

sys-process/iotop-c: Stabilize 1.21 arm64, #842453

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.21.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.21.ebuild b/sys-process/iotop-c/iotop-c-1.21.ebuild
index 2e306e54f06b..6d2a0fb214d0 100644
--- a/sys-process/iotop-c/iotop-c-1.21.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.21.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~x86"
+KEYWORDS="~amd64 arm arm64 ~x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2022-05-05  5:38 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2022-05-05  5:38 UTC (permalink / raw
  To: gentoo-commits

commit:     57335bdb27d787e3f2b36df44e4e55f1253665a0
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu May  5 05:38:05 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu May  5 05:38:05 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57335bdb

sys-process/iotop-c: Stabilize 1.21 arm, #842453

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.21.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.21.ebuild b/sys-process/iotop-c/iotop-c-1.21.ebuild
index 111007bba443..2e306e54f06b 100644
--- a/sys-process/iotop-c/iotop-c-1.21.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.21.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2022-05-05  9:54 Jakov Smolić
  0 siblings, 0 replies; 55+ messages in thread
From: Jakov Smolić @ 2022-05-05  9:54 UTC (permalink / raw
  To: gentoo-commits

commit:     313ed6b9db4feaa048b95f54d3d109be04d93eb3
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Thu May  5 09:52:54 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu May  5 09:52:54 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=313ed6b9

sys-process/iotop-c: Stabilize 1.21 x86, #842453

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.21.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.21.ebuild b/sys-process/iotop-c/iotop-c-1.21.ebuild
index 186106cde61d..fb4071b7d2ff 100644
--- a/sys-process/iotop-c/iotop-c-1.21.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.21.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~x86"
+KEYWORDS="amd64 arm arm64 x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2022-08-15  5:27 WANG Xuerui
  0 siblings, 0 replies; 55+ messages in thread
From: WANG Xuerui @ 2022-08-15  5:27 UTC (permalink / raw
  To: gentoo-commits

commit:     9ba30927810e1db8424032089bd1c1d4e51df0d7
Author:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 15 05:22:13 2022 +0000
Commit:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Mon Aug 15 05:26:40 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ba30927

sys-process/iotop-c: keyword 1.21 for ~loong

Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.21.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.21.ebuild b/sys-process/iotop-c/iotop-c-1.21.ebuild
index fb4071b7d2ff..cc98b1156d52 100644
--- a/sys-process/iotop-c/iotop-c-1.21.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.21.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 x86"
+KEYWORDS="amd64 arm arm64 ~loong x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2022-08-18 20:28 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2022-08-18 20:28 UTC (permalink / raw
  To: gentoo-commits

commit:     fd7eaa28157012448e1bdaab2c17415b99752017
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 18 20:28:20 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Aug 18 20:28:31 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd7eaa28

sys-process/iotop-c: drop 1.19, 1.20

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/Manifest            |  2 --
 sys-process/iotop-c/iotop-c-1.19.ebuild | 36 ---------------------------------
 sys-process/iotop-c/iotop-c-1.20.ebuild | 36 ---------------------------------
 3 files changed, 74 deletions(-)

diff --git a/sys-process/iotop-c/Manifest b/sys-process/iotop-c/Manifest
index 04c5ba77e04f..2058dab62a39 100644
--- a/sys-process/iotop-c/Manifest
+++ b/sys-process/iotop-c/Manifest
@@ -1,4 +1,2 @@
-DIST iotop-c-1.19.tar.gz 115025 BLAKE2B 0b45a73afc5dd160692fa1a3d028afff2b4b242a008470679a669182baa56b133f5fd26f9cb3ed20ebfe18b7fdeba9ca98a7801299c8c9b8d776a58fed2725d2 SHA512 489ddd67eb4e9159058c94f614534290b302abd5af8b424f6c42df20f21362c60dc30e7fd0bac883b8bf032e72843b4b82dbfb77b670258728ef0fa9dbb7dfa3
-DIST iotop-c-1.20.tar.gz 124352 BLAKE2B ec14a70e7952b6a5d4a74dbac3cd3c5f18e4b4c447d7b8c8515f8e59f4d859ed8110da44329f5cf2ed36cac764c509d080cb7b75b0caa50896fa77abe84880ca SHA512 1e4b5a9f166ff021b53e13a1c975328b6f966e468c3bf834a0504e41b7c3f3f9052516d6b57082692871a69b5675a86d16fb7f487e2aa44dbb5e81a8a0d806bb
 DIST iotop-c-1.21.tar.gz 127634 BLAKE2B 9dd84bd3a1c7fe44b8e393114428b3d7f1c8f313ad6fcc13e94ff2ed3d139ce45f2bc6c365218de865f67550fe9ed2bf320566f13b7b0190f2cc1a57026a52f1 SHA512 2cc01767f234b46ed2d02e96dc97e684cf6174c63038026362a4f6e08b30a4321cb9597727b64710162c5dc35fbb94306fc719d69fa5320f691849f91f8b62bf
 DIST iotop-c-1.22.tar.gz 135078 BLAKE2B 90a441402b19ab5af9d5155f5d335e992e8acd702cbc2ebfb4b99dbc0be672fe07d462aab2c00a14702f584c0762b3b0ae4336022007bc956309ab781cbd2aa8 SHA512 863f4e602e13c91302ef3e2de7bf917418cb389a427fd0a6579c31a991d628112d0b479a2287944c4b3f3b5c4b13815ec57d30687fc48de7b782586e56ee62d8

diff --git a/sys-process/iotop-c/iotop-c-1.19.ebuild b/sys-process/iotop-c/iotop-c-1.19.ebuild
deleted file mode 100644
index dcc5914b7b3e..000000000000
--- a/sys-process/iotop-c/iotop-c-1.19.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit fcaps linux-info toolchain-funcs
-
-DESCRIPTION="top utility for IO (C port)"
-HOMEPAGE="https://github.com/Tomas-M/iotop"
-SRC_URI="https://github.com/Tomas-M/iotop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/iotop-${PV}"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="sys-libs/ncurses:=
-	!sys-process/iotop"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS ~VM_EVENT_COUNTERS"
-
-FILECAPS=(
-	cap_net_admin=eip usr/bin/iotop
-)
-
-src_compile() {
-	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
-}
-
-src_install() {
-	dobin iotop
-	dodoc README.md
-	doman iotop.8
-}

diff --git a/sys-process/iotop-c/iotop-c-1.20.ebuild b/sys-process/iotop-c/iotop-c-1.20.ebuild
deleted file mode 100644
index 3701db1dea7e..000000000000
--- a/sys-process/iotop-c/iotop-c-1.20.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit fcaps linux-info toolchain-funcs
-
-DESCRIPTION="top utility for IO (C port)"
-HOMEPAGE="https://github.com/Tomas-M/iotop"
-SRC_URI="https://github.com/Tomas-M/iotop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/iotop-${PV}"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 x86"
-
-RDEPEND="sys-libs/ncurses:=
-	!sys-process/iotop"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS ~VM_EVENT_COUNTERS"
-
-FILECAPS=(
-	cap_net_admin=eip usr/bin/iotop
-)
-
-src_compile() {
-	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
-}
-
-src_install() {
-	dobin iotop
-	dodoc README.md
-	doman iotop.8
-}


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2022-08-18 20:28 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2022-08-18 20:28 UTC (permalink / raw
  To: gentoo-commits

commit:     19d180f86cff44e8a3ca06b903a954d0278fa6c8
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 18 20:27:52 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Aug 18 20:28:31 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19d180f8

sys-process/iotop-c: add 1.22

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/Manifest            |  1 +
 sys-process/iotop-c/iotop-c-1.22.ebuild | 36 +++++++++++++++++++++++++++++++++
 2 files changed, 37 insertions(+)

diff --git a/sys-process/iotop-c/Manifest b/sys-process/iotop-c/Manifest
index 17a93e204986..04c5ba77e04f 100644
--- a/sys-process/iotop-c/Manifest
+++ b/sys-process/iotop-c/Manifest
@@ -1,3 +1,4 @@
 DIST iotop-c-1.19.tar.gz 115025 BLAKE2B 0b45a73afc5dd160692fa1a3d028afff2b4b242a008470679a669182baa56b133f5fd26f9cb3ed20ebfe18b7fdeba9ca98a7801299c8c9b8d776a58fed2725d2 SHA512 489ddd67eb4e9159058c94f614534290b302abd5af8b424f6c42df20f21362c60dc30e7fd0bac883b8bf032e72843b4b82dbfb77b670258728ef0fa9dbb7dfa3
 DIST iotop-c-1.20.tar.gz 124352 BLAKE2B ec14a70e7952b6a5d4a74dbac3cd3c5f18e4b4c447d7b8c8515f8e59f4d859ed8110da44329f5cf2ed36cac764c509d080cb7b75b0caa50896fa77abe84880ca SHA512 1e4b5a9f166ff021b53e13a1c975328b6f966e468c3bf834a0504e41b7c3f3f9052516d6b57082692871a69b5675a86d16fb7f487e2aa44dbb5e81a8a0d806bb
 DIST iotop-c-1.21.tar.gz 127634 BLAKE2B 9dd84bd3a1c7fe44b8e393114428b3d7f1c8f313ad6fcc13e94ff2ed3d139ce45f2bc6c365218de865f67550fe9ed2bf320566f13b7b0190f2cc1a57026a52f1 SHA512 2cc01767f234b46ed2d02e96dc97e684cf6174c63038026362a4f6e08b30a4321cb9597727b64710162c5dc35fbb94306fc719d69fa5320f691849f91f8b62bf
+DIST iotop-c-1.22.tar.gz 135078 BLAKE2B 90a441402b19ab5af9d5155f5d335e992e8acd702cbc2ebfb4b99dbc0be672fe07d462aab2c00a14702f584c0762b3b0ae4336022007bc956309ab781cbd2aa8 SHA512 863f4e602e13c91302ef3e2de7bf917418cb389a427fd0a6579c31a991d628112d0b479a2287944c4b3f3b5c4b13815ec57d30687fc48de7b782586e56ee62d8

diff --git a/sys-process/iotop-c/iotop-c-1.22.ebuild b/sys-process/iotop-c/iotop-c-1.22.ebuild
new file mode 100644
index 000000000000..d3fb15e7e2eb
--- /dev/null
+++ b/sys-process/iotop-c/iotop-c-1.22.ebuild
@@ -0,0 +1,36 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit fcaps linux-info toolchain-funcs
+
+DESCRIPTION="top utility for IO (C port)"
+HOMEPAGE="https://github.com/Tomas-M/iotop"
+SRC_URI="https://github.com/Tomas-M/iotop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/iotop-${PV}"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~x86"
+
+RDEPEND="sys-libs/ncurses:=
+	!sys-process/iotop"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS ~VM_EVENT_COUNTERS"
+
+FILECAPS=(
+	cap_net_admin=eip usr/bin/iotop
+)
+
+src_compile() {
+	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
+}
+
+src_install() {
+	dobin iotop
+	dodoc README.md
+	doman iotop.8
+}


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2022-09-26 10:17 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2022-09-26 10:17 UTC (permalink / raw
  To: gentoo-commits

commit:     60df593e2beebe46dbd5e16b4ea55920b1723503
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 26 10:17:27 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 26 10:17:27 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60df593e

sys-process/iotop-c: Stabilize 1.22 arm, #873037

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.22.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.22.ebuild b/sys-process/iotop-c/iotop-c-1.22.ebuild
index d3fb15e7e2eb..9c22c00b45af 100644
--- a/sys-process/iotop-c/iotop-c-1.22.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.22.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~loong ~x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2022-09-26 12:27 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2022-09-26 12:27 UTC (permalink / raw
  To: gentoo-commits

commit:     f21f9f1624f24d18e9d86e096ba8a27664cb0e04
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 26 12:26:53 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 26 12:26:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f21f9f16

sys-process/iotop-c: Stabilize 1.22 x86, #873037

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.22.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.22.ebuild b/sys-process/iotop-c/iotop-c-1.22.ebuild
index 9c22c00b45af..0c2b773641a0 100644
--- a/sys-process/iotop-c/iotop-c-1.22.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.22.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~loong ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~loong x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2022-09-26 12:27 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2022-09-26 12:27 UTC (permalink / raw
  To: gentoo-commits

commit:     88f68b34d68ccc553b0d25c8dfb54b15add11db0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 26 12:27:14 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 26 12:27:14 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88f68b34

sys-process/iotop-c: Stabilize 1.22 amd64, #873037

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.22.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.22.ebuild b/sys-process/iotop-c/iotop-c-1.22.ebuild
index 0c2b773641a0..39c91d0c483c 100644
--- a/sys-process/iotop-c/iotop-c-1.22.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.22.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~loong x86"
+KEYWORDS="amd64 arm ~arm64 ~loong x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2022-09-26 12:32 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2022-09-26 12:32 UTC (permalink / raw
  To: gentoo-commits

commit:     390d0d879fc287c238e067e3a1d377165c4b74bb
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 26 12:32:31 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 26 12:32:31 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=390d0d87

sys-process/iotop-c: Stabilize 1.22 arm64, #873037

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.22.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.22.ebuild b/sys-process/iotop-c/iotop-c-1.22.ebuild
index 39c91d0c483c..cc98b1156d52 100644
--- a/sys-process/iotop-c/iotop-c-1.22.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.22.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~loong x86"
+KEYWORDS="amd64 arm arm64 ~loong x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2022-09-27  7:20 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2022-09-27  7:20 UTC (permalink / raw
  To: gentoo-commits

commit:     db5baf1c90e0773d16e6fb3e214f423778a0074d
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 27 07:19:08 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Sep 27 07:20:08 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db5baf1c

sys-process/iotop-c: drop 1.21

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/Manifest            |  1 -
 sys-process/iotop-c/iotop-c-1.21.ebuild | 36 ---------------------------------
 2 files changed, 37 deletions(-)

diff --git a/sys-process/iotop-c/Manifest b/sys-process/iotop-c/Manifest
index 2058dab62a39..faf114d25606 100644
--- a/sys-process/iotop-c/Manifest
+++ b/sys-process/iotop-c/Manifest
@@ -1,2 +1 @@
-DIST iotop-c-1.21.tar.gz 127634 BLAKE2B 9dd84bd3a1c7fe44b8e393114428b3d7f1c8f313ad6fcc13e94ff2ed3d139ce45f2bc6c365218de865f67550fe9ed2bf320566f13b7b0190f2cc1a57026a52f1 SHA512 2cc01767f234b46ed2d02e96dc97e684cf6174c63038026362a4f6e08b30a4321cb9597727b64710162c5dc35fbb94306fc719d69fa5320f691849f91f8b62bf
 DIST iotop-c-1.22.tar.gz 135078 BLAKE2B 90a441402b19ab5af9d5155f5d335e992e8acd702cbc2ebfb4b99dbc0be672fe07d462aab2c00a14702f584c0762b3b0ae4336022007bc956309ab781cbd2aa8 SHA512 863f4e602e13c91302ef3e2de7bf917418cb389a427fd0a6579c31a991d628112d0b479a2287944c4b3f3b5c4b13815ec57d30687fc48de7b782586e56ee62d8

diff --git a/sys-process/iotop-c/iotop-c-1.21.ebuild b/sys-process/iotop-c/iotop-c-1.21.ebuild
deleted file mode 100644
index cc98b1156d52..000000000000
--- a/sys-process/iotop-c/iotop-c-1.21.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit fcaps linux-info toolchain-funcs
-
-DESCRIPTION="top utility for IO (C port)"
-HOMEPAGE="https://github.com/Tomas-M/iotop"
-SRC_URI="https://github.com/Tomas-M/iotop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/iotop-${PV}"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong x86"
-
-RDEPEND="sys-libs/ncurses:=
-	!sys-process/iotop"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS ~VM_EVENT_COUNTERS"
-
-FILECAPS=(
-	cap_net_admin=eip usr/bin/iotop
-)
-
-src_compile() {
-	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
-}
-
-src_install() {
-	dobin iotop
-	dodoc README.md
-	doman iotop.8
-}


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2023-02-25  7:16 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2023-02-25  7:16 UTC (permalink / raw
  To: gentoo-commits

commit:     4d69161b984bfbee055eb1914dc315ec892d6675
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 25 07:16:37 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 25 07:16:37 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d69161b

sys-process/iotop-c: Stabilize 1.23 arm, #896392

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.23.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.23.ebuild b/sys-process/iotop-c/iotop-c-1.23.ebuild
index cdcb518ceb8f..5fe52d3653a7 100644
--- a/sys-process/iotop-c/iotop-c-1.23.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.23.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~loong ~x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2023-02-25 14:01 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2023-02-25 14:01 UTC (permalink / raw
  To: gentoo-commits

commit:     4df9e4809f6ab97a4a3432ae15ffecfbd7bdb0f6
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 25 14:01:38 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 25 14:01:38 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4df9e480

sys-process/iotop-c: Stabilize 1.23 x86, #896392

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.23.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.23.ebuild b/sys-process/iotop-c/iotop-c-1.23.ebuild
index 5fe52d3653a7..c6ef2dd4734b 100644
--- a/sys-process/iotop-c/iotop-c-1.23.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.23.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~loong ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~loong x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2023-02-25 14:01 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2023-02-25 14:01 UTC (permalink / raw
  To: gentoo-commits

commit:     66d9161bed38604d61b7d685767d94af059d761a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 25 14:01:39 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 25 14:01:39 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66d9161b

sys-process/iotop-c: Stabilize 1.23 amd64, #896392

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.23.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.23.ebuild b/sys-process/iotop-c/iotop-c-1.23.ebuild
index c6ef2dd4734b..85696b4f9087 100644
--- a/sys-process/iotop-c/iotop-c-1.23.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.23.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~loong x86"
+KEYWORDS="amd64 arm ~arm64 ~loong x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2023-02-25 14:03 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2023-02-25 14:03 UTC (permalink / raw
  To: gentoo-commits

commit:     dc2db44e083fae92a374c91da79a12ccb2074caf
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 25 14:03:35 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 25 14:03:35 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc2db44e

sys-process/iotop-c: Stabilize 1.23 arm64, #896392

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.23.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.23.ebuild b/sys-process/iotop-c/iotop-c-1.23.ebuild
index 85696b4f9087..01595c683cbc 100644
--- a/sys-process/iotop-c/iotop-c-1.23.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.23.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~loong x86"
+KEYWORDS="amd64 arm arm64 ~loong x86"
 
 RDEPEND="sys-libs/ncurses:=
 	!sys-process/iotop"


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2023-07-07 19:05 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2023-07-07 19:05 UTC (permalink / raw
  To: gentoo-commits

commit:     aa4fdebd50d1fb75e3d4d851fa442795e3e4852a
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul  7 19:01:45 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jul  7 19:01:45 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa4fdebd

sys-process/iotop-c: drop 1.22

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/Manifest            |  1 -
 sys-process/iotop-c/iotop-c-1.22.ebuild | 36 ---------------------------------
 2 files changed, 37 deletions(-)

diff --git a/sys-process/iotop-c/Manifest b/sys-process/iotop-c/Manifest
index 2ef5cdf878a6..f7d8388fe7b4 100644
--- a/sys-process/iotop-c/Manifest
+++ b/sys-process/iotop-c/Manifest
@@ -1,2 +1 @@
-DIST iotop-c-1.22.tar.gz 135078 BLAKE2B 90a441402b19ab5af9d5155f5d335e992e8acd702cbc2ebfb4b99dbc0be672fe07d462aab2c00a14702f584c0762b3b0ae4336022007bc956309ab781cbd2aa8 SHA512 863f4e602e13c91302ef3e2de7bf917418cb389a427fd0a6579c31a991d628112d0b479a2287944c4b3f3b5c4b13815ec57d30687fc48de7b782586e56ee62d8
 DIST iotop-c-1.23.tar.gz 138772 BLAKE2B 123995c5af48f2d257a4c4b2f342c3cb656d91105e13200baac63c3bd5bdd68a09cf4991363db4d49b211f0ad75285b3f34e66951aa80b2df55f6728c54629dc SHA512 afdc59373e96f23efaf93a661ca31d101732b36e61631844864692599b0e5a1d2355fdda0ec994a8e9ed03bc7f6a37c4dd16336fb750084294d58bfcfc6e7f17

diff --git a/sys-process/iotop-c/iotop-c-1.22.ebuild b/sys-process/iotop-c/iotop-c-1.22.ebuild
deleted file mode 100644
index cc98b1156d52..000000000000
--- a/sys-process/iotop-c/iotop-c-1.22.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit fcaps linux-info toolchain-funcs
-
-DESCRIPTION="top utility for IO (C port)"
-HOMEPAGE="https://github.com/Tomas-M/iotop"
-SRC_URI="https://github.com/Tomas-M/iotop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/iotop-${PV}"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong x86"
-
-RDEPEND="sys-libs/ncurses:=
-	!sys-process/iotop"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS ~VM_EVENT_COUNTERS"
-
-FILECAPS=(
-	cap_net_admin=eip usr/bin/iotop
-)
-
-src_compile() {
-	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
-}
-
-src_install() {
-	dobin iotop
-	dodoc README.md
-	doman iotop.8
-}


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2023-07-07 19:05 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2023-07-07 19:05 UTC (permalink / raw
  To: gentoo-commits

commit:     098174e77d2640872404beb286d5e2c44077f7f5
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul  7 19:05:26 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jul  7 19:05:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=098174e7

sys-process/iotop-c: fix extra _FORTIFY_SOURCE

Closes: https://bugs.gentoo.org/898166
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 .../iotop-c/{iotop-c-1.23.ebuild => iotop-c-1.23-r1.ebuild}        | 5 +++++
 sys-process/iotop-c/iotop-c-9999.ebuild                            | 7 ++++++-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.23.ebuild b/sys-process/iotop-c/iotop-c-1.23-r1.ebuild
similarity index 90%
rename from sys-process/iotop-c/iotop-c-1.23.ebuild
rename to sys-process/iotop-c/iotop-c-1.23-r1.ebuild
index 01595c683cbc..c401c231d083 100644
--- a/sys-process/iotop-c/iotop-c-1.23.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.23-r1.ebuild
@@ -25,6 +25,11 @@ FILECAPS=(
 	cap_net_admin=eip usr/bin/iotop
 )
 
+src_prepare() {
+	sed -e 's/-D_FORTIFY_SOURCE=2//' -i Makefile || die
+	default
+}
+
 src_compile() {
 	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
 }

diff --git a/sys-process/iotop-c/iotop-c-9999.ebuild b/sys-process/iotop-c/iotop-c-9999.ebuild
index b05952298d1d..47a5c48a0a0e 100644
--- a/sys-process/iotop-c/iotop-c-9999.ebuild
+++ b/sys-process/iotop-c/iotop-c-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -23,6 +23,11 @@ FILECAPS=(
 	cap_net_admin=eip usr/bin/iotop
 )
 
+src_prepare() {
+	sed -e 's/-D_FORTIFY_SOURCE=2//' -i Makefile || die
+	default
+}
+
 src_compile() {
 	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
 }


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2023-10-01 18:07 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2023-10-01 18:07 UTC (permalink / raw
  To: gentoo-commits

commit:     765e2f99d8de7bcd70b407b58e565c236f0c6b39
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  1 17:34:29 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Oct  1 18:01:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=765e2f99

sys-process/iotop-c: add 1.24

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/Manifest            |  1 +
 sys-process/iotop-c/iotop-c-1.24.ebuild | 43 +++++++++++++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/sys-process/iotop-c/Manifest b/sys-process/iotop-c/Manifest
index f7d8388fe7b4..abfc5bac5c2f 100644
--- a/sys-process/iotop-c/Manifest
+++ b/sys-process/iotop-c/Manifest
@@ -1 +1,2 @@
 DIST iotop-c-1.23.tar.gz 138772 BLAKE2B 123995c5af48f2d257a4c4b2f342c3cb656d91105e13200baac63c3bd5bdd68a09cf4991363db4d49b211f0ad75285b3f34e66951aa80b2df55f6728c54629dc SHA512 afdc59373e96f23efaf93a661ca31d101732b36e61631844864692599b0e5a1d2355fdda0ec994a8e9ed03bc7f6a37c4dd16336fb750084294d58bfcfc6e7f17
+DIST iotop-c-1.24.tar.gz 139533 BLAKE2B 4946876d474750e76ada3f1faa6057b02482f90b917663918669e40ad403c12c90add931c958f868b1b5f4cf1f9c980109795f4322e0db34c84f24f7299b7065 SHA512 4ff78f689ad0734787bfa0bc909a261694b75175301b3f732c170bf8511bab60082a2b363198057ef04b258fe3f4d24e081521f1f4eee6708b595e6a5f80ef2c

diff --git a/sys-process/iotop-c/iotop-c-1.24.ebuild b/sys-process/iotop-c/iotop-c-1.24.ebuild
new file mode 100644
index 000000000000..9803d2a23784
--- /dev/null
+++ b/sys-process/iotop-c/iotop-c-1.24.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit fcaps linux-info toolchain-funcs
+
+DESCRIPTION="top utility for IO (C port)"
+HOMEPAGE="https://github.com/Tomas-M/iotop"
+SRC_URI="https://github.com/Tomas-M/iotop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/iotop-${PV}"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~x86"
+
+RDEPEND="
+	sys-libs/ncurses:=
+	!sys-process/iotop
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS ~VM_EVENT_COUNTERS"
+
+FILECAPS=(
+	cap_net_admin=eip usr/bin/iotop
+)
+
+src_prepare() {
+	sed -e 's/-D_FORTIFY_SOURCE=2//' -i Makefile || die
+	default
+}
+
+src_compile() {
+	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
+}
+
+src_install() {
+	dobin iotop
+	dodoc README.md
+	doman iotop.8
+}


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2023-10-01 18:07 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2023-10-01 18:07 UTC (permalink / raw
  To: gentoo-commits

commit:     89a307d91bbe086ce7cb5b0bd23b9ba230d8cc29
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  1 17:34:49 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Oct  1 18:02:00 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89a307d9

sys-process/iotop-c: drop live ebuild

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-9999.ebuild | 39 ---------------------------------
 1 file changed, 39 deletions(-)

diff --git a/sys-process/iotop-c/iotop-c-9999.ebuild b/sys-process/iotop-c/iotop-c-9999.ebuild
deleted file mode 100644
index 47a5c48a0a0e..000000000000
--- a/sys-process/iotop-c/iotop-c-9999.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-EGIT_REPO_URI="https://github.com/Tomas-M/iotop"
-inherit fcaps git-r3 linux-info toolchain-funcs
-
-DESCRIPTION="top utility for IO (C port)"
-HOMEPAGE="https://github.com/Tomas-M/iotop"
-
-LICENSE="GPL-2+"
-SLOT="0"
-
-RDEPEND="sys-libs/ncurses:=
-	!sys-process/iotop"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS ~VM_EVENT_COUNTERS"
-
-FILECAPS=(
-	cap_net_admin=eip usr/bin/iotop
-)
-
-src_prepare() {
-	sed -e 's/-D_FORTIFY_SOURCE=2//' -i Makefile || die
-	default
-}
-
-src_compile() {
-	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
-}
-
-src_install() {
-	dobin iotop
-	dodoc README.md
-	doman iotop.8
-}


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2023-10-25 18:31 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2023-10-25 18:31 UTC (permalink / raw
  To: gentoo-commits

commit:     c05dd7abbcac5d7c87d431e7cf173d03484737b2
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 25 18:30:50 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Oct 25 18:31:35 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c05dd7ab

sys-process/iotop-c: add 1.25

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/Manifest            |  1 +
 sys-process/iotop-c/iotop-c-1.25.ebuild | 43 +++++++++++++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/sys-process/iotop-c/Manifest b/sys-process/iotop-c/Manifest
index abfc5bac5c2f..15ca0a5fe15c 100644
--- a/sys-process/iotop-c/Manifest
+++ b/sys-process/iotop-c/Manifest
@@ -1,2 +1,3 @@
 DIST iotop-c-1.23.tar.gz 138772 BLAKE2B 123995c5af48f2d257a4c4b2f342c3cb656d91105e13200baac63c3bd5bdd68a09cf4991363db4d49b211f0ad75285b3f34e66951aa80b2df55f6728c54629dc SHA512 afdc59373e96f23efaf93a661ca31d101732b36e61631844864692599b0e5a1d2355fdda0ec994a8e9ed03bc7f6a37c4dd16336fb750084294d58bfcfc6e7f17
 DIST iotop-c-1.24.tar.gz 139533 BLAKE2B 4946876d474750e76ada3f1faa6057b02482f90b917663918669e40ad403c12c90add931c958f868b1b5f4cf1f9c980109795f4322e0db34c84f24f7299b7065 SHA512 4ff78f689ad0734787bfa0bc909a261694b75175301b3f732c170bf8511bab60082a2b363198057ef04b258fe3f4d24e081521f1f4eee6708b595e6a5f80ef2c
+DIST iotop-c-1.25.tar.gz 139627 BLAKE2B a159ae3a4e5be87776d7111e38685e2f83fd907b82a09ec9b4a7d5c778d3a2c5a6e544452c126ff76b0fca2a4038cec1415a654156186dfb2534649a295eb65c SHA512 b696d0478e08373a923475493d67912959d78369f086179590482fb8e6ec349d0c8f5e6118e0aa353d2827b8d83f14bf334cf50cf55f6859bd8d9317543031e0

diff --git a/sys-process/iotop-c/iotop-c-1.25.ebuild b/sys-process/iotop-c/iotop-c-1.25.ebuild
new file mode 100644
index 000000000000..9803d2a23784
--- /dev/null
+++ b/sys-process/iotop-c/iotop-c-1.25.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit fcaps linux-info toolchain-funcs
+
+DESCRIPTION="top utility for IO (C port)"
+HOMEPAGE="https://github.com/Tomas-M/iotop"
+SRC_URI="https://github.com/Tomas-M/iotop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/iotop-${PV}"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~x86"
+
+RDEPEND="
+	sys-libs/ncurses:=
+	!sys-process/iotop
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS ~VM_EVENT_COUNTERS"
+
+FILECAPS=(
+	cap_net_admin=eip usr/bin/iotop
+)
+
+src_prepare() {
+	sed -e 's/-D_FORTIFY_SOURCE=2//' -i Makefile || die
+	default
+}
+
+src_compile() {
+	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
+}
+
+src_install() {
+	dobin iotop
+	dodoc README.md
+	doman iotop.8
+}


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2023-11-05 13:38 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2023-11-05 13:38 UTC (permalink / raw
  To: gentoo-commits

commit:     10645dccd4dfcc450d12e1cb9ff6016648483e9d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  5 13:38:05 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Nov  5 13:38:05 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10645dcc

sys-process/iotop-c: Stabilize 1.24 arm64, #916885

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.24.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.24.ebuild b/sys-process/iotop-c/iotop-c-1.24.ebuild
index 64f5a6db984e..f16442ed026a 100644
--- a/sys-process/iotop-c/iotop-c-1.24.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.24.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~loong ~x86"
+KEYWORDS="~amd64 arm arm64 ~loong ~x86"
 
 RDEPEND="
 	sys-libs/ncurses:=


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2023-11-05 13:38 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2023-11-05 13:38 UTC (permalink / raw
  To: gentoo-commits

commit:     549b052387fff597a651b435d0424c9bf72bb32b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  5 13:38:04 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Nov  5 13:38:04 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=549b0523

sys-process/iotop-c: Stabilize 1.24 arm, #916885

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.24.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.24.ebuild b/sys-process/iotop-c/iotop-c-1.24.ebuild
index 9803d2a23784..64f5a6db984e 100644
--- a/sys-process/iotop-c/iotop-c-1.24.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.24.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~loong ~x86"
 
 RDEPEND="
 	sys-libs/ncurses:=


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2023-11-05 13:50 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2023-11-05 13:50 UTC (permalink / raw
  To: gentoo-commits

commit:     a81e4f45daa72023687d56acc5e1412e5848b13d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  5 13:50:26 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Nov  5 13:50:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a81e4f45

sys-process/iotop-c: Stabilize 1.24 amd64, #916885

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.24.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.24.ebuild b/sys-process/iotop-c/iotop-c-1.24.ebuild
index f16442ed026a..bcb6ab7bc0a9 100644
--- a/sys-process/iotop-c/iotop-c-1.24.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.24.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~loong ~x86"
+KEYWORDS="amd64 arm arm64 ~loong ~x86"
 
 RDEPEND="
 	sys-libs/ncurses:=


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2023-11-05 13:50 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2023-11-05 13:50 UTC (permalink / raw
  To: gentoo-commits

commit:     3b9bf0262dbf1cc12e3bf9040b47ef35aab2c628
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  5 13:50:27 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Nov  5 13:50:27 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b9bf026

sys-process/iotop-c: Stabilize 1.24 x86, #916885

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.24.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.24.ebuild b/sys-process/iotop-c/iotop-c-1.24.ebuild
index bcb6ab7bc0a9..79be4cb6e7c5 100644
--- a/sys-process/iotop-c/iotop-c-1.24.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.24.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong ~x86"
+KEYWORDS="amd64 arm arm64 ~loong x86"
 
 RDEPEND="
 	sys-libs/ncurses:=


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2023-11-09 18:40 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2023-11-09 18:40 UTC (permalink / raw
  To: gentoo-commits

commit:     c0b7378d625064002b217b574b789cbbca908596
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Nov  9 17:35:45 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Nov  9 18:40:50 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0b7378d

sys-process/iotop-c: drop 1.23-r1

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/Manifest               |  1 -
 sys-process/iotop-c/iotop-c-1.23-r1.ebuild | 41 ------------------------------
 2 files changed, 42 deletions(-)

diff --git a/sys-process/iotop-c/Manifest b/sys-process/iotop-c/Manifest
index 15ca0a5fe15c..2f127fac183b 100644
--- a/sys-process/iotop-c/Manifest
+++ b/sys-process/iotop-c/Manifest
@@ -1,3 +1,2 @@
-DIST iotop-c-1.23.tar.gz 138772 BLAKE2B 123995c5af48f2d257a4c4b2f342c3cb656d91105e13200baac63c3bd5bdd68a09cf4991363db4d49b211f0ad75285b3f34e66951aa80b2df55f6728c54629dc SHA512 afdc59373e96f23efaf93a661ca31d101732b36e61631844864692599b0e5a1d2355fdda0ec994a8e9ed03bc7f6a37c4dd16336fb750084294d58bfcfc6e7f17
 DIST iotop-c-1.24.tar.gz 139533 BLAKE2B 4946876d474750e76ada3f1faa6057b02482f90b917663918669e40ad403c12c90add931c958f868b1b5f4cf1f9c980109795f4322e0db34c84f24f7299b7065 SHA512 4ff78f689ad0734787bfa0bc909a261694b75175301b3f732c170bf8511bab60082a2b363198057ef04b258fe3f4d24e081521f1f4eee6708b595e6a5f80ef2c
 DIST iotop-c-1.25.tar.gz 139627 BLAKE2B a159ae3a4e5be87776d7111e38685e2f83fd907b82a09ec9b4a7d5c778d3a2c5a6e544452c126ff76b0fca2a4038cec1415a654156186dfb2534649a295eb65c SHA512 b696d0478e08373a923475493d67912959d78369f086179590482fb8e6ec349d0c8f5e6118e0aa353d2827b8d83f14bf334cf50cf55f6859bd8d9317543031e0

diff --git a/sys-process/iotop-c/iotop-c-1.23-r1.ebuild b/sys-process/iotop-c/iotop-c-1.23-r1.ebuild
deleted file mode 100644
index c401c231d083..000000000000
--- a/sys-process/iotop-c/iotop-c-1.23-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit fcaps linux-info toolchain-funcs
-
-DESCRIPTION="top utility for IO (C port)"
-HOMEPAGE="https://github.com/Tomas-M/iotop"
-SRC_URI="https://github.com/Tomas-M/iotop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/iotop-${PV}"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong x86"
-
-RDEPEND="sys-libs/ncurses:=
-	!sys-process/iotop"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS ~VM_EVENT_COUNTERS"
-
-FILECAPS=(
-	cap_net_admin=eip usr/bin/iotop
-)
-
-src_prepare() {
-	sed -e 's/-D_FORTIFY_SOURCE=2//' -i Makefile || die
-	default
-}
-
-src_compile() {
-	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
-}
-
-src_install() {
-	dobin iotop
-	dodoc README.md
-	doman iotop.8
-}


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2023-11-10 12:00 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2023-11-10 12:00 UTC (permalink / raw
  To: gentoo-commits

commit:     e1338273418a64d97944869eb9369ccbad54fda8
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 10 12:00:40 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 10 12:00:40 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1338273

sys-process/iotop-c: Stabilize 1.25 x86, #917085

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.25.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.25.ebuild b/sys-process/iotop-c/iotop-c-1.25.ebuild
index 2c1917077718..14fd729a2397 100644
--- a/sys-process/iotop-c/iotop-c-1.25.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.25.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~loong ~x86"
+KEYWORDS="amd64 ~arm arm64 ~loong x86"
 
 RDEPEND="
 	sys-libs/ncurses:=


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2023-11-10 12:00 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2023-11-10 12:00 UTC (permalink / raw
  To: gentoo-commits

commit:     ef62c482aa6bcd35b56e844f0c9623e7e5c1e8a9
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 10 12:00:41 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 10 12:00:41 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef62c482

sys-process/iotop-c: Stabilize 1.25 arm, #917085

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.25.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.25.ebuild b/sys-process/iotop-c/iotop-c-1.25.ebuild
index 14fd729a2397..79be4cb6e7c5 100644
--- a/sys-process/iotop-c/iotop-c-1.25.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.25.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~loong x86"
+KEYWORDS="amd64 arm arm64 ~loong x86"
 
 RDEPEND="
 	sys-libs/ncurses:=


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2023-11-10 12:00 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2023-11-10 12:00 UTC (permalink / raw
  To: gentoo-commits

commit:     69f809d833bcaeb105411a43999385d316db7780
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 10 12:00:40 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 10 12:00:40 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69f809d8

sys-process/iotop-c: Stabilize 1.25 amd64, #917085

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.25.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.25.ebuild b/sys-process/iotop-c/iotop-c-1.25.ebuild
index 718e94574b39..2c1917077718 100644
--- a/sys-process/iotop-c/iotop-c-1.25.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.25.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~loong ~x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ~x86"
 
 RDEPEND="
 	sys-libs/ncurses:=


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2023-11-10 12:00 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2023-11-10 12:00 UTC (permalink / raw
  To: gentoo-commits

commit:     a4ef15a321135b30dd05e7d35735d2031490295a
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 10 12:00:39 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 10 12:00:39 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4ef15a3

sys-process/iotop-c: Stabilize 1.25 arm64, #917085

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.25.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.25.ebuild b/sys-process/iotop-c/iotop-c-1.25.ebuild
index 9803d2a23784..718e94574b39 100644
--- a/sys-process/iotop-c/iotop-c-1.25.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.25.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~loong ~x86"
 
 RDEPEND="
 	sys-libs/ncurses:=


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2023-12-05  7:53 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2023-12-05  7:53 UTC (permalink / raw
  To: gentoo-commits

commit:     fbfbe38c83cede74b05912e79f8294897c501657
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec  5 07:44:54 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Dec  5 07:44:54 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbfbe38c

sys-process/iotop-c: drop 1.24

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/Manifest            |  1 -
 sys-process/iotop-c/iotop-c-1.24.ebuild | 43 ---------------------------------
 2 files changed, 44 deletions(-)

diff --git a/sys-process/iotop-c/Manifest b/sys-process/iotop-c/Manifest
index 2f127fac183b..818c9a715e0a 100644
--- a/sys-process/iotop-c/Manifest
+++ b/sys-process/iotop-c/Manifest
@@ -1,2 +1 @@
-DIST iotop-c-1.24.tar.gz 139533 BLAKE2B 4946876d474750e76ada3f1faa6057b02482f90b917663918669e40ad403c12c90add931c958f868b1b5f4cf1f9c980109795f4322e0db34c84f24f7299b7065 SHA512 4ff78f689ad0734787bfa0bc909a261694b75175301b3f732c170bf8511bab60082a2b363198057ef04b258fe3f4d24e081521f1f4eee6708b595e6a5f80ef2c
 DIST iotop-c-1.25.tar.gz 139627 BLAKE2B a159ae3a4e5be87776d7111e38685e2f83fd907b82a09ec9b4a7d5c778d3a2c5a6e544452c126ff76b0fca2a4038cec1415a654156186dfb2534649a295eb65c SHA512 b696d0478e08373a923475493d67912959d78369f086179590482fb8e6ec349d0c8f5e6118e0aa353d2827b8d83f14bf334cf50cf55f6859bd8d9317543031e0

diff --git a/sys-process/iotop-c/iotop-c-1.24.ebuild b/sys-process/iotop-c/iotop-c-1.24.ebuild
deleted file mode 100644
index 79be4cb6e7c5..000000000000
--- a/sys-process/iotop-c/iotop-c-1.24.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit fcaps linux-info toolchain-funcs
-
-DESCRIPTION="top utility for IO (C port)"
-HOMEPAGE="https://github.com/Tomas-M/iotop"
-SRC_URI="https://github.com/Tomas-M/iotop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/iotop-${PV}"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong x86"
-
-RDEPEND="
-	sys-libs/ncurses:=
-	!sys-process/iotop
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS ~VM_EVENT_COUNTERS"
-
-FILECAPS=(
-	cap_net_admin=eip usr/bin/iotop
-)
-
-src_prepare() {
-	sed -e 's/-D_FORTIFY_SOURCE=2//' -i Makefile || die
-	default
-}
-
-src_compile() {
-	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
-}
-
-src_install() {
-	dobin iotop
-	dodoc README.md
-	doman iotop.8
-}


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2024-02-08 17:30 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2024-02-08 17:30 UTC (permalink / raw
  To: gentoo-commits

commit:     e60ca0a7e4dff0b3a9890c60e76ec7d2baed7938
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb  8 17:25:59 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Feb  8 17:25:59 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e60ca0a7

sys-process/iotop-c: add 1.26

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/Manifest            |  1 +
 sys-process/iotop-c/iotop-c-1.26.ebuild | 43 +++++++++++++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/sys-process/iotop-c/Manifest b/sys-process/iotop-c/Manifest
index 818c9a715e0a..b79e1b52f475 100644
--- a/sys-process/iotop-c/Manifest
+++ b/sys-process/iotop-c/Manifest
@@ -1 +1,2 @@
 DIST iotop-c-1.25.tar.gz 139627 BLAKE2B a159ae3a4e5be87776d7111e38685e2f83fd907b82a09ec9b4a7d5c778d3a2c5a6e544452c126ff76b0fca2a4038cec1415a654156186dfb2534649a295eb65c SHA512 b696d0478e08373a923475493d67912959d78369f086179590482fb8e6ec349d0c8f5e6118e0aa353d2827b8d83f14bf334cf50cf55f6859bd8d9317543031e0
+DIST iotop-c-1.26.tar.gz 139536 BLAKE2B 90bb3db7dd3b05604fa5368a881434eac06509921447fd53bda7e7291e2c823f82f9015f0c16c516dcfa7c8ee6198466b8634eaf1b111b4f911645b97fc2634f SHA512 47246bc025c396bcd7569bd19d52079701e3b86ab239ac3db1d1386f358f6e95a63d7bad8c1d0552fb61315a9db282967c65e110703863ae71fa6260b775942b

diff --git a/sys-process/iotop-c/iotop-c-1.26.ebuild b/sys-process/iotop-c/iotop-c-1.26.ebuild
new file mode 100644
index 000000000000..8206a88232a6
--- /dev/null
+++ b/sys-process/iotop-c/iotop-c-1.26.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2022-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit fcaps linux-info toolchain-funcs
+
+DESCRIPTION="top utility for IO (C port)"
+HOMEPAGE="https://github.com/Tomas-M/iotop"
+SRC_URI="https://github.com/Tomas-M/iotop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/iotop-${PV}"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~x86"
+
+RDEPEND="
+	sys-libs/ncurses:=
+	!sys-process/iotop
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS ~VM_EVENT_COUNTERS"
+
+FILECAPS=(
+	cap_net_admin=eip usr/bin/iotop
+)
+
+src_prepare() {
+	sed -e 's/-D_FORTIFY_SOURCE=2//' -i Makefile || die
+	default
+}
+
+src_compile() {
+	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
+}
+
+src_install() {
+	dobin iotop
+	dodoc README.md
+	doman iotop.8
+}


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2024-02-18 22:42 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2024-02-18 22:42 UTC (permalink / raw
  To: gentoo-commits

commit:     f3f6cbf7c0d2c6e62d5049570581cf184fd49397
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 18 22:42:22 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 22:42:22 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3f6cbf7

sys-process/iotop-c: Keyword 1.26 ppc64, #924560

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.26.ebuild b/sys-process/iotop-c/iotop-c-1.26.ebuild
index 73518b691b83..75ff96662470 100644
--- a/sys-process/iotop-c/iotop-c-1.26.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.26.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~x86"
 
 RDEPEND="
 	sys-libs/ncurses:=


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2024-02-18 22:42 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2024-02-18 22:42 UTC (permalink / raw
  To: gentoo-commits

commit:     04ffe24cc5a5d7371d4299c2c4e4e507bbdefac0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 18 22:42:21 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 22:42:21 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04ffe24c

sys-process/iotop-c: Keyword 1.26 ppc, #924560

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.26.ebuild b/sys-process/iotop-c/iotop-c-1.26.ebuild
index 8206a88232a6..73518b691b83 100644
--- a/sys-process/iotop-c/iotop-c-1.26.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.26.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~x86"
 
 RDEPEND="
 	sys-libs/ncurses:=


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2024-03-08 12:09 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2024-03-08 12:09 UTC (permalink / raw
  To: gentoo-commits

commit:     6c198ff42087fea7a3ea11aea87fe731dde541ea
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  8 12:09:16 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar  8 12:09:16 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c198ff4

sys-process/iotop-c: Stabilize 1.26 arm, #926485

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.26.ebuild b/sys-process/iotop-c/iotop-c-1.26.ebuild
index 75ff96662470..bfe9a9f57256 100644
--- a/sys-process/iotop-c/iotop-c-1.26.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.26.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~loong ~ppc ~ppc64 ~x86"
 
 RDEPEND="
 	sys-libs/ncurses:=


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2024-03-08 12:09 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2024-03-08 12:09 UTC (permalink / raw
  To: gentoo-commits

commit:     d6284987e729ca11001f2c839f6264f84e708873
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  8 12:09:50 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar  8 12:09:50 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6284987

sys-process/iotop-c: Stabilize 1.26 x86, #926485

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.26.ebuild b/sys-process/iotop-c/iotop-c-1.26.ebuild
index bfe9a9f57256..f55dd3128372 100644
--- a/sys-process/iotop-c/iotop-c-1.26.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.26.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~loong ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~loong ~ppc ~ppc64 x86"
 
 RDEPEND="
 	sys-libs/ncurses:=


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2024-03-08 12:10 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2024-03-08 12:10 UTC (permalink / raw
  To: gentoo-commits

commit:     dc83ad50ff626e951e112f22a496cf0cfab4d230
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  8 12:10:29 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar  8 12:10:29 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc83ad50

sys-process/iotop-c: Stabilize 1.26 arm64, #926485

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.26.ebuild b/sys-process/iotop-c/iotop-c-1.26.ebuild
index f55dd3128372..afe2b1d86e3d 100644
--- a/sys-process/iotop-c/iotop-c-1.26.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.26.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~loong ~ppc ~ppc64 x86"
+KEYWORDS="~amd64 arm arm64 ~loong ~ppc ~ppc64 x86"
 
 RDEPEND="
 	sys-libs/ncurses:=


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2024-03-08 13:09 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2024-03-08 13:09 UTC (permalink / raw
  To: gentoo-commits

commit:     498e70a749917025661c4ba4180c170dd86d05ac
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  8 13:09:33 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar  8 13:09:33 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=498e70a7

sys-process/iotop-c: Stabilize 1.26 amd64, #926485

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.26.ebuild b/sys-process/iotop-c/iotop-c-1.26.ebuild
index afe2b1d86e3d..286d111738da 100644
--- a/sys-process/iotop-c/iotop-c-1.26.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.26.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~loong ~ppc ~ppc64 x86"
+KEYWORDS="amd64 arm arm64 ~loong ~ppc ~ppc64 x86"
 
 RDEPEND="
 	sys-libs/ncurses:=


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2024-03-30 10:59 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2024-03-30 10:59 UTC (permalink / raw
  To: gentoo-commits

commit:     a0e814cc02fdbb90f60dd41ba6c90d054bf33827
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 30 10:58:40 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 30 10:58:40 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0e814cc

sys-process/iotop-c: drop 1.25

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/Manifest            |  1 -
 sys-process/iotop-c/iotop-c-1.25.ebuild | 43 ---------------------------------
 2 files changed, 44 deletions(-)

diff --git a/sys-process/iotop-c/Manifest b/sys-process/iotop-c/Manifest
index b79e1b52f475..d16e9629a24d 100644
--- a/sys-process/iotop-c/Manifest
+++ b/sys-process/iotop-c/Manifest
@@ -1,2 +1 @@
-DIST iotop-c-1.25.tar.gz 139627 BLAKE2B a159ae3a4e5be87776d7111e38685e2f83fd907b82a09ec9b4a7d5c778d3a2c5a6e544452c126ff76b0fca2a4038cec1415a654156186dfb2534649a295eb65c SHA512 b696d0478e08373a923475493d67912959d78369f086179590482fb8e6ec349d0c8f5e6118e0aa353d2827b8d83f14bf334cf50cf55f6859bd8d9317543031e0
 DIST iotop-c-1.26.tar.gz 139536 BLAKE2B 90bb3db7dd3b05604fa5368a881434eac06509921447fd53bda7e7291e2c823f82f9015f0c16c516dcfa7c8ee6198466b8634eaf1b111b4f911645b97fc2634f SHA512 47246bc025c396bcd7569bd19d52079701e3b86ab239ac3db1d1386f358f6e95a63d7bad8c1d0552fb61315a9db282967c65e110703863ae71fa6260b775942b

diff --git a/sys-process/iotop-c/iotop-c-1.25.ebuild b/sys-process/iotop-c/iotop-c-1.25.ebuild
deleted file mode 100644
index 79be4cb6e7c5..000000000000
--- a/sys-process/iotop-c/iotop-c-1.25.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit fcaps linux-info toolchain-funcs
-
-DESCRIPTION="top utility for IO (C port)"
-HOMEPAGE="https://github.com/Tomas-M/iotop"
-SRC_URI="https://github.com/Tomas-M/iotop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/iotop-${PV}"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong x86"
-
-RDEPEND="
-	sys-libs/ncurses:=
-	!sys-process/iotop
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS ~VM_EVENT_COUNTERS"
-
-FILECAPS=(
-	cap_net_admin=eip usr/bin/iotop
-)
-
-src_prepare() {
-	sed -e 's/-D_FORTIFY_SOURCE=2//' -i Makefile || die
-	default
-}
-
-src_compile() {
-	emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
-}
-
-src_install() {
-	dobin iotop
-	dodoc README.md
-	doman iotop.8
-}


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2024-04-13 11:31 Yixun Lan
  0 siblings, 0 replies; 55+ messages in thread
From: Yixun Lan @ 2024-04-13 11:31 UTC (permalink / raw
  To: gentoo-commits

commit:     bc2cf3fdb8c76b7587199e7c40596954fb05f7d1
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 13 11:28:26 2024 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Sat Apr 13 11:28:26 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc2cf3fd

sys-process/iotop-c: Keyword 1.26 riscv, #928746

Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.26.ebuild b/sys-process/iotop-c/iotop-c-1.26.ebuild
index 286d111738da..ae7adbc2681e 100644
--- a/sys-process/iotop-c/iotop-c-1.26.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.26.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong ~ppc ~ppc64 x86"
+KEYWORDS="amd64 arm arm64 ~loong ~ppc ~ppc64 ~riscv x86"
 
 RDEPEND="
 	sys-libs/ncurses:=


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2024-04-13 13:59 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2024-04-13 13:59 UTC (permalink / raw
  To: gentoo-commits

commit:     b1e9f420db1e0435bb00cdb15ab6f03f2fa1ba07
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 13 13:58:16 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 13 13:58:30 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1e9f420

sys-process/iotop-c: keyword 1.26 for ~sparc

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.26.ebuild b/sys-process/iotop-c/iotop-c-1.26.ebuild
index ae7adbc2681e..04c905319b25 100644
--- a/sys-process/iotop-c/iotop-c-1.26.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.26.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86"
 
 RDEPEND="
 	sys-libs/ncurses:=


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2024-06-20 21:46 Sam James
  0 siblings, 0 replies; 55+ messages in thread
From: Sam James @ 2024-06-20 21:46 UTC (permalink / raw
  To: gentoo-commits

commit:     522fccdaea6c1c3145ead5281b22eb2b608ef13f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 20 21:45:43 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jun 20 21:45:43 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=522fccda

sys-process/iotop-c: Stabilize 1.26 ppc64, #934633

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.26.ebuild b/sys-process/iotop-c/iotop-c-1.26.ebuild
index 04c905319b25..25d144e06767 100644
--- a/sys-process/iotop-c/iotop-c-1.26.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.26.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~loong ~ppc ppc64 ~riscv ~sparc x86"
 
 RDEPEND="
 	sys-libs/ncurses:=


^ permalink raw reply related	[flat|nested] 55+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
@ 2024-06-21  4:23 Arthur Zamarin
  0 siblings, 0 replies; 55+ messages in thread
From: Arthur Zamarin @ 2024-06-21  4:23 UTC (permalink / raw
  To: gentoo-commits

commit:     00431e3f3c0a1aa338b9e6471b6ddba2afb7c29e
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 21 04:23:38 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jun 21 04:23:38 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00431e3f

sys-process/iotop-c: Stabilize 1.26 ppc, #934633

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/iotop-c/iotop-c-1.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.26.ebuild b/sys-process/iotop-c/iotop-c-1.26.ebuild
index 25d144e06767..ed39dbad1674 100644
--- a/sys-process/iotop-c/iotop-c-1.26.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.26.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/iotop-${PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong ~ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86"
 
 RDEPEND="
 	sys-libs/ncurses:=


^ permalink raw reply related	[flat|nested] 55+ messages in thread

end of thread, other threads:[~2024-06-21  4:23 UTC | newest]

Thread overview: 55+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-01 18:07 [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2024-06-21  4:23 Arthur Zamarin
2024-06-20 21:46 Sam James
2024-04-13 13:59 Sam James
2024-04-13 11:31 Yixun Lan
2024-03-30 10:59 Arthur Zamarin
2024-03-08 13:09 Arthur Zamarin
2024-03-08 12:10 Arthur Zamarin
2024-03-08 12:09 Arthur Zamarin
2024-03-08 12:09 Arthur Zamarin
2024-02-18 22:42 Sam James
2024-02-18 22:42 Sam James
2024-02-08 17:30 Arthur Zamarin
2023-12-05  7:53 Arthur Zamarin
2023-11-10 12:00 Arthur Zamarin
2023-11-10 12:00 Arthur Zamarin
2023-11-10 12:00 Arthur Zamarin
2023-11-10 12:00 Arthur Zamarin
2023-11-09 18:40 Arthur Zamarin
2023-11-05 13:50 Sam James
2023-11-05 13:50 Sam James
2023-11-05 13:38 Sam James
2023-11-05 13:38 Sam James
2023-10-25 18:31 Arthur Zamarin
2023-10-01 18:07 Arthur Zamarin
2023-07-07 19:05 Arthur Zamarin
2023-07-07 19:05 Arthur Zamarin
2023-02-25 14:03 Sam James
2023-02-25 14:01 Sam James
2023-02-25 14:01 Sam James
2023-02-25  7:16 Arthur Zamarin
2022-09-27  7:20 Arthur Zamarin
2022-09-26 12:32 Sam James
2022-09-26 12:27 Sam James
2022-09-26 12:27 Sam James
2022-09-26 10:17 Arthur Zamarin
2022-08-18 20:28 Arthur Zamarin
2022-08-18 20:28 Arthur Zamarin
2022-08-15  5:27 WANG Xuerui
2022-05-05  9:54 Jakov Smolić
2022-05-05  5:38 Arthur Zamarin
2022-05-05  5:38 Arthur Zamarin
2022-01-29  9:13 Arthur Zamarin
2021-11-09 21:36 Sam James
2021-11-07  6:40 Agostino Sarubbo
2021-11-07  1:34 Sam James
2021-11-06 21:22 Jakov Smolić
2021-10-21 23:28 Sam James
2021-10-21 23:28 Sam James
2021-10-17 19:25 Arthur Zamarin
2021-10-10 20:40 Sam James
2021-10-10  2:20 Sam James
2021-10-05  5:34 Arthur Zamarin
2021-09-21  9:38 Arthur Zamarin
2021-09-08 12:24 Arthur Zamarin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox