diff options
author | Michael Weber <xmw@gentoo.org> | 2017-01-29 23:15:28 +0100 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2017-01-29 23:34:11 +0100 |
commit | 66dddc6c6d6d3a8592466703976e976d58c387a1 (patch) | |
tree | 2ed6ca226f5a833d5f63cb7e438a60037c1f1a79 /net-misc/mosh | |
parent | www-client/chromium: fix warnings about _FORTIFY_SOURCE being redefined (diff) | |
download | gentoo-66dddc6c6d6d3a8592466703976e976d58c387a1.tar.gz gentoo-66dddc6c6d6d3a8592466703976e976d58c387a1.tar.bz2 gentoo-66dddc6c6d6d3a8592466703976e976d58c387a1.zip |
net-misc/mosh: Drop old versions.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'net-misc/mosh')
-rw-r--r-- | net-misc/mosh/Manifest | 1 | ||||
-rw-r--r-- | net-misc/mosh/mosh-1.2.5-r1.ebuild | 72 | ||||
-rw-r--r-- | net-misc/mosh/mosh-1.2.5.ebuild | 61 |
3 files changed, 0 insertions, 134 deletions
diff --git a/net-misc/mosh/Manifest b/net-misc/mosh/Manifest index e8b67342a516..1145e44c9b1b 100644 --- a/net-misc/mosh/Manifest +++ b/net-misc/mosh/Manifest @@ -1,3 +1,2 @@ DIST mosh-1.2.4.tar.gz 283047 SHA256 e74d0d323226046e402dd469a176075fc2013b69b0e67cea49762c957175df46 SHA512 f7505faffdc8da734179b37339b554f83cbf5450b251cd2aa50d63cd6e4cbefa0da17a1c1b2a61858735ac9e5cee5841ed20e81e244380f5f9a02af1b87199cc WHIRLPOOL b7fe6c87deb139faa4c6542b8de8bb8356e00889a8fc5a9a4d9609312f1654720eda0bdf9db97f48ccf6f15e6b4b2cd9c8d5105e84177a7ce0d3d36923a15e34 -DIST mosh-1.2.5.tar.gz 308857 SHA256 1af809e5d747c333a852fbf7acdbf4d354dc4bbc2839e3afe5cf798190074be3 SHA512 6a5a42e5ed3f265bc8bee045340a59f604ab8f08b041573264f5679c29678e84d101537aa2d856923eee8d0a0f9c052dc81cfbfa50ce12bd0eeddc5c8f1fc3ae WHIRLPOOL df91c18f4f68250fbb91d79b3072f594adb829f46d4228c965082883ee71401d80efef06ceb4662686eda3bdccb43cede365a1cef4c099efe9c41f775b4fdd8c DIST mosh-1.2.6.tar.gz 347185 SHA256 7e82b7fbfcc698c70f5843bb960dadb8e7bd7ac1d4d2151c9d979372ea850e85 SHA512 fe53ba3ba79fb393f9fd5d3c48b2864838a1b51a8e08f0160bcfb98fc8c2363d2bb77456e1bc79b765d6489a2af54237c5423ebb88a13196a82420be0cbc7403 WHIRLPOOL b8e4f8ecce2a5bf2b7e8238ec12181aeeacabf3a1be8f153d922bda0747894e7c23ab9735824a8c163ab4d6ca7942a4aa064559b9474243b82eee3561dbbc031 diff --git a/net-misc/mosh/mosh-1.2.5-r1.ebuild b/net-misc/mosh/mosh-1.2.5-r1.ebuild deleted file mode 100644 index e6bc6b42ffbc..000000000000 --- a/net-misc/mosh/mosh-1.2.5-r1.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit autotools bash-completion-r1 eutils vcs-snapshot - -DESCRIPTION="Mobile shell that supports roaming and intelligent local echo" -HOMEPAGE="http://mosh.mit.edu" -SRC_URI="http://mosh.mit.edu/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86 ~amd64-linux ~arm-linux ~x86-linux ~x64-macos" -IUSE="+client examples +mosh-hardening +server ufw +utempter" - -REQUIRED_USE="|| ( client server ) - examples? ( client )" - -RDEPEND="dev-libs/protobuf - sys-libs/ncurses:0= - virtual/ssh - client? ( - dev-lang/perl - dev-perl/IO-Tty - ) - utempter? ( - sys-libs/libutempter - )" - -DEPEND="${RDEPEND} - virtual/pkgconfig" - -# [0] - avoid sandbox-violation calling git describe in Makefile -PATCHES=( - "${FILESDIR}"/${P}-git-version.patch -) - -src_prepare() { - # apply patches. - epatch "${PATCHES[@]}" - - eautoreconf -} - -src_configure() { - econf \ - --disable-completion \ - $(use_enable client) \ - $(use_enable server) \ - $(use_enable examples) \ - $(use_enable ufw) \ - $(use_enable mosh-hardening hardening) \ - $(use_with utempter) -} - -src_compile() { - emake V=1 -} - -src_install() { - default - - for myprog in $(find src/examples -type f -perm /0111) ; do - newbin ${myprog} ${PN}-$(basename ${myprog}) - elog "${myprog} installed as ${PN}-$(basename ${myprog})" - done - - # bug 477384 - dobashcomp conf/bash-completion/completions/mosh -} diff --git a/net-misc/mosh/mosh-1.2.5.ebuild b/net-misc/mosh/mosh-1.2.5.ebuild deleted file mode 100644 index 33680daaea2f..000000000000 --- a/net-misc/mosh/mosh-1.2.5.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -inherit autotools bash-completion-r1 eutils vcs-snapshot - -DESCRIPTION="Mobile shell that supports roaming and intelligent local echo" -HOMEPAGE="http://mosh.mit.edu" -SRC_URI="http://mosh.mit.edu/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86 ~amd64-linux ~arm-linux ~x86-linux ~x64-macos" -IUSE="+client examples +mosh-hardening +server ufw +utempter" -REQUIRED_USE="|| ( client server ) - examples? ( client )" - -RDEPEND="dev-libs/protobuf - sys-libs/ncurses:0 - virtual/ssh - client? ( dev-lang/perl - dev-perl/IO-Tty ) - utempter? ( sys-libs/libutempter )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - # avoid sandbox-violation calling git describe in Makefile - epatch "${FILESDIR}"/${P}-git-version.patch - - eautoreconf -} - -src_configure() { - econf \ - --disable-completion \ - $(use_enable client) \ - $(use_enable server) \ - $(use_enable examples) \ - $(use_enable ufw) \ - $(use_enable mosh-hardening hardening) \ - $(use_with utempter) -} - -src_compile() { - emake V=1 -} - -src_install() { - default - - for myprog in $(find src/examples -type f -perm /0111) ; do - newbin ${myprog} ${PN}-$(basename ${myprog}) - elog "${myprog} installed as ${PN}-$(basename ${myprog})" - done - - # bug 477384 - dobashcomp conf/bash-completion/completions/mosh -} |