public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-admin/dio/
@ 2016-04-04  9:00 Ian Delaney
  0 siblings, 0 replies; 7+ messages in thread
From: Ian Delaney @ 2016-04-04  9:00 UTC (permalink / raw
  To: gentoo-commits

commit:     7096644ab9ee62526b5c3fdb3062f13aebbe213a
Author:     Ian Delaney <idella4 <AT> gentoo <DOT> org>
AuthorDate: Mon Apr  4 04:13:49 2016 +0000
Commit:     Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Mon Apr  4 09:00:30 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7096644a

app-admin/dio: set description for user in metadata.xml

Package-Manager: portage-2.2.28

 app-admin/dio/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-admin/dio/metadata.xml b/app-admin/dio/metadata.xml
index 19a392a..4d0ce07 100644
--- a/app-admin/dio/metadata.xml
+++ b/app-admin/dio/metadata.xml
@@ -4,6 +4,7 @@
   <maintainer type="person">
     <email>donaldbmcintosh@yahoo.co.uk</email>
     <name>Donald McIntosh</name>
+    <description>Proxied maintainer; set to assignee in all bugs</description>
   </maintainer>
   <maintainer type="project">
     <email>proxy-maint@gentoo.org</email>


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

* [gentoo-commits] repo/gentoo:master commit in: app-admin/dio/
@ 2018-07-25 22:48 Jonas Stein
  0 siblings, 0 replies; 7+ messages in thread
From: Jonas Stein @ 2018-07-25 22:48 UTC (permalink / raw
  To: gentoo-commits

commit:     8b7842f1c4abfcf7d22e5a4a35c99b873aedf02e
Author:     Jonas Stein <jstein <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 25 20:34:05 2018 +0000
Commit:     Jonas Stein <jstein <AT> gentoo <DOT> org>
CommitDate: Wed Jul 25 22:47:02 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b7842f1

app-admin/dio: Maintainer retired

Proxied maintainer retired due to inactivity.
Closes: https://bugs.gentoo.org/632926
Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-admin/dio/metadata.xml | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/app-admin/dio/metadata.xml b/app-admin/dio/metadata.xml
index 19a392ab549..ebf597f23ef 100644
--- a/app-admin/dio/metadata.xml
+++ b/app-admin/dio/metadata.xml
@@ -1,14 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <maintainer type="person">
-    <email>donaldbmcintosh@yahoo.co.uk</email>
-    <name>Donald McIntosh</name>
-  </maintainer>
-  <maintainer type="project">
-    <email>proxy-maint@gentoo.org</email>
-    <name>Proxy Maintainers</name>
-  </maintainer>
+  <!-- maintainer-needed -->
   <upstream>
     <remote-id type="github">donaldmcintosh/dio</remote-id>
   </upstream>


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

* [gentoo-commits] repo/gentoo:master commit in: app-admin/dio/
@ 2018-08-07 17:15 Michał Górny
  0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2018-08-07 17:15 UTC (permalink / raw
  To: gentoo-commits

commit:     d8ed5247f9e56d317eae3510aa26faccbcf2aa69
Author:     Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Tue Aug  7 16:58:06 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Aug  7 17:13:01 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8ed5247

app-admin/dio: fix build with sys-libs/ncurses[tinfo]

Also bumped to EAPI=7

Closes: https://bugs.gentoo.org/646802
Package-Manager: Portage-2.3.44, Repoman-2.3.10

 app-admin/dio/dio-1.5.2-r1.ebuild | 41 +++++++++++++++++++++++++++++++++++++++
 app-admin/dio/metadata.xml        | 23 ++++++++++++++++++----
 2 files changed, 60 insertions(+), 4 deletions(-)

diff --git a/app-admin/dio/dio-1.5.2-r1.ebuild b/app-admin/dio/dio-1.5.2-r1.ebuild
new file mode 100644
index 00000000000..2a0d993e8a0
--- /dev/null
+++ b/app-admin/dio/dio-1.5.2-r1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit toolchain-funcs
+
+DESCRIPTION="A device I/O monitoring tool"
+HOMEPAGE="https://github.com/donaldmcintosh/dio"
+SRC_URI="https://github.com/donaldmcintosh/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="MIT"
+SLOT="0"
+
+RDEPEND="sys-libs/ncurses:0="
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${P}/src"
+
+DOCS=( "README" "../README.md" )
+HTML_DOCS=( "../site/www.diodio.org/." )
+
+src_prepare() {
+	# Include the 'tinfo' lib, if sys-libs/ncurses is compiled with USE="tinfo"
+	if has_version -d 'sys-libs/ncurses[tinfo]'; then
+		sed -e 's/lcurses/& -ltinfo/' -i Makefile || die
+	fi
+
+	default
+}
+
+src_compile() {
+	emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
+}
+
+src_install() {
+	dobin dio
+	doman dio.1
+	einstalldocs
+}

diff --git a/app-admin/dio/metadata.xml b/app-admin/dio/metadata.xml
index ebf597f23ef..021428c4e44 100644
--- a/app-admin/dio/metadata.xml
+++ b/app-admin/dio/metadata.xml
@@ -1,8 +1,23 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <!-- maintainer-needed -->
-  <upstream>
-    <remote-id type="github">donaldmcintosh/dio</remote-id>
-  </upstream>
+	<maintainer type="person">
+		<email>ck+gentoo@bl4ckb0x.de</email>
+		<name>Conrad Kostecki</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<longdescription>
+		It samples kernel statistics at the specified time interval
+		and uses them to derive useful realtime and cumulative performance statistics.
+		The output is presented in a standard terminal window using the standard curses library,
+		which contains the output on visible terminal.
+		The approach offers a more intuitive visual presentation of the data.
+	</longdescription>
+	<upstream>
+		<bugs-to>https://github.com/donaldmcintosh/dio/issues</bugs-to>
+		<remote-id type="github">donaldmcintosh/dio</remote-id>
+	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-admin/dio/
@ 2018-08-07 17:15 Michał Górny
  0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2018-08-07 17:15 UTC (permalink / raw
  To: gentoo-commits

commit:     8149589fb11e8652f42812b2af459a6d38c4bebd
Author:     Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Tue Aug  7 16:59:42 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Aug  7 17:13:05 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8149589f

app-admin/dio: drop old version

Bug: https://bugs.gentoo.org/646802
Closes: https://github.com/gentoo/gentoo/pull/9372
Package-Manager: Portage-2.3.44, Repoman-2.3.10

 app-admin/dio/dio-1.5.2.ebuild | 28 ----------------------------
 1 file changed, 28 deletions(-)

diff --git a/app-admin/dio/dio-1.5.2.ebuild b/app-admin/dio/dio-1.5.2.ebuild
deleted file mode 100644
index 6087eb8c535..00000000000
--- a/app-admin/dio/dio-1.5.2.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit toolchain-funcs
-
-DESCRIPTION="dio - Device I/O monitoring tool"
-HOMEPAGE="https://github.com/donaldmcintosh/dio"
-SRC_URI="https://github.com/donaldmcintosh/dio/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="sys-libs/ncurses:0"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${P}/src"
-
-src_compile() {
-	emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
-}
-
-src_install() {
-	dobin dio
-	doman dio.1
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-admin/dio/
@ 2020-08-09 15:53 Conrad Kostecki
  0 siblings, 0 replies; 7+ messages in thread
From: Conrad Kostecki @ 2020-08-09 15:53 UTC (permalink / raw
  To: gentoo-commits

commit:     1e2780d74930e41506ee5dd3abe41ab4f8121232
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Aug  9 13:23:01 2020 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Aug  9 15:52:31 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e2780d7

app-admin/dio: don't quote EAPI

In order to make all my packages consistent,
don't quote EAPI version number.

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 app-admin/dio/dio-1.5.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/dio/dio-1.5.2-r1.ebuild b/app-admin/dio/dio-1.5.2-r1.ebuild
index 23999654ba7..1ede22cf23f 100644
--- a/app-admin/dio/dio-1.5.2-r1.ebuild
+++ b/app-admin/dio/dio-1.5.2-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="7"
+EAPI=7
 
 inherit toolchain-funcs
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-admin/dio/
@ 2021-05-07 21:42 Conrad Kostecki
  0 siblings, 0 replies; 7+ messages in thread
From: Conrad Kostecki @ 2021-05-07 21:42 UTC (permalink / raw
  To: gentoo-commits

commit:     e2793693062c693368664e3fff03b21e4fc37f1b
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Fri May  7 21:40:49 2021 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Fri May  7 21:42:10 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2793693

app-admin/dio: drop old version

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 app-admin/dio/dio-1.5.2-r1.ebuild | 41 ---------------------------------------
 1 file changed, 41 deletions(-)

diff --git a/app-admin/dio/dio-1.5.2-r1.ebuild b/app-admin/dio/dio-1.5.2-r1.ebuild
deleted file mode 100644
index 1ede22cf23f..00000000000
--- a/app-admin/dio/dio-1.5.2-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="A device I/O monitoring tool"
-HOMEPAGE="https://github.com/donaldmcintosh/dio"
-SRC_URI="https://github.com/donaldmcintosh/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-KEYWORDS="amd64 x86"
-LICENSE="MIT"
-SLOT="0"
-
-RDEPEND="sys-libs/ncurses:0="
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${P}/src"
-
-DOCS=( "README" "../README.md" )
-HTML_DOCS=( "../site/www.diodio.org/." )
-
-src_prepare() {
-	# Include the 'tinfo' lib, if sys-libs/ncurses is compiled with USE="tinfo"
-	if has_version -d 'sys-libs/ncurses[tinfo]'; then
-		sed -e 's/lcurses/& -ltinfo/' -i Makefile || die
-	fi
-
-	default
-}
-
-src_compile() {
-	emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
-	dobin dio
-	doman dio.1
-	einstalldocs
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-admin/dio/
@ 2021-05-07 21:42 Conrad Kostecki
  0 siblings, 0 replies; 7+ messages in thread
From: Conrad Kostecki @ 2021-05-07 21:42 UTC (permalink / raw
  To: gentoo-commits

commit:     e77a70580614a35b280b9d352577dd34612ec59e
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Fri May  7 21:40:15 2021 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Fri May  7 21:42:09 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e77a7058

app-admin/dio: switch to pkg-config

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 app-admin/dio/dio-1.5.2-r2.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/app-admin/dio/dio-1.5.2-r2.ebuild b/app-admin/dio/dio-1.5.2-r2.ebuild
new file mode 100644
index 00000000000..3b303b3961b
--- /dev/null
+++ b/app-admin/dio/dio-1.5.2-r2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="A device I/O monitoring tool"
+HOMEPAGE="https://github.com/donaldmcintosh/dio"
+SRC_URI="https://github.com/donaldmcintosh/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${P}/src"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="amd64 x86"
+
+RDEPEND="sys-libs/ncurses:0="
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+DOCS=( "README" "../README.md" )
+HTML_DOCS=( "../site/www.diodio.org/." )
+
+src_prepare() {
+	default
+
+	# Include the 'tinfo' lib, if sys-libs/ncurses is compiled with USE="tinfo"
+	sed -e "s:-lcurses:$($(tc-getPKG_CONFIG) --libs ncurses):" -i Makefile || die
+}
+
+src_compile() {
+	emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
+}
+
+src_install() {
+	dobin dio
+	doman dio.1
+	einstalldocs
+}


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

end of thread, other threads:[~2021-05-07 21:42 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-25 22:48 [gentoo-commits] repo/gentoo:master commit in: app-admin/dio/ Jonas Stein
  -- strict thread matches above, loose matches on Subject: below --
2021-05-07 21:42 Conrad Kostecki
2021-05-07 21:42 Conrad Kostecki
2020-08-09 15:53 Conrad Kostecki
2018-08-07 17:15 Michał Górny
2018-08-07 17:15 Michał Górny
2016-04-04  9:00 Ian Delaney

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