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 E305F138350 for ; Sun, 22 Mar 2020 16:41:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D026E09F0; Sun, 22 Mar 2020 16:41:11 +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 EBD60E09F0 for ; Sun, 22 Mar 2020 16:41:10 +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 5FB5334F6B9 for ; Sun, 22 Mar 2020 16:41:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D202C102 for ; Sun, 22 Mar 2020 16:41:06 +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: <1584895028.86ed59095b237753596af199aefff361b128481d.epsilon-0@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: x11-misc/tbsm/ X-VCS-Repository: repo/proj/guru X-VCS-Files: x11-misc/tbsm/Manifest x11-misc/tbsm/metadata.xml x11-misc/tbsm/tbsm-0.5.ebuild X-VCS-Directories: x11-misc/tbsm/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: 86ed59095b237753596af199aefff361b128481d X-VCS-Branch: dev Date: Sun, 22 Mar 2020 16:41:06 +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: bfa035ee-be9d-430e-b067-bb0f0209b5b9 X-Archives-Hash: 87376484fe7b6b45a1d7b6f0088d0970 commit: 86ed59095b237753596af199aefff361b128481d Author: Aisha Tammy aisha cc> AuthorDate: Sun Mar 22 16:37:08 2020 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Sun Mar 22 16:37:08 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=86ed5909 new package x11-misc/tbsm Signed-off-by: Aisha Tammy aisha.cc> x11-misc/tbsm/Manifest | 1 + x11-misc/tbsm/metadata.xml | 12 ++++++++++++ x11-misc/tbsm/tbsm-0.5.ebuild | 23 +++++++++++++++++++++++ 3 files changed, 36 insertions(+) diff --git a/x11-misc/tbsm/Manifest b/x11-misc/tbsm/Manifest new file mode 100644 index 0000000..c511c63 --- /dev/null +++ b/x11-misc/tbsm/Manifest @@ -0,0 +1 @@ +DIST tbsm-0.5.tar.gz 19515 BLAKE2B 336e4663c720ee376f37751903cd65b6c3c7ac6dbe00bb4b9e70a8e30b6068d2985146fbcfc9ad979a913ef1bbb6841c0e86ed24a70d22872bb5443825156986 SHA512 8954241d0f763bee42a36f39b9b40a5b30771d919f10ff0a5c67fcbd5625ff269cdcfae9e3eb6095710ab1fefef3cab5e2865ef9683a4cd628d7543e60846e91 diff --git a/x11-misc/tbsm/metadata.xml b/x11-misc/tbsm/metadata.xml new file mode 100644 index 0000000..cfbacce --- /dev/null +++ b/x11-misc/tbsm/metadata.xml @@ -0,0 +1,12 @@ + + + + + gentoo@aisha.cc + Aisha Tammy + + + proxy-maint@gentoo.org + Proxy Maintainers + + diff --git a/x11-misc/tbsm/tbsm-0.5.ebuild b/x11-misc/tbsm/tbsm-0.5.ebuild new file mode 100644 index 0000000..35ebf00 --- /dev/null +++ b/x11-misc/tbsm/tbsm-0.5.ebuild @@ -0,0 +1,23 @@ +# Copyright 2019-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A pure bash session or application launcher. Inspired by cdm, tdm and krunner" +HOMEPAGE="https://loh-tar.github.io/tbsm/" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/loh-tar/${PN}.git" + KEYWORDS="" +else + SRC_URI="https://github.com/loh-tar/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~x86" +fi + +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +DEPEND="app-shells/bash:0" +RDEPEND="${DEPEND}"