public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog
@ 2012-12-01 18:06 Jeroen Roovers (jer)
  0 siblings, 0 replies; 19+ messages in thread
From: Jeroen Roovers (jer) @ 2012-12-01 18:06 UTC (permalink / raw
  To: gentoo-commits

jer         12/12/01 18:06:08

  Modified:             ChangeLog
  Added:                nmap-6.25.ebuild
  Log:
  Version bump by Anton Bolshakov (bug #445348).
  
  (Portage version: 2.2.0_alpha143/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.261                net-analyzer/nmap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v
retrieving revision 1.260
retrieving revision 1.261
diff -u -r1.260 -r1.261
--- ChangeLog	1 Dec 2012 17:30:48 -0000	1.260
+++ ChangeLog	1 Dec 2012 18:06:08 -0000	1.261
@@ -1,6 +1,11 @@
 # ChangeLog for net-analyzer/nmap
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.260 2012/12/01 17:30:48 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.261 2012/12/01 18:06:08 jer Exp $
+
+*nmap-6.25 (01 Dec 2012)
+
+  01 Dec 2012; Jeroen Roovers <jer@gentoo.org> +nmap-6.25.ebuild:
+  Version bump by Anton Bolshakov (bug #445348).
 
   01 Dec 2012; Jeroen Roovers <jer@gentoo.org> -nmap-5.21-r1.ebuild,
   -nmap-5.35.ebuild, nmap-6.01.ebuild:



1.1                  net-analyzer/nmap/nmap-6.25.ebuild

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

Index: nmap-6.25.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.1 2012/12/01 18:06:08 jer Exp $

EAPI="4"
PYTHON_DEPEND="2"

inherit eutils flag-o-matic python

MY_P=${P/_beta/BETA}

DESCRIPTION="A utility for network exploration or security auditing"
HOMEPAGE="http://nmap.org/"
SRC_URI="
	http://nmap.org/dist/${MY_P}.tar.bz2
	http://dev.gentoo.org/~jer/nmap-logo-64.png
"

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 ~sparc-solaris ~x86-solaris"
IUSE="gtk lua ncat ndiff nmap-update nping ssl"

NMAP_PYTHON_DEPEND="
|| (
	dev-lang/python:2.7[sqlite]
	dev-lang/python:2.6[sqlite]
	dev-lang/python:2.5[sqlite]
	dev-python/pysqlite:2
)
"
DEPEND="
	dev-libs/apr
	dev-libs/libpcre
	net-libs/libpcap[ipv6]
	gtk? (
		>=x11-libs/gtk+-2.6:2
		>=dev-python/pygtk-2.6
		${NMAP_PYTHON_DEPEND}
	)
	lua? ( >=dev-lang/lua-5.1.4-r1[deprecated] )
	ndiff? ( ${NMAP_PYTHON_DEPEND} )
	nmap-update? ( dev-libs/apr dev-vcs/subversion )
	ssl? ( dev-libs/openssl )
"
RDEPEND="${DEPEND}"

S="${WORKDIR}/${MY_P}"

pkg_setup() {
	python_set_active_version 2
}

src_unpack() {
	unpack ${MY_P}.tar.bz2
}

src_prepare() {
	epatch "${FILESDIR}"/${PN}-4.75-include.patch
	epatch "${FILESDIR}"/${PN}-4.75-nolua.patch
	epatch "${FILESDIR}"/${PN}-5.10_beta1-string.patch
	epatch "${FILESDIR}"/${PN}-5.21-python.patch
	epatch "${FILESDIR}"/${PN}-6.01-make.patch
	sed -i \
		-e 's/-m 755 -s ncat/-m 755 ncat/' \
		ncat/Makefile.in || die

	# Fix desktop files wrt bug #432714
	sed -i \
		-e '/^Encoding/d' \
		-e 's|^Categories=.*|Categories=Network;System;Security;|g' \
		zenmap/install_scripts/unix/zenmap-root.desktop \
		zenmap/install_scripts/unix/zenmap.desktop || die
}

src_configure() {
	# The bundled libdnet is incompatible with the version available in the
	# tree, so we cannot use the system library here.
	econf \
		$(use_with gtk zenmap) \
		$(use_with lua liblua) \
		$(use_with ncat) \
		$(use_with ndiff) \
		$(use_with nmap-update) \
		$(use_with nping) \
		$(use_with ssl openssl) \
		--with-libdnet=included
}

src_install() {
	LC_ALL=C emake -j1 \
		DESTDIR="${D}" \
		STRIP=: \
		nmapdatadir="${EPREFIX}"/usr/share/nmap \
		install
	if use nmap-update;then
		LC_ALL=C emake -j1 \
			-C nmap-update \
			DESTDIR="${D}" \
			STRIP=: \
			nmapdatadir="${EPREFIX}"/usr/share/nmap \
			install
	fi

	dodoc CHANGELOG HACKING docs/README docs/*.txt

	use gtk && doicon "${DISTDIR}/nmap-logo-64.png"
}





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog
@ 2012-12-02 15:57 Jeroen Roovers (jer)
  0 siblings, 0 replies; 19+ messages in thread
From: Jeroen Roovers (jer) @ 2012-12-02 15:57 UTC (permalink / raw
  To: gentoo-commits

jer         12/12/02 15:57:07

  Modified:             nmap-6.25.ebuild ChangeLog
  Log:
  Fix building with USE=-lua by Anton Bolshakov (bug #445552).
  
  (Portage version: 2.2.0_alpha143/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.2                  net-analyzer/nmap/nmap-6.25.ebuild

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

Index: nmap-6.25.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nmap-6.25.ebuild	1 Dec 2012 18:06:08 -0000	1.1
+++ nmap-6.25.ebuild	2 Dec 2012 15:57:07 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.1 2012/12/01 18:06:08 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.2 2012/12/02 15:57:07 jer Exp $
 
 EAPI="4"
 PYTHON_DEPEND="2"
@@ -56,11 +56,13 @@
 }
 
 src_prepare() {
-	epatch "${FILESDIR}"/${PN}-4.75-include.patch
-	epatch "${FILESDIR}"/${PN}-4.75-nolua.patch
-	epatch "${FILESDIR}"/${PN}-5.10_beta1-string.patch
-	epatch "${FILESDIR}"/${PN}-5.21-python.patch
-	epatch "${FILESDIR}"/${PN}-6.01-make.patch
+	epatch \
+		"${FILESDIR}"/${PN}-4.75-include.patch \
+		"${FILESDIR}"/${PN}-4.75-nolua.patch \
+		"${FILESDIR}"/${PN}-5.10_beta1-string.patch \
+		"${FILESDIR}"/${PN}-5.21-python.patch \
+		"${FILESDIR}"/${PN}-6.01-make.patch \
+		"${FILESDIR}"/${PN}-6.25-lua.patch
 	sed -i \
 		-e 's/-m 755 -s ncat/-m 755 ncat/' \
 		ncat/Makefile.in || die



1.263                net-analyzer/nmap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v
retrieving revision 1.262
retrieving revision 1.263
diff -u -r1.262 -r1.263
--- ChangeLog	1 Dec 2012 21:30:34 -0000	1.262
+++ ChangeLog	2 Dec 2012 15:57:07 -0000	1.263
@@ -1,6 +1,10 @@
 # ChangeLog for net-analyzer/nmap
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.262 2012/12/01 21:30:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.263 2012/12/02 15:57:07 jer Exp $
+
+  02 Dec 2012; Jeroen Roovers <jer@gentoo.org> nmap-6.25.ebuild,
+  +files/nmap-6.25-lua.patch:
+  Fix building with USE=-lua by Anton Bolshakov (bug #445552).
 
   01 Dec 2012; <ago@gentoo.org> nmap-6.01.ebuild:
   Stable for amd64, wrt bug #445500





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog
@ 2012-12-03 12:45 Jeroen Roovers (jer)
  0 siblings, 0 replies; 19+ messages in thread
From: Jeroen Roovers (jer) @ 2012-12-03 12:45 UTC (permalink / raw
  To: gentoo-commits

jer         12/12/03 12:45:45

  Modified:             nmap-6.25.ebuild ChangeLog
  Log:
  Add IUSE=ipv6, IUSE=nls and LINGUAS (bug #445752 by Alex Turbov).
  
  (Portage version: 2.2.0_alpha143/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.3                  net-analyzer/nmap/nmap-6.25.ebuild

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

Index: nmap-6.25.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- nmap-6.25.ebuild	2 Dec 2012 15:57:07 -0000	1.2
+++ nmap-6.25.ebuild	3 Dec 2012 12:45:45 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.2 2012/12/02 15:57:07 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.3 2012/12/03 12:45:45 jer Exp $
 
 EAPI="4"
 PYTHON_DEPEND="2"
@@ -19,7 +19,12 @@
 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 ~sparc-solaris ~x86-solaris"
-IUSE="gtk lua ncat ndiff nmap-update nping ssl"
+
+IUSE="gtk ipv6 lua ncat ndiff nls nmap-update nping ssl"
+NMAP_LINGUAS="de fr hr it ja pt_BR ru"
+for lingua in ${NMAP_LINGUAS}; do
+	IUSE+=" linguas_${lingua}"
+done
 
 NMAP_PYTHON_DEPEND="
 || (
@@ -29,10 +34,10 @@
 	dev-python/pysqlite:2
 )
 "
-DEPEND="
+RDEPEND="
 	dev-libs/apr
 	dev-libs/libpcre
-	net-libs/libpcap[ipv6]
+	net-libs/libpcap[ipv6?]
 	gtk? (
 		>=x11-libs/gtk+-2.6:2
 		>=dev-python/pygtk-2.6
@@ -40,10 +45,14 @@
 	)
 	lua? ( >=dev-lang/lua-5.1.4-r1[deprecated] )
 	ndiff? ( ${NMAP_PYTHON_DEPEND} )
+	nls? ( virtual/libintl )
 	nmap-update? ( dev-libs/apr dev-vcs/subversion )
 	ssl? ( dev-libs/openssl )
 "
-RDEPEND="${DEPEND}"
+DEPEND="
+	${RDEPEND}
+	nls? ( sys-devel/gettext )
+"
 
 S="${WORKDIR}/${MY_P}"
 
@@ -67,6 +76,14 @@
 		-e 's/-m 755 -s ncat/-m 755 ncat/' \
 		ncat/Makefile.in || die
 
+	local lingua=''
+	for lingua in ${NMAP_LINGUAS}; do
+		rm -rf zenmap/share/zenmap/locale/${lingua}
+		if ! use linguas_${lingua}; then
+			rm -f zenmap/share/zenmap/locale/${lingua}.po
+		fi
+	done
+
 	# Fix desktop files wrt bug #432714
 	sed -i \
 		-e '/^Encoding/d' \
@@ -83,6 +100,7 @@
 		$(use_with lua liblua) \
 		$(use_with ncat) \
 		$(use_with ndiff) \
+		$(use_enable nls) \
 		$(use_with nmap-update) \
 		$(use_with nping) \
 		$(use_with ssl openssl) \



1.265                net-analyzer/nmap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v
retrieving revision 1.264
retrieving revision 1.265
diff -u -r1.264 -r1.265
--- ChangeLog	3 Dec 2012 12:29:51 -0000	1.264
+++ ChangeLog	3 Dec 2012 12:45:45 -0000	1.265
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/nmap
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.264 2012/12/03 12:29:51 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.265 2012/12/03 12:45:45 jer Exp $
+
+  03 Dec 2012; Jeroen Roovers <jer@gentoo.org> nmap-6.25.ebuild:
+  Add IUSE=ipv6, IUSE=nls and LINGUAS (bug #445752 by Alex Turbov).
 
   03 Dec 2012; Jeroen Roovers <jer@gentoo.org> nmap-6.01.ebuild:
   Add IUSE=ipv6 (bug #445734 by LeeL).





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog
@ 2012-12-03 19:52 Jeroen Roovers (jer)
  0 siblings, 0 replies; 19+ messages in thread
From: Jeroen Roovers (jer) @ 2012-12-03 19:52 UTC (permalink / raw
  To: gentoo-commits

jer         12/12/03 19:52:32

  Modified:             nmap-6.25.ebuild ChangeLog
  Log:
  Add even more LINGUAs by Alphat-PC (bug #445752).
  
  (Portage version: 2.2.0_alpha144/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.5                  net-analyzer/nmap/nmap-6.25.ebuild

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

Index: nmap-6.25.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- nmap-6.25.ebuild	3 Dec 2012 13:07:11 -0000	1.4
+++ nmap-6.25.ebuild	3 Dec 2012 19:52:32 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.4 2012/12/03 13:07:11 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.5 2012/12/03 19:52:32 jer Exp $
 
 EAPI="4"
 PYTHON_DEPEND="2"
@@ -21,7 +21,7 @@
 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 ~sparc-solaris ~x86-solaris"
 
 IUSE="gtk ipv6 +lua ncat ndiff nls nmap-update nping ssl"
-NMAP_LINGUAS="de fr hr it ja pt_BR ru"
+NMAP_LINGUAS="de es fr hr hu id it ja pl pt_BR pt_PT ro ru sk zh"
 for lingua in ${NMAP_LINGUAS}; do
 	IUSE+=" linguas_${lingua}"
 done
@@ -76,6 +76,7 @@
 		-e 's/-m 755 -s ncat/-m 755 ncat/' \
 		ncat/Makefile.in || die
 
+	mv docs/man-xlate/${PN}-j{p,a}.1 || die
 	if use nls; then
 		local lingua=''
 		for lingua in ${NMAP_LINGUAS}; do
@@ -92,6 +93,10 @@
 		done
 	fi
 
+	sed -i \
+		-e '/^ALL_LINGUAS =/{s|$| id|g;s|jp|ja|g}' \
+		Makefile.in || die
+
 	# Fix desktop files wrt bug #432714
 	sed -i \
 		-e '/^Encoding/d' \



1.268                net-analyzer/nmap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v
retrieving revision 1.267
retrieving revision 1.268
diff -u -r1.267 -r1.268
--- ChangeLog	3 Dec 2012 13:30:27 -0000	1.267
+++ ChangeLog	3 Dec 2012 19:52:32 -0000	1.268
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/nmap
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.267 2012/12/03 13:30:27 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.268 2012/12/03 19:52:32 jer Exp $
+
+  03 Dec 2012; Jeroen Roovers <jer@gentoo.org> nmap-6.25.ebuild:
+  Add even more LINGUAs by Alphat-PC (bug #445752).
 
   03 Dec 2012; Anthony G. Basile <blueness@gentoo.org> nmap-6.01.ebuild:
   stable ppc ppc64, bug #445500





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog
@ 2013-01-16 19:33 Jeroen Roovers (jer)
  0 siblings, 0 replies; 19+ messages in thread
From: Jeroen Roovers (jer) @ 2013-01-16 19:33 UTC (permalink / raw
  To: gentoo-commits

jer         13/01/16 19:33:08

  Modified:             nmap-6.25.ebuild ChangeLog
  Log:
  Fix AR/RANLIB again (bug #445524).
  
  (Portage version: 2.2.0_alpha154/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.10                 net-analyzer/nmap/nmap-6.25.ebuild

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

Index: nmap-6.25.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- nmap-6.25.ebuild	16 Jan 2013 09:21:02 -0000	1.9
+++ nmap-6.25.ebuild	16 Jan 2013 19:33:08 -0000	1.10
@@ -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-analyzer/nmap/nmap-6.25.ebuild,v 1.9 2013/01/16 09:21:02 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.10 2013/01/16 19:33:08 jer Exp $
 
 EAPI="4"
 PYTHON_DEPEND="2"
@@ -71,7 +71,8 @@
 		"${FILESDIR}"/${PN}-5.10_beta1-string.patch \
 		"${FILESDIR}"/${PN}-5.21-python.patch \
 		"${FILESDIR}"/${PN}-6.01-make.patch \
-		"${FILESDIR}"/${PN}-6.25-lua.patch
+		"${FILESDIR}"/${PN}-6.25-lua.patch \
+		"${FILESDIR}"/${PN}-6.25-liblua-ar.patch
 	sed -i \
 		-e 's/-m 755 -s ncat/-m 755 ncat/' \
 		ncat/Makefile.in || die
@@ -104,11 +105,6 @@
 		zenmap/install_scripts/unix/zenmap-root.desktop \
 		zenmap/install_scripts/unix/zenmap.desktop || die
 
-	# respect AR and RANLIB, wrt bug #445524
-	tc-export AR RANLIB
-	sed -i -e '/^RANLIB/d' -e '/^AR/d' liblinear/{,blas}/Makefile || die
-	sed -i -e '/^RANLIB/d' -e "/^AR/s/ar/$(tc-getAR)/" liblua/Makefile || die
-	sed -i -e '/^AR/d' {libnetutil,libpcre,nbase,nsock/src}/Makefile.in || die
 }
 
 src_configure() {
@@ -126,6 +122,12 @@
 		--with-libdnet=included
 }
 
+src_compile() {
+	emake \
+		AR=$(tc-getAR) \
+		RANLIB=$(tc-getRANLIB )
+}
+
 src_install() {
 	LC_ALL=C emake -j1 \
 		DESTDIR="${D}" \



1.281                net-analyzer/nmap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v
retrieving revision 1.280
retrieving revision 1.281
diff -u -r1.280 -r1.281
--- ChangeLog	16 Jan 2013 19:21:09 -0000	1.280
+++ ChangeLog	16 Jan 2013 19:33:08 -0000	1.281
@@ -1,6 +1,10 @@
 # ChangeLog for net-analyzer/nmap
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.280 2013/01/16 19:21:09 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.281 2013/01/16 19:33:08 jer Exp $
+
+  16 Jan 2013; Jeroen Roovers <jer@gentoo.org> nmap-6.25.ebuild,
+  +files/nmap-6.25-liblua-ar.patch:
+  Fix AR/RANLIB again (bug #445524).
 
   16 Jan 2013; Jeroen Roovers <jer@gentoo.org> nmap-6.01.ebuild:
   Fix AR/RANLIB again (bug #445524).





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog
@ 2013-01-31  2:31 Jeroen Roovers (jer)
  0 siblings, 0 replies; 19+ messages in thread
From: Jeroen Roovers (jer) @ 2013-01-31  2:31 UTC (permalink / raw
  To: gentoo-commits

jer         13/01/31 02:31:21

  Modified:             nmap-6.25.ebuild ChangeLog
  Log:
  Bring back USE=ipv6.
  
  (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.14                 net-analyzer/nmap/nmap-6.25.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?r1=1.13&r2=1.14

Index: nmap-6.25.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- nmap-6.25.ebuild	26 Jan 2013 18:18:04 -0000	1.13
+++ nmap-6.25.ebuild	31 Jan 2013 02:31:21 -0000	1.14
@@ -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-analyzer/nmap/nmap-6.25.ebuild,v 1.13 2013/01/26 18:18:04 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.14 2013/01/31 02:31:21 jer Exp $
 
 EAPI="4"
 
@@ -19,7 +19,7 @@
 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 ~sparc-solaris ~x86-solaris"
 
-IUSE="gtk +lua ncat ndiff nls nmap-update nping ssl"
+IUSE="gtk ipv6 +lua ncat ndiff nls nmap-update nping ssl"
 NMAP_LINGUAS="de es fr hr hu id it ja pl pt_BR pt_PT ro ru sk zh"
 for lingua in ${NMAP_LINGUAS}; do
 	IUSE+=" linguas_${lingua}"
@@ -36,7 +36,7 @@
 RDEPEND="
 	dev-libs/apr
 	dev-libs/libpcre
-	net-libs/libpcap
+	net-libs/libpcap[ipv6=]
 	gtk? (
 		>=x11-libs/gtk+-2.6:2
 		>=dev-python/pygtk-2.6
@@ -111,11 +111,12 @@
 	# The bundled libdnet is incompatible with the version available in the
 	# tree, so we cannot use the system library here.
 	econf \
+		$(use_enable ipv6) \
+		$(use_enable nls) \
 		$(use_with gtk zenmap) \
 		$(use_with lua liblua) \
 		$(use_with ncat) \
 		$(use_with ndiff) \
-		$(use_enable nls) \
 		$(use_with nmap-update) \
 		$(use_with nping) \
 		$(use_with ssl openssl) \



1.285                net-analyzer/nmap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v
retrieving revision 1.284
retrieving revision 1.285
diff -u -r1.284 -r1.285
--- ChangeLog	26 Jan 2013 18:18:04 -0000	1.284
+++ ChangeLog	31 Jan 2013 02:31:21 -0000	1.285
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/nmap
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.284 2013/01/26 18:18:04 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.285 2013/01/31 02:31:21 jer Exp $
+
+  31 Jan 2013; Jeroen Roovers <jer@gentoo.org> nmap-6.25.ebuild:
+  Bring back USE=ipv6.
 
   26 Jan 2013; Jeroen Roovers <jer@gentoo.org> nmap-6.01.ebuild,
   nmap-6.25.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog
@ 2013-01-31  2:38 Jeroen Roovers (jer)
  0 siblings, 0 replies; 19+ messages in thread
From: Jeroen Roovers (jer) @ 2013-01-31  2:38 UTC (permalink / raw
  To: gentoo-commits

jer         13/01/31 02:38:48

  Modified:             nmap-6.25.ebuild ChangeLog
  Log:
  Fix libpcap USE dep by Rick Farina.
  
  (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.15                 net-analyzer/nmap/nmap-6.25.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?r1=1.14&r2=1.15

Index: nmap-6.25.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- nmap-6.25.ebuild	31 Jan 2013 02:31:21 -0000	1.14
+++ nmap-6.25.ebuild	31 Jan 2013 02:38:48 -0000	1.15
@@ -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-analyzer/nmap/nmap-6.25.ebuild,v 1.14 2013/01/31 02:31:21 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.15 2013/01/31 02:38:48 jer Exp $
 
 EAPI="4"
 
@@ -36,7 +36,7 @@
 RDEPEND="
 	dev-libs/apr
 	dev-libs/libpcre
-	net-libs/libpcap[ipv6=]
+	net-libs/libpcap[ipv6?]
 	gtk? (
 		>=x11-libs/gtk+-2.6:2
 		>=dev-python/pygtk-2.6



1.286                net-analyzer/nmap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v
retrieving revision 1.285
retrieving revision 1.286
diff -u -r1.285 -r1.286
--- ChangeLog	31 Jan 2013 02:31:21 -0000	1.285
+++ ChangeLog	31 Jan 2013 02:38:48 -0000	1.286
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/nmap
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.285 2013/01/31 02:31:21 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.286 2013/01/31 02:38:48 jer Exp $
+
+  31 Jan 2013; Jeroen Roovers <jer@gentoo.org> nmap-6.25.ebuild:
+  Fix libpcap USE dep by Rick Farina.
 
   31 Jan 2013; Jeroen Roovers <jer@gentoo.org> nmap-6.25.ebuild:
   Bring back USE=ipv6.





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog
@ 2013-02-22 17:38 Zac Medico (zmedico)
  0 siblings, 0 replies; 19+ messages in thread
From: Zac Medico (zmedico) @ 2013-02-22 17:38 UTC (permalink / raw
  To: gentoo-commits

zmedico     13/02/22 17:38:37

  Modified:             nmap-6.25.ebuild ChangeLog
  Log:
  Add ~arm-linux keyword.
  
  (Portage version: 2.2.0_alpha163_p9/cvs/Linux i686, signed Manifest commit with key 0xFDE8EF85AE5719A3)

Revision  Changes    Path
1.16                 net-analyzer/nmap/nmap-6.25.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?r1=1.15&r2=1.16

Index: nmap-6.25.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- nmap-6.25.ebuild	31 Jan 2013 02:38:48 -0000	1.15
+++ nmap-6.25.ebuild	22 Feb 2013 17:38:37 -0000	1.16
@@ -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-analyzer/nmap/nmap-6.25.ebuild,v 1.15 2013/01/31 02:38:48 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.16 2013/02/22 17:38:37 zmedico Exp $
 
 EAPI="4"
 
@@ -17,7 +17,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 ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gtk ipv6 +lua ncat ndiff nls nmap-update nping ssl"
 NMAP_LINGUAS="de es fr hr hu id it ja pl pt_BR pt_PT ro ru sk zh"



1.287                net-analyzer/nmap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v
retrieving revision 1.286
retrieving revision 1.287
diff -u -r1.286 -r1.287
--- ChangeLog	31 Jan 2013 02:38:48 -0000	1.286
+++ ChangeLog	22 Feb 2013 17:38:37 -0000	1.287
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/nmap
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.286 2013/01/31 02:38:48 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.287 2013/02/22 17:38:37 zmedico Exp $
+
+  22 Feb 2013; Zac Medico <zmedico@gentoo.org> nmap-6.25.ebuild:
+  Add ~arm-linux keyword.
 
   31 Jan 2013; Jeroen Roovers <jer@gentoo.org> nmap-6.25.ebuild:
   Fix libpcap USE dep by Rick Farina.





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog
@ 2013-03-10 16:27 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 19+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-10 16:27 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/10 16:27:06

  Modified:             nmap-6.25.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #461278
  
  (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.17                 net-analyzer/nmap/nmap-6.25.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?r1=1.16&r2=1.17

Index: nmap-6.25.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- nmap-6.25.ebuild	22 Feb 2013 17:38:37 -0000	1.16
+++ nmap-6.25.ebuild	10 Mar 2013 16:27:06 -0000	1.17
@@ -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-analyzer/nmap/nmap-6.25.ebuild,v 1.16 2013/02/22 17:38:37 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.17 2013/03/10 16:27:06 ago Exp $
 
 EAPI="4"
 
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gtk ipv6 +lua ncat ndiff nls nmap-update nping ssl"
 NMAP_LINGUAS="de es fr hr hu id it ja pl pt_BR pt_PT ro ru sk zh"



1.288                net-analyzer/nmap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v
retrieving revision 1.287
retrieving revision 1.288
diff -u -r1.287 -r1.288
--- ChangeLog	22 Feb 2013 17:38:37 -0000	1.287
+++ ChangeLog	10 Mar 2013 16:27:06 -0000	1.288
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/nmap
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.287 2013/02/22 17:38:37 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.288 2013/03/10 16:27:06 ago Exp $
+
+  10 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nmap-6.25.ebuild:
+  Stable for amd64, wrt bug #461278
 
   22 Feb 2013; Zac Medico <zmedico@gentoo.org> nmap-6.25.ebuild:
   Add ~arm-linux keyword.





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog
@ 2013-03-10 16:30 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 19+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-10 16:30 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/10 16:30:45

  Modified:             nmap-6.25.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #461278
  
  (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.18                 net-analyzer/nmap/nmap-6.25.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?r1=1.17&r2=1.18

Index: nmap-6.25.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- nmap-6.25.ebuild	10 Mar 2013 16:27:06 -0000	1.17
+++ nmap-6.25.ebuild	10 Mar 2013 16:30:45 -0000	1.18
@@ -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-analyzer/nmap/nmap-6.25.ebuild,v 1.17 2013/03/10 16:27:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.18 2013/03/10 16:30:45 ago Exp $
 
 EAPI="4"
 
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gtk ipv6 +lua ncat ndiff nls nmap-update nping ssl"
 NMAP_LINGUAS="de es fr hr hu id it ja pl pt_BR pt_PT ro ru sk zh"



1.289                net-analyzer/nmap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v
retrieving revision 1.288
retrieving revision 1.289
diff -u -r1.288 -r1.289
--- ChangeLog	10 Mar 2013 16:27:06 -0000	1.288
+++ ChangeLog	10 Mar 2013 16:30:45 -0000	1.289
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/nmap
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.288 2013/03/10 16:27:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.289 2013/03/10 16:30:45 ago Exp $
+
+  10 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nmap-6.25.ebuild:
+  Stable for x86, wrt bug #461278
 
   10 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nmap-6.25.ebuild:
   Stable for amd64, wrt bug #461278





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog
@ 2013-03-11 11:14 Jeroen Roovers (jer)
  0 siblings, 0 replies; 19+ messages in thread
From: Jeroen Roovers (jer) @ 2013-03-11 11:14 UTC (permalink / raw
  To: gentoo-commits

jer         13/03/11 11:14:32

  Modified:             nmap-6.25.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #461278).
  
  (Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.19                 net-analyzer/nmap/nmap-6.25.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?r1=1.18&r2=1.19

Index: nmap-6.25.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- nmap-6.25.ebuild	10 Mar 2013 16:30:45 -0000	1.18
+++ nmap-6.25.ebuild	11 Mar 2013 11:14:32 -0000	1.19
@@ -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-analyzer/nmap/nmap-6.25.ebuild,v 1.18 2013/03/10 16:30:45 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.19 2013/03/11 11:14:32 jer Exp $
 
 EAPI="4"
 
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gtk ipv6 +lua ncat ndiff nls nmap-update nping ssl"
 NMAP_LINGUAS="de es fr hr hu id it ja pl pt_BR pt_PT ro ru sk zh"



1.290                net-analyzer/nmap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v
retrieving revision 1.289
retrieving revision 1.290
diff -u -r1.289 -r1.290
--- ChangeLog	10 Mar 2013 16:30:45 -0000	1.289
+++ ChangeLog	11 Mar 2013 11:14:32 -0000	1.290
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/nmap
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.289 2013/03/10 16:30:45 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.290 2013/03/11 11:14:32 jer Exp $
+
+  11 Mar 2013; Jeroen Roovers <jer@gentoo.org> nmap-6.25.ebuild:
+  Stable for HPPA (bug #461278).
 
   10 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nmap-6.25.ebuild:
   Stable for x86, wrt bug #461278





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog
@ 2013-03-12 18:30 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 19+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-12 18:30 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/12 18:30:53

  Modified:             nmap-6.25.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #461278
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.20                 net-analyzer/nmap/nmap-6.25.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?r1=1.19&r2=1.20

Index: nmap-6.25.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- nmap-6.25.ebuild	11 Mar 2013 11:14:32 -0000	1.19
+++ nmap-6.25.ebuild	12 Mar 2013 18:30:53 -0000	1.20
@@ -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-analyzer/nmap/nmap-6.25.ebuild,v 1.19 2013/03/11 11:14:32 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.20 2013/03/12 18:30:53 ago Exp $
 
 EAPI="4"
 
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gtk ipv6 +lua ncat ndiff nls nmap-update nping ssl"
 NMAP_LINGUAS="de es fr hr hu id it ja pl pt_BR pt_PT ro ru sk zh"



1.291                net-analyzer/nmap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v
retrieving revision 1.290
retrieving revision 1.291
diff -u -r1.290 -r1.291
--- ChangeLog	11 Mar 2013 11:14:32 -0000	1.290
+++ ChangeLog	12 Mar 2013 18:30:53 -0000	1.291
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/nmap
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.290 2013/03/11 11:14:32 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.291 2013/03/12 18:30:53 ago Exp $
+
+  12 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nmap-6.25.ebuild:
+  Stable for ppc, wrt bug #461278
 
   11 Mar 2013; Jeroen Roovers <jer@gentoo.org> nmap-6.25.ebuild:
   Stable for HPPA (bug #461278).





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog
@ 2013-03-13 11:27 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 19+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-13 11:27 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/13 11:27:41

  Modified:             nmap-6.25.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #461278
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.21                 net-analyzer/nmap/nmap-6.25.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?r1=1.20&r2=1.21

Index: nmap-6.25.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- nmap-6.25.ebuild	12 Mar 2013 18:30:53 -0000	1.20
+++ nmap-6.25.ebuild	13 Mar 2013 11:27:41 -0000	1.21
@@ -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-analyzer/nmap/nmap-6.25.ebuild,v 1.20 2013/03/12 18:30:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.21 2013/03/13 11:27:41 ago Exp $
 
 EAPI="4"
 
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gtk ipv6 +lua ncat ndiff nls nmap-update nping ssl"
 NMAP_LINGUAS="de es fr hr hu id it ja pl pt_BR pt_PT ro ru sk zh"



1.292                net-analyzer/nmap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v
retrieving revision 1.291
retrieving revision 1.292
diff -u -r1.291 -r1.292
--- ChangeLog	12 Mar 2013 18:30:53 -0000	1.291
+++ ChangeLog	13 Mar 2013 11:27:41 -0000	1.292
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/nmap
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.291 2013/03/12 18:30:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.292 2013/03/13 11:27:41 ago Exp $
+
+  13 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nmap-6.25.ebuild:
+  Stable for ppc64, wrt bug #461278
 
   12 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nmap-6.25.ebuild:
   Stable for ppc, wrt bug #461278





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog
@ 2013-03-14  6:56 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 19+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-14  6:56 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/14 06:56:37

  Modified:             nmap-6.25.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #461278
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.22                 net-analyzer/nmap/nmap-6.25.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?r1=1.21&r2=1.22

Index: nmap-6.25.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- nmap-6.25.ebuild	13 Mar 2013 11:27:41 -0000	1.21
+++ nmap-6.25.ebuild	14 Mar 2013 06:56:36 -0000	1.22
@@ -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-analyzer/nmap/nmap-6.25.ebuild,v 1.21 2013/03/13 11:27:41 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.22 2013/03/14 06:56:36 ago Exp $
 
 EAPI="4"
 
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gtk ipv6 +lua ncat ndiff nls nmap-update nping ssl"
 NMAP_LINGUAS="de es fr hr hu id it ja pl pt_BR pt_PT ro ru sk zh"



1.293                net-analyzer/nmap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v
retrieving revision 1.292
retrieving revision 1.293
diff -u -r1.292 -r1.293
--- ChangeLog	13 Mar 2013 11:27:41 -0000	1.292
+++ ChangeLog	14 Mar 2013 06:56:36 -0000	1.293
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/nmap
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.292 2013/03/13 11:27:41 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.293 2013/03/14 06:56:36 ago Exp $
+
+  14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nmap-6.25.ebuild:
+  Stable for alpha, wrt bug #461278
 
   13 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nmap-6.25.ebuild:
   Stable for ppc64, wrt bug #461278





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog
@ 2013-03-14  7:21 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 19+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-14  7:21 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/14 07:21:46

  Modified:             nmap-6.25.ebuild ChangeLog
  Log:
  Stable for arm, wrt bug #461278
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.23                 net-analyzer/nmap/nmap-6.25.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?r1=1.22&r2=1.23

Index: nmap-6.25.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- nmap-6.25.ebuild	14 Mar 2013 06:56:36 -0000	1.22
+++ nmap-6.25.ebuild	14 Mar 2013 07:21:46 -0000	1.23
@@ -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-analyzer/nmap/nmap-6.25.ebuild,v 1.22 2013/03/14 06:56:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.23 2013/03/14 07:21:46 ago Exp $
 
 EAPI="4"
 
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gtk ipv6 +lua ncat ndiff nls nmap-update nping ssl"
 NMAP_LINGUAS="de es fr hr hu id it ja pl pt_BR pt_PT ro ru sk zh"



1.294                net-analyzer/nmap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v
retrieving revision 1.293
retrieving revision 1.294
diff -u -r1.293 -r1.294
--- ChangeLog	14 Mar 2013 06:56:36 -0000	1.293
+++ ChangeLog	14 Mar 2013 07:21:46 -0000	1.294
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/nmap
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.293 2013/03/14 06:56:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.294 2013/03/14 07:21:46 ago Exp $
+
+  14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nmap-6.25.ebuild:
+  Stable for arm, wrt bug #461278
 
   14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nmap-6.25.ebuild:
   Stable for alpha, wrt bug #461278





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog
@ 2013-03-14  7:51 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 19+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-14  7:51 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/14 07:51:38

  Modified:             nmap-6.25.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #461278
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.24                 net-analyzer/nmap/nmap-6.25.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?r1=1.23&r2=1.24

Index: nmap-6.25.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- nmap-6.25.ebuild	14 Mar 2013 07:21:46 -0000	1.23
+++ nmap-6.25.ebuild	14 Mar 2013 07:51:38 -0000	1.24
@@ -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-analyzer/nmap/nmap-6.25.ebuild,v 1.23 2013/03/14 07:21:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.24 2013/03/14 07:51:38 ago Exp $
 
 EAPI="4"
 
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gtk ipv6 +lua ncat ndiff nls nmap-update nping ssl"
 NMAP_LINGUAS="de es fr hr hu id it ja pl pt_BR pt_PT ro ru sk zh"



1.295                net-analyzer/nmap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v
retrieving revision 1.294
retrieving revision 1.295
diff -u -r1.294 -r1.295
--- ChangeLog	14 Mar 2013 07:21:46 -0000	1.294
+++ ChangeLog	14 Mar 2013 07:51:38 -0000	1.295
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/nmap
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.294 2013/03/14 07:21:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.295 2013/03/14 07:51:38 ago Exp $
+
+  14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nmap-6.25.ebuild:
+  Stable for ia64, wrt bug #461278
 
   14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nmap-6.25.ebuild:
   Stable for arm, wrt bug #461278





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog
@ 2013-03-14 12:48 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 19+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-14 12:48 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/14 12:48:04

  Modified:             nmap-6.25.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #461278
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.25                 net-analyzer/nmap/nmap-6.25.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?r1=1.24&r2=1.25

Index: nmap-6.25.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- nmap-6.25.ebuild	14 Mar 2013 07:51:38 -0000	1.24
+++ nmap-6.25.ebuild	14 Mar 2013 12:48:04 -0000	1.25
@@ -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-analyzer/nmap/nmap-6.25.ebuild,v 1.24 2013/03/14 07:51:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.25 2013/03/14 12:48:04 ago Exp $
 
 EAPI="4"
 
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gtk ipv6 +lua ncat ndiff nls nmap-update nping ssl"
 NMAP_LINGUAS="de es fr hr hu id it ja pl pt_BR pt_PT ro ru sk zh"



1.296                net-analyzer/nmap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v
retrieving revision 1.295
retrieving revision 1.296
diff -u -r1.295 -r1.296
--- ChangeLog	14 Mar 2013 07:51:38 -0000	1.295
+++ ChangeLog	14 Mar 2013 12:48:04 -0000	1.296
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/nmap
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.295 2013/03/14 07:51:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.296 2013/03/14 12:48:04 ago Exp $
+
+  14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nmap-6.25.ebuild:
+  Stable for sparc, wrt bug #461278
 
   14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nmap-6.25.ebuild:
   Stable for ia64, wrt bug #461278





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog
@ 2013-03-14 16:22 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 19+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-14 16:22 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/14 16:22:27

  Modified:             nmap-6.25.ebuild ChangeLog
  Log:
  Stable for s390, wrt bug #461278
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.26                 net-analyzer/nmap/nmap-6.25.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?r1=1.25&r2=1.26

Index: nmap-6.25.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- nmap-6.25.ebuild	14 Mar 2013 12:48:04 -0000	1.25
+++ nmap-6.25.ebuild	14 Mar 2013 16:22:27 -0000	1.26
@@ -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-analyzer/nmap/nmap-6.25.ebuild,v 1.25 2013/03/14 12:48:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.26 2013/03/14 16:22:27 ago Exp $
 
 EAPI="4"
 
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gtk ipv6 +lua ncat ndiff nls nmap-update nping ssl"
 NMAP_LINGUAS="de es fr hr hu id it ja pl pt_BR pt_PT ro ru sk zh"



1.297                net-analyzer/nmap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v
retrieving revision 1.296
retrieving revision 1.297
diff -u -r1.296 -r1.297
--- ChangeLog	14 Mar 2013 12:48:04 -0000	1.296
+++ ChangeLog	14 Mar 2013 16:22:27 -0000	1.297
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/nmap
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.296 2013/03/14 12:48:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.297 2013/03/14 16:22:27 ago Exp $
+
+  14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nmap-6.25.ebuild:
+  Stable for s390, wrt bug #461278
 
   14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nmap-6.25.ebuild:
   Stable for sparc, wrt bug #461278





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog
@ 2013-03-15 13:30 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 19+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-15 13:30 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/15 13:30:43

  Modified:             nmap-6.25.ebuild ChangeLog
  Log:
  Stable for sh, wrt bug #461278
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.27                 net-analyzer/nmap/nmap-6.25.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild?r1=1.26&r2=1.27

Index: nmap-6.25.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- nmap-6.25.ebuild	14 Mar 2013 16:22:27 -0000	1.26
+++ nmap-6.25.ebuild	15 Mar 2013 13:30:43 -0000	1.27
@@ -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-analyzer/nmap/nmap-6.25.ebuild,v 1.26 2013/03/14 16:22:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.25.ebuild,v 1.27 2013/03/15 13:30:43 ago Exp $
 
 EAPI="4"
 
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gtk ipv6 +lua ncat ndiff nls nmap-update nping ssl"
 NMAP_LINGUAS="de es fr hr hu id it ja pl pt_BR pt_PT ro ru sk zh"



1.298                net-analyzer/nmap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v
retrieving revision 1.297
retrieving revision 1.298
diff -u -r1.297 -r1.298
--- ChangeLog	14 Mar 2013 16:22:27 -0000	1.297
+++ ChangeLog	15 Mar 2013 13:30:43 -0000	1.298
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/nmap
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.297 2013/03/14 16:22:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.298 2013/03/15 13:30:43 ago Exp $
+
+  15 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nmap-6.25.ebuild:
+  Stable for sh, wrt bug #461278
 
   14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nmap-6.25.ebuild:
   Stable for s390, wrt bug #461278





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

end of thread, other threads:[~2013-03-15 13:31 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-16 19:33 [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-6.25.ebuild ChangeLog Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2013-03-15 13:30 Agostino Sarubbo (ago)
2013-03-14 16:22 Agostino Sarubbo (ago)
2013-03-14 12:48 Agostino Sarubbo (ago)
2013-03-14  7:51 Agostino Sarubbo (ago)
2013-03-14  7:21 Agostino Sarubbo (ago)
2013-03-14  6:56 Agostino Sarubbo (ago)
2013-03-13 11:27 Agostino Sarubbo (ago)
2013-03-12 18:30 Agostino Sarubbo (ago)
2013-03-11 11:14 Jeroen Roovers (jer)
2013-03-10 16:30 Agostino Sarubbo (ago)
2013-03-10 16:27 Agostino Sarubbo (ago)
2013-02-22 17:38 Zac Medico (zmedico)
2013-01-31  2:38 Jeroen Roovers (jer)
2013-01-31  2:31 Jeroen Roovers (jer)
2012-12-03 19:52 Jeroen Roovers (jer)
2012-12-03 12:45 Jeroen Roovers (jer)
2012-12-02 15:57 Jeroen Roovers (jer)
2012-12-01 18:06 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