public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-analyzer/mtr: mtr-0.86.ebuild ChangeLog
@ 2014-12-27 11:48 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2014-12-27 11:48 UTC (permalink / raw
  To: gentoo-commits

jer         14/12/27 11:48:45

  Modified:             ChangeLog
  Added:                mtr-0.86.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.162                net-analyzer/mtr/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?rev=1.162&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?rev=1.162&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?r1=1.161&r2=1.162

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v
retrieving revision 1.161
retrieving revision 1.162
diff -u -r1.161 -r1.162
--- ChangeLog	18 Jul 2014 14:31:29 -0000	1.161
+++ ChangeLog	27 Dec 2014 11:48:45 -0000	1.162
@@ -1,6 +1,11 @@
 # ChangeLog for net-analyzer/mtr
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.161 2014/07/18 14:31:29 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.162 2014/12/27 11:48:45 jer Exp $
+
+*mtr-0.86 (27 Dec 2014)
+
+  27 Dec 2014; Jeroen Roovers <jer@gentoo.org> +mtr-0.86.ebuild:
+  Version bump.
 
   18 Jul 2014; Tobias Klausmann <klausman@gentoo.org>
   mtr-0.85_p20140126.ebuild:



1.1                  net-analyzer/mtr/mtr-0.86.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?rev=1.1&content-type=text/plain

Index: mtr-0.86.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v 1.1 2014/12/27 11:48:45 jer Exp $

EAPI=5
inherit eutils flag-o-matic

DESCRIPTION="My TraceRoute, an Excellent network diagnostic tool"
HOMEPAGE="http://www.bitwizard.nl/mtr/"
SRC_URI="ftp://ftp.bitwizard.nl/mtr/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="gtk ipv6 suid"

RDEPEND="
	sys-libs/ncurses
	gtk? (
		dev-libs/glib:2
		x11-libs/gtk+:2
	)
"
DEPEND="
	${RDEPEND}
	virtual/pkgconfig
"

DOCS=( AUTHORS FORMATS NEWS README SECURITY TODO )

src_configure() {
	# In the source's configure script -lresolv is commented out. Apparently it
	# is needed for 64bit macos still.
	[[ ${CHOST} == *-darwin* ]] && append-libs -lresolv

	econf \
		--disable-gtktest \
		$(use_enable ipv6) \
		$(use_with gtk)
}

src_install() {
	default

	if use !prefix ; then
		fowners root:0 /usr/sbin/mtr
		if use suid; then
			fperms 4711 /usr/sbin/mtr
		else
			fperms 0710 /usr/sbin/mtr
		fi
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/mtr: mtr-0.86.ebuild ChangeLog
@ 2014-12-27 12:00 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2014-12-27 12:00 UTC (permalink / raw
  To: gentoo-commits

jer         14/12/27 12:00:51

  Modified:             mtr-0.86.ebuild ChangeLog
  Log:
  Inherit fcaps.eclass, drop USE=suid by Kevin Korb (bug #483080).
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.2                  net-analyzer/mtr/mtr-0.86.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?r1=1.1&r2=1.2

Index: mtr-0.86.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mtr-0.86.ebuild	27 Dec 2014 11:48:45 -0000	1.1
+++ mtr-0.86.ebuild	27 Dec 2014 12:00:51 -0000	1.2
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v 1.1 2014/12/27 11:48:45 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v 1.2 2014/12/27 12:00:51 jer Exp $
 
 EAPI=5
-inherit eutils flag-o-matic
+inherit eutils fcaps flag-o-matic
 
 DESCRIPTION="My TraceRoute, an Excellent network diagnostic tool"
 HOMEPAGE="http://www.bitwizard.nl/mtr/"
@@ -12,7 +12,7 @@
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="gtk ipv6 suid"
+IUSE="gtk ipv6"
 
 RDEPEND="
 	sys-libs/ncurses
@@ -27,6 +27,7 @@
 "
 
 DOCS=( AUTHORS FORMATS NEWS README SECURITY TODO )
+FILECAPS=( cap_net_raw /usr/sbin/mtr )
 
 src_configure() {
 	# In the source's configure script -lresolv is commented out. Apparently it
@@ -34,20 +35,7 @@
 	[[ ${CHOST} == *-darwin* ]] && append-libs -lresolv
 
 	econf \
-		--disable-gtktest \
 		$(use_enable ipv6) \
-		$(use_with gtk)
-}
-
-src_install() {
-	default
-
-	if use !prefix ; then
-		fowners root:0 /usr/sbin/mtr
-		if use suid; then
-			fperms 4711 /usr/sbin/mtr
-		else
-			fperms 0710 /usr/sbin/mtr
-		fi
-	fi
+		$(use_with gtk) \
+		--disable-gtktest
 }



1.163                net-analyzer/mtr/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?rev=1.163&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?rev=1.163&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?r1=1.162&r2=1.163

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v
retrieving revision 1.162
retrieving revision 1.163
diff -u -r1.162 -r1.163
--- ChangeLog	27 Dec 2014 11:48:45 -0000	1.162
+++ ChangeLog	27 Dec 2014 12:00:51 -0000	1.163
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/mtr
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.162 2014/12/27 11:48:45 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.163 2014/12/27 12:00:51 jer Exp $
+
+  27 Dec 2014; Jeroen Roovers <jer@gentoo.org> mtr-0.86.ebuild:
+  Inherit fcaps.eclass, drop USE=suid by Kevin Korb (bug #483080).
 
 *mtr-0.86 (27 Dec 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/mtr: mtr-0.86.ebuild ChangeLog
@ 2015-01-28 13:35 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 9+ messages in thread
From: Tobias Klausmann (klausman) @ 2015-01-28 13:35 UTC (permalink / raw
  To: gentoo-commits

klausman    15/01/28 13:35:42

  Modified:             mtr-0.86.ebuild ChangeLog
  Log:
  Stable on alpha, bug 537936
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key CE5D54E8)

Revision  Changes    Path
1.4                  net-analyzer/mtr/mtr-0.86.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?r1=1.3&r2=1.4

Index: mtr-0.86.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mtr-0.86.ebuild	27 Jan 2015 14:10:33 -0000	1.3
+++ mtr-0.86.ebuild	28 Jan 2015 13:35:42 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v 1.3 2015/01/27 14:10:33 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v 1.4 2015/01/28 13:35:42 klausman Exp $
 
 EAPI=5
 inherit eutils fcaps flag-o-matic
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="gtk ipv6"
 
 RDEPEND="



1.166                net-analyzer/mtr/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?rev=1.166&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?rev=1.166&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?r1=1.165&r2=1.166

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v
retrieving revision 1.165
retrieving revision 1.166
diff -u -r1.165 -r1.166
--- ChangeLog	27 Jan 2015 14:10:33 -0000	1.165
+++ ChangeLog	28 Jan 2015 13:35:42 -0000	1.166
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/mtr
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.165 2015/01/27 14:10:33 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.166 2015/01/28 13:35:42 klausman Exp $
+
+  28 Jan 2015; Tobias Klausmann <klausman@gentoo.org> mtr-0.86.ebuild:
+  Stable on alpha, bug 537936
 
   27 Jan 2015; Jeroen Roovers <jer@gentoo.org> mtr-0.86.ebuild, metadata.xml:
   Stable for HPPA (bug #537936).





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/mtr: mtr-0.86.ebuild ChangeLog
@ 2015-01-31 13:16 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-01-31 13:16 UTC (permalink / raw
  To: gentoo-commits

ago         15/01/31 13:16:38

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

Revision  Changes    Path
1.5                  net-analyzer/mtr/mtr-0.86.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?r1=1.4&r2=1.5

Index: mtr-0.86.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- mtr-0.86.ebuild	28 Jan 2015 13:35:42 -0000	1.4
+++ mtr-0.86.ebuild	31 Jan 2015 13:16:38 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v 1.4 2015/01/28 13:35:42 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v 1.5 2015/01/31 13:16:38 ago Exp $
 
 EAPI=5
 inherit eutils fcaps flag-o-matic
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="gtk ipv6"
 
 RDEPEND="



1.167                net-analyzer/mtr/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?rev=1.167&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?rev=1.167&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?r1=1.166&r2=1.167

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v
retrieving revision 1.166
retrieving revision 1.167
diff -u -r1.166 -r1.167
--- ChangeLog	28 Jan 2015 13:35:42 -0000	1.166
+++ ChangeLog	31 Jan 2015 13:16:38 -0000	1.167
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/mtr
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.166 2015/01/28 13:35:42 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.167 2015/01/31 13:16:38 ago Exp $
+
+  31 Jan 2015; Agostino Sarubbo <ago@gentoo.org> mtr-0.86.ebuild:
+  Stable for amd64, wrt bug #537936
 
   28 Jan 2015; Tobias Klausmann <klausman@gentoo.org> mtr-0.86.ebuild:
   Stable on alpha, bug 537936





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/mtr: mtr-0.86.ebuild ChangeLog
@ 2015-02-01 13:46 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-02-01 13:46 UTC (permalink / raw
  To: gentoo-commits

ago         15/02/01 13:46:56

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

Revision  Changes    Path
1.6                  net-analyzer/mtr/mtr-0.86.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?r1=1.5&r2=1.6

Index: mtr-0.86.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- mtr-0.86.ebuild	31 Jan 2015 13:16:38 -0000	1.5
+++ mtr-0.86.ebuild	1 Feb 2015 13:46:56 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v 1.5 2015/01/31 13:16:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v 1.6 2015/02/01 13:46:56 ago Exp $
 
 EAPI=5
 inherit eutils fcaps flag-o-matic
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="gtk ipv6"
 
 RDEPEND="



1.168                net-analyzer/mtr/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?rev=1.168&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?rev=1.168&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?r1=1.167&r2=1.168

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v
retrieving revision 1.167
retrieving revision 1.168
diff -u -r1.167 -r1.168
--- ChangeLog	31 Jan 2015 13:16:38 -0000	1.167
+++ ChangeLog	1 Feb 2015 13:46:56 -0000	1.168
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/mtr
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.167 2015/01/31 13:16:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.168 2015/02/01 13:46:56 ago Exp $
+
+  01 Feb 2015; Agostino Sarubbo <ago@gentoo.org> mtr-0.86.ebuild:
+  Stable for x86, wrt bug #537936
 
   31 Jan 2015; Agostino Sarubbo <ago@gentoo.org> mtr-0.86.ebuild:
   Stable for amd64, wrt bug #537936





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/mtr: mtr-0.86.ebuild ChangeLog
@ 2015-02-21 12:17 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-02-21 12:17 UTC (permalink / raw
  To: gentoo-commits

ago         15/02/21 12:17:56

  Modified:             mtr-0.86.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #537936
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  net-analyzer/mtr/mtr-0.86.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?r1=1.7&r2=1.8

Index: mtr-0.86.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- mtr-0.86.ebuild	1 Feb 2015 21:09:08 -0000	1.7
+++ mtr-0.86.ebuild	21 Feb 2015 12:17:56 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v 1.7 2015/02/01 21:09:08 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v 1.8 2015/02/21 12:17:56 ago Exp $
 
 EAPI=5
 inherit eutils fcaps flag-o-matic
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="gtk ipv6"
 
 RDEPEND="



1.170                net-analyzer/mtr/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?rev=1.170&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?rev=1.170&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?r1=1.169&r2=1.170

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -r1.169 -r1.170
--- ChangeLog	1 Feb 2015 21:09:08 -0000	1.169
+++ ChangeLog	21 Feb 2015 12:17:56 -0000	1.170
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/mtr
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.169 2015/02/01 21:09:08 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.170 2015/02/21 12:17:56 ago Exp $
+
+  21 Feb 2015; Agostino Sarubbo <ago@gentoo.org> mtr-0.86.ebuild:
+  Stable for ppc, wrt bug #537936
 
   01 Feb 2015; Markus Meier <maekke@gentoo.org> mtr-0.86.ebuild:
   arm stable, bug #537936





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/mtr: mtr-0.86.ebuild ChangeLog
@ 2015-02-23 11:16 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-02-23 11:16 UTC (permalink / raw
  To: gentoo-commits

ago         15/02/23 11:16:11

  Modified:             mtr-0.86.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #537936
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.9                  net-analyzer/mtr/mtr-0.86.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?r1=1.8&r2=1.9

Index: mtr-0.86.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- mtr-0.86.ebuild	21 Feb 2015 12:17:56 -0000	1.8
+++ mtr-0.86.ebuild	23 Feb 2015 11:16:11 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v 1.8 2015/02/21 12:17:56 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v 1.9 2015/02/23 11:16:11 ago Exp $
 
 EAPI=5
 inherit eutils fcaps flag-o-matic
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="gtk ipv6"
 
 RDEPEND="



1.171                net-analyzer/mtr/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?rev=1.171&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?rev=1.171&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?r1=1.170&r2=1.171

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -r1.170 -r1.171
--- ChangeLog	21 Feb 2015 12:17:56 -0000	1.170
+++ ChangeLog	23 Feb 2015 11:16:11 -0000	1.171
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/mtr
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.170 2015/02/21 12:17:56 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.171 2015/02/23 11:16:11 ago Exp $
+
+  23 Feb 2015; Agostino Sarubbo <ago@gentoo.org> mtr-0.86.ebuild:
+  Stable for ppc64, wrt bug #537936
 
   21 Feb 2015; Agostino Sarubbo <ago@gentoo.org> mtr-0.86.ebuild:
   Stable for ppc, wrt bug #537936





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/mtr: mtr-0.86.ebuild ChangeLog
@ 2015-02-27 11:09 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-02-27 11:09 UTC (permalink / raw
  To: gentoo-commits

ago         15/02/27 11:09:38

  Modified:             mtr-0.86.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #537936
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 net-analyzer/mtr/mtr-0.86.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?r1=1.9&r2=1.10

Index: mtr-0.86.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- mtr-0.86.ebuild	23 Feb 2015 11:16:11 -0000	1.9
+++ mtr-0.86.ebuild	27 Feb 2015 11:09:38 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v 1.9 2015/02/23 11:16:11 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v 1.10 2015/02/27 11:09:38 ago Exp $
 
 EAPI=5
 inherit eutils fcaps flag-o-matic
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="gtk ipv6"
 
 RDEPEND="



1.172                net-analyzer/mtr/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?rev=1.172&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?rev=1.172&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?r1=1.171&r2=1.172

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v
retrieving revision 1.171
retrieving revision 1.172
diff -u -r1.171 -r1.172
--- ChangeLog	23 Feb 2015 11:16:11 -0000	1.171
+++ ChangeLog	27 Feb 2015 11:09:38 -0000	1.172
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/mtr
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.171 2015/02/23 11:16:11 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.172 2015/02/27 11:09:38 ago Exp $
+
+  27 Feb 2015; Agostino Sarubbo <ago@gentoo.org> mtr-0.86.ebuild:
+  Stable for sparc, wrt bug #537936
 
   23 Feb 2015; Agostino Sarubbo <ago@gentoo.org> mtr-0.86.ebuild:
   Stable for ppc64, wrt bug #537936





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/mtr: mtr-0.86.ebuild ChangeLog
@ 2015-02-28 13:34 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-02-28 13:34 UTC (permalink / raw
  To: gentoo-commits

ago         15/02/28 13:34:27

  Modified:             mtr-0.86.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #537936
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.11                 net-analyzer/mtr/mtr-0.86.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild?r1=1.10&r2=1.11

Index: mtr-0.86.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- mtr-0.86.ebuild	27 Feb 2015 11:09:38 -0000	1.10
+++ mtr-0.86.ebuild	28 Feb 2015 13:34:27 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v 1.10 2015/02/27 11:09:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.86.ebuild,v 1.11 2015/02/28 13:34:27 ago Exp $
 
 EAPI=5
 inherit eutils fcaps flag-o-matic
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="gtk ipv6"
 
 RDEPEND="



1.173                net-analyzer/mtr/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?rev=1.173&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?rev=1.173&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/mtr/ChangeLog?r1=1.172&r2=1.173

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v
retrieving revision 1.172
retrieving revision 1.173
diff -u -r1.172 -r1.173
--- ChangeLog	27 Feb 2015 11:09:38 -0000	1.172
+++ ChangeLog	28 Feb 2015 13:34:27 -0000	1.173
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/mtr
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.172 2015/02/27 11:09:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.173 2015/02/28 13:34:27 ago Exp $
+
+  28 Feb 2015; Agostino Sarubbo <ago@gentoo.org> mtr-0.86.ebuild:
+  Stable for ia64, wrt bug #537936
 
   27 Feb 2015; Agostino Sarubbo <ago@gentoo.org> mtr-0.86.ebuild:
   Stable for sparc, wrt bug #537936





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

end of thread, other threads:[~2015-02-28 13:34 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-27 12:00 [gentoo-commits] gentoo-x86 commit in net-analyzer/mtr: mtr-0.86.ebuild ChangeLog Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2015-02-28 13:34 Agostino Sarubbo (ago)
2015-02-27 11:09 Agostino Sarubbo (ago)
2015-02-23 11:16 Agostino Sarubbo (ago)
2015-02-21 12:17 Agostino Sarubbo (ago)
2015-02-01 13:46 Agostino Sarubbo (ago)
2015-01-31 13:16 Agostino Sarubbo (ago)
2015-01-28 13:35 Tobias Klausmann (klausman)
2014-12-27 11:48 Jeroen Roovers (jer)

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