public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-firewall/shorewall: ChangeLog shorewall-4.4.15.1.ebuild
@ 2010-12-15 20:02 Constanze Hausner (constanze)
  0 siblings, 0 replies; 7+ messages in thread
From: Constanze Hausner (constanze) @ 2010-12-15 20:02 UTC (permalink / raw
  To: gentoo-commits

constanze    10/12/15 20:02:34

  Modified:             ChangeLog
  Added:                shorewall-4.4.15.1.ebuild
  Log:
  Version bump as requested by bug #339034. Thanks to Zoltan Karcagi.
  
  (Portage version: 2.1.9.24/cvs/Linux x86_64)

Revision  Changes    Path
1.172                net-firewall/shorewall/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v
retrieving revision 1.171
retrieving revision 1.172
diff -u -r1.171 -r1.172
--- ChangeLog	16 Jun 2010 14:44:05 -0000	1.171
+++ ChangeLog	15 Dec 2010 20:02:34 -0000	1.172
@@ -1,6 +1,12 @@
 # ChangeLog for net-firewall/shorewall
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.171 2010/06/16 14:44:05 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.172 2010/12/15 20:02:34 constanze Exp $
+
+*shorewall-4.4.15.1 (13 Dec 2010)
+
+  13 Dec 2010; Constanze Hausner <constanze@gentoo.org>
+  +shorewall-4.4.15.1.ebuild:
+  Version bump as requested by bug #339034. Thanks to Zoltan Karcagi.
 
 *shorewall-4.4.10 (16 Jun 2010)
 



1.1                  net-firewall/shorewall/shorewall-4.4.15.1.ebuild

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

Index: shorewall-4.4.15.1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/shorewall-4.4.15.1.ebuild,v 1.1 2010/12/15 20:02:34 constanze Exp $

EAPI="2"

inherit eutils versionator

# Select version (stable, RC, Beta):
MY_PV_TREE=$(get_version_component_range 1-2)   # for devel versions use "development/$(get_version_component_range 1-2)"
MY_P_BETA=""                                    # stable or experimental (eg. "-RC1" or "-Beta4")
MY_PV_BASE=$(get_version_component_range 1-3)

MY_P="${PN}-${MY_PV_BASE}${MY_P_BETA}"
MY_P_DOCS="${P/${PN}/${PN}-docs-html}"

DESCRIPTION="Shoreline Firewall is an iptables-based firewall for Linux."
HOMEPAGE="http://www.shorewall.net/"
SRC_URI="http://www1.shorewall.net/pub/${PN}/${MY_PV_TREE}/${MY_P}/${P}${MY_P_BETA}.tar.bz2
	doc? ( http://www1.shorewall.net/pub/${PN}/${MY_PV_TREE}/${MY_P}/${MY_P_DOCS}.tar.bz2 )"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="doc"

DEPEND=">=net-firewall/iptables-1.2.4
	sys-apps/iproute2[-minimal]
	dev-lang/perl
	!net-firewall/shorewall-common
	!net-firewall/shorewall-shell
	!net-firewall/shorewall-perl"
RDEPEND="${DEPEND}"

src_compile() {
	einfo "Nothing to compile."
}

src_install() {
	keepdir /var/lib/shorewall

	cd "${WORKDIR}/${P}${MY_P_BETA}"
	PREFIX="${D}" ./install.sh || die "install.sh failed"
	newinitd "${FILESDIR}"/shorewall.initd shorewall || die "doinitd failed"

	dodoc changelog.txt releasenotes.txt || die

	if use doc; then
		cd "${WORKDIR}/${MY_P_DOCS}"
		# install documentation
		dohtml -r *
		## dosym Documentation_Index.html "/usr/share/doc/${PF}/html/index.htm"
		# install samples
		cp -pR "${S}${MY_P_BETA}/Samples" "${D}/usr/share/doc/${PF}"
	fi
}

pkg_postinst() {
	elog
	if use doc ; then
		elog "Documentation is available at /usr/share/doc/${PF}/html."
		elog "Please read the Release Notes in /usr/share/doc/${PF}."
		elog "Samples are available at /usr/share/doc/${PF}/Samples."
	else
		elog "Documentation is available at http://www.shorewall.net"
	fi
	elog "There are man pages for shorewall(8) and for each configuration file."
	elog
	elog "Bridging configuration has changed with kernel 2.6.20+."
	elog "Check the documentation."
	elog
	elog "Do not blindly start shorewall, edit the files in /etc/shorewall first."
	elog
	elog "Be aware that version ${MY_PV_TREE} differs substantially from previous releases."
	elog "Information on upgrading is available at:"
	elog "http://www.shorewall.net/upgrade_issues.htm"
	elog
	elog "There is a 'shorewall compile' command to generate scripts to run"
	elog "on systems with Shorewall Lite installed."
	elog "Please refer to http://www.shorewall.net/CompiledPrograms.html"
	elog "It is advised to copy the /usr/share/shorewall/configfiles dir to your"
	elog "own 'export directories'. However, whenever you upgrade Shorewall you"
	elog "should check for changes in configfiles and manually update your exports."
	elog "Alternatively, if you only have one Shorewall-Lite system in your network"
	elog "then you can use the configfiles dir but set CONFIG_PROTECT appropriately"
	elog "in /etc/make.conf (man make.conf)."
	elog
	elog "Known problems:"
	elog "http://shorewall.net/pub/${PN}/${MY_PV_TREE}/${MY_P}/known_problems.txt"
	elog
	elog "Whether upgrading or installing you should run shorewall check,"
	elog "correct any errors found and run shorewall restart|start."
	elog
	elog "${PN} now uses Perl only. The shell compiler is obsolete."
	elog "shorewall-common, shorewall-shell and shorewall-perl have been removed."
}






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

* [gentoo-commits] gentoo-x86 commit in net-firewall/shorewall: ChangeLog shorewall-4.4.15.1.ebuild
@ 2011-01-25 18:45 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2011-01-25 18:45 UTC (permalink / raw
  To: gentoo-commits

jer         11/01/25 18:45:00

  Modified:             ChangeLog shorewall-4.4.15.1.ebuild
  Log:
  Stable for HPPA (bug #352532).
  
  (Portage version: 2.2.0_alpha19/cvs/Linux i686)

Revision  Changes    Path
1.175                net-firewall/shorewall/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -r1.174 -r1.175
--- ChangeLog	23 Jan 2011 19:22:04 -0000	1.174
+++ ChangeLog	25 Jan 2011 18:45:00 -0000	1.175
@@ -1,6 +1,9 @@
 # ChangeLog for net-firewall/shorewall
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.174 2011/01/23 19:22:04 constanze Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.175 2011/01/25 18:45:00 jer Exp $
+
+  25 Jan 2011; Jeroen Roovers <jer@gentoo.org> shorewall-4.4.15.1.ebuild:
+  Stable for HPPA (bug #352532).
 
   23 Jan 2011; Constanze Hausner <constanze@gentoo.org>
   -shorewall-4.0-r1.ebuild, -shorewall-4.4.2.1.ebuild,



1.2                  net-firewall/shorewall/shorewall-4.4.15.1.ebuild

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

Index: shorewall-4.4.15.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/shorewall/shorewall-4.4.15.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- shorewall-4.4.15.1.ebuild	15 Dec 2010 20:02:34 -0000	1.1
+++ shorewall-4.4.15.1.ebuild	25 Jan 2011 18:45:00 -0000	1.2
@@ -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/shorewall/shorewall-4.4.15.1.ebuild,v 1.1 2010/12/15 20:02:34 constanze Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/shorewall-4.4.15.1.ebuild,v 1.2 2011/01/25 18:45:00 jer Exp $
 
 EAPI="2"
 
@@ -21,7 +21,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 hppa ~ppc ~ppc64 ~sparc ~x86"
 IUSE="doc"
 
 DEPEND=">=net-firewall/iptables-1.2.4






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

* [gentoo-commits] gentoo-x86 commit in net-firewall/shorewall: ChangeLog shorewall-4.4.15.1.ebuild
@ 2011-01-26 19:49 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 7+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-01-26 19:49 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/01/26 19:49:55

  Modified:             ChangeLog shorewall-4.4.15.1.ebuild
  Log:
  Stable on amd64 wrt bug #352532
  
  (Portage version: 2.1.9.35/cvs/Linux x86_64)

Revision  Changes    Path
1.176                net-firewall/shorewall/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -r1.175 -r1.176
--- ChangeLog	25 Jan 2011 18:45:00 -0000	1.175
+++ ChangeLog	26 Jan 2011 19:49:55 -0000	1.176
@@ -1,6 +1,9 @@
 # ChangeLog for net-firewall/shorewall
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.175 2011/01/25 18:45:00 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.176 2011/01/26 19:49:55 hwoarang Exp $
+
+  26 Jan 2011; Markos Chandras <hwoarang@gentoo.org> shorewall-4.4.15.1.ebuild:
+  Stable on amd64 wrt bug #352532
 
   25 Jan 2011; Jeroen Roovers <jer@gentoo.org> shorewall-4.4.15.1.ebuild:
   Stable for HPPA (bug #352532).



1.3                  net-firewall/shorewall/shorewall-4.4.15.1.ebuild

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

Index: shorewall-4.4.15.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/shorewall/shorewall-4.4.15.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- shorewall-4.4.15.1.ebuild	25 Jan 2011 18:45:00 -0000	1.2
+++ shorewall-4.4.15.1.ebuild	26 Jan 2011 19:49:55 -0000	1.3
@@ -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/shorewall/shorewall-4.4.15.1.ebuild,v 1.2 2011/01/25 18:45:00 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/shorewall-4.4.15.1.ebuild,v 1.3 2011/01/26 19:49:55 hwoarang Exp $
 
 EAPI="2"
 
@@ -21,7 +21,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 hppa ~ppc ~ppc64 ~sparc ~x86"
 IUSE="doc"
 
 DEPEND=">=net-firewall/iptables-1.2.4






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

* [gentoo-commits] gentoo-x86 commit in net-firewall/shorewall: ChangeLog shorewall-4.4.15.1.ebuild
@ 2011-02-17 22:49 Thomas Kahle (tomka)
  0 siblings, 0 replies; 7+ messages in thread
From: Thomas Kahle (tomka) @ 2011-02-17 22:49 UTC (permalink / raw
  To: gentoo-commits

tomka       11/02/17 22:49:10

  Modified:             ChangeLog shorewall-4.4.15.1.ebuild
  Log:
  x86 stable per bug 352532
  
  (Portage version: 2.1.9.39/cvs/Linux i686)

Revision  Changes    Path
1.178                net-firewall/shorewall/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v
retrieving revision 1.177
retrieving revision 1.178
diff -u -r1.177 -r1.178
--- ChangeLog	12 Feb 2011 16:34:19 -0000	1.177
+++ ChangeLog	17 Feb 2011 22:49:10 -0000	1.178
@@ -1,6 +1,9 @@
 # ChangeLog for net-firewall/shorewall
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.177 2011/02/12 16:34:19 constanze Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.178 2011/02/17 22:49:10 tomka Exp $
+
+  17 Feb 2011; Thomas Kahle <tomka@gentoo.org> shorewall-4.4.15.1.ebuild:
+  x86 stable per bug 352532
 
 *shorewall-4.4.17 (12 Feb 2011)
 



1.4                  net-firewall/shorewall/shorewall-4.4.15.1.ebuild

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

Index: shorewall-4.4.15.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/shorewall/shorewall-4.4.15.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- shorewall-4.4.15.1.ebuild	26 Jan 2011 19:49:55 -0000	1.3
+++ shorewall-4.4.15.1.ebuild	17 Feb 2011 22:49:10 -0000	1.4
@@ -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/shorewall/shorewall-4.4.15.1.ebuild,v 1.3 2011/01/26 19:49:55 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/shorewall-4.4.15.1.ebuild,v 1.4 2011/02/17 22:49:10 tomka Exp $
 
 EAPI="2"
 
@@ -21,7 +21,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 hppa ~ppc ~ppc64 ~sparc x86"
 IUSE="doc"
 
 DEPEND=">=net-firewall/iptables-1.2.4






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

* [gentoo-commits] gentoo-x86 commit in net-firewall/shorewall: ChangeLog shorewall-4.4.15.1.ebuild
@ 2011-02-27 14:48 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 7+ messages in thread
From: Tobias Klausmann (klausman) @ 2011-02-27 14:48 UTC (permalink / raw
  To: gentoo-commits

klausman    11/02/27 14:48:00

  Modified:             ChangeLog shorewall-4.4.15.1.ebuild
  Log:
  Stable on alpha, bug #352532
  
  (Portage version: 2.1.9.41/cvs/Linux x86_64)

Revision  Changes    Path
1.179                net-firewall/shorewall/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v
retrieving revision 1.178
retrieving revision 1.179
diff -u -r1.178 -r1.179
--- ChangeLog	17 Feb 2011 22:49:10 -0000	1.178
+++ ChangeLog	27 Feb 2011 14:48:00 -0000	1.179
@@ -1,6 +1,10 @@
 # ChangeLog for net-firewall/shorewall
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.178 2011/02/17 22:49:10 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.179 2011/02/27 14:48:00 klausman Exp $
+
+  27 Feb 2011; Tobias Klausmann <klausman@gentoo.org>
+  shorewall-4.4.15.1.ebuild:
+  Stable on alpha, bug #352532
 
   17 Feb 2011; Thomas Kahle <tomka@gentoo.org> shorewall-4.4.15.1.ebuild:
   x86 stable per bug 352532



1.5                  net-firewall/shorewall/shorewall-4.4.15.1.ebuild

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

Index: shorewall-4.4.15.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/shorewall/shorewall-4.4.15.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- shorewall-4.4.15.1.ebuild	17 Feb 2011 22:49:10 -0000	1.4
+++ shorewall-4.4.15.1.ebuild	27 Feb 2011 14:48:00 -0000	1.5
@@ -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/shorewall/shorewall-4.4.15.1.ebuild,v 1.4 2011/02/17 22:49:10 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/shorewall-4.4.15.1.ebuild,v 1.5 2011/02/27 14:48:00 klausman Exp $
 
 EAPI="2"
 
@@ -21,7 +21,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 hppa ~ppc ~ppc64 ~sparc x86"
 IUSE="doc"
 
 DEPEND=">=net-firewall/iptables-1.2.4






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

* [gentoo-commits] gentoo-x86 commit in net-firewall/shorewall: ChangeLog shorewall-4.4.15.1.ebuild
@ 2011-03-20 18:12 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2011-03-20 18:12 UTC (permalink / raw
  To: gentoo-commits

armin76     11/03/20 18:12:25

  Modified:             ChangeLog shorewall-4.4.15.1.ebuild
  Log:
  sparc stable wrt #352532
  
  (Portage version: 2.1.9.44/cvs/Linux ia64)

Revision  Changes    Path
1.181                net-firewall/shorewall/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v
retrieving revision 1.180
retrieving revision 1.181
diff -u -r1.180 -r1.181
--- ChangeLog	13 Mar 2011 11:46:35 -0000	1.180
+++ ChangeLog	20 Mar 2011 18:12:25 -0000	1.181
@@ -1,6 +1,9 @@
 # ChangeLog for net-firewall/shorewall
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.180 2011/03/13 11:46:35 constanze Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.181 2011/03/20 18:12:25 armin76 Exp $
+
+  20 Mar 2011; Raúl Porcel <armin76@gentoo.org> shorewall-4.4.15.1.ebuild:
+  sparc stable wrt #352532
 
 *shorewall-4.4.18 (13 Mar 2011)
 



1.6                  net-firewall/shorewall/shorewall-4.4.15.1.ebuild

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

Index: shorewall-4.4.15.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/shorewall/shorewall-4.4.15.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- shorewall-4.4.15.1.ebuild	27 Feb 2011 14:48:00 -0000	1.5
+++ shorewall-4.4.15.1.ebuild	20 Mar 2011 18:12:25 -0000	1.6
@@ -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/shorewall/shorewall-4.4.15.1.ebuild,v 1.5 2011/02/27 14:48:00 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/shorewall-4.4.15.1.ebuild,v 1.6 2011/03/20 18:12:25 armin76 Exp $
 
 EAPI="2"
 
@@ -21,7 +21,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 hppa ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 hppa ~ppc ~ppc64 sparc x86"
 IUSE="doc"
 
 DEPEND=">=net-firewall/iptables-1.2.4






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

* [gentoo-commits] gentoo-x86 commit in net-firewall/shorewall: ChangeLog shorewall-4.4.15.1.ebuild
@ 2011-03-21 17:04 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 7+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-03-21 17:04 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/03/21 17:04:34

  Modified:             ChangeLog shorewall-4.4.15.1.ebuild
  Log:
  ppc/ppc64 stable wrt #352532
  
  (Portage version: 2.2.0_alpha27/cvs/Linux x86_64)

Revision  Changes    Path
1.182                net-firewall/shorewall/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v
retrieving revision 1.181
retrieving revision 1.182
diff -u -r1.181 -r1.182
--- ChangeLog	20 Mar 2011 18:12:25 -0000	1.181
+++ ChangeLog	21 Mar 2011 17:04:34 -0000	1.182
@@ -1,6 +1,10 @@
 # ChangeLog for net-firewall/shorewall
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.181 2011/03/20 18:12:25 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.182 2011/03/21 17:04:34 xarthisius Exp $
+
+  21 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org>
+  shorewall-4.4.15.1.ebuild:
+  ppc/ppc64 stable wrt #352532
 
   20 Mar 2011; Raúl Porcel <armin76@gentoo.org> shorewall-4.4.15.1.ebuild:
   sparc stable wrt #352532



1.7                  net-firewall/shorewall/shorewall-4.4.15.1.ebuild

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

Index: shorewall-4.4.15.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/shorewall/shorewall-4.4.15.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- shorewall-4.4.15.1.ebuild	20 Mar 2011 18:12:25 -0000	1.6
+++ shorewall-4.4.15.1.ebuild	21 Mar 2011 17:04:34 -0000	1.7
@@ -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/shorewall/shorewall-4.4.15.1.ebuild,v 1.6 2011/03/20 18:12:25 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/shorewall-4.4.15.1.ebuild,v 1.7 2011/03/21 17:04:34 xarthisius Exp $
 
 EAPI="2"
 
@@ -21,7 +21,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 hppa ~ppc ~ppc64 sparc x86"
+KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86"
 IUSE="doc"
 
 DEPEND=">=net-firewall/iptables-1.2.4






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

end of thread, other threads:[~2011-03-21 17:04 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-17 22:49 [gentoo-commits] gentoo-x86 commit in net-firewall/shorewall: ChangeLog shorewall-4.4.15.1.ebuild Thomas Kahle (tomka)
  -- strict thread matches above, loose matches on Subject: below --
2011-03-21 17:04 Kacper Kowalik (xarthisius)
2011-03-20 18:12 Raul Porcel (armin76)
2011-02-27 14:48 Tobias Klausmann (klausman)
2011-01-26 19:49 Markos Chandras (hwoarang)
2011-01-25 18:45 Jeroen Roovers (jer)
2010-12-15 20:02 Constanze Hausner (constanze)

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