From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 98FF1138010 for ; Wed, 27 Mar 2013 15:23:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 253EBE09B7; Wed, 27 Mar 2013 15:23:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A2F44E09B7 for ; Wed, 27 Mar 2013 15:23:28 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 94B8033BECC for ; Wed, 27 Mar 2013 15:23:27 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2275) id 35C9E2171D; Wed, 27 Mar 2013 15:23:26 +0000 (UTC) From: "Michael Weber (xmw)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, xmw@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in net-misc/mosh: mosh-1.2.4.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: mosh-1.2.4.ebuild ChangeLog X-VCS-Directories: net-misc/mosh X-VCS-Committer: xmw X-VCS-Committer-Name: Michael Weber Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130327152326.35C9E2171D@flycatcher.gentoo.org> Date: Wed, 27 Mar 2013 15:23:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 97fa8e28-9bc0-4c60-9b0b-7f999561b3a7 X-Archives-Hash: 556699e8a99151984bc9c0eab6fe400c xmw 13/03/27 15:23:26 Modified: ChangeLog Added: mosh-1.2.4.ebuild Log: Version bump (Portage version: 2.2.0_alpha169/cvs/Linux x86_64, signed Manifest commit with key 62EEF090) Revision Changes Path 1.39 net-misc/mosh/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?rev=1.39&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?rev=1.39&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?r1=1.38&r2=1.39 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v retrieving revision 1.38 retrieving revision 1.39 diff -u -r1.38 -r1.39 --- ChangeLog 13 Mar 2013 19:19:51 -0000 1.38 +++ ChangeLog 27 Mar 2013 15:23:26 -0000 1.39 @@ -1,6 +1,11 @@ # ChangeLog for net-misc/mosh # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v 1.38 2013/03/13 19:19:51 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v 1.39 2013/03/27 15:23:26 xmw Exp $ + +*mosh-1.2.4 (27 Mar 2013) + + 27 Mar 2013; Michael Weber +mosh-1.2.4.ebuild: + Version bump 13 Mar 2013; Michael Weber mosh-9999.ebuild: Update live build 1.1 net-misc/mosh/mosh-1.2.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild?rev=1.1&content-type=text/plain Index: mosh-1.2.4.ebuild =================================================================== # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild,v 1.1 2013/03/27 15:23:26 xmw Exp $ EAPI=4 inherit autotools 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 ~mips ~ppc ~x86 ~arm-linux ~x86-linux" IUSE="bash-completion +client examples +mosh-hardening +server ufw +utempter" REQUIRED_USE="|| ( client server ) examples? ( client )" RDEPEND="dev-libs/protobuf sys-libs/ncurses:5 virtual/ssh client? ( dev-lang/perl dev-perl/IO-Tty ) utempter? ( sys-libs/libutempter )" DEPEND="${RDEPEND} virtual/pkgconfig" src_prepare() { eautoreconf } src_configure() { econf \ $(use_enable bash-completion 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 if use bash-completion ; then insinto /usr/share/bash-completion doins "${ED}"/etc/bash_completion.d/mosh rm -rf "${ED}"/etc/bash_completion.d fi }