Gentoo Archives: gentoo-commits

From: Alice Ferrazzi <alicef@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/sshrc/
Date: Fri, 07 Oct 2016 14:54:16
Message-Id: 1475851752.824f155401be902989dac872e8115d296b16dcaf.alicef@gentoo
1 commit: 824f155401be902989dac872e8115d296b16dcaf
2 Author: Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 7 14:49:12 2016 +0000
4 Commit: Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 7 14:49:12 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=824f1554
7
8 net-misc/sshrc: New package
9
10 Bring your .bashrc, .vimrc, etc.
11 from your local machine when you ssh
12
13 Gentoo-bug: 596184
14
15 Ebuild-by: <otakuto.gentoo <AT> gmail.com>
16
17 Package-Manager: portage-2.3.0
18
19 net-misc/sshrc/Manifest | 1 +
20 net-misc/sshrc/metadata.xml | 18 ++++++++++++++++++
21 net-misc/sshrc/sshrc-0.6.1.ebuild | 25 +++++++++++++++++++++++++
22 3 files changed, 44 insertions(+)
23
24 diff --git a/net-misc/sshrc/Manifest b/net-misc/sshrc/Manifest
25 new file mode 100644
26 index 00000000..23a1181
27 --- /dev/null
28 +++ b/net-misc/sshrc/Manifest
29 @@ -0,0 +1 @@
30 +DIST sshrc-0.6.1.tar.gz 3701 SHA256 e849ff19319381548011a9bdf1e33abc6eba3dc6a910c4226e6981d75d5564dd SHA512 69e0919bdef0ec6fb187814f1a0dd360b331dc4c0fc047f7767399944eccb949c172682331e6ebe940c275f0a2b6293a66a6018e12351f566638eed1ac362d64 WHIRLPOOL 590e0bad2239466f1f37dd44f04ff9c3dec39d654fe48dbfbb40a607eb82700a50cc01877e231c086ee1895c9c072a8caae7b7f42c5b7184855615abb4bee5ed
31
32 diff --git a/net-misc/sshrc/metadata.xml b/net-misc/sshrc/metadata.xml
33 new file mode 100644
34 index 00000000..f0ef82c
35 --- /dev/null
36 +++ b/net-misc/sshrc/metadata.xml
37 @@ -0,0 +1,18 @@
38 +<?xml version="1.0" encoding="UTF-8"?>
39 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
40 +<pkgmetadata>
41 + <maintainer type="person">
42 + <email>otakuto.gentoo@×××××.com</email>
43 + <name>Tact Yoshida</name>
44 + </maintainer>
45 + <maintainer type="project">
46 + <email>proxy-maint@g.o</email>
47 + <name>Proxy Maintainers</name>
48 + </maintainer>
49 + <use>
50 + <flag name="mosh">Install Support for mosh</flag>
51 + </use>
52 + <upstream>
53 + <remote-id type="github">Russell91/sshrc</remote-id>
54 + </upstream>
55 +</pkgmetadata>
56
57 diff --git a/net-misc/sshrc/sshrc-0.6.1.ebuild b/net-misc/sshrc/sshrc-0.6.1.ebuild
58 new file mode 100644
59 index 00000000..c729892
60 --- /dev/null
61 +++ b/net-misc/sshrc/sshrc-0.6.1.ebuild
62 @@ -0,0 +1,25 @@
63 +# Copyright 1999-2016 Gentoo Foundation
64 +# Distributed under the terms of the GNU General Public License v2
65 +# $Id$
66 +
67 +EAPI=6
68 +
69 +DESCRIPTION="Bring your .bashrc, .vimrc, etc. from your local machine when you ssh"
70 +HOMEPAGE="https://github.com/Russell91/sshrc"
71 +SRC_URI="https://github.com/Russell91/sshrc/archive/${PV}.tar.gz -> ${P}.tar.gz"
72 +
73 +LICENSE="MIT"
74 +SLOT="0"
75 +KEYWORDS="~amd64 ~x86"
76 +IUSE="mosh"
77 +
78 +RDEPEND="
79 + virtual/ssh:0=
80 + mosh? ( net-misc/mosh:0[client] )
81 +"
82 +
83 +src_install()
84 +{
85 + dobin sshrc
86 + use mosh && dobin moshrc
87 +}