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 9B3761580BB for ; Fri, 27 Aug 2021 06:47:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9DBCE0839; Fri, 27 Aug 2021 06:47:10 +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 AAB9CE0891 for ; Fri, 27 Aug 2021 06:47: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 A3D4D342C46 for ; Fri, 27 Aug 2021 06:47:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3BA5445 for ; Fri, 27 Aug 2021 06:47:08 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1630046806.03c80b9abdc9801043a6dbd2677bf39226e3e568.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/liquidprompt/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/liquidprompt/Manifest app-shells/liquidprompt/liquidprompt-2.0.3.ebuild app-shells/liquidprompt/metadata.xml X-VCS-Directories: app-shells/liquidprompt/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 03c80b9abdc9801043a6dbd2677bf39226e3e568 X-VCS-Branch: master Date: Fri, 27 Aug 2021 06:47:08 +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: e441564c-d60f-44a5-ab6b-01f0379c46ce X-Archives-Hash: 8c40ee0ca3f225fed78cc1e0f0ea8d74 commit: 03c80b9abdc9801043a6dbd2677bf39226e3e568 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Aug 27 06:45:34 2021 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Aug 27 06:46:46 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03c80b9a app-shells/liquidprompt: initial import Signed-off-by: Arthur Zamarin gentoo.org> app-shells/liquidprompt/Manifest | 1 + app-shells/liquidprompt/liquidprompt-2.0.3.ebuild | 40 +++++++++++++++++++++++ app-shells/liquidprompt/metadata.xml | 11 +++++++ 3 files changed, 52 insertions(+) diff --git a/app-shells/liquidprompt/Manifest b/app-shells/liquidprompt/Manifest new file mode 100644 index 00000000000..681bc629e62 --- /dev/null +++ b/app-shells/liquidprompt/Manifest @@ -0,0 +1 @@ +DIST liquidprompt-2.0.3.tar.gz 539054 BLAKE2B c94375e0def1764103afe04bb47ff25ced2aeb940b45392bea8a2889ce88d1ea0e03efc0652ec8bc873b9910bee7208e48aaef9a846760177049cc550a5cd8b0 SHA512 a77f1548dd233de9877b2b5dd4a64f05ef03890917486792eb1c362708ab0b635c517cc2a3ddc82731940017f209f626d177a4ac0b5554566faa720a7d88b550 diff --git a/app-shells/liquidprompt/liquidprompt-2.0.3.ebuild b/app-shells/liquidprompt/liquidprompt-2.0.3.ebuild new file mode 100644 index 00000000000..037add1c934 --- /dev/null +++ b/app-shells/liquidprompt/liquidprompt-2.0.3.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Full-featured & carefully designed adaptive prompt for Bash & Zsh" +HOMEPAGE="https://github.com/nojhan/liquidprompt" +SRC_URI=" + https://github.com/nojhan/liquidprompt/releases/download/v${PV}/${PN}-v${PV}.tar.gz + -> ${P}.tar.gz +" +S="${WORKDIR}/${PN}" + +LICENSE="AGPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND="test? ( dev-util/shunit2 )" + +DOCS=( CHANGELOG.md example.bashrc README.md ) + +src_test() { + cp "$(type -P shunit2)" tests/shunit2 || die + ./tests.sh || die +} + +src_install() { + default + dobin liquidprompt + + insinto /usr/share/${PN} + doins liquid.theme + doins liquid.ps1 + doins -r themes + + insinto /etc/ + newins liquidpromptrc-dist liquidpromptrc +} diff --git a/app-shells/liquidprompt/metadata.xml b/app-shells/liquidprompt/metadata.xml new file mode 100644 index 00000000000..6d5867c2f36 --- /dev/null +++ b/app-shells/liquidprompt/metadata.xml @@ -0,0 +1,11 @@ + + + + + arthurzam@gentoo.org + Arthur Zamarin + + + nojhan/liquidprompt + +