public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-analyzer/netcat: ChangeLog netcat-110-r9.ebuild
@ 2010-07-14  3:47 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2010-07-14  3:47 UTC (permalink / raw
  To: gentoo-commits

jer         10/07/14 03:47:51

  Modified:             ChangeLog
  Added:                netcat-110-r9.ebuild
  Log:
  Respect LDFLAGS.
  (Portage version: 2.2_rc67/cvs/Linux i686)

Revision  Changes    Path
1.40                 net-analyzer/netcat/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog	16 Jan 2010 02:08:11 -0000	1.39
+++ ChangeLog	14 Jul 2010 03:47:50 -0000	1.40
@@ -1,6 +1,11 @@
 # ChangeLog for net-analyzer/netcat
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.39 2010/01/16 02:08:11 abcd Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.40 2010/07/14 03:47:50 jer Exp $
+
+*netcat-110-r9 (14 Jul 2010)
+
+  14 Jul 2010; Jeroen Roovers <jer@gentoo.org> +netcat-110-r9.ebuild:
+  Respect LDFLAGS.
 
   16 Jan 2010; Jonathan Callen <abcd@gentoo.org> netcat-110-r8.ebuild:
   Add prefix keywords



1.1                  net-analyzer/netcat/netcat-110-r9.ebuild

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

Index: netcat-110-r9.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r9.ebuild,v 1.1 2010/07/14 03:47:51 jer Exp $

inherit eutils toolchain-funcs flag-o-matic

PATCH_VER="1.0"
MY_P=nc${PV}
DESCRIPTION="the network swiss army knife"
HOMEPAGE="http://nc110.sourceforge.net/"
SRC_URI="mirror://sourceforge/nc110/${MY_P}.tgz
	ftp://sith.mimuw.edu.pl/pub/users/baggins/IPv6/nc-v6-20000918.patch.gz
	mirror://gentoo/${P}-patches-${PATCH_VER}.tar.bz2"

LICENSE="as-is"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x64-solaris"
IUSE="crypt ipv6 static"

DEPEND="crypt? ( dev-libs/libmix )"

S=${WORKDIR}

src_unpack() {
	unpack ${MY_P}.tgz ${P}-patches-${PATCH_VER}.tar.bz2
	epatch "${DISTDIR}"/nc-v6-20000918.patch.gz patch
	sed -i 's:#define HAVE_BIND:#undef HAVE_BIND:' netcat.c
	sed -i 's:#define FD_SETSIZE 16:#define FD_SETSIZE 1024:' netcat.c #34250
}

src_compile() {
	export XLIBS=""
	export XFLAGS="-DLINUX -DTELNET -DGAPING_SECURITY_HOLE"
	use ipv6 && XFLAGS="${XFLAGS} -DINET6"
	use static && export STATIC="-static"
	use crypt && XFLAGS="${XFLAGS} -DAESCRYPT" && XLIBS="${XLIBS} -lmix"
	[[ ${CHOST} == *-solaris* ]] && XLIBS="${XLIBS} -lnsl -lsocket"
	make -e CC="$(tc-getCC) ${CFLAGS} ${LDFLAGS}" nc || die
}

src_install() {
	dobin nc || die "dobin failed"
	dodoc README* netcat.blurb debian-*
	doman nc.1
	docinto scripts
	dodoc scripts/*
}






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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/netcat: ChangeLog netcat-110-r9.ebuild
@ 2012-03-01 17:25 Mike Frysinger (vapier)
  0 siblings, 0 replies; 9+ messages in thread
From: Mike Frysinger (vapier) @ 2012-03-01 17:25 UTC (permalink / raw
  To: gentoo-commits

vapier      12/03/01 17:25:32

  Modified:             ChangeLog netcat-110-r9.ebuild
  Log:
  Update to EAPI=4 to handle libmix[static-libs] #406329 by venom00.
  
  (Portage version: 2.2.0_alpha86/cvs/Linux x86_64)

Revision  Changes    Path
1.42                 net-analyzer/netcat/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog	6 Feb 2011 07:48:56 -0000	1.41
+++ ChangeLog	1 Mar 2012 17:25:31 -0000	1.42
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/netcat
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.41 2011/02/06 07:48:56 leio Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.42 2012/03/01 17:25:31 vapier Exp $
+
+  01 Mar 2012; Mike Frysinger <vapier@gentoo.org> netcat-110-r9.ebuild:
+  Update to EAPI=4 to handle libmix[static-libs] #406329 by venom00.
 
   06 Feb 2011; Mart Raudsepp <leio@gentoo.org> netcat-110-r8.ebuild:
   Drop to ~mips



1.2                  net-analyzer/netcat/netcat-110-r9.ebuild

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

Index: netcat-110-r9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r9.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- netcat-110-r9.ebuild	14 Jul 2010 03:47:51 -0000	1.1
+++ netcat-110-r9.ebuild	1 Mar 2012 17:25:31 -0000	1.2
@@ -1,6 +1,8 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r9.ebuild,v 1.1 2010/07/14 03:47:51 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r9.ebuild,v 1.2 2012/03/01 17:25:31 vapier Exp $
+
+EAPI="4"
 
 inherit eutils toolchain-funcs flag-o-matic
 
@@ -17,12 +19,14 @@
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x64-solaris"
 IUSE="crypt ipv6 static"
 
-DEPEND="crypt? ( dev-libs/libmix )"
+LIB_DEPEND="crypt? ( dev-libs/libmix[static-libs(+)] )"
+RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
+DEPEND="${RDEPEND}
+	static? ( ${LIB_DEPEND} )"
 
 S=${WORKDIR}
 
-src_unpack() {
-	unpack ${MY_P}.tgz ${P}-patches-${PATCH_VER}.tar.bz2
+src_prepare() {
 	epatch "${DISTDIR}"/nc-v6-20000918.patch.gz patch
 	sed -i 's:#define HAVE_BIND:#undef HAVE_BIND:' netcat.c
 	sed -i 's:#define FD_SETSIZE 16:#define FD_SETSIZE 1024:' netcat.c #34250
@@ -35,11 +39,11 @@
 	use static && export STATIC="-static"
 	use crypt && XFLAGS="${XFLAGS} -DAESCRYPT" && XLIBS="${XLIBS} -lmix"
 	[[ ${CHOST} == *-solaris* ]] && XLIBS="${XLIBS} -lnsl -lsocket"
-	make -e CC="$(tc-getCC) ${CFLAGS} ${LDFLAGS}" nc || die
+	emake -e CC="$(tc-getCC) ${CFLAGS} ${LDFLAGS}" nc
 }
 
 src_install() {
-	dobin nc || die "dobin failed"
+	dobin nc
 	dodoc README* netcat.blurb debian-*
 	doman nc.1
 	docinto scripts






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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/netcat: ChangeLog netcat-110-r9.ebuild
@ 2012-08-05  9:45 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2012-08-05  9:45 UTC (permalink / raw
  To: gentoo-commits

jer         12/08/05 09:45:20

  Modified:             ChangeLog netcat-110-r9.ebuild
  Log:
  Stable for HPPA (bug #423531).
  
  (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)

Revision  Changes    Path
1.43                 net-analyzer/netcat/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog	1 Mar 2012 17:25:31 -0000	1.42
+++ ChangeLog	5 Aug 2012 09:45:20 -0000	1.43
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/netcat
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.42 2012/03/01 17:25:31 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.43 2012/08/05 09:45:20 jer Exp $
+
+  05 Aug 2012; Jeroen Roovers <jer@gentoo.org> netcat-110-r9.ebuild:
+  Stable for HPPA (bug #423531).
 
   01 Mar 2012; Mike Frysinger <vapier@gentoo.org> netcat-110-r9.ebuild:
   Update to EAPI=4 to handle libmix[static-libs] #406329 by venom00.



1.3                  net-analyzer/netcat/netcat-110-r9.ebuild

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

Index: netcat-110-r9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r9.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- netcat-110-r9.ebuild	1 Mar 2012 17:25:31 -0000	1.2
+++ netcat-110-r9.ebuild	5 Aug 2012 09:45:20 -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/netcat/netcat-110-r9.ebuild,v 1.2 2012/03/01 17:25:31 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r9.ebuild,v 1.3 2012/08/05 09:45:20 jer Exp $
 
 EAPI="4"
 
@@ -16,7 +16,7 @@
 
 LICENSE="as-is"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x64-solaris"
 IUSE="crypt ipv6 static"
 
 LIB_DEPEND="crypt? ( dev-libs/libmix[static-libs(+)] )"





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/netcat: ChangeLog netcat-110-r9.ebuild
@ 2012-08-05 20:55 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-08-05 20:55 UTC (permalink / raw
  To: gentoo-commits

ago         12/08/05 20:55:20

  Modified:             ChangeLog netcat-110-r9.ebuild
  Log:
  Stable for amd64, wrt bug #423531
  
  (Portage version: 2.1.10.65/cvs/Linux x86_64)

Revision  Changes    Path
1.44                 net-analyzer/netcat/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	5 Aug 2012 09:45:20 -0000	1.43
+++ ChangeLog	5 Aug 2012 20:55:19 -0000	1.44
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/netcat
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.43 2012/08/05 09:45:20 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.44 2012/08/05 20:55:19 ago Exp $
+
+  05 Aug 2012; Agostino Sarubbo <ago@gentoo.org> netcat-110-r9.ebuild:
+  Stable for amd64, wrt bug #423531
 
   05 Aug 2012; Jeroen Roovers <jer@gentoo.org> netcat-110-r9.ebuild:
   Stable for HPPA (bug #423531).



1.4                  net-analyzer/netcat/netcat-110-r9.ebuild

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

Index: netcat-110-r9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r9.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- netcat-110-r9.ebuild	5 Aug 2012 09:45:20 -0000	1.3
+++ netcat-110-r9.ebuild	5 Aug 2012 20:55:19 -0000	1.4
@@ -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/netcat/netcat-110-r9.ebuild,v 1.3 2012/08/05 09:45:20 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r9.ebuild,v 1.4 2012/08/05 20:55:19 ago Exp $
 
 EAPI="4"
 
@@ -16,7 +16,7 @@
 
 LICENSE="as-is"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x64-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x64-solaris"
 IUSE="crypt ipv6 static"
 
 LIB_DEPEND="crypt? ( dev-libs/libmix[static-libs(+)] )"





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/netcat: ChangeLog netcat-110-r9.ebuild
@ 2012-08-06 13:52 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-08-06 13:52 UTC (permalink / raw
  To: gentoo-commits

blueness    12/08/06 13:52:09

  Modified:             ChangeLog netcat-110-r9.ebuild
  Log:
  Stable arm, bug #423531
  
  (Portage version: 2.1.10.65/cvs/Linux x86_64)

Revision  Changes    Path
1.45                 net-analyzer/netcat/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog	5 Aug 2012 20:55:19 -0000	1.44
+++ ChangeLog	6 Aug 2012 13:52:09 -0000	1.45
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/netcat
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.44 2012/08/05 20:55:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.45 2012/08/06 13:52:09 blueness Exp $
+
+  06 Aug 2012; Anthony G. Basile <blueness@gentoo.org> netcat-110-r9.ebuild:
+  Stable arm, bug #423531
 
   05 Aug 2012; Agostino Sarubbo <ago@gentoo.org> netcat-110-r9.ebuild:
   Stable for amd64, wrt bug #423531



1.5                  net-analyzer/netcat/netcat-110-r9.ebuild

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

Index: netcat-110-r9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r9.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- netcat-110-r9.ebuild	5 Aug 2012 20:55:19 -0000	1.4
+++ netcat-110-r9.ebuild	6 Aug 2012 13:52:09 -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/netcat/netcat-110-r9.ebuild,v 1.4 2012/08/05 20:55:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r9.ebuild,v 1.5 2012/08/06 13:52:09 blueness Exp $
 
 EAPI="4"
 
@@ -16,7 +16,7 @@
 
 LICENSE="as-is"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x64-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x64-solaris"
 IUSE="crypt ipv6 static"
 
 LIB_DEPEND="crypt? ( dev-libs/libmix[static-libs(+)] )"





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/netcat: ChangeLog netcat-110-r9.ebuild
@ 2012-08-06 13:58 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-08-06 13:58 UTC (permalink / raw
  To: gentoo-commits

blueness    12/08/06 13:58:32

  Modified:             ChangeLog netcat-110-r9.ebuild
  Log:
  Stable ppc ppc64, bug #423531
  
  (Portage version: 2.1.10.65/cvs/Linux x86_64)

Revision  Changes    Path
1.46                 net-analyzer/netcat/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog	6 Aug 2012 13:52:09 -0000	1.45
+++ ChangeLog	6 Aug 2012 13:58:32 -0000	1.46
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/netcat
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.45 2012/08/06 13:52:09 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.46 2012/08/06 13:58:32 blueness Exp $
+
+  06 Aug 2012; Anthony G. Basile <blueness@gentoo.org> netcat-110-r9.ebuild:
+  Stable ppc ppc64, bug #423531
 
   06 Aug 2012; Anthony G. Basile <blueness@gentoo.org> netcat-110-r9.ebuild:
   Stable arm, bug #423531



1.6                  net-analyzer/netcat/netcat-110-r9.ebuild

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

Index: netcat-110-r9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r9.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- netcat-110-r9.ebuild	6 Aug 2012 13:52:09 -0000	1.5
+++ netcat-110-r9.ebuild	6 Aug 2012 13:58:32 -0000	1.6
@@ -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/netcat/netcat-110-r9.ebuild,v 1.5 2012/08/06 13:52:09 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r9.ebuild,v 1.6 2012/08/06 13:58:32 blueness Exp $
 
 EAPI="4"
 
@@ -16,7 +16,7 @@
 
 LICENSE="as-is"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x64-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x64-solaris"
 IUSE="crypt ipv6 static"
 
 LIB_DEPEND="crypt? ( dev-libs/libmix[static-libs(+)] )"





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/netcat: ChangeLog netcat-110-r9.ebuild
@ 2012-08-20 14:44 Johannes Huber (johu)
  0 siblings, 0 replies; 9+ messages in thread
From: Johannes Huber (johu) @ 2012-08-20 14:44 UTC (permalink / raw
  To: gentoo-commits

johu        12/08/20 14:44:22

  Modified:             ChangeLog netcat-110-r9.ebuild
  Log:
  Stable for x86, wrt bug #423531
  
  (Portage version: 2.2.0_alpha121/cvs/Linux x86_64)

Revision  Changes    Path
1.47                 net-analyzer/netcat/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog	6 Aug 2012 13:58:32 -0000	1.46
+++ ChangeLog	20 Aug 2012 14:44:22 -0000	1.47
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/netcat
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.46 2012/08/06 13:58:32 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.47 2012/08/20 14:44:22 johu Exp $
+
+  20 Aug 2012; Johannes Huber <johu@gentoo.org> netcat-110-r9.ebuild:
+  Stable for x86, wrt bug #423531
 
   06 Aug 2012; Anthony G. Basile <blueness@gentoo.org> netcat-110-r9.ebuild:
   Stable ppc ppc64, bug #423531



1.7                  net-analyzer/netcat/netcat-110-r9.ebuild

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

Index: netcat-110-r9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r9.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- netcat-110-r9.ebuild	6 Aug 2012 13:58:32 -0000	1.6
+++ netcat-110-r9.ebuild	20 Aug 2012 14:44:22 -0000	1.7
@@ -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/netcat/netcat-110-r9.ebuild,v 1.6 2012/08/06 13:58:32 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r9.ebuild,v 1.7 2012/08/20 14:44:22 johu Exp $
 
 EAPI="4"
 
@@ -16,7 +16,7 @@
 
 LICENSE="as-is"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x64-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x64-solaris"
 IUSE="crypt ipv6 static"
 
 LIB_DEPEND="crypt? ( dev-libs/libmix[static-libs(+)] )"





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/netcat: ChangeLog netcat-110-r9.ebuild
@ 2012-09-09 15:47 Raul Porcel (armin76)
  0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2012-09-09 15:47 UTC (permalink / raw
  To: gentoo-commits

armin76     12/09/09 15:47:01

  Modified:             ChangeLog netcat-110-r9.ebuild
  Log:
  alpha/ia64/m68k/s390/sh/sparc stable wrt #423531
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.48                 net-analyzer/netcat/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog	20 Aug 2012 14:44:22 -0000	1.47
+++ ChangeLog	9 Sep 2012 15:47:01 -0000	1.48
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/netcat
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.47 2012/08/20 14:44:22 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.48 2012/09/09 15:47:01 armin76 Exp $
+
+  09 Sep 2012; Raúl Porcel <armin76@gentoo.org> netcat-110-r9.ebuild:
+  alpha/ia64/m68k/s390/sh/sparc stable wrt #423531
 
   20 Aug 2012; Johannes Huber <johu@gentoo.org> netcat-110-r9.ebuild:
   Stable for x86, wrt bug #423531



1.8                  net-analyzer/netcat/netcat-110-r9.ebuild

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

Index: netcat-110-r9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r9.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- netcat-110-r9.ebuild	20 Aug 2012 14:44:22 -0000	1.7
+++ netcat-110-r9.ebuild	9 Sep 2012 15:47:01 -0000	1.8
@@ -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/netcat/netcat-110-r9.ebuild,v 1.7 2012/08/20 14:44:22 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r9.ebuild,v 1.8 2012/09/09 15:47:01 armin76 Exp $
 
 EAPI="4"
 
@@ -16,7 +16,7 @@
 
 LICENSE="as-is"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x64-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x64-solaris"
 IUSE="crypt ipv6 static"
 
 LIB_DEPEND="crypt? ( dev-libs/libmix[static-libs(+)] )"





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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/netcat: ChangeLog netcat-110-r9.ebuild
@ 2013-08-27 22:14 Alexis Ballier (aballier)
  0 siblings, 0 replies; 9+ messages in thread
From: Alexis Ballier (aballier) @ 2013-08-27 22:14 UTC (permalink / raw
  To: gentoo-commits

aballier    13/08/27 22:14:11

  Modified:             ChangeLog netcat-110-r9.ebuild
  Log:
  keyword ~amd64-fbsd
  
  (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.50                 net-analyzer/netcat/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog	19 Jan 2013 11:16:21 -0000	1.49
+++ ChangeLog	27 Aug 2013 22:14:11 -0000	1.50
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/netcat
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.49 2013/01/19 11:16:21 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/ChangeLog,v 1.50 2013/08/27 22:14:11 aballier Exp $
+
+  27 Aug 2013; Alexis Ballier <aballier@gentoo.org> netcat-110-r9.ebuild:
+  keyword ~amd64-fbsd
 
   19 Jan 2013; Ulrich Müller <ulm@gentoo.org> netcat-110-r8.ebuild,
   netcat-110-r9.ebuild:



1.10                 net-analyzer/netcat/netcat-110-r9.ebuild

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

Index: netcat-110-r9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r9.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- netcat-110-r9.ebuild	19 Jan 2013 11:16:21 -0000	1.9
+++ netcat-110-r9.ebuild	27 Aug 2013 22:14:11 -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/netcat/netcat-110-r9.ebuild,v 1.9 2013/01/19 11:16:21 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110-r9.ebuild,v 1.10 2013/08/27 22:14:11 aballier Exp $
 
 EAPI="4"
 
@@ -16,7 +16,7 @@
 
 LICENSE="netcat"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x64-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x64-solaris"
 IUSE="crypt ipv6 static"
 
 LIB_DEPEND="crypt? ( dev-libs/libmix[static-libs(+)] )"





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

end of thread, other threads:[~2013-08-27 22:14 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-09 15:47 [gentoo-commits] gentoo-x86 commit in net-analyzer/netcat: ChangeLog netcat-110-r9.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2013-08-27 22:14 Alexis Ballier (aballier)
2012-08-20 14:44 Johannes Huber (johu)
2012-08-06 13:58 Anthony G. Basile (blueness)
2012-08-06 13:52 Anthony G. Basile (blueness)
2012-08-05 20:55 Agostino Sarubbo (ago)
2012-08-05  9:45 Jeroen Roovers (jer)
2012-03-01 17:25 Mike Frysinger (vapier)
2010-07-14  3:47 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