[gentoo-commits] repo/gentoo:master commit in: app-admin/dio/

2021-05-07 Thread Conrad Kostecki
commit: e2793693062c693368664e3fff03b21e4fc37f1b
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Fri May  7 21:40:49 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Fri May  7 21:42:10 2021 +
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  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..000
--- 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
-}



[gentoo-commits] repo/gentoo:master commit in: app-admin/dio/

2021-05-07 Thread Conrad Kostecki
commit: e77a70580614a35b280b9d352577dd34612ec59e
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Fri May  7 21:40:15 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Fri May  7 21:42:09 2021 +
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  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 000..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
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/dio/

2020-08-09 Thread Conrad Kostecki
commit: 1e2780d74930e41506ee5dd3abe41ab4f8121232
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Aug  9 13:23:01 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Aug  9 15:52:31 2020 +
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  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
 



[gentoo-commits] repo/gentoo:master commit in: app-admin/dio/

2018-08-07 Thread Michał Górny
commit: d8ed5247f9e56d317eae3510aa26faccbcf2aa69
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Tue Aug  7 16:58:06 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Aug  7 17:13:01 2018 +
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 000..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 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-  
-donaldmcintosh/dio
-  
+   
+   ck+gen...@bl4ckb0x.de
+   Conrad Kostecki
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   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.
+   
+   
+   https://github.com/donaldmcintosh/dio/issues
+   donaldmcintosh/dio
+   
 



[gentoo-commits] repo/gentoo:master commit in: app-admin/dio/

2018-08-07 Thread Michał Górny
commit: 8149589fb11e8652f42812b2af459a6d38c4bebd
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Tue Aug  7 16:59:42 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Aug  7 17:13:05 2018 +
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..000
--- 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
-}



[gentoo-commits] repo/gentoo:master commit in: app-admin/dio/

2018-07-25 Thread Jonas Stein
commit: 8b7842f1c4abfcf7d22e5a4a35c99b873aedf02e
Author: Jonas Stein  gentoo  org>
AuthorDate: Wed Jul 25 20:34:05 2018 +
Commit: Jonas Stein  gentoo  org>
CommitDate: Wed Jul 25 22:47:02 2018 +
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 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-donaldbmcint...@yahoo.co.uk
-Donald McIntosh
-  
-  
-proxy-ma...@gentoo.org
-Proxy Maintainers
-  
+  
   
 donaldmcintosh/dio
   



[gentoo-commits] repo/gentoo:master commit in: app-admin/dio/

2016-04-04 Thread Ian Delaney
commit: 7096644ab9ee62526b5c3fdb3062f13aebbe213a
Author: Ian Delaney  gentoo  org>
AuthorDate: Mon Apr  4 04:13:49 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Mon Apr  4 09:00:30 2016 +
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 @@
   
 donaldbmcint...@yahoo.co.uk
 Donald McIntosh
+Proxied maintainer; set to assignee in all bugs
   
   
 proxy-ma...@gentoo.org