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, 29 Jan 2017 22:37:13
Message-Id: 1485729251.66dddc6c6d6d3a8592466703976e976d58c387a1.xmw@gentoo
1 commit: 66dddc6c6d6d3a8592466703976e976d58c387a1
2 Author: Michael Weber <xmw <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 29 22:15:28 2017 +0000
4 Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 29 22:34:11 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66dddc6c
7
8 net-misc/mosh: Drop old versions.
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.5-r1.ebuild | 72 --------------------------------------
14 net-misc/mosh/mosh-1.2.5.ebuild | 61 --------------------------------
15 3 files changed, 134 deletions(-)
16
17 diff --git a/net-misc/mosh/Manifest b/net-misc/mosh/Manifest
18 index e8b6734..1145e44 100644
19 --- a/net-misc/mosh/Manifest
20 +++ b/net-misc/mosh/Manifest
21 @@ -1,3 +1,2 @@
22 DIST mosh-1.2.4.tar.gz 283047 SHA256 e74d0d323226046e402dd469a176075fc2013b69b0e67cea49762c957175df46 SHA512 f7505faffdc8da734179b37339b554f83cbf5450b251cd2aa50d63cd6e4cbefa0da17a1c1b2a61858735ac9e5cee5841ed20e81e244380f5f9a02af1b87199cc WHIRLPOOL b7fe6c87deb139faa4c6542b8de8bb8356e00889a8fc5a9a4d9609312f1654720eda0bdf9db97f48ccf6f15e6b4b2cd9c8d5105e84177a7ce0d3d36923a15e34
23 -DIST mosh-1.2.5.tar.gz 308857 SHA256 1af809e5d747c333a852fbf7acdbf4d354dc4bbc2839e3afe5cf798190074be3 SHA512 6a5a42e5ed3f265bc8bee045340a59f604ab8f08b041573264f5679c29678e84d101537aa2d856923eee8d0a0f9c052dc81cfbfa50ce12bd0eeddc5c8f1fc3ae WHIRLPOOL df91c18f4f68250fbb91d79b3072f594adb829f46d4228c965082883ee71401d80efef06ceb4662686eda3bdccb43cede365a1cef4c099efe9c41f775b4fdd8c
24 DIST mosh-1.2.6.tar.gz 347185 SHA256 7e82b7fbfcc698c70f5843bb960dadb8e7bd7ac1d4d2151c9d979372ea850e85 SHA512 fe53ba3ba79fb393f9fd5d3c48b2864838a1b51a8e08f0160bcfb98fc8c2363d2bb77456e1bc79b765d6489a2af54237c5423ebb88a13196a82420be0cbc7403 WHIRLPOOL b8e4f8ecce2a5bf2b7e8238ec12181aeeacabf3a1be8f153d922bda0747894e7c23ab9735824a8c163ab4d6ca7942a4aa064559b9474243b82eee3561dbbc031
25
26 diff --git a/net-misc/mosh/mosh-1.2.5-r1.ebuild b/net-misc/mosh/mosh-1.2.5-r1.ebuild
27 deleted file mode 100644
28 index e6bc6b4..00000000
29 --- a/net-misc/mosh/mosh-1.2.5-r1.ebuild
30 +++ /dev/null
31 @@ -1,72 +0,0 @@
32 -# Copyright 1999-2015 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -# $Id$
35 -
36 -EAPI=5
37 -
38 -inherit autotools bash-completion-r1 eutils vcs-snapshot
39 -
40 -DESCRIPTION="Mobile shell that supports roaming and intelligent local echo"
41 -HOMEPAGE="http://mosh.mit.edu"
42 -SRC_URI="http://mosh.mit.edu/${P}.tar.gz"
43 -
44 -LICENSE="GPL-3"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86 ~amd64-linux ~arm-linux ~x86-linux ~x64-macos"
47 -IUSE="+client examples +mosh-hardening +server ufw +utempter"
48 -
49 -REQUIRED_USE="|| ( client server )
50 - examples? ( client )"
51 -
52 -RDEPEND="dev-libs/protobuf
53 - sys-libs/ncurses:0=
54 - virtual/ssh
55 - client? (
56 - dev-lang/perl
57 - dev-perl/IO-Tty
58 - )
59 - utempter? (
60 - sys-libs/libutempter
61 - )"
62 -
63 -DEPEND="${RDEPEND}
64 - virtual/pkgconfig"
65 -
66 -# [0] - avoid sandbox-violation calling git describe in Makefile
67 -PATCHES=(
68 - "${FILESDIR}"/${P}-git-version.patch
69 -)
70 -
71 -src_prepare() {
72 - # apply patches.
73 - epatch "${PATCHES[@]}"
74 -
75 - eautoreconf
76 -}
77 -
78 -src_configure() {
79 - econf \
80 - --disable-completion \
81 - $(use_enable client) \
82 - $(use_enable server) \
83 - $(use_enable examples) \
84 - $(use_enable ufw) \
85 - $(use_enable mosh-hardening hardening) \
86 - $(use_with utempter)
87 -}
88 -
89 -src_compile() {
90 - emake V=1
91 -}
92 -
93 -src_install() {
94 - default
95 -
96 - for myprog in $(find src/examples -type f -perm /0111) ; do
97 - newbin ${myprog} ${PN}-$(basename ${myprog})
98 - elog "${myprog} installed as ${PN}-$(basename ${myprog})"
99 - done
100 -
101 - # bug 477384
102 - dobashcomp conf/bash-completion/completions/mosh
103 -}
104
105 diff --git a/net-misc/mosh/mosh-1.2.5.ebuild b/net-misc/mosh/mosh-1.2.5.ebuild
106 deleted file mode 100644
107 index 33680da..00000000
108 --- a/net-misc/mosh/mosh-1.2.5.ebuild
109 +++ /dev/null
110 @@ -1,61 +0,0 @@
111 -# Copyright 1999-2015 Gentoo Foundation
112 -# Distributed under the terms of the GNU General Public License v2
113 -# $Id$
114 -
115 -EAPI=4
116 -
117 -inherit autotools bash-completion-r1 eutils vcs-snapshot
118 -
119 -DESCRIPTION="Mobile shell that supports roaming and intelligent local echo"
120 -HOMEPAGE="http://mosh.mit.edu"
121 -SRC_URI="http://mosh.mit.edu/${P}.tar.gz"
122 -
123 -LICENSE="GPL-3"
124 -SLOT="0"
125 -KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86 ~amd64-linux ~arm-linux ~x86-linux ~x64-macos"
126 -IUSE="+client examples +mosh-hardening +server ufw +utempter"
127 -REQUIRED_USE="|| ( client server )
128 - examples? ( client )"
129 -
130 -RDEPEND="dev-libs/protobuf
131 - sys-libs/ncurses:0
132 - virtual/ssh
133 - client? ( dev-lang/perl
134 - dev-perl/IO-Tty )
135 - utempter? ( sys-libs/libutempter )"
136 -DEPEND="${RDEPEND}
137 - virtual/pkgconfig"
138 -
139 -src_prepare() {
140 - # avoid sandbox-violation calling git describe in Makefile
141 - epatch "${FILESDIR}"/${P}-git-version.patch
142 -
143 - eautoreconf
144 -}
145 -
146 -src_configure() {
147 - econf \
148 - --disable-completion \
149 - $(use_enable client) \
150 - $(use_enable server) \
151 - $(use_enable examples) \
152 - $(use_enable ufw) \
153 - $(use_enable mosh-hardening hardening) \
154 - $(use_with utempter)
155 -}
156 -
157 -src_compile() {
158 - emake V=1
159 -}
160 -
161 -src_install() {
162 - default
163 -
164 - for myprog in $(find src/examples -type f -perm /0111) ; do
165 - newbin ${myprog} ${PN}-$(basename ${myprog})
166 - elog "${myprog} installed as ${PN}-$(basename ${myprog})"
167 - done
168 -
169 - # bug 477384
170 - dobashcomp conf/bash-completion/completions/mosh
171 -}