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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0E48C158020 for ; Mon, 17 Oct 2022 23:34:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84148E093E; Mon, 17 Oct 2022 23:34:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 69658E093E for ; Mon, 17 Oct 2022 23:34:52 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EA29234119F for ; Mon, 17 Oct 2022 23:34:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA837624 for ; Mon, 17 Oct 2022 23:34:47 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1666048832.5ca9010e2c07dc2b01b54a474b616f5c20589ebd.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/vcsh/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/vcsh/Manifest dev-vcs/vcsh/vcsh-2.0.4.ebuild X-VCS-Directories: dev-vcs/vcsh/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5ca9010e2c07dc2b01b54a474b616f5c20589ebd X-VCS-Branch: master Date: Mon, 17 Oct 2022 23:34:47 +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: 8fb56ddf-6e93-445e-af36-9dbadc77c41f X-Archives-Hash: 2951d8cb3fe0a8981f2cbd5535902614 commit: 5ca9010e2c07dc2b01b54a474b616f5c20589ebd Author: Sam James gentoo org> AuthorDate: Mon Oct 17 23:16:35 2022 +0000 Commit: Sam James gentoo org> CommitDate: Mon Oct 17 23:20:32 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ca9010e dev-vcs/vcsh: add 2.0.4 Signed-off-by: Sam James gentoo.org> dev-vcs/vcsh/Manifest | 1 + dev-vcs/vcsh/vcsh-2.0.4.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/dev-vcs/vcsh/Manifest b/dev-vcs/vcsh/Manifest index bcf9bca2a470..f01e392a686a 100644 --- a/dev-vcs/vcsh/Manifest +++ b/dev-vcs/vcsh/Manifest @@ -1 +1,2 @@ DIST vcsh-1.20190621.4.tar.gz 40262 BLAKE2B 541f0fe4873236d6b2af2f2a71c446954ca401b69beeca9b21c61a51e3cff11fd1999addcdf4f5d699ff54fa08e6b81a33e0b6d586cad250470e4646cbd5edd9 SHA512 d86168198f468bbf74d7c83dfe61e07e39772c98467b713f7a4972b779f046c51a2c983ddd444d0332d2a586159d86ccb6560d4cffb5a6441534c425a717ffe3 +DIST vcsh-2.0.4.tar.xz 84608 BLAKE2B aad8c63997b55601489443642bcd40d7f8ecb977c99d11fc309f5c76d6e02d3fe5b486c16aa5722d6aca142e77a8109f38566bd21973d78bc542793124904127 SHA512 36c823052c2e2d511b6a9e07e43e7c96255ed0fdcd620db3bb22ba3215060762c0ae556afab31522ff87a443affbee46d9ab4cc8a04aa3a6fa5fdae96aba8d09 diff --git a/dev-vcs/vcsh/vcsh-2.0.4.ebuild b/dev-vcs/vcsh/vcsh-2.0.4.ebuild new file mode 100644 index 000000000000..b6b83219ead8 --- /dev/null +++ b/dev-vcs/vcsh/vcsh-2.0.4.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Manage config files in $HOME via fake bare git repositories" +HOMEPAGE="https://github.com/RichiH/vcsh" +SRC_URI="https://github.com/RichiH/vcsh/releases/download/v${PV}/${P}.tar.xz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-vcs/git" + +src_configure() { + # bash for https://github.com/RichiH/vcsh/issues/325 + CONFIG_SHELL="${BROOT}"/bin/bash econf +} + +src_install() { + default + + mv "${ED}"/usr/share/doc/${PN} "${ED}"/usr/share/doc/${PF} || die + + dodoc -r doc/sample_hooks +}