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

2022-11-29 Thread Sam James
commit: fb2ce63e56c7f7187318ec33162f2f0bc29f3269
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 30 05:12:40 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 30 05:12:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb2ce63e

app-admin/whowatch: add github upstream metadata

Signed-off-by: Sam James  gentoo.org>

 app-admin/whowatch/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app-admin/whowatch/metadata.xml b/app-admin/whowatch/metadata.xml
index a1b469c0cd79..fab25be381f0 100644
--- a/app-admin/whowatch/metadata.xml
+++ b/app-admin/whowatch/metadata.xml
@@ -5,4 +5,7 @@

A interactive who program that displays information about the 
users currently logged into the machine.

+   
+   mtsuszycki/whowatch
+   
 



[gentoo-commits] repo/gentoo:master commit in: app-admin/whowatch/, app-admin/whowatch/files/

2022-11-29 Thread Sam James
commit: 4bb68b6cfd7361268182083af0ddb1c3219972f9
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 30 05:12:05 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 30 05:12:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bb68b6c

app-admin/whowatch: fix configure w/ clang 16

Signed-off-by: Sam James  gentoo.org>

 .../files/whowatch-1.8.4-configure-clang16.patch   | 24 ++
 ...ch-1.8.6-r1.ebuild => whowatch-1.8.6-r2.ebuild} |  1 +
 2 files changed, 25 insertions(+)

diff --git a/app-admin/whowatch/files/whowatch-1.8.4-configure-clang16.patch 
b/app-admin/whowatch/files/whowatch-1.8.4-configure-clang16.patch
new file mode 100644
index ..243a1e543a0c
--- /dev/null
+++ b/app-admin/whowatch/files/whowatch-1.8.4-configure-clang16.patch
@@ -0,0 +1,24 @@
+https://github.com/mtsuszycki/whowatch/pull/12
+
+From 62688e7316de7d4c80591f83afc97d55d73ad272 Mon Sep 17 00:00:00 2001
+From: Florian Weimer 
+Date: Sat, 26 Nov 2022 17:45:23 +0100
+Subject: [PATCH] configure.ac: Do not call undeclared exit function
+
+Implicit function declarations were removed from the C language in
+1999, and future compilers are likely to treat them as errors by
+default.
+--- a/configure.ac
 b/configure.ac
+@@ -120,8 +120,8 @@ fd_set rfds;
+ struct timeval tv = {1, 0};
+ FD_ZERO(); FD_SET(0,);
+ select(1,,0,0,);
+-if(tv.tv_sec == 0) exit(0);
+-else exit(1);
++if(tv.tv_sec == 0) return 0;
++else return 1;
+ }
+ ]])],[AC_MSG_RESULT(yes); AC_DEFINE([RETURN_TV_IN_SELECT],[1],[define if 
select() modifies the time value])],[AC_MSG_RESULT(no)],[AC_MSG_RESULT(no)])
+ 
+

diff --git a/app-admin/whowatch/whowatch-1.8.6-r1.ebuild 
b/app-admin/whowatch/whowatch-1.8.6-r2.ebuild
similarity index 93%
rename from app-admin/whowatch/whowatch-1.8.6-r1.ebuild
rename to app-admin/whowatch/whowatch-1.8.6-r2.ebuild
index 75f41120c58b..bc6d1d06f686 100644
--- a/app-admin/whowatch/whowatch-1.8.6-r1.ebuild
+++ b/app-admin/whowatch/whowatch-1.8.6-r2.ebuild
@@ -19,6 +19,7 @@ BDEPEND="virtual/pkgconfig"
 
 PATCHES=(
"${FILESDIR}"/${PN}-1.8.4-tinfo.patch
+   "${FILESDIR}"/${PN}-1.8.4-configure-clang16.patch
 )
 
 src_prepare() {



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

2022-08-17 Thread Andreas Sturmlechner
commit: 650fab630e3b653854298ee2f123a73cd3865cb2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Aug 17 10:53:58 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Aug 17 13:00:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=650fab63

app-admin/whowatch: drop 1.8.6, EAPI-6--

Closes: https://bugs.gentoo.org/865425
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-admin/whowatch/whowatch-1.8.6.ebuild | 35 
 1 file changed, 35 deletions(-)

diff --git a/app-admin/whowatch/whowatch-1.8.6.ebuild 
b/app-admin/whowatch/whowatch-1.8.6.ebuild
deleted file mode 100644
index 83d9bef99ca5..
--- a/app-admin/whowatch/whowatch-1.8.6.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools
-
-DESCRIPTION="Displays information about users currently logged on in real time"
-HOMEPAGE="http://wizard.ae.krakow.pl/~mike/ 
https://github.com/mtsuszycki/whowatch/;
-SRC_URI="https://github.com/mtsuszycki/${PN}/releases/download/${P}/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~mips ppc x86"
-
-RDEPEND="
-   sys-libs/ncurses:0=
-"
-DEPEND="
-   ${RDEPEND}
-   virtual/pkgconfig
-"
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.8.4-tinfo.patch
-)
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_install() {
-   dobin src/${PN}
-   doman ${PN}.1
-   dodoc AUTHORS ChangeLog README TODO
-}



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

2022-08-17 Thread Agostino Sarubbo
commit: a537a3d501db3f3c6d165049e9589aef279fc7e7
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Aug 17 07:08:17 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Aug 17 07:08:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a537a3d5

app-admin/whowatch: ppc stable wrt bug #865425

Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-admin/whowatch/whowatch-1.8.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/whowatch/whowatch-1.8.6-r1.ebuild 
b/app-admin/whowatch/whowatch-1.8.6-r1.ebuild
index 8eb4ed6f557f..75f41120c58b 100644
--- a/app-admin/whowatch/whowatch-1.8.6-r1.ebuild
+++ b/app-admin/whowatch/whowatch-1.8.6-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/mtsuszycki/${PN}/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~mips ~ppc x86"
+KEYWORDS="amd64 ~arm ~hppa ~mips ppc x86"
 
 RDEPEND="sys-libs/ncurses:="
 DEPEND="${RDEPEND}"



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

2022-08-16 Thread Sam James
commit: 734375110e349d83c65c9d597cd1d2684a1648d8
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 17 02:46:36 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 17 02:46:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73437511

app-admin/whowatch: Stabilize 1.8.6-r1 amd64, #865425

Signed-off-by: Sam James  gentoo.org>

 app-admin/whowatch/whowatch-1.8.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/whowatch/whowatch-1.8.6-r1.ebuild 
b/app-admin/whowatch/whowatch-1.8.6-r1.ebuild
index 303ad689374d..8eb4ed6f557f 100644
--- a/app-admin/whowatch/whowatch-1.8.6-r1.ebuild
+++ b/app-admin/whowatch/whowatch-1.8.6-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/mtsuszycki/${PN}/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc x86"
+KEYWORDS="amd64 ~arm ~hppa ~mips ~ppc x86"
 
 RDEPEND="sys-libs/ncurses:="
 DEPEND="${RDEPEND}"



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

2022-08-16 Thread Sam James
commit: 53ab3125997106b138e0867a2b7c2c51ee5ae37a
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 17 02:45:51 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 17 02:45:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53ab3125

app-admin/whowatch: Stabilize 1.8.6-r1 x86, #865425

Signed-off-by: Sam James  gentoo.org>

 app-admin/whowatch/whowatch-1.8.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/whowatch/whowatch-1.8.6-r1.ebuild 
b/app-admin/whowatch/whowatch-1.8.6-r1.ebuild
index 5d2251fb9743..303ad689374d 100644
--- a/app-admin/whowatch/whowatch-1.8.6-r1.ebuild
+++ b/app-admin/whowatch/whowatch-1.8.6-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/mtsuszycki/${PN}/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc x86"
 
 RDEPEND="sys-libs/ncurses:="
 DEPEND="${RDEPEND}"



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

2021-01-20 Thread Conrad Kostecki
commit: 61a73249d4422f26e2fe58354d70d71e665e0635
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Mon Jan 18 19:44:37 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Jan 20 23:04:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61a73249

app-admin/whowatch: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/19112
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Conrad Kostecki  gentoo.org>

 app-admin/whowatch/files/whowatch-1.8.4-select.patch | 17 -
 1 file changed, 17 deletions(-)

diff --git a/app-admin/whowatch/files/whowatch-1.8.4-select.patch 
b/app-admin/whowatch/files/whowatch-1.8.4-select.patch
deleted file mode 100644
index 0907c70e675..000
--- a/app-admin/whowatch/files/whowatch-1.8.4-select.patch
+++ /dev/null
@@ -1,17 +0,0 @@
 a/src/whowatch.c
-+++ b/src/whowatch.c
-@@ -436,12 +436,12 @@
-   gettimeofday(, 0);
-   tv.tv_sec -= (after.tv_sec - before.tv_sec);
-   if(retval > 0) {
--  int key = read_key();
-+  int key = getkey();
-   key_action(key);
-   }
-   if(tv.tv_sec <= 0) {
-   ticks++;
--  periodic();
-+  main_periodic();
-   tv.tv_sec = TIMEOUT;
-   }
- #endif



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

2020-11-26 Thread Aaron Bauman
commit: 11e36baa5ccfd8b6419a9234bbb4cbafa27050d9
Author: Aaron Bauman  gentoo  org>
AuthorDate: Thu Nov 26 20:24:27 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Nov 26 20:24:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11e36baa

app-admin/whowatch: drop old EAPI

Signed-off-by: Aaron Bauman  gentoo.org>

 app-admin/whowatch/Manifest  |  1 -
 app-admin/whowatch/whowatch-1.8.5.ebuild | 34 
 2 files changed, 35 deletions(-)

diff --git a/app-admin/whowatch/Manifest b/app-admin/whowatch/Manifest
index 0db3583b2eb..d13aac091fa 100644
--- a/app-admin/whowatch/Manifest
+++ b/app-admin/whowatch/Manifest
@@ -1,2 +1 @@
-DIST whowatch-1.8.5.tar.gz 133845 BLAKE2B 
f0f5b80d7adc488030877936ab8d12687f8b5617e445efa604971ae6e0b2de403b6f77a119f9ab131181193af85235ad546c425296facece165034b82cad
 SHA512 
9a534dcc859101e3f6636fcfc191be3c0a66b843225dbace0d851f8cca7bbf1374929f604414556c651167c24a223525304fe2963a92b97ba97a8f57179ec738
 DIST whowatch-1.8.6.tar.gz 141801 BLAKE2B 
d52ae8304d25c570873c65cc3b91d8fe227bf71f1802cc8055332f4614b9ca9f6c17dea10b07bbd20f834623f9e10456b19c6393996f6c66819e7e921ffb6240
 SHA512 
49aa45b0a88a41c98fb7b548f0f098004c8bcca9ec078e977fcec8bc109c9beab25989003bfff4b3dc38a9d62d69378f64441753a1cca62729d2013d2ed73cb0

diff --git a/app-admin/whowatch/whowatch-1.8.5.ebuild 
b/app-admin/whowatch/whowatch-1.8.5.ebuild
deleted file mode 100644
index e63c78391d8..000
--- a/app-admin/whowatch/whowatch-1.8.5.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils
-
-DESCRIPTION="Displays information about users currently logged on in real time"
-HOMEPAGE="http://wizard.ae.krakow.pl/~mike/;
-SRC_URI="http://wizard.ae.krakow.pl/~mike/download/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm hppa ~mips ppc x86"
-IUSE=""
-
-RDEPEND="
-   sys-libs/ncurses:0=
-"
-DEPEND="
-   ${RDEPEND}
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-1.8.4-tinfo.patch
-   epatch "${FILESDIR}"/${PN}-1.8.4-select.patch
-   eautoreconf
-}
-
-src_install() {
-   dobin src/${PN}
-   doman ${PN}.1
-   dodoc AUTHORS ChangeLog README TODO
-}



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

2020-11-26 Thread Aaron Bauman
commit: ce5143887d8a7496fdfff8e3d9776ef2bde905a0
Author: Aaron Bauman  gentoo  org>
AuthorDate: Thu Nov 26 20:22:46 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Nov 26 20:24:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce514388

app-admin/whowatch: ppc stable

Closes: https://bugs.gentoo.org/756877
Signed-off-by: Aaron Bauman  gentoo.org>

 app-admin/whowatch/whowatch-1.8.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/whowatch/whowatch-1.8.6.ebuild 
b/app-admin/whowatch/whowatch-1.8.6.ebuild
index ba5febb05ef..68ac8f0dbbe 100644
--- a/app-admin/whowatch/whowatch-1.8.6.ebuild
+++ b/app-admin/whowatch/whowatch-1.8.6.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/mtsuszycki/${PN}/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm hppa ~mips ~ppc x86"
+KEYWORDS="amd64 ~arm hppa ~mips ppc x86"
 
 RDEPEND="
sys-libs/ncurses:0=



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

2020-11-03 Thread Lars Wendler
commit: 9a3637716e97e1fbcf1acb03c831240ffc04a3ed
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Nov  3 22:52:44 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Nov  3 22:56:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a363771

app-admin/whowatch: Take over maintenance

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Lars Wendler  gentoo.org>

 app-admin/whowatch/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app-admin/whowatch/metadata.xml b/app-admin/whowatch/metadata.xml
index 9dc442a11c0..17e34c59b9b 100644
--- a/app-admin/whowatch/metadata.xml
+++ b/app-admin/whowatch/metadata.xml
@@ -1,7 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   polynomia...@gentoo.org
+   Lars Wendler
+   

A interactive who program that displays information about the 
users currently logged into the machine.




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

2020-07-23 Thread Jeroen Roovers
commit: bacc65cfcb4038d6b2b780719a09cc9d364b
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Jul 23 12:25:02 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Jul 23 12:28:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bacc65cf

app-admin/whowatch: Add live ebuild

Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Jeroen Roovers  gentoo.org>

 app-admin/whowatch/whowatch-9.ebuild | 36 
 1 file changed, 36 insertions(+)

diff --git a/app-admin/whowatch/whowatch-9.ebuild 
b/app-admin/whowatch/whowatch-9.ebuild
new file mode 100644
index 000..73c452f9523
--- /dev/null
+++ b/app-admin/whowatch/whowatch-9.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools desktop git-r3
+
+DESCRIPTION="Displays information about users currently logged on in real time"
+HOMEPAGE="http://wizard.ae.krakow.pl/~mike/ 
https://github.com/mtsuszycki/whowatch/;
+EGIT_REPO_URI="https://github.com/mtsuszycki/${PN};
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS=""
+
+RDEPEND="
+   sys-libs/ncurses:0=
+"
+DEPEND="
+   ${RDEPEND}
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.8.4-tinfo.patch
+)
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_install() {
+   dobin src/${PN}
+   doman ${PN}.1
+   dodoc AUTHORS ChangeLog.old NEWS PLUGINS.readme README.md TODO
+   domenu ${PN}.desktop
+}



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

2019-01-07 Thread Jeroen Roovers
commit: 1bf4f2f4f8c32e71277d185a2839a83339da0caa
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Jan  7 22:59:22 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Jan  8 00:37:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bf4f2f4

app-admin/whowatch: Stable for AMD64 HPPA x86 too.

Package-Manager: Portage-2.3.53, Repoman-2.3.12
RepoMan-Options: --ignore-arches
Signed-off-by: Jeroen Roovers  gentoo.org>

 app-admin/whowatch/whowatch-1.8.6.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/whowatch/whowatch-1.8.6.ebuild 
b/app-admin/whowatch/whowatch-1.8.6.ebuild
index b29bc3afdbc..ba5febb05ef 100644
--- a/app-admin/whowatch/whowatch-1.8.6.ebuild
+++ b/app-admin/whowatch/whowatch-1.8.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/mtsuszycki/${PN}/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~x86"
+KEYWORDS="amd64 ~arm hppa ~mips ~ppc x86"
 
 RDEPEND="
sys-libs/ncurses:0=



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

2018-04-11 Thread Jeroen Roovers
commit: 3ce48211fa5c618bec7a6ee314af4789abf48616
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Apr 11 16:41:31 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Apr 11 16:49:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ce48211

app-admin/whowatch: Version 1.8.6.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 app-admin/whowatch/Manifest  |  1 +
 app-admin/whowatch/whowatch-1.8.6.ebuild | 35 
 2 files changed, 36 insertions(+)

diff --git a/app-admin/whowatch/Manifest b/app-admin/whowatch/Manifest
index 67e4d9a2b46..0db3583b2eb 100644
--- a/app-admin/whowatch/Manifest
+++ b/app-admin/whowatch/Manifest
@@ -1 +1,2 @@
 DIST whowatch-1.8.5.tar.gz 133845 BLAKE2B 
f0f5b80d7adc488030877936ab8d12687f8b5617e445efa604971ae6e0b2de403b6f77a119f9ab131181193af85235ad546c425296facece165034b82cad
 SHA512 
9a534dcc859101e3f6636fcfc191be3c0a66b843225dbace0d851f8cca7bbf1374929f604414556c651167c24a223525304fe2963a92b97ba97a8f57179ec738
+DIST whowatch-1.8.6.tar.gz 141801 BLAKE2B 
d52ae8304d25c570873c65cc3b91d8fe227bf71f1802cc8055332f4614b9ca9f6c17dea10b07bbd20f834623f9e10456b19c6393996f6c66819e7e921ffb6240
 SHA512 
49aa45b0a88a41c98fb7b548f0f098004c8bcca9ec078e977fcec8bc109c9beab25989003bfff4b3dc38a9d62d69378f64441753a1cca62729d2013d2ed73cb0

diff --git a/app-admin/whowatch/whowatch-1.8.6.ebuild 
b/app-admin/whowatch/whowatch-1.8.6.ebuild
new file mode 100644
index 000..b29bc3afdbc
--- /dev/null
+++ b/app-admin/whowatch/whowatch-1.8.6.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools
+
+DESCRIPTION="Displays information about users currently logged on in real time"
+HOMEPAGE="http://wizard.ae.krakow.pl/~mike/ 
https://github.com/mtsuszycki/whowatch/;
+SRC_URI="https://github.com/mtsuszycki/${PN}/releases/download/${P}/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~x86"
+
+RDEPEND="
+   sys-libs/ncurses:0=
+"
+DEPEND="
+   ${RDEPEND}
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.8.4-tinfo.patch
+)
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_install() {
+   dobin src/${PN}
+   doman ${PN}.1
+   dodoc AUTHORS ChangeLog README TODO
+}



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

2016-12-04 Thread Lars Wendler
commit: e638f21970e1c415c07326e7b1db309bc3cf3655
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Dec  4 12:20:55 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Dec  4 12:44:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e638f219

app-admin/whowatch: Added sub-slot dependency for sys-libs/ncurses.

Package-Manager: portage-2.3.2

 app-admin/whowatch/whowatch-1.8.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/whowatch/whowatch-1.8.5.ebuild 
b/app-admin/whowatch/whowatch-1.8.5.ebuild
index 1a5867a..c3cba27 100644
--- a/app-admin/whowatch/whowatch-1.8.5.ebuild
+++ b/app-admin/whowatch/whowatch-1.8.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -15,7 +15,7 @@ KEYWORDS="amd64 ~arm hppa ~mips ppc x86"
 IUSE=""
 
 RDEPEND="
-   sys-libs/ncurses
+   sys-libs/ncurses:0=
 "
 DEPEND="
${RDEPEND}