diff options
author | Michael Weber <xmw@gentoo.org> | 2012-05-27 06:21:28 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2012-05-27 06:21:28 +0000 |
commit | fd4350c4083bb4b0f94b059e8816869777379add (patch) | |
tree | d3779d32612a31fe4b2320697c3e0fe2ff62d576 | |
parent | Added ~alpha, bug 390345. (diff) | |
download | gentoo-2-fd4350c4083bb4b0f94b059e8816869777379add.tar.gz gentoo-2-fd4350c4083bb4b0f94b059e8816869777379add.tar.bz2 gentoo-2-fd4350c4083bb4b0f94b059e8816869777379add.zip |
Version bump, inherit cleanup
(Portage version: 2.1.10.62/cvs/Linux x86_64)
-rw-r--r-- | net-misc/mosh/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/mosh/mosh-1.2.1.ebuild (renamed from net-misc/mosh/mosh-1.2.0.95.ebuild) | 22 | ||||
-rw-r--r-- | net-misc/mosh/mosh-9999.ebuild | 4 |
3 files changed, 22 insertions, 12 deletions
diff --git a/net-misc/mosh/ChangeLog b/net-misc/mosh/ChangeLog index dfcc0b7af6b9..16abf418b5cf 100644 --- a/net-misc/mosh/ChangeLog +++ b/net-misc/mosh/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/mosh # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v 1.21 2012/05/23 22:27:31 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v 1.22 2012/05/27 06:21:28 xmw Exp $ + +*mosh-1.2.1 (27 May 2012) + + 27 May 2012; Michael Weber <xmw@gentoo.org> -mosh-1.2.0.95.ebuild, + +mosh-1.2.1.ebuild, mosh-9999.ebuild: + Version bump, inherit cleanup *mosh-1.2.0.97 (23 May 2012) diff --git a/net-misc/mosh/mosh-1.2.0.95.ebuild b/net-misc/mosh/mosh-1.2.1.ebuild index 281f93626118..8765d5db70bd 100644 --- a/net-misc/mosh/mosh-1.2.0.95.ebuild +++ b/net-misc/mosh/mosh-1.2.1.ebuild @@ -1,19 +1,17 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/mosh-1.2.0.95.ebuild,v 1.2 2012/05/23 22:27:31 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/mosh-1.2.1.ebuild,v 1.1 2012/05/27 06:21:28 xmw Exp $ EAPI=4 -inherit autotools eutils toolchain-funcs - DESCRIPTION="Mobile shell that supports roaming and intelligent local echo" HOMEPAGE="http://mosh.mit.edu" -SRC_URI="mirror://gentoo/${P}.tar.gz" +SRC_URI="https://github.com/downloads/keithw/${PN}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="+client examples +server +utempter" +IUSE="bash-completion +client examples +server ufw +utempter" REQUIRED_USE="|| ( client server ) examples? ( client )" @@ -26,15 +24,14 @@ RDEPEND="dev-libs/protobuf DEPEND="${RDEPEND} virtual/pkgconfig" -src_prepare() { - eautoreconf -} - src_configure() { econf \ + $(use_enable test tests) \ + $(use_enable bash-completion completion) \ $(use_enable client) \ $(use_enable server) \ $(use_enable examples) \ + $(use_enable ufw) \ $(use_with utempter) } @@ -42,6 +39,13 @@ src_compile() { emake V=1 } +src_test() { + einfo "running test encrypt-decrypt" + ./src/tests/encrypt-decrypt -q || die + einfo "running test ocb-aes" + ./src/tests/ocb-aes -q || die +} + src_install() { default diff --git a/net-misc/mosh/mosh-9999.ebuild b/net-misc/mosh/mosh-9999.ebuild index 960d28ecc9f4..0d894369ecdf 100644 --- a/net-misc/mosh/mosh-9999.ebuild +++ b/net-misc/mosh/mosh-9999.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/mosh-9999.ebuild,v 1.9 2012/05/23 22:27:31 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/mosh-9999.ebuild,v 1.10 2012/05/27 06:21:28 xmw Exp $ EAPI=4 EGIT_REPO_URI="https://github.com/keithw/mosh.git" -inherit autotools git-2 toolchain-funcs +inherit autotools git-2 DESCRIPTION="Mobile shell that supports roaming and intelligent local echo" HOMEPAGE="http://mosh.mit.edu" |