Gentoo Archives: gentoo-commits

From: Michael Weber <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/mosh/
Date: Sun, 05 Feb 2017 13:56:32
Message-Id: 1486302975.eab28e6452fc542e227adca9e15e3c8a2c51e05a.xmw@gentoo
1 commit: eab28e6452fc542e227adca9e15e3c8a2c51e05a
2 Author: Michael Weber <xmw <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 5 13:00:22 2017 +0000
4 Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 5 13:56:15 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eab28e64
7
8 net-misc/mosh: Remove old version.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 net-misc/mosh/Manifest | 1 -
13 net-misc/mosh/mosh-1.2.4.ebuild | 58 -----------------------------------------
14 2 files changed, 59 deletions(-)
15
16 diff --git a/net-misc/mosh/Manifest b/net-misc/mosh/Manifest
17 index 1145e44..f4e85b7 100644
18 --- a/net-misc/mosh/Manifest
19 +++ b/net-misc/mosh/Manifest
20 @@ -1,2 +1 @@
21 -DIST mosh-1.2.4.tar.gz 283047 SHA256 e74d0d323226046e402dd469a176075fc2013b69b0e67cea49762c957175df46 SHA512 f7505faffdc8da734179b37339b554f83cbf5450b251cd2aa50d63cd6e4cbefa0da17a1c1b2a61858735ac9e5cee5841ed20e81e244380f5f9a02af1b87199cc WHIRLPOOL b7fe6c87deb139faa4c6542b8de8bb8356e00889a8fc5a9a4d9609312f1654720eda0bdf9db97f48ccf6f15e6b4b2cd9c8d5105e84177a7ce0d3d36923a15e34
22 DIST mosh-1.2.6.tar.gz 347185 SHA256 7e82b7fbfcc698c70f5843bb960dadb8e7bd7ac1d4d2151c9d979372ea850e85 SHA512 fe53ba3ba79fb393f9fd5d3c48b2864838a1b51a8e08f0160bcfb98fc8c2363d2bb77456e1bc79b765d6489a2af54237c5423ebb88a13196a82420be0cbc7403 WHIRLPOOL b8e4f8ecce2a5bf2b7e8238ec12181aeeacabf3a1be8f153d922bda0747894e7c23ab9735824a8c163ab4d6ca7942a4aa064559b9474243b82eee3561dbbc031
23
24 diff --git a/net-misc/mosh/mosh-1.2.4.ebuild b/net-misc/mosh/mosh-1.2.4.ebuild
25 deleted file mode 100644
26 index 2509942..00000000
27 --- a/net-misc/mosh/mosh-1.2.4.ebuild
28 +++ /dev/null
29 @@ -1,58 +0,0 @@
30 -# Copyright 1999-2014 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=4
35 -
36 -inherit autotools bash-completion-r1 vcs-snapshot
37 -
38 -DESCRIPTION="Mobile shell that supports roaming and intelligent local echo"
39 -HOMEPAGE="http://mosh.mit.edu"
40 -SRC_URI="http://mosh.mit.edu/${P}.tar.gz"
41 -
42 -LICENSE="GPL-3"
43 -SLOT="0"
44 -KEYWORDS="amd64 ~arm ~mips ppc x86 ~amd64-linux ~arm-linux ~x86-linux ~x64-macos"
45 -IUSE="+client examples +mosh-hardening +server ufw +utempter"
46 -REQUIRED_USE="|| ( client server )
47 - examples? ( client )"
48 -
49 -RDEPEND="dev-libs/protobuf
50 - sys-libs/ncurses:0
51 - virtual/ssh
52 - client? ( dev-lang/perl
53 - dev-perl/IO-Tty )
54 - utempter? ( sys-libs/libutempter )"
55 -DEPEND="${RDEPEND}
56 - virtual/pkgconfig"
57 -
58 -src_prepare() {
59 - eautoreconf
60 -}
61 -
62 -src_configure() {
63 - econf \
64 - --disable-completion \
65 - $(use_enable client) \
66 - $(use_enable server) \
67 - $(use_enable examples) \
68 - $(use_enable ufw) \
69 - $(use_enable mosh-hardening hardening) \
70 - $(use_with utempter)
71 -}
72 -
73 -src_compile() {
74 - emake V=1
75 -}
76 -
77 -src_install() {
78 - default
79 -
80 - for myprog in $(find src/examples -type f -perm /0111) ; do
81 - newbin ${myprog} ${PN}-$(basename ${myprog})
82 - elog "${myprog} installed as ${PN}-$(basename ${myprog})"
83 - done
84 -
85 - # bug 477384
86 - dobashcomp conf/bash_completion.d/mosh
87 -}