public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-firewall/firehol: firehol-1.273-r1.ebuild ChangeLog
@ 2009-07-15 16:06 Robert Buchholz (rbu)
  0 siblings, 0 replies; 4+ messages in thread
From: Robert Buchholz (rbu) @ 2009-07-15 16:06 UTC (permalink / raw
  To: gentoo-commits

rbu         09/07/15 16:06:25

  Modified:             ChangeLog
  Added:                firehol-1.273-r1.ebuild
  Log:
  Patch CVE-2008-4953, symlink attack on a firehol directory in /tmp. Patch tested by Kerin Millar, thanks. Fixes bug 246013.
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.41                 net-firewall/firehol/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-firewall/firehol/ChangeLog?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-firewall/firehol/ChangeLog?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-firewall/firehol/ChangeLog?r1=1.40&r2=1.41

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/firehol/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog	9 Mar 2009 16:54:00 -0000	1.40
+++ ChangeLog	15 Jul 2009 16:06:24 -0000	1.41
@@ -1,6 +1,13 @@
 # ChangeLog for net-firewall/firehol
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/ChangeLog,v 1.40 2009/03/09 16:54:00 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/ChangeLog,v 1.41 2009/07/15 16:06:24 rbu Exp $
+
+*firehol-1.273-r1 (15 Jul 2009)
+
+  15 Jul 2009; Robert Buchholz <rbu@gentoo.org>
+  +files/firehol-1.273-CVE-2008-4953.patch, +firehol-1.273-r1.ebuild:
+  Patch CVE-2008-4953, symlink attack on a firehol directory in /tmp. Patch
+  tested by Kerin Millar, thanks. Fixes bug 246013.
 
   09 Mar 2009; Raúl Porcel <armin76@gentoo.org> firehol-1.273.ebuild:
   x86 stable wrt #261699



1.1                  net-firewall/firehol/firehol-1.273-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-firewall/firehol/firehol-1.273-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-firewall/firehol/firehol-1.273-r1.ebuild?rev=1.1&content-type=text/plain

Index: firehol-1.273-r1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/firehol-1.273-r1.ebuild,v 1.1 2009/07/15 16:06:24 rbu Exp $

EAPI=2

inherit eutils linux-info

DESCRIPTION="iptables firewall generator"
HOMEPAGE="http://firehol.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
IUSE=""
KEYWORDS="~amd64 ~ppc ~sparc ~x86"

DEPEND="sys-apps/iproute2"
RDEPEND="net-firewall/iptables
	sys-apps/iproute2[-minimal]
	virtual/modutils
	|| (
		net-misc/wget
		net-misc/curl
	)"

src_prepare() {
	epatch "${FILESDIR}"/${P}-CVE-2008-4953.patch || die
}


pkg_setup() {
	# perform checks for kernel config from eclass linux-info
	# for now we just print warnings as I am not sure if these
	# are required always...
	local KCONFIG_OPTS="~NF_CONNTRACK_IPV4 ~NF_CONNTRACK_MARK \
		~IP_NF_IPTABLES ~IP_NF_FILTER ~IP_NF_TARGET_REJECT \
		~IP_NF_TARGET_LOG ~IP_NF_TARGET_ULOG ~NF_NAT \
		~IP_NF_TARGET_MASQUERADE ~IP_NF_TARGET_REDIRECT ~IP_NF_MANGLE"
	get_version
	if [ ${KV_PATCH} -ge 25 ]; then
		CONFIG_CHECK="~NF_CONNTRACK ${KCONFIG_OPTS}"
	else
		CONFIG_CHECK="~NF_CONNTRACK_ENABLED ${KCONFIG_OPTS}"
	fi
	linux-info_pkg_setup
}

src_install() {
	newsbin firehol.sh firehol

	dodir /etc/firehol /etc/firehol/examples /etc/firehol/services
	insinto /etc/firehol/examples
	doins examples/* || die

	newconfd "${FILESDIR}/firehol.conf.d" firehol || die

	dodoc ChangeLog README TODO WhatIsNew || die
	dohtml doc/*.html doc/*.css  || die

	docinto scripts
	dodoc get-iana.sh adblock.sh || die

	doman man/*.1 man/*.5 || die

	newinitd "${FILESDIR}/firehol.initrd" firehol || die
}

pkg_postinst() {
	elog "The default path to firehol's configuration file is /etc/firehol/firehol.conf"
	elog "See /etc/firehol/examples for configuration examples."
	#
	# Install a default configuration if none is available yet
	if [[ ! -e "${ROOT}/etc/firehol/firehol.conf" ]]; then
		einfo "Installing a sample configuration as ${ROOT}/etc/firehol/firehol.conf"
		cp "${ROOT}/etc/firehol/examples/client-all.conf" "${ROOT}/etc/firehol/firehol.conf"
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in net-firewall/firehol: firehol-1.273-r1.ebuild ChangeLog
@ 2009-07-16  8:02 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 4+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-07-16  8:02 UTC (permalink / raw
  To: gentoo-commits

fauli       09/07/16 08:02:59

  Modified:             firehol-1.273-r1.ebuild ChangeLog
  Log:
  stable x86, security bug 246013
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.3                  net-firewall/firehol/firehol-1.273-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-firewall/firehol/firehol-1.273-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-firewall/firehol/firehol-1.273-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-firewall/firehol/firehol-1.273-r1.ebuild?r1=1.2&r2=1.3

Index: firehol-1.273-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/firehol/firehol-1.273-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- firehol-1.273-r1.ebuild	16 Jul 2009 00:44:47 -0000	1.2
+++ firehol-1.273-r1.ebuild	16 Jul 2009 08:02:59 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/firehol-1.273-r1.ebuild,v 1.2 2009/07/16 00:44:47 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/firehol-1.273-r1.ebuild,v 1.3 2009/07/16 08:02:59 fauli Exp $
 
 EAPI=2
 
@@ -13,7 +13,7 @@
 LICENSE="GPL-2"
 SLOT="0"
 IUSE=""
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc ~sparc x86"
 
 DEPEND="sys-apps/iproute2"
 RDEPEND="net-firewall/iptables



1.42                 net-firewall/firehol/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-firewall/firehol/ChangeLog?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-firewall/firehol/ChangeLog?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-firewall/firehol/ChangeLog?r1=1.41&r2=1.42

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/firehol/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog	15 Jul 2009 16:06:24 -0000	1.41
+++ ChangeLog	16 Jul 2009 08:02:59 -0000	1.42
@@ -1,6 +1,10 @@
 # ChangeLog for net-firewall/firehol
-# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/ChangeLog,v 1.41 2009/07/15 16:06:24 rbu Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/ChangeLog,v 1.42 2009/07/16 08:02:59 fauli Exp $
+
+  16 Jul 2009; Christian Faulhammer <fauli@gentoo.org>
+  firehol-1.273-r1.ebuild:
+  stable x86, security bug 246013
 
 *firehol-1.273-r1 (15 Jul 2009)
 






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

* [gentoo-commits] gentoo-x86 commit in net-firewall/firehol: firehol-1.273-r1.ebuild ChangeLog
@ 2011-04-24 21:01 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 4+ messages in thread
From: Ulrich Mueller (ulm) @ 2011-04-24 21:01 UTC (permalink / raw
  To: gentoo-commits

ulm         11/04/24 21:01:05

  Modified:             firehol-1.273-r1.ebuild ChangeLog
  Log:
  Replace dependency on virtual/modutils, bug 358891.
  
  (Portage version: 2.1.9.46/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  net-firewall/firehol/firehol-1.273-r1.ebuild

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

Index: firehol-1.273-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/firehol/firehol-1.273-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- firehol-1.273-r1.ebuild	16 Jul 2009 08:02:59 -0000	1.3
+++ firehol-1.273-r1.ebuild	24 Apr 2011 21:01:05 -0000	1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 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/firehol/firehol-1.273-r1.ebuild,v 1.3 2009/07/16 08:02:59 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/firehol-1.273-r1.ebuild,v 1.4 2011/04/24 21:01:05 ulm Exp $
 
 EAPI=2
 
@@ -18,7 +18,7 @@
 DEPEND="sys-apps/iproute2"
 RDEPEND="net-firewall/iptables
 	sys-apps/iproute2[-minimal]
-	virtual/modutils
+	sys-apps/module-init-tools
 	|| (
 		net-misc/wget
 		net-misc/curl



1.45                 net-firewall/firehol/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/firehol/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog	29 Sep 2009 19:30:17 -0000	1.44
+++ ChangeLog	24 Apr 2011 21:01:05 -0000	1.45
@@ -1,6 +1,9 @@
 # ChangeLog for net-firewall/firehol
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/ChangeLog,v 1.44 2009/09/29 19:30:17 bangert Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/ChangeLog,v 1.45 2011/04/24 21:01:05 ulm Exp $
+
+  24 Apr 2011; Ulrich Mueller <ulm@gentoo.org> firehol-1.273-r1.ebuild:
+  Replace dependency on virtual/modutils, bug 358891.
 
   29 Sep 2009; Thilo Bangert <bangert@gentoo.org>
   -files/firehol-1.226-to-228.patch, -firehol-1.250-r2.ebuild,






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

* [gentoo-commits] gentoo-x86 commit in net-firewall/firehol: firehol-1.273-r1.ebuild ChangeLog
@ 2012-02-25  6:34 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 4+ messages in thread
From: Robin H. Johnson (robbat2) @ 2012-02-25  6:34 UTC (permalink / raw
  To: gentoo-commits

robbat2     12/02/25 06:34:01

  Modified:             firehol-1.273-r1.ebuild ChangeLog
  Log:
  Bug #405687: Depend on virtual/modutils instead of sys-apps/module-init-tools.
  
  (Portage version: 2.2.0_alpha87/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  net-firewall/firehol/firehol-1.273-r1.ebuild

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

Index: firehol-1.273-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/firehol/firehol-1.273-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -p -w -b -B -u -u -r1.4 -r1.5
--- firehol-1.273-r1.ebuild	24 Apr 2011 21:01:05 -0000	1.4
+++ firehol-1.273-r1.ebuild	25 Feb 2012 06:34:01 -0000	1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/firehol-1.273-r1.ebuild,v 1.4 2011/04/24 21:01:05 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/firehol-1.273-r1.ebuild,v 1.5 2012/02/25 06:34:01 robbat2 Exp $
 
 EAPI=2
 
@@ -18,7 +18,7 @@ KEYWORDS="~amd64 ~ppc ~sparc x86"
 DEPEND="sys-apps/iproute2"
 RDEPEND="net-firewall/iptables
 	sys-apps/iproute2[-minimal]
-	sys-apps/module-init-tools
+	virtual/modutils
 	|| (
 		net-misc/wget
 		net-misc/curl



1.46                 net-firewall/firehol/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/firehol/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -p -w -b -B -u -u -r1.45 -r1.46
--- ChangeLog	24 Apr 2011 21:01:05 -0000	1.45
+++ ChangeLog	25 Feb 2012 06:34:01 -0000	1.46
@@ -1,6 +1,9 @@
 # ChangeLog for net-firewall/firehol
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/ChangeLog,v 1.45 2011/04/24 21:01:05 ulm Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/ChangeLog,v 1.46 2012/02/25 06:34:01 robbat2 Exp $
+
+  25 Feb 2012; Robin H. Johnson <robbat2@gentoo.org> firehol-1.273-r1.ebuild:
+  Bug #405687: Depend on virtual/modutils instead of sys-apps/module-init-tools.
 
   24 Apr 2011; Ulrich Mueller <ulm@gentoo.org> firehol-1.273-r1.ebuild:
   Replace dependency on virtual/modutils, bug 358891.






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

end of thread, other threads:[~2012-02-25  6:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-25  6:34 [gentoo-commits] gentoo-x86 commit in net-firewall/firehol: firehol-1.273-r1.ebuild ChangeLog Robin H. Johnson (robbat2)
  -- strict thread matches above, loose matches on Subject: below --
2011-04-24 21:01 Ulrich Mueller (ulm)
2009-07-16  8:02 Christian Faulhammer (fauli)
2009-07-15 16:06 Robert Buchholz (rbu)

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