public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-analyzer/flow-tools: flow-tools-0.68.5.1-r1.ebuild ChangeLog
@ 2012-02-21 16:18 Jeroen Roovers (jer)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeroen Roovers (jer) @ 2012-02-21 16:18 UTC (permalink / raw
  To: gentoo-commits

jer         12/02/21 16:18:46

  Modified:             ChangeLog
  Added:                flow-tools-0.68.5.1-r1.ebuild
  Log:
  Add IUSE=static-libs by Maurizio Camisaschi (bug #405157).
  
  (Portage version: 2.2.0_alpha88/cvs/Linux x86_64)

Revision  Changes    Path
1.51                 net-analyzer/flow-tools/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog	21 Feb 2012 14:53:43 -0000	1.50
+++ ChangeLog	21 Feb 2012 16:18:46 -0000	1.51
@@ -1,6 +1,11 @@
 # ChangeLog for net-analyzer/flow-tools
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/ChangeLog,v 1.50 2012/02/21 14:53:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/ChangeLog,v 1.51 2012/02/21 16:18:46 jer Exp $
+
+*flow-tools-0.68.5.1-r1 (21 Feb 2012)
+
+  21 Feb 2012; Jeroen Roovers <jer@gentoo.org> +flow-tools-0.68.5.1-r1.ebuild:
+  Add IUSE=static-libs by Maurizio Camisaschi (bug #405157).
 
   21 Feb 2012; Agostino Sarubbo <ago@gentoo.org> flow-tools-0.68.5.1.ebuild:
   Stable for amd64, wrt bug #404809



1.1                  net-analyzer/flow-tools/flow-tools-0.68.5.1-r1.ebuild

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

Index: flow-tools-0.68.5.1-r1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/flow-tools-0.68.5.1-r1.ebuild,v 1.1 2012/02/21 16:18:46 jer Exp $

EAPI=4

inherit eutils

DESCRIPTION="library and programs to collect, send, process, and generate reports from NetFlow data"
HOMEPAGE="http://code.google.com/p/flow-tools/"
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.bz2"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="debug mysql postgres ssl static-libs"

RDEPEND="sys-apps/tcp-wrappers
	sys-libs/zlib
	mysql? ( virtual/mysql )
	postgres? ( dev-db/postgresql-base )
	ssl? ( dev-libs/openssl )"

DEPEND="${RDEPEND}
	sys-devel/flex
	sys-devel/bison"

DOCS=( ChangeLog README SECURITY TODO )

pkg_setup() {
	enewgroup flows
	enewuser flows -1 -1 /var/lib/flows flows
}

src_configure() {
	local myconf="--sysconfdir=/etc/flow-tools"
	use mysql && myconf="${myconf} --with-mysql"
	if use postgres; then
		myconf="${myconf} --with-postgresql=yes"
	else
		myconf="${myconf} --with-postgresql=no"
	fi
	use ssl && myconf="${myconf} --with-openssl"
	econf ${myconf} $(use_enable static-libs static)
}

src_install() {
	default

	keepdir /var/lib/flows
	keepdir /var/lib/flows/bin
	exeinto /var/lib/flows/bin
	doexe "${FILESDIR}"/linkme
	keepdir /var/run/flows

	newinitd "${FILESDIR}/flowcapture.initd" flowcapture
	newconfd "${FILESDIR}/flowcapture.confd" flowcapture

	if ! use static-libs; then
		rm -f "${D}"/usr/lib*/libft.la || die
	fi
}

pkg_postinst() {
	chown flows:flows /var/run/flows
	chown flows:flows /var/lib/flows
	chown flows:flows /var/lib/flows/bin
	chmod 0755 /var/run/flows
	chmod 0755 /var/lib/flows
	chmod 0755 /var/lib/flows/bin
}






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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/flow-tools: flow-tools-0.68.5.1-r1.ebuild ChangeLog
@ 2012-06-04 10:48 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-06-04 10:48 UTC (permalink / raw
  To: gentoo-commits

ago         12/06/04 10:48:33

  Modified:             flow-tools-0.68.5.1-r1.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #419211
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  net-analyzer/flow-tools/flow-tools-0.68.5.1-r1.ebuild

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

Index: flow-tools-0.68.5.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/flow-tools-0.68.5.1-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- flow-tools-0.68.5.1-r1.ebuild	4 Jun 2012 10:40:49 -0000	1.2
+++ flow-tools-0.68.5.1-r1.ebuild	4 Jun 2012 10:48:33 -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/flow-tools/flow-tools-0.68.5.1-r1.ebuild,v 1.2 2012/06/04 10:40:49 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/flow-tools-0.68.5.1-r1.ebuild,v 1.3 2012/06/04 10:48:33 ago Exp $
 
 EAPI=4
 inherit user
@@ -11,7 +11,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE="debug mysql postgres ssl static-libs"
 
 RDEPEND="sys-apps/tcp-wrappers



1.56                 net-analyzer/flow-tools/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog	4 Jun 2012 10:40:49 -0000	1.55
+++ ChangeLog	4 Jun 2012 10:48:33 -0000	1.56
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/flow-tools
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/ChangeLog,v 1.55 2012/06/04 10:40:49 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/ChangeLog,v 1.56 2012/06/04 10:48:33 ago Exp $
+
+  04 Jun 2012; Agostino Sarubbo <ago@gentoo.org> flow-tools-0.68.5.1-r1.ebuild:
+  Stable for amd64, wrt bug #419211
 
   04 Jun 2012; Jeroen Roovers <jer@gentoo.org> flow-tools-0.68.5.1.ebuild,
   flow-tools-0.68.5.1-r1.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/flow-tools: flow-tools-0.68.5.1-r1.ebuild ChangeLog
@ 2012-06-07 21:59 Brent Baude (ranger)
  0 siblings, 0 replies; 5+ messages in thread
From: Brent Baude (ranger) @ 2012-06-07 21:59 UTC (permalink / raw
  To: gentoo-commits

ranger      12/06/07 21:59:17

  Modified:             flow-tools-0.68.5.1-r1.ebuild ChangeLog
  Log:
  Marking flow-tools-0.68.5.1-r1 ppc for bug 419211
  
  (Portage version: 2.1.10.49/cvs/Linux ppc64)

Revision  Changes    Path
1.4                  net-analyzer/flow-tools/flow-tools-0.68.5.1-r1.ebuild

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

Index: flow-tools-0.68.5.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/flow-tools-0.68.5.1-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- flow-tools-0.68.5.1-r1.ebuild	4 Jun 2012 10:48:33 -0000	1.3
+++ flow-tools-0.68.5.1-r1.ebuild	7 Jun 2012 21:59:17 -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/flow-tools/flow-tools-0.68.5.1-r1.ebuild,v 1.3 2012/06/04 10:48:33 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/flow-tools-0.68.5.1-r1.ebuild,v 1.4 2012/06/07 21:59:17 ranger Exp $
 
 EAPI=4
 inherit user
@@ -11,7 +11,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ppc ~x86"
 IUSE="debug mysql postgres ssl static-libs"
 
 RDEPEND="sys-apps/tcp-wrappers



1.57                 net-analyzer/flow-tools/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog	4 Jun 2012 10:48:33 -0000	1.56
+++ ChangeLog	7 Jun 2012 21:59:17 -0000	1.57
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/flow-tools
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/ChangeLog,v 1.56 2012/06/04 10:48:33 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/ChangeLog,v 1.57 2012/06/07 21:59:17 ranger Exp $
+
+  07 Jun 2012; Brent Baude <ranger@gentoo.org> flow-tools-0.68.5.1-r1.ebuild:
+  Marking flow-tools-0.68.5.1-r1 ppc for bug 419211
 
   04 Jun 2012; Agostino Sarubbo <ago@gentoo.org> flow-tools-0.68.5.1-r1.ebuild:
   Stable for amd64, wrt bug #419211






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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/flow-tools: flow-tools-0.68.5.1-r1.ebuild ChangeLog
@ 2012-06-14  4:28 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-06-14  4:28 UTC (permalink / raw
  To: gentoo-commits

jdhore      12/06/14 04:28:37

  Modified:             flow-tools-0.68.5.1-r1.ebuild ChangeLog
  Log:
  marked x86 per bug 419211
  
  (Portage version: 2.2.0_alpha110/cvs/Linux i686)

Revision  Changes    Path
1.5                  net-analyzer/flow-tools/flow-tools-0.68.5.1-r1.ebuild

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

Index: flow-tools-0.68.5.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/flow-tools-0.68.5.1-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- flow-tools-0.68.5.1-r1.ebuild	7 Jun 2012 21:59:17 -0000	1.4
+++ flow-tools-0.68.5.1-r1.ebuild	14 Jun 2012 04:28:37 -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/flow-tools/flow-tools-0.68.5.1-r1.ebuild,v 1.4 2012/06/07 21:59:17 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/flow-tools-0.68.5.1-r1.ebuild,v 1.5 2012/06/14 04:28:37 jdhore Exp $
 
 EAPI=4
 inherit user
@@ -11,7 +11,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ppc ~x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="debug mysql postgres ssl static-libs"
 
 RDEPEND="sys-apps/tcp-wrappers



1.58                 net-analyzer/flow-tools/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/ChangeLog,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- ChangeLog	7 Jun 2012 21:59:17 -0000	1.57
+++ ChangeLog	14 Jun 2012 04:28:37 -0000	1.58
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/flow-tools
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/ChangeLog,v 1.57 2012/06/07 21:59:17 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/ChangeLog,v 1.58 2012/06/14 04:28:37 jdhore Exp $
+
+  14 Jun 2012; Jeff Horelick <jdhore@gentoo.org> flow-tools-0.68.5.1-r1.ebuild:
+  marked x86 per bug 419211
 
   07 Jun 2012; Brent Baude <ranger@gentoo.org> flow-tools-0.68.5.1-r1.ebuild:
   Marking flow-tools-0.68.5.1-r1 ppc for bug 419211






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

* [gentoo-commits] gentoo-x86 commit in net-analyzer/flow-tools: flow-tools-0.68.5.1-r1.ebuild ChangeLog
@ 2012-11-21  4:08 Jeroen Roovers (jer)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeroen Roovers (jer) @ 2012-11-21  4:08 UTC (permalink / raw
  To: gentoo-commits

jer         12/11/21 04:08:35

  Modified:             flow-tools-0.68.5.1-r1.ebuild ChangeLog
  Log:
  Add copyright info to conf.d script. Add GPL-2 to LICENSE (bug #425982).
  
  (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.6                  net-analyzer/flow-tools/flow-tools-0.68.5.1-r1.ebuild

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

Index: flow-tools-0.68.5.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/flow-tools-0.68.5.1-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- flow-tools-0.68.5.1-r1.ebuild	14 Jun 2012 04:28:37 -0000	1.5
+++ flow-tools-0.68.5.1-r1.ebuild	21 Nov 2012 04:08:34 -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/flow-tools/flow-tools-0.68.5.1-r1.ebuild,v 1.5 2012/06/14 04:28:37 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/flow-tools-0.68.5.1-r1.ebuild,v 1.6 2012/11/21 04:08:34 jer Exp $
 
 EAPI=4
 inherit user
@@ -9,7 +9,7 @@
 HOMEPAGE="http://code.google.com/p/flow-tools/"
 SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.bz2"
 
-LICENSE="BSD"
+LICENSE="BSD GPL-2"
 SLOT="0"
 KEYWORDS="amd64 ppc x86"
 IUSE="debug mysql postgres ssl static-libs"



1.60                 net-analyzer/flow-tools/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog	14 Jun 2012 14:23:00 -0000	1.59
+++ ChangeLog	21 Nov 2012 04:08:34 -0000	1.60
@@ -1,6 +1,10 @@
 # ChangeLog for net-analyzer/flow-tools
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/ChangeLog,v 1.59 2012/06/14 14:23:00 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/ChangeLog,v 1.60 2012/11/21 04:08:34 jer Exp $
+
+  21 Nov 2012; Jeroen Roovers <jer@gentoo.org> flow-tools-0.68.5.1-r1.ebuild,
+  files/flowcapture.confd:
+  Add copyright info to conf.d script. Add GPL-2 to LICENSE (bug #425982).
 
   14 Jun 2012; Jeroen Roovers <jer@gentoo.org> -flow-tools-0.68.5.1.ebuild:
   Old.





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

end of thread, other threads:[~2012-11-21  4:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-14  4:28 [gentoo-commits] gentoo-x86 commit in net-analyzer/flow-tools: flow-tools-0.68.5.1-r1.ebuild ChangeLog Jeff Horelick (jdhore)
  -- strict thread matches above, loose matches on Subject: below --
2012-11-21  4:08 Jeroen Roovers (jer)
2012-06-07 21:59 Brent Baude (ranger)
2012-06-04 10:48 Agostino Sarubbo (ago)
2012-02-21 16:18 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