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 E86BA138359 for ; Tue, 29 Sep 2020 02:43:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 105ECE0864; Tue, 29 Sep 2020 02:43:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 E7136E0864 for ; Tue, 29 Sep 2020 02:43:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 6B889340AC0 for ; Tue, 29 Sep 2020 02:43:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E978D380 for ; Tue, 29 Sep 2020 02:43:35 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1601347406.56fcd3819f7c6892e7047355d26a24b41b3d268c.epsilon-0@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/sampler-bin/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-apps/sampler-bin/Manifest sys-apps/sampler-bin/metadata.xml sys-apps/sampler-bin/sampler-bin-1.1.0.ebuild X-VCS-Directories: sys-apps/sampler-bin/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: 56fcd3819f7c6892e7047355d26a24b41b3d268c X-VCS-Branch: dev Date: Tue, 29 Sep 2020 02:43:35 +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: d15e8019-b1ca-4deb-bb7d-38ce909e5e3a X-Archives-Hash: 4ec9145be3528147c2a5bc8dc744a234 commit: 56fcd3819f7c6892e7047355d26a24b41b3d268c Author: Aisha Tammy aisha cc> AuthorDate: Tue Sep 29 02:43:10 2020 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Tue Sep 29 02:43:26 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=56fcd381 sys-apps/sampler-bin: add bin version of sampler Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Aisha Tammy aisha.cc> sys-apps/sampler-bin/Manifest | 1 + sys-apps/sampler-bin/metadata.xml | 11 +++++++++++ sys-apps/sampler-bin/sampler-bin-1.1.0.ebuild | 25 +++++++++++++++++++++++++ 3 files changed, 37 insertions(+) diff --git a/sys-apps/sampler-bin/Manifest b/sys-apps/sampler-bin/Manifest new file mode 100644 index 00000000..1e0309bb --- /dev/null +++ b/sys-apps/sampler-bin/Manifest @@ -0,0 +1 @@ +DIST sampler-bin-1.1.0 5587072 BLAKE2B 6fe196d756a62f7ce9b940b914877f28618c25b817f309c75c9c8e36e71bddb4cd0e0e5089832bec9d732a8fcfd8647e5c3ebf926ddcca088805904b057fc55e SHA512 0e8e14c5e5cc1718268cf2fb466ebb742b4f1b88412b12500e9e2b92cf445fa74475ddef2bb8a57f475a2095fca490643b9204389605fec2e561d878925dccb3 diff --git a/sys-apps/sampler-bin/metadata.xml b/sys-apps/sampler-bin/metadata.xml new file mode 100644 index 00000000..998eee75 --- /dev/null +++ b/sys-apps/sampler-bin/metadata.xml @@ -0,0 +1,11 @@ + + + + + gentoo@aisha.cc + Aisha Tammy + + + sqshq/sampler + + diff --git a/sys-apps/sampler-bin/sampler-bin-1.1.0.ebuild b/sys-apps/sampler-bin/sampler-bin-1.1.0.ebuild new file mode 100644 index 00000000..7e9c99e3 --- /dev/null +++ b/sys-apps/sampler-bin/sampler-bin-1.1.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="visualizer for shell commands, executions and alerting" +HOMEPAGE="https://sampler.dev" + +SRC_URI="https://github.com/sqshq/sampler/releases/download/v1.1.0/sampler-1.1.0-linux-amd64 -> ${P}" +S="${WORKDIR}" + +#https://github.com/sqshq/sampler/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +RESTRICT+=" test" + +RDEPEND+="media-libs/alsa-lib" + +src_install() { + cp "${DISTDIR}"/${P} "${S}"/sampler-bin + dobin sampler-bin +}