Gentoo Archives: gentoo-commits

From: Amy Liffey <amynka@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/mosh/
Date: Wed, 27 Oct 2021 19:07:03
Message-Id: 1635361186.392f6e131d6049bb2cd19a21eff2b407cb052a4c.amynka@gentoo
1 commit: 392f6e131d6049bb2cd19a21eff2b407cb052a4c
2 Author: Amy Liffey <amynka <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 27 17:38:40 2021 +0000
4 Commit: Amy Liffey <amynka <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 27 18:59:46 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=392f6e13
7
8 net-misc/mosh: remove 9999 not needed anymore
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Amy Liffey <amynka <AT> gentoo.org>
12
13 net-misc/mosh/mosh-9999.ebuild | 70 ------------------------------------------
14 1 file changed, 70 deletions(-)
15
16 diff --git a/net-misc/mosh/mosh-9999.ebuild b/net-misc/mosh/mosh-9999.ebuild
17 deleted file mode 100644
18 index 58c3c573a5f..00000000000
19 --- a/net-misc/mosh/mosh-9999.ebuild
20 +++ /dev/null
21 @@ -1,70 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit autotools bash-completion-r1 git-r3
28 -
29 -DESCRIPTION="Mobile shell that supports roaming and intelligent local echo"
30 -HOMEPAGE="https://mosh.org"
31 -EGIT_REPO_URI="https://github.com/keithw/mosh.git"
32 -
33 -LICENSE="GPL-3"
34 -SLOT="0"
35 -IUSE="+client examples +mosh-hardening +server ufw +utempter"
36 -
37 -REQUIRED_USE="
38 - || ( client server )
39 - examples? ( client )"
40 -
41 -RDEPEND="
42 - dev-libs/protobuf:0=
43 - sys-libs/ncurses:0=
44 - virtual/ssh
45 - client? (
46 - dev-lang/perl
47 - dev-perl/IO-Tty
48 - )
49 - dev-libs/openssl:0=
50 - utempter? (
51 - sys-libs/libutempter
52 - )"
53 -
54 -DEPEND="${RDEPEND}
55 - dev-vcs/git[curl]
56 - virtual/pkgconfig"
57 -
58 -# [0] - avoid sandbox-violation calling git describe in Makefile
59 -PATCHES=(
60 - "${FILESDIR}"/${PN}-1.2.5-git-version.patch
61 -)
62 -
63 -src_prepare() {
64 - MAKEOPTS+=" V=1"
65 - default
66 -
67 - eautoreconf
68 -}
69 -
70 -src_configure() {
71 - econf \
72 - --disable-completion \
73 - $(use_enable client) \
74 - $(use_enable server) \
75 - $(use_enable examples) \
76 - $(use_enable ufw) \
77 - $(use_enable mosh-hardening hardening) \
78 - $(use_with utempter)
79 -}
80 -
81 -src_install() {
82 - default
83 -
84 - for myprog in $(find src/examples -type f -perm /0111) ; do
85 - newbin ${myprog} ${PN}-$(basename ${myprog})
86 - elog "${myprog} installed as ${PN}-$(basename ${myprog})"
87 - done
88 -
89 - # bug 477384
90 - dobashcomp conf/bash-completion/completions/mosh
91 -}