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 D581C138239 for ; Sat, 21 Jul 2018 21:59:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DC515E07EA; Sat, 21 Jul 2018 21:59:35 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A75CAE07EA for ; Sat, 21 Jul 2018 21:59:35 +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 0556D335C8E for ; Sat, 21 Jul 2018 21:59:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F58B2AA for ; Sat, 21 Jul 2018 21:59:32 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1532210195.d0a11761f6c426c8eedce647dfe1cb13a8a3f7ac.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/sshrc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/sshrc/Manifest net-misc/sshrc/sshrc-0.6.2.ebuild X-VCS-Directories: net-misc/sshrc/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: d0a11761f6c426c8eedce647dfe1cb13a8a3f7ac X-VCS-Branch: master Date: Sat, 21 Jul 2018 21:59: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-Archives-Salt: db576e76-e2cd-4b58-9075-4be8402b1b03 X-Archives-Hash: b12e329bb9ef355d58bb988cc2e1060d commit: d0a11761f6c426c8eedce647dfe1cb13a8a3f7ac Author: Tact Yoshida gmail com> AuthorDate: Wed Jul 18 19:15:23 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat Jul 21 21:56:35 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0a11761 net-misc/sshrc: version bump to 0.6.2. Package-Manager: Portage-2.3.40, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/9277 net-misc/sshrc/Manifest | 1 + net-misc/sshrc/sshrc-0.6.2.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/net-misc/sshrc/Manifest b/net-misc/sshrc/Manifest index 0d1c7a704a8..120746ca6cb 100644 --- a/net-misc/sshrc/Manifest +++ b/net-misc/sshrc/Manifest @@ -1 +1,2 @@ DIST sshrc-0.6.1.tar.gz 3701 BLAKE2B 36cdd0d4dcc80ea1884533f71e6090a6cb393dc1131a6d78fddc43c37e0597aee2da8b92789a59100ad6941d8c17e6ccbf796d73ec704df45aa768cfc6bf36a7 SHA512 69e0919bdef0ec6fb187814f1a0dd360b331dc4c0fc047f7767399944eccb949c172682331e6ebe940c275f0a2b6293a66a6018e12351f566638eed1ac362d64 +DIST sshrc-0.6.2.tar.gz 4410 BLAKE2B 982ae3f0a6d3727699cc3cd7ddc20304ad1330b165f7450047f7d3b236ba7f3b297223d88c6ce8e00d0db97d3193c4547d7a10d51e8feb3bb639b6276865a8e8 SHA512 79dd964c5ed825b38aa775d35df6adc0857817c418fa4ae1971378f062536035bd66e4faa0fb84f66504f09c7e6368355f8c57036bea8d269b4d9084af95ddc4 diff --git a/net-misc/sshrc/sshrc-0.6.2.ebuild b/net-misc/sshrc/sshrc-0.6.2.ebuild new file mode 100644 index 00000000000..b97009265ac --- /dev/null +++ b/net-misc/sshrc/sshrc-0.6.2.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Bring your .bashrc, .vimrc, etc. from your local machine when you ssh" +HOMEPAGE="https://github.com/Russell91/sshrc" +SRC_URI="https://github.com/Russell91/sshrc/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="mosh" + +RDEPEND=" + virtual/ssh:0= + mosh? ( net-misc/mosh:0[client] ) +" + +src_install() +{ + dobin sshrc + use mosh && dobin moshrc +}