From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E82AF1382C5 for ; Wed, 11 Apr 2018 16:49:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F3515E092A; Wed, 11 Apr 2018 16:49:09 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CEE7DE092A for ; Wed, 11 Apr 2018 16:49:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D440C335C75 for ; Wed, 11 Apr 2018 16:49:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F725274 for ; Wed, 11 Apr 2018 16:49:07 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1523465340.3ce48211fa5c618bec7a6ee314af4789abf48616.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/whowatch/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/whowatch/Manifest app-admin/whowatch/whowatch-1.8.6.ebuild X-VCS-Directories: app-admin/whowatch/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 3ce48211fa5c618bec7a6ee314af4789abf48616 X-VCS-Branch: master Date: Wed, 11 Apr 2018 16:49:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: fb2e627b-5219-4fe3-8eff-46a3365ab6c7 X-Archives-Hash: 1318d6ef917943e8375ec42e09ffbcb2 commit: 3ce48211fa5c618bec7a6ee314af4789abf48616 Author: Jeroen Roovers gentoo org> AuthorDate: Wed Apr 11 16:41:31 2018 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Wed Apr 11 16:49:00 2018 +0000 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 f0f5b80d7adc488030877936ab8d12687f8b5617e445efa604971ae6e0b2de403b6f77a119f9ab1311811900003af85235ad546c425296facece165034b82cad 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 00000000000..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 +}