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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 89FB0158089 for ; Fri, 10 Nov 2023 18:09:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F75D2BC02E; Fri, 10 Nov 2023 18:09:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 82E732BC02E for ; Fri, 10 Nov 2023 18:09:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A26C1335D6D for ; Fri, 10 Nov 2023 18:09:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E4CE31336 for ; Fri, 10 Nov 2023 18:09:32 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1699639687.47315ecb859ff85be2dcfec818108517bb285208.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/ttyplot/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/ttyplot/Manifest app-admin/ttyplot/metadata.xml app-admin/ttyplot/ttyplot-1.5.1.ebuild X-VCS-Directories: app-admin/ttyplot/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 47315ecb859ff85be2dcfec818108517bb285208 X-VCS-Branch: master Date: Fri, 10 Nov 2023 18:09:32 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8e249927-7919-4720-af93-cc6056d00dfa X-Archives-Hash: 759a384976a0c2c34d11deeca1ee0691 commit: 47315ecb859ff85be2dcfec818108517bb285208 Author: Sebastian Pipping gentoo org> AuthorDate: Fri Nov 10 18:05:49 2023 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Fri Nov 10 18:08:07 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47315ecb app-admin/ttyplot: 1.5.1 (new package) Signed-off-by: Sebastian Pipping gentoo.org> app-admin/ttyplot/Manifest | 1 + app-admin/ttyplot/metadata.xml | 11 +++++++++++ app-admin/ttyplot/ttyplot-1.5.1.ebuild | 24 ++++++++++++++++++++++++ 3 files changed, 36 insertions(+) diff --git a/app-admin/ttyplot/Manifest b/app-admin/ttyplot/Manifest new file mode 100644 index 000000000000..ccf1665f40c1 --- /dev/null +++ b/app-admin/ttyplot/Manifest @@ -0,0 +1 @@ +DIST 1.5.1.gh.tar.gz 43629 BLAKE2B 98c46c27587a6ed98f7ed146b402dcbb6f5835f2f34780ccd706dc56b674dec3792dfb8bf84c8d260c040952ef0431341df09c16d032f32d4621c5f3971857d7 SHA512 3eb255375366bc3a773364388dc709f4f5b9961e1c99404dfd192503b20a8eb064f5089811b8c894a8214f84d24e14d040adb0b34712915311eb28972586bf0b diff --git a/app-admin/ttyplot/metadata.xml b/app-admin/ttyplot/metadata.xml new file mode 100644 index 000000000000..ae2c63465dde --- /dev/null +++ b/app-admin/ttyplot/metadata.xml @@ -0,0 +1,11 @@ + + + + + sping@gentoo.org + Sebastian Pipping + + + tenox7/ttyplot + + diff --git a/app-admin/ttyplot/ttyplot-1.5.1.ebuild b/app-admin/ttyplot/ttyplot-1.5.1.ebuild new file mode 100644 index 000000000000..17db22ea1f97 --- /dev/null +++ b/app-admin/ttyplot/ttyplot-1.5.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +DESCRIPTION="Realtime plotting utility with data input from stdin" +HOMEPAGE="https://github.com/tenox7/ttyplot" +SRC_URI="https://github.com/tenox7/ttyplot/archive/refs/tags/${PV}.tar.gz -> ${PV}.gh.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="sys-libs/ncurses" +RDEPEND="${DEPEND}" + +src_install() { + local args=( + PREFIX=/usr + MANPREFIX=/usr/share/man + DESTDIR="${D}" + ) + emake "${args[@]}" install +}