commit:     080025e9de75cb984c454a36871ba0cb7864ca32
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 11 22:04:44 2019 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Wed Dec 11 22:05:22 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=080025e9

net-misc/mosh: Drop old versions

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-misc/mosh/Manifest          |  2 --
 net-misc/mosh/mosh-1.2.6.ebuild | 70 -----------------------------------------
 net-misc/mosh/mosh-1.3.0.ebuild | 70 -----------------------------------------
 3 files changed, 142 deletions(-)

diff --git a/net-misc/mosh/Manifest b/net-misc/mosh/Manifest
index 3560daff87c..528cca3c432 100644
--- a/net-misc/mosh/Manifest
+++ b/net-misc/mosh/Manifest
@@ -1,3 +1 @@
-DIST mosh-1.2.6.tar.gz 347185 BLAKE2B 
4676ebc9736d83eaf842ac847fb7ce29d0ebbe9546df9755fc03d352ee69edd0d2135bf232c42c77c37e66a69049682611ccd10ceba999c6b4b419c66e288813
 SHA512 
fe53ba3ba79fb393f9fd5d3c48b2864838a1b51a8e08f0160bcfb98fc8c2363d2bb77456e1bc79b765d6489a2af54237c5423ebb88a13196a82420be0cbc7403
-DIST mosh-1.3.0.tar.gz 356220 BLAKE2B 
c0a74243f7f54e24b2ccc326f89cff87f2772bf98bf1a0946ede03f8139dcc159c9a6cbbc019ef43c7b324990077df7ac7287866ea2daa813621ff3618ae1d77
 SHA512 
2b43e3e3fb2ccf6c29a889f10dfc0d5504dbca6fabaf10419f4e355e4b73d64cc1e632324e447b25ac24ee18bb88d8a9a23f9c4824b267343fb86e26e7d5c54b
 DIST mosh-1.3.2.tar.gz 359574 BLAKE2B 
0b7290da0c5e5af0bfed58594095cb2649fec049fda7c495df326742176033d1716752451d2a9f11ba2c2957e8b8fecd5caa4e8962c8597e8dd67d1de7582ec5
 SHA512 
f400e8fe7ba2ab7362311fc12a00ec69587505f901988aeee500fc68d38a388218500a3f602111c883ff23a9d43572114fcf0a8bf505df203691e5b597615769

diff --git a/net-misc/mosh/mosh-1.2.6.ebuild b/net-misc/mosh/mosh-1.2.6.ebuild
deleted file mode 100644
index f51c7d11081..00000000000
--- a/net-misc/mosh/mosh-1.2.6.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools bash-completion-r1 eutils vcs-snapshot
-
-DESCRIPTION="Mobile shell that supports roaming and intelligent local echo"
-HOMEPAGE="https://mosh.org";
-SRC_URI="https://mosh.org/${P}.tar.gz";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~mips ppc x86 ~amd64-linux ~x86-linux ~x64-macos"
-IUSE="+client examples +mosh-hardening +server ufw +utempter"
-
-REQUIRED_USE="
-       || ( client server )
-       examples? ( client )"
-
-RDEPEND="
-       dev-libs/openssl:0=
-       dev-libs/protobuf:0=
-       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}"/${PN}-1.2.5-git-version.patch
-)
-
-src_prepare() {
-       MAKEOPTS+=" V=1"
-       default
-
-       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_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.3.0.ebuild b/net-misc/mosh/mosh-1.3.0.ebuild
deleted file mode 100644
index 61fd42fd6e5..00000000000
--- a/net-misc/mosh/mosh-1.3.0.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools bash-completion-r1 eutils vcs-snapshot
-
-DESCRIPTION="Mobile shell that supports roaming and intelligent local echo"
-HOMEPAGE="https://mosh.org";
-SRC_URI="https://mosh.org/${P}.tar.gz";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
-IUSE="+client examples +mosh-hardening +server ufw +utempter"
-
-REQUIRED_USE="
-       || ( client server )
-       examples? ( client )"
-
-RDEPEND="
-       dev-libs/openssl:0=
-       dev-libs/protobuf:0=
-       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}"/${PN}-1.2.5-git-version.patch
-)
-
-src_prepare() {
-       MAKEOPTS+=" V=1"
-       default
-
-       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_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
-}

Reply via email to