public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-misc/mosh: mosh-1.2.4.ebuild ChangeLog
@ 2013-03-27 15:23 Michael Weber (xmw)
  0 siblings, 0 replies; 7+ messages in thread
From: Michael Weber (xmw) @ 2013-03-27 15:23 UTC (permalink / raw
  To: gentoo-commits

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 <xmw@gentoo.org> +mosh-1.2.4.ebuild:
+  Version bump
 
   13 Mar 2013; Michael Weber <xmw@gentoo.org> 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
}





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-misc/mosh: mosh-1.2.4.ebuild ChangeLog
@ 2013-05-19  9:56 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-19  9:56 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/19 09:56:26

  Modified:             mosh-1.2.4.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #470562
  
  (Portage version: 2.1.11.63/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.2                  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.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild?r1=1.1&r2=1.2

Index: mosh-1.2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mosh-1.2.4.ebuild	27 Mar 2013 15:23:26 -0000	1.1
+++ mosh-1.2.4.ebuild	19 May 2013 09:56:26 -0000	1.2
@@ -1,6 +1,6 @@
 # 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 $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild,v 1.2 2013/05/19 09:56:26 ago Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~mips ~ppc ~x86 ~arm-linux ~x86-linux"
+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 )"



1.40                 net-misc/mosh/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?r1=1.39&r2=1.40

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog	27 Mar 2013 15:23:26 -0000	1.39
+++ ChangeLog	19 May 2013 09:56:26 -0000	1.40
@@ -1,6 +1,9 @@
 # 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.39 2013/03/27 15:23:26 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v 1.40 2013/05/19 09:56:26 ago Exp $
+
+  19 May 2013; Agostino Sarubbo <ago@gentoo.org> mosh-1.2.4.ebuild:
+  Stable for amd64, wrt bug #470562
 
 *mosh-1.2.4 (27 Mar 2013)
 





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-misc/mosh: mosh-1.2.4.ebuild ChangeLog
@ 2013-05-20  8:21 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-20  8:21 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/20 08:21:03

  Modified:             mosh-1.2.4.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #470562
  
  (Portage version: 2.1.11.63/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  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.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild?r1=1.2&r2=1.3

Index: mosh-1.2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mosh-1.2.4.ebuild	19 May 2013 09:56:26 -0000	1.2
+++ mosh-1.2.4.ebuild	20 May 2013 08:21:02 -0000	1.3
@@ -1,6 +1,6 @@
 # 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.2 2013/05/19 09:56:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild,v 1.3 2013/05/20 08:21:02 ago Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~mips ~ppc ~x86 ~arm-linux ~x86-linux"
+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 )"



1.41                 net-misc/mosh/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?r1=1.40&r2=1.41

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog	19 May 2013 09:56:26 -0000	1.40
+++ ChangeLog	20 May 2013 08:21:02 -0000	1.41
@@ -1,6 +1,9 @@
 # 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.40 2013/05/19 09:56:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v 1.41 2013/05/20 08:21:02 ago Exp $
+
+  20 May 2013; Agostino Sarubbo <ago@gentoo.org> mosh-1.2.4.ebuild:
+  Stable for x86, wrt bug #470562
 
   19 May 2013; Agostino Sarubbo <ago@gentoo.org> mosh-1.2.4.ebuild:
   Stable for amd64, wrt bug #470562





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-misc/mosh: mosh-1.2.4.ebuild ChangeLog
@ 2013-05-20 12:42 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-20 12:42 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/20 12:42:06

  Modified:             mosh-1.2.4.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #470562
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  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.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild?r1=1.3&r2=1.4

Index: mosh-1.2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mosh-1.2.4.ebuild	20 May 2013 08:21:02 -0000	1.3
+++ mosh-1.2.4.ebuild	20 May 2013 12:42:06 -0000	1.4
@@ -1,6 +1,6 @@
 # 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.3 2013/05/20 08:21:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild,v 1.4 2013/05/20 12:42:06 ago Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~mips ~ppc x86 ~arm-linux ~x86-linux"
+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 )"



1.42                 net-misc/mosh/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?r1=1.41&r2=1.42

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog	20 May 2013 08:21:02 -0000	1.41
+++ ChangeLog	20 May 2013 12:42:06 -0000	1.42
@@ -1,6 +1,9 @@
 # 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.41 2013/05/20 08:21:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v 1.42 2013/05/20 12:42:06 ago Exp $
+
+  20 May 2013; Agostino Sarubbo <ago@gentoo.org> mosh-1.2.4.ebuild:
+  Stable for ppc, wrt bug #470562
 
   20 May 2013; Agostino Sarubbo <ago@gentoo.org> mosh-1.2.4.ebuild:
   Stable for x86, wrt bug #470562





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-misc/mosh: mosh-1.2.4.ebuild ChangeLog
@ 2013-08-13 12:57 Michael Weber (xmw)
  0 siblings, 0 replies; 7+ messages in thread
From: Michael Weber (xmw) @ 2013-08-13 12:57 UTC (permalink / raw
  To: gentoo-commits

xmw         13/08/13 12:57:05

  Modified:             mosh-1.2.4.ebuild ChangeLog
  Log:
  Add ~arm keyword
  
  (Portage version: 2.2.0_alpha194/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)

Revision  Changes    Path
1.6                  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.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild?r1=1.5&r2=1.6

Index: mosh-1.2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- mosh-1.2.4.ebuild	20 Jul 2013 13:08:23 -0000	1.5
+++ mosh-1.2.4.ebuild	13 Aug 2013 12:57:05 -0000	1.6
@@ -1,6 +1,6 @@
 # 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.5 2013/07/20 13:08:23 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild,v 1.6 2013/08/13 12:57:05 xmw Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~mips ppc x86 ~arm-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~mips ppc x86 ~arm-linux ~x86-linux"
 IUSE="+client examples +mosh-hardening +server ufw +utempter"
 REQUIRED_USE="|| ( client server )
 	examples? ( client )"



1.45                 net-misc/mosh/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?rev=1.45&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?rev=1.45&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?r1=1.44&r2=1.45

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog	20 Jul 2013 13:08:24 -0000	1.44
+++ ChangeLog	13 Aug 2013 12:57:05 -0000	1.45
@@ -1,6 +1,9 @@
 # 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.44 2013/07/20 13:08:24 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v 1.45 2013/08/13 12:57:05 xmw Exp $
+
+  13 Aug 2013; Michael Weber <xmw@gentoo.org> mosh-1.2.4.ebuild:
+  Add ~arm keyword
 
   20 Jul 2013; Michael Weber <xmw@gentoo.org> mosh-1.2.4.ebuild,
   mosh-9999.ebuild:





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-misc/mosh: mosh-1.2.4.ebuild ChangeLog
@ 2013-12-14 21:02 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 7+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2013-12-14 21:02 UTC (permalink / raw
  To: gentoo-commits

bicatali    13/12/14 21:02:45

  Modified:             mosh-1.2.4.ebuild ChangeLog
  Log:
  Keyword amd64-linux
  
  (Portage version: 2.2.7-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)

Revision  Changes    Path
1.7                  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.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild?r1=1.6&r2=1.7

Index: mosh-1.2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- mosh-1.2.4.ebuild	13 Aug 2013 12:57:05 -0000	1.6
+++ mosh-1.2.4.ebuild	14 Dec 2013 21:02:45 -0000	1.7
@@ -1,6 +1,6 @@
 # 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.6 2013/08/13 12:57:05 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild,v 1.7 2013/12/14 21:02:45 bicatali Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~mips ppc x86 ~arm-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~mips ppc x86 ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="+client examples +mosh-hardening +server ufw +utempter"
 REQUIRED_USE="|| ( client server )
 	examples? ( client )"



1.46                 net-misc/mosh/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?r1=1.45&r2=1.46

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog	13 Aug 2013 12:57:05 -0000	1.45
+++ ChangeLog	14 Dec 2013 21:02:45 -0000	1.46
@@ -1,6 +1,9 @@
 # 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.45 2013/08/13 12:57:05 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v 1.46 2013/12/14 21:02:45 bicatali Exp $
+
+  14 Dec 2013; Sébastien Fabbro <bicatali@gentoo.org> mosh-1.2.4.ebuild:
+  Keyword amd64-linux
 
   13 Aug 2013; Michael Weber <xmw@gentoo.org> mosh-1.2.4.ebuild:
   Add ~arm keyword





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-misc/mosh: mosh-1.2.4.ebuild ChangeLog
@ 2014-04-06 11:41 Fabian Groffen (grobian)
  0 siblings, 0 replies; 7+ messages in thread
From: Fabian Groffen (grobian) @ 2014-04-06 11:41 UTC (permalink / raw
  To: gentoo-commits

grobian     14/04/06 11:41:31

  Modified:             mosh-1.2.4.ebuild ChangeLog
  Log:
  Keyworded ~x64-macos, bug #506494
  
  (Portage version: 2.2.8-prefix/cvs/SunOS i386, signed Manifest commit with key 0x5F75F607C5C74E89)

Revision  Changes    Path
1.8                  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.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild?r1=1.7&r2=1.8

Index: mosh-1.2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- mosh-1.2.4.ebuild	14 Dec 2013 21:02:45 -0000	1.7
+++ mosh-1.2.4.ebuild	6 Apr 2014 11:41:31 -0000	1.8
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 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.7 2013/12/14 21:02:45 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/mosh-1.2.4.ebuild,v 1.8 2014/04/06 11:41:31 grobian Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~mips ppc x86 ~amd64-linux ~arm-linux ~x86-linux"
+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 )"



1.47                 net-misc/mosh/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?r1=1.46&r2=1.47

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog	14 Dec 2013 21:02:45 -0000	1.46
+++ ChangeLog	6 Apr 2014 11:41:31 -0000	1.47
@@ -1,6 +1,9 @@
 # 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.46 2013/12/14 21:02:45 bicatali Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v 1.47 2014/04/06 11:41:31 grobian Exp $
+
+  06 Apr 2014; Fabian Groffen <grobian@gentoo.org> mosh-1.2.4.ebuild:
+  Keyworded ~x64-macos, bug #506494
 
   14 Dec 2013; Sébastien Fabbro <bicatali@gentoo.org> mosh-1.2.4.ebuild:
   Keyword amd64-linux





^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2014-04-06 11:41 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-06 11:41 [gentoo-commits] gentoo-x86 commit in net-misc/mosh: mosh-1.2.4.ebuild ChangeLog Fabian Groffen (grobian)
  -- strict thread matches above, loose matches on Subject: below --
2013-12-14 21:02 Sebastien Fabbro (bicatali)
2013-08-13 12:57 Michael Weber (xmw)
2013-05-20 12:42 Agostino Sarubbo (ago)
2013-05-20  8:21 Agostino Sarubbo (ago)
2013-05-19  9:56 Agostino Sarubbo (ago)
2013-03-27 15:23 Michael Weber (xmw)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox