public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-firewall/iptables: ChangeLog iptables-1.4.10.ebuild
@ 2010-10-30 14:05 Peter Volkov (pva)
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Volkov (pva) @ 2010-10-30 14:05 UTC (permalink / raw
  To: gentoo-commits

pva         10/10/30 14:05:09

  Modified:             ChangeLog
  Added:                iptables-1.4.10.ebuild
  Log:
  Version bump. Dropped --as-needed hack from ebuild as better solution is upstream now. Remove .la files.
  
  (Portage version: 2.1.9.22/cvs/Linux x86_64)

Revision  Changes    Path
1.226                net-firewall/iptables/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?rev=1.226&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?rev=1.226&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?r1=1.225&r2=1.226

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v
retrieving revision 1.225
retrieving revision 1.226
diff -u -r1.225 -r1.226
--- ChangeLog	6 Sep 2010 20:51:27 -0000	1.225
+++ ChangeLog	30 Oct 2010 14:05:09 -0000	1.226
@@ -1,6 +1,12 @@
 # ChangeLog for net-firewall/iptables
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.225 2010/09/06 20:51:27 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.226 2010/10/30 14:05:09 pva Exp $
+
+*iptables-1.4.10 (30 Oct 2010)
+
+  30 Oct 2010; Peter Volkov <pva@gentoo.org> +iptables-1.4.10.ebuild:
+  Version bump. Dropped --as-needed hack from ebuild as better solution is
+  upstream now. Remove .la files.
 
   06 Sep 2010; Brent Baude <ranger@gentoo.org> iptables-1.4.6.ebuild:
   Marking iptables-1.4.6 ppc64 for bug 318531



1.1                  net-firewall/iptables/iptables-1.4.10.ebuild

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

Index: iptables-1.4.10.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v 1.1 2010/10/30 14:05:09 pva Exp $

EAPI="2"

# Force users doing their own patches to install their own tools
AUTOTOOLS_AUTO_DEPEND=no

inherit eutils toolchain-funcs autotools

DESCRIPTION="Linux kernel (2.4+) firewall, NAT and packet mangling tools"
HOMEPAGE="http://www.iptables.org/"
SRC_URI="http://iptables.org/projects/iptables/files/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="ipv6"

DEPEND="virtual/os-headers"
RDEPEND=""

src_prepare() {
	# Only run autotools if user patched something
	epatch_user && eautoreconf || elibtoolize
}

src_configure() {
	econf \
		--sbindir=/sbin \
		--libexecdir=/$(get_libdir) \
		--enable-devel \
		--enable-libipq \
		--enable-shared \
		--enable-static \
		$(use_enable ipv6)
}

src_compile() {
	emake V=1 || die
}

src_install() {
	emake install DESTDIR="${D}" || die
	dosbin iptables-apply || die
	doman iptables-apply.8 || die
	dodoc INCOMPATIBILITIES iptables.xslt || die

	insinto /usr/include
	doins include/iptables.h $(use ipv6 && echo include/ip6tables.h) || die
	insinto /usr/include/iptables
	doins include/iptables/internal.h || die

	keepdir /var/lib/iptables
	newinitd "${FILESDIR}"/${PN}-1.3.2.init iptables || die
	newconfd "${FILESDIR}"/${PN}-1.3.2.confd iptables || die
	if use ipv6 ; then
		keepdir /var/lib/ip6tables
		newinitd "${FILESDIR}"/iptables-1.3.2.init ip6tables || die
		newconfd "${FILESDIR}"/ip6tables-1.3.2.confd ip6tables || die
	fi

	# Move important libs to /lib
	gen_usr_ldscript -a ip{4,6}tc ipq iptc xtables
	find "${D}" -type f -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed"
}






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

* [gentoo-commits] gentoo-x86 commit in net-firewall/iptables: ChangeLog iptables-1.4.10.ebuild
@ 2010-12-01  8:15 Dawid Weglinski (cla)
  0 siblings, 0 replies; 9+ messages in thread
From: Dawid Weglinski (cla) @ 2010-12-01  8:15 UTC (permalink / raw
  To: gentoo-commits

cla         10/12/01 08:15:06

  Modified:             ChangeLog iptables-1.4.10.ebuild
  Log:
  Stable on amd64 (bug #347179)
  
  (Portage version: 2.1.9.24/cvs/Linux x86_64)

Revision  Changes    Path
1.227                net-firewall/iptables/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?rev=1.227&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?rev=1.227&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?r1=1.226&r2=1.227

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v
retrieving revision 1.226
retrieving revision 1.227
diff -u -r1.226 -r1.227
--- ChangeLog	30 Oct 2010 14:05:09 -0000	1.226
+++ ChangeLog	1 Dec 2010 08:15:06 -0000	1.227
@@ -1,6 +1,9 @@
 # ChangeLog for net-firewall/iptables
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.226 2010/10/30 14:05:09 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.227 2010/12/01 08:15:06 cla Exp $
+
+  01 Dec 2010; Dawid Węgliński <cla@gentoo.org> iptables-1.4.10.ebuild:
+  Stable on amd64 (bug #347179)
 
 *iptables-1.4.10 (30 Oct 2010)
 



1.2                  net-firewall/iptables/iptables-1.4.10.ebuild

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

Index: iptables-1.4.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- iptables-1.4.10.ebuild	30 Oct 2010 14:05:09 -0000	1.1
+++ iptables-1.4.10.ebuild	1 Dec 2010 08:15:06 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v 1.1 2010/10/30 14:05:09 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v 1.2 2010/12/01 08:15:06 cla Exp $
 
 EAPI="2"
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE="ipv6"
 
 DEPEND="virtual/os-headers"






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

* [gentoo-commits] gentoo-x86 commit in net-firewall/iptables: ChangeLog iptables-1.4.10.ebuild
@ 2010-12-22 15:18 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 9+ messages in thread
From: Tobias Klausmann (klausman) @ 2010-12-22 15:18 UTC (permalink / raw
  To: gentoo-commits

klausman    10/12/22 15:18:30

  Modified:             ChangeLog iptables-1.4.10.ebuild
  Log:
  Stable on alpha, bug #347179
  
  (Portage version: 2.1.9.25/cvs/Linux x86_64)

Revision  Changes    Path
1.229                net-firewall/iptables/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?rev=1.229&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?rev=1.229&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?r1=1.228&r2=1.229

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v
retrieving revision 1.228
retrieving revision 1.229
diff -u -r1.228 -r1.229
--- ChangeLog	21 Dec 2010 13:35:21 -0000	1.228
+++ ChangeLog	22 Dec 2010 15:18:30 -0000	1.229
@@ -1,6 +1,9 @@
 # ChangeLog for net-firewall/iptables
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.228 2010/12/21 13:35:21 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.229 2010/12/22 15:18:30 klausman Exp $
+
+  22 Dec 2010; Tobias Klausmann <klausman@gentoo.org> iptables-1.4.10.ebuild:
+  Stable on alpha, bug #347179
 
   21 Dec 2010; Tobias Klausmann <klausman@gentoo.org> iptables-1.4.7.ebuild:
   Stable on alpha to help with bug 340777



1.3                  net-firewall/iptables/iptables-1.4.10.ebuild

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

Index: iptables-1.4.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- iptables-1.4.10.ebuild	1 Dec 2010 08:15:06 -0000	1.2
+++ iptables-1.4.10.ebuild	22 Dec 2010 15:18:30 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v 1.2 2010/12/01 08:15:06 cla Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v 1.3 2010/12/22 15:18:30 klausman Exp $
 
 EAPI="2"
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE="ipv6"
 
 DEPEND="virtual/os-headers"






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

* [gentoo-commits] gentoo-x86 commit in net-firewall/iptables: ChangeLog iptables-1.4.10.ebuild
@ 2010-12-27 20:08 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2010-12-27 20:08 UTC (permalink / raw
  To: gentoo-commits

jer         10/12/27 20:08:44

  Modified:             ChangeLog iptables-1.4.10.ebuild
  Log:
  Stable for HPPA (bug #347179).
  
  (Portage version: 2.2.0_alpha10/cvs/Linux i686)

Revision  Changes    Path
1.230                net-firewall/iptables/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?rev=1.230&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?rev=1.230&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?r1=1.229&r2=1.230

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v
retrieving revision 1.229
retrieving revision 1.230
diff -u -r1.229 -r1.230
--- ChangeLog	22 Dec 2010 15:18:30 -0000	1.229
+++ ChangeLog	27 Dec 2010 20:08:44 -0000	1.230
@@ -1,6 +1,9 @@
 # ChangeLog for net-firewall/iptables
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.229 2010/12/22 15:18:30 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.230 2010/12/27 20:08:44 jer Exp $
+
+  27 Dec 2010; Jeroen Roovers <jer@gentoo.org> iptables-1.4.10.ebuild:
+  Stable for HPPA (bug #347179).
 
   22 Dec 2010; Tobias Klausmann <klausman@gentoo.org> iptables-1.4.10.ebuild:
   Stable on alpha, bug #347179



1.4                  net-firewall/iptables/iptables-1.4.10.ebuild

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

Index: iptables-1.4.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- iptables-1.4.10.ebuild	22 Dec 2010 15:18:30 -0000	1.3
+++ iptables-1.4.10.ebuild	27 Dec 2010 20:08:44 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v 1.3 2010/12/22 15:18:30 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v 1.4 2010/12/27 20:08:44 jer Exp $
 
 EAPI="2"
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE="ipv6"
 
 DEPEND="virtual/os-headers"






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

* [gentoo-commits] gentoo-x86 commit in net-firewall/iptables: ChangeLog iptables-1.4.10.ebuild
@ 2010-12-28 16:53 Markus Meier (maekke)
  0 siblings, 0 replies; 9+ messages in thread
From: Markus Meier (maekke) @ 2010-12-28 16:53 UTC (permalink / raw
  To: gentoo-commits

maekke      10/12/28 16:53:03

  Modified:             ChangeLog iptables-1.4.10.ebuild
  Log:
  arm stable, bug #347179
  
  (Portage version: 2.1.9.26/cvs/Linux i686)

Revision  Changes    Path
1.231                net-firewall/iptables/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?rev=1.231&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?rev=1.231&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?r1=1.230&r2=1.231

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v
retrieving revision 1.230
retrieving revision 1.231
diff -u -r1.230 -r1.231
--- ChangeLog	27 Dec 2010 20:08:44 -0000	1.230
+++ ChangeLog	28 Dec 2010 16:53:02 -0000	1.231
@@ -1,6 +1,9 @@
 # ChangeLog for net-firewall/iptables
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.230 2010/12/27 20:08:44 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.231 2010/12/28 16:53:02 maekke Exp $
+
+  28 Dec 2010; Markus Meier <maekke@gentoo.org> iptables-1.4.10.ebuild:
+  arm stable, bug #347179
 
   27 Dec 2010; Jeroen Roovers <jer@gentoo.org> iptables-1.4.10.ebuild:
   Stable for HPPA (bug #347179).



1.5                  net-firewall/iptables/iptables-1.4.10.ebuild

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

Index: iptables-1.4.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- iptables-1.4.10.ebuild	27 Dec 2010 20:08:44 -0000	1.4
+++ iptables-1.4.10.ebuild	28 Dec 2010 16:53:02 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v 1.4 2010/12/27 20:08:44 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v 1.5 2010/12/28 16:53:02 maekke Exp $
 
 EAPI="2"
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE="ipv6"
 
 DEPEND="virtual/os-headers"






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

* [gentoo-commits] gentoo-x86 commit in net-firewall/iptables: ChangeLog iptables-1.4.10.ebuild
@ 2010-12-29  1:27 Brent Baude (ranger)
  0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2010-12-29  1:27 UTC (permalink / raw
  To: gentoo-commits

ranger      10/12/29 01:27:17

  Modified:             ChangeLog iptables-1.4.10.ebuild
  Log:
  stable ppc64, bug 347179
  
  (Portage version: 2.1.9.25/cvs/Linux ppc64)

Revision  Changes    Path
1.232                net-firewall/iptables/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?rev=1.232&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?rev=1.232&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?r1=1.231&r2=1.232

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v
retrieving revision 1.231
retrieving revision 1.232
diff -u -r1.231 -r1.232
--- ChangeLog	28 Dec 2010 16:53:02 -0000	1.231
+++ ChangeLog	29 Dec 2010 01:27:17 -0000	1.232
@@ -1,6 +1,9 @@
 # ChangeLog for net-firewall/iptables
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.231 2010/12/28 16:53:02 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.232 2010/12/29 01:27:17 ranger Exp $
+
+  29 Dec 2010; Brent Baude <ranger@gentoo.org> iptables-1.4.10.ebuild:
+  stable ppc64, bug 347179
 
   28 Dec 2010; Markus Meier <maekke@gentoo.org> iptables-1.4.10.ebuild:
   arm stable, bug #347179



1.6                  net-firewall/iptables/iptables-1.4.10.ebuild

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

Index: iptables-1.4.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- iptables-1.4.10.ebuild	28 Dec 2010 16:53:02 -0000	1.5
+++ iptables-1.4.10.ebuild	29 Dec 2010 01:27:17 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v 1.5 2010/12/28 16:53:02 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v 1.6 2010/12/29 01:27:17 ranger Exp $
 
 EAPI="2"
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE="ipv6"
 
 DEPEND="virtual/os-headers"






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

* [gentoo-commits] gentoo-x86 commit in net-firewall/iptables: ChangeLog iptables-1.4.10.ebuild
@ 2011-01-03  1:48 Michael Weber (xmw)
  0 siblings, 0 replies; 9+ messages in thread
From: Michael Weber (xmw) @ 2011-01-03  1:48 UTC (permalink / raw
  To: gentoo-commits

xmw         11/01/03 01:48:02

  Modified:             ChangeLog iptables-1.4.10.ebuild
  Log:
  sparc stable (bug 347179)
  
  (Portage version: 2.1.9.25/cvs/Linux x86_64)

Revision  Changes    Path
1.233                net-firewall/iptables/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?rev=1.233&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?rev=1.233&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?r1=1.232&r2=1.233

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v
retrieving revision 1.232
retrieving revision 1.233
diff -u -r1.232 -r1.233
--- ChangeLog	29 Dec 2010 01:27:17 -0000	1.232
+++ ChangeLog	3 Jan 2011 01:48:02 -0000	1.233
@@ -1,6 +1,9 @@
 # ChangeLog for net-firewall/iptables
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.232 2010/12/29 01:27:17 ranger Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.233 2011/01/03 01:48:02 xmw Exp $
+
+  03 Jan 2011; Michael Weber <xmw@gentoo.org> iptables-1.4.10.ebuild:
+  sparc stable (bug 347179)
 
   29 Dec 2010; Brent Baude <ranger@gentoo.org> iptables-1.4.10.ebuild:
   stable ppc64, bug 347179



1.7                  net-firewall/iptables/iptables-1.4.10.ebuild

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

Index: iptables-1.4.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- iptables-1.4.10.ebuild	29 Dec 2010 01:27:17 -0000	1.6
+++ iptables-1.4.10.ebuild	3 Jan 2011 01:48:02 -0000	1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v 1.6 2010/12/29 01:27:17 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v 1.7 2011/01/03 01:48:02 xmw Exp $
 
 EAPI="2"
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh sparc ~x86"
 IUSE="ipv6"
 
 DEPEND="virtual/os-headers"






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

* [gentoo-commits] gentoo-x86 commit in net-firewall/iptables: ChangeLog iptables-1.4.10.ebuild
@ 2011-01-09 17:09 Raul Porcel (armin76)
  0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2011-01-09 17:09 UTC (permalink / raw
  To: gentoo-commits

armin76     11/01/09 17:09:50

  Modified:             ChangeLog iptables-1.4.10.ebuild
  Log:
  ia64/m68k/s390/sh/x86 stable wrt #347179
  
  (Portage version: 2.1.9.25/cvs/Linux ia64)

Revision  Changes    Path
1.234                net-firewall/iptables/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?rev=1.234&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?rev=1.234&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?r1=1.233&r2=1.234

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v
retrieving revision 1.233
retrieving revision 1.234
diff -u -r1.233 -r1.234
--- ChangeLog	3 Jan 2011 01:48:02 -0000	1.233
+++ ChangeLog	9 Jan 2011 17:09:50 -0000	1.234
@@ -1,6 +1,9 @@
 # ChangeLog for net-firewall/iptables
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.233 2011/01/03 01:48:02 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.234 2011/01/09 17:09:50 armin76 Exp $
+
+  09 Jan 2011; Raúl Porcel <armin76@gentoo.org> iptables-1.4.10.ebuild:
+  ia64/m68k/s390/sh/x86 stable wrt #347179
 
   03 Jan 2011; Michael Weber <xmw@gentoo.org> iptables-1.4.10.ebuild:
   sparc stable (bug 347179)



1.8                  net-firewall/iptables/iptables-1.4.10.ebuild

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

Index: iptables-1.4.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- iptables-1.4.10.ebuild	3 Jan 2011 01:48:02 -0000	1.7
+++ iptables-1.4.10.ebuild	9 Jan 2011 17:09:50 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v 1.7 2011/01/03 01:48:02 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v 1.8 2011/01/09 17:09:50 armin76 Exp $
 
 EAPI="2"
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh sparc ~x86"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ~ppc ppc64 s390 sh sparc x86"
 IUSE="ipv6"
 
 DEPEND="virtual/os-headers"






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

* [gentoo-commits] gentoo-x86 commit in net-firewall/iptables: ChangeLog iptables-1.4.10.ebuild
@ 2011-01-13 18:56 Brent Baude (ranger)
  0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2011-01-13 18:56 UTC (permalink / raw
  To: gentoo-commits

ranger      11/01/13 18:56:23

  Modified:             ChangeLog iptables-1.4.10.ebuild
  Log:
  stable ppc, bug 347179
  
  (Portage version: 2.1.9.25/cvs/Linux ppc64)

Revision  Changes    Path
1.235                net-firewall/iptables/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?rev=1.235&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?rev=1.235&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/iptables/ChangeLog?r1=1.234&r2=1.235

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v
retrieving revision 1.234
retrieving revision 1.235
diff -u -r1.234 -r1.235
--- ChangeLog	9 Jan 2011 17:09:50 -0000	1.234
+++ ChangeLog	13 Jan 2011 18:56:23 -0000	1.235
@@ -1,6 +1,9 @@
 # ChangeLog for net-firewall/iptables
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.234 2011/01/09 17:09:50 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.235 2011/01/13 18:56:23 ranger Exp $
+
+  13 Jan 2011; Brent Baude <ranger@gentoo.org> iptables-1.4.10.ebuild:
+  stable ppc, bug 347179
 
   09 Jan 2011; Raúl Porcel <armin76@gentoo.org> iptables-1.4.10.ebuild:
   ia64/m68k/s390/sh/x86 stable wrt #347179



1.9                  net-firewall/iptables/iptables-1.4.10.ebuild

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

Index: iptables-1.4.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- iptables-1.4.10.ebuild	9 Jan 2011 17:09:50 -0000	1.8
+++ iptables-1.4.10.ebuild	13 Jan 2011 18:56:23 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v 1.8 2011/01/09 17:09:50 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.10.ebuild,v 1.9 2011/01/13 18:56:23 ranger Exp $
 
 EAPI="2"
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ~ppc ppc64 s390 sh sparc x86"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
 IUSE="ipv6"
 
 DEPEND="virtual/os-headers"






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

end of thread, other threads:[~2011-01-13 18:56 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-22 15:18 [gentoo-commits] gentoo-x86 commit in net-firewall/iptables: ChangeLog iptables-1.4.10.ebuild Tobias Klausmann (klausman)
  -- strict thread matches above, loose matches on Subject: below --
2011-01-13 18:56 Brent Baude (ranger)
2011-01-09 17:09 Raul Porcel (armin76)
2011-01-03  1:48 Michael Weber (xmw)
2010-12-29  1:27 Brent Baude (ranger)
2010-12-28 16:53 Markus Meier (maekke)
2010-12-27 20:08 Jeroen Roovers (jer)
2010-12-01  8:15 Dawid Weglinski (cla)
2010-10-30 14:05 Peter Volkov (pva)

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