public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in www-apache/mod_security: mod_security-2.5.9-r1.ebuild ChangeLog
@ 2009-07-14 17:09 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 6+ messages in thread
From: Diego Petteno (flameeyes) @ 2009-07-14 17:09 UTC (permalink / raw
  To: gentoo-commits

flameeyes    09/07/14 17:09:29

  Modified:             ChangeLog
  Added:                mod_security-2.5.9-r1.ebuild
  Log:
  Add patch to properly build with --as-needed (thanks to Christian Ruppert in bug #276272 — this required an extra fix to the autotools); add a perl USE flag to disable the update script and add the libwww-perl dependency (thanks again to Christian in bug #275864), and add a notice about the draconic command injection rule (bug #223815 reported by David Sommerseth.
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.23                 www-apache/mod_security/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	14 Jun 2009 10:22:26 -0000	1.22
+++ ChangeLog	14 Jul 2009 17:09:29 -0000	1.23
@@ -1,6 +1,18 @@
 # ChangeLog for www-apache/mod_security
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v 1.22 2009/06/14 10:22:26 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v 1.23 2009/07/14 17:09:29 flameeyes Exp $
+
+*mod_security-2.5.9-r1 (14 Jul 2009)
+
+  14 Jul 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+  +mod_security-2.5.9-r1.ebuild, +files/mod_security-2.5.9-as-needed.patch,
+  files/mod_security-2.5.9-broken-autotools.patch:
+  Add patch to properly build with --as-needed (thanks to Christian Ruppert
+  in bug #276272 — this required an extra fix to the autotools); add a
+  perl USE flag to disable the update script and add the libwww-perl
+  dependency (thanks again to Christian in bug #275864), and add a notice
+  about the draconic command injection rule (bug #223815 reported by David
+  Sommerseth.
 
   14 Jun 2009; Diego E. Pettenò <flameeyes@gentoo.org> metadata.xml:
   Add myself as maintainer too since I haven't seen Luca in a while.



1.1                  www-apache/mod_security/mod_security-2.5.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild?rev=1.1&content-type=text/plain

Index: mod_security-2.5.9-r1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild,v 1.1 2009/07/14 17:09:29 flameeyes Exp $

inherit apache-module autotools

MY_P=${P/mod_security-/modsecurity-apache_}
MY_P=${MY_P/_rc/-rc}

DESCRIPTION="Web application firewall and Intrusion Detection System for Apache."
HOMEPAGE="http://www.modsecurity.org/"
SRC_URI="http://www.modsecurity.org/download/${MY_P}.tar.gz"

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

DEPEND="dev-libs/libxml2
	perl? ( dev-perl/libwww-perl )
	lua? ( >=dev-lang/lua-5.1 )"
RDEPEND="${DEPEND}"

S="${WORKDIR}/${MY_P}"

APACHE2_MOD_FILE="apache2/.libs/${PN}2.so"
APACHE2_MOD_CONF="2.1.2/99_mod_security"
APACHE2_MOD_DEFINE="SECURITY"

need_apache2

src_unpack() {
	unpack ${A}

	cd "${S}"/apache2

	epatch "${FILESDIR}"/${P}-broken-autotools.patch
	epatch "${FILESDIR}"/${P}-as-needed.patch

	eautoreconf
}

src_compile() {
	cd apache2

	econf --with-apxs="${APXS}" \
		--without-curl \
		$(use_with lua) \
		|| die "econf failed"

	APXS_FLAGS=
	for flag in ${CFLAGS}; do
		APXS_FLAGS="${APXS_FLAGS} -Wc,${flag}"
	done

	# Yes we need to prefix it _twice_
	for flag in ${LDFLAGS}; do
		APXS_FLAGS="${APXS_FLAGS} -Wl,${flag}"
	done

	emake \
		APXS_CFLAGS="${CFLAGS}" \
		APXS_LDFLAGS="${LDFLAGS}" \
		APXS_EXTRA_CFLAGS="${APXS_FLAGS}" \
		|| die "emake failed"
}

src_test() {
	cd apache2
	make test || die
}

src_install() {
	apache-module_src_install

	# install rules updater only if perl is enabled (optionally)
	if use perl; then
		newbin tools/rules-updater.pl modsec-rules-updater || die
	fi

	# install documentation
	dodoc CHANGES || die
	newdoc rules/CHANGELOG CHANGES.crs || die
	newdoc rules/README README.crs || die
	dohtml -r doc/* || die

	# Prepare the core ruleset
	cd "${S}"/rules/

	sed -i -e 's:logs/:/var/log/apache2/:g' *.conf || die

	insinto ${APACHE_MODULES_CONFDIR}/mod_security/
	for i in *.conf; do
		newins ${i} ${i/modsecurity_crs_/} || die
	done
}

pkg_postinst() {
	elog "Please note that the core rule set distributed with mod_security is quite"
	elog "draconic. If you're using this on a blog, a forum or another user-submitted"
	elog "web application where you might talk about standard Unix paths (such as /etc"
	elog "or /bin), you might want to disable at least rule 950005 (command injection)"
	elog "if you're sure it might not be a security risk."
	elog " "
	elog "To do that on the most limited case you might want to use something like"
	elog "the following code (this comes from a Typo weblog instance):"
	elog " "
	elog "	<Location /comments>"
	elog "	SecRuleRemoveById 950005"
	elog "	</Location>"
	elog " "
}






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

* [gentoo-commits] gentoo-x86 commit in www-apache/mod_security: mod_security-2.5.9-r1.ebuild ChangeLog
@ 2009-07-15 19:13 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 6+ messages in thread
From: Diego Petteno (flameeyes) @ 2009-07-15 19:13 UTC (permalink / raw
  To: gentoo-commits

flameeyes    09/07/15 19:13:03

  Modified:             mod_security-2.5.9-r1.ebuild ChangeLog
  Log:
  Install modsec-rules-updater in sbin, since it requires root privileges.
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  www-apache/mod_security/mod_security-2.5.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild?r1=1.1&r2=1.2

Index: mod_security-2.5.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mod_security-2.5.9-r1.ebuild	14 Jul 2009 17:09:29 -0000	1.1
+++ mod_security-2.5.9-r1.ebuild	15 Jul 2009 19:13:03 -0000	1.2
@@ -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/www-apache/mod_security/mod_security-2.5.9-r1.ebuild,v 1.1 2009/07/14 17:09:29 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild,v 1.2 2009/07/15 19:13:03 flameeyes Exp $
 
 inherit apache-module autotools
 
@@ -75,7 +75,7 @@
 
 	# install rules updater only if perl is enabled (optionally)
 	if use perl; then
-		newbin tools/rules-updater.pl modsec-rules-updater || die
+		newsbin tools/rules-updater.pl modsec-rules-updater || die
 	fi
 
 	# install documentation



1.26                 www-apache/mod_security/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	15 Jul 2009 12:48:23 -0000	1.25
+++ ChangeLog	15 Jul 2009 19:13:03 -0000	1.26
@@ -1,6 +1,10 @@
 # ChangeLog for www-apache/mod_security
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v 1.25 2009/07/15 12:48:23 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v 1.26 2009/07/15 19:13:03 flameeyes Exp $
+
+  15 Jul 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+  mod_security-2.5.9-r1.ebuild:
+  Install modsec-rules-updater in sbin, since it requires root privileges.
 
   15 Jul 2009; Diego E. Pettenò <flameeyes@gentoo.org>
   +files/2.1.2/99_mod_security.conf:






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

* [gentoo-commits] gentoo-x86 commit in www-apache/mod_security: mod_security-2.5.9-r1.ebuild ChangeLog
@ 2009-07-27 16:42 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 6+ messages in thread
From: Diego Petteno (flameeyes) @ 2009-07-27 16:42 UTC (permalink / raw
  To: gentoo-commits

flameeyes    09/07/27 16:42:44

  Modified:             mod_security-2.5.9-r1.ebuild ChangeLog
  Log:
  Also list rule 950907 in the list of draconian rules.
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  www-apache/mod_security/mod_security-2.5.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild?r1=1.2&r2=1.3

Index: mod_security-2.5.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mod_security-2.5.9-r1.ebuild	15 Jul 2009 19:13:03 -0000	1.2
+++ mod_security-2.5.9-r1.ebuild	27 Jul 2009 16:42:44 -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/www-apache/mod_security/mod_security-2.5.9-r1.ebuild,v 1.2 2009/07/15 19:13:03 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild,v 1.3 2009/07/27 16:42:44 flameeyes Exp $
 
 inherit apache-module autotools
 
@@ -99,14 +99,14 @@
 	elog "Please note that the core rule set distributed with mod_security is quite"
 	elog "draconic. If you're using this on a blog, a forum or another user-submitted"
 	elog "web application where you might talk about standard Unix paths (such as /etc"
-	elog "or /bin), you might want to disable at least rule 950005 (command injection)"
-	elog "if you're sure it might not be a security risk."
+	elog "or /bin), you might want to disable at least rules 950005 and 950907"
+	elog "(command injection) if you're sure it might not be a security risk."
 	elog " "
 	elog "To do that on the most limited case you might want to use something like"
 	elog "the following code (this comes from a Typo weblog instance):"
 	elog " "
 	elog "	<Location /comments>"
-	elog "	SecRuleRemoveById 950005"
+	elog "	SecRuleRemoveById 950005 950907"
 	elog "	</Location>"
 	elog " "
 }



1.27                 www-apache/mod_security/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	15 Jul 2009 19:13:03 -0000	1.26
+++ ChangeLog	27 Jul 2009 16:42:44 -0000	1.27
@@ -1,6 +1,10 @@
 # ChangeLog for www-apache/mod_security
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v 1.26 2009/07/15 19:13:03 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v 1.27 2009/07/27 16:42:44 flameeyes Exp $
+
+  27 Jul 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+  mod_security-2.5.9-r1.ebuild:
+  Also list rule 950907 in the list of draconian rules.
 
   15 Jul 2009; Diego E. Pettenò <flameeyes@gentoo.org>
   mod_security-2.5.9-r1.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in www-apache/mod_security: mod_security-2.5.9-r1.ebuild ChangeLog
@ 2009-11-19 16:38 Markus Meier (maekke)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2009-11-19 16:38 UTC (permalink / raw
  To: gentoo-commits

maekke      09/11/19 16:38:56

  Modified:             mod_security-2.5.9-r1.ebuild ChangeLog
  Log:
  amd64/x86 stable, bug #293366
  (Portage version: 2.2_rc50/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  www-apache/mod_security/mod_security-2.5.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild?r1=1.3&r2=1.4

Index: mod_security-2.5.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mod_security-2.5.9-r1.ebuild	27 Jul 2009 16:42:44 -0000	1.3
+++ mod_security-2.5.9-r1.ebuild	19 Nov 2009 16:38:56 -0000	1.4
@@ -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/www-apache/mod_security/mod_security-2.5.9-r1.ebuild,v 1.3 2009/07/27 16:42:44 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild,v 1.4 2009/11/19 16:38:56 maekke Exp $
 
 inherit apache-module autotools
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~mips ~ppc ~sparc x86"
 IUSE="lua perl"
 
 DEPEND="dev-libs/libxml2



1.32                 www-apache/mod_security/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	16 Nov 2009 10:18:52 -0000	1.31
+++ ChangeLog	19 Nov 2009 16:38:56 -0000	1.32
@@ -1,6 +1,10 @@
 # ChangeLog for www-apache/mod_security
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v 1.31 2009/11/16 10:18:52 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v 1.32 2009/11/19 16:38:56 maekke Exp $
+
+  19 Nov 2009; Markus Meier <maekke@gentoo.org>
+  mod_security-2.5.9-r1.ebuild:
+  amd64/x86 stable, bug #293366
 
 *mod_security-2.5.11 (16 Nov 2009)
 






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

* [gentoo-commits] gentoo-x86 commit in www-apache/mod_security: mod_security-2.5.9-r1.ebuild ChangeLog
@ 2009-12-08 19:39 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 6+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-12-08 19:39 UTC (permalink / raw
  To: gentoo-commits

nixnut      09/12/08 19:39:46

  Modified:             mod_security-2.5.9-r1.ebuild ChangeLog
  Log:
  ppc stable #293366
  (Portage version: 2.1.6.13/cvs/Linux ppc)

Revision  Changes    Path
1.5                  www-apache/mod_security/mod_security-2.5.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild?r1=1.4&r2=1.5

Index: mod_security-2.5.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- mod_security-2.5.9-r1.ebuild	19 Nov 2009 16:38:56 -0000	1.4
+++ mod_security-2.5.9-r1.ebuild	8 Dec 2009 19:39:46 -0000	1.5
@@ -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/www-apache/mod_security/mod_security-2.5.9-r1.ebuild,v 1.4 2009/11/19 16:38:56 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild,v 1.5 2009/12/08 19:39:46 nixnut Exp $
 
 inherit apache-module autotools
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~mips ~ppc ~sparc x86"
+KEYWORDS="amd64 ~mips ppc ~sparc x86"
 IUSE="lua perl"
 
 DEPEND="dev-libs/libxml2



1.35                 www-apache/mod_security/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/ChangeLog?r1=1.34&r2=1.35

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	26 Nov 2009 09:48:42 -0000	1.34
+++ ChangeLog	8 Dec 2009 19:39:46 -0000	1.35
@@ -1,6 +1,9 @@
 # ChangeLog for www-apache/mod_security
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v 1.34 2009/11/26 09:48:42 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v 1.35 2009/12/08 19:39:46 nixnut Exp $
+
+  08 Dec 2009; nixnut <nixnut@gentoo.org> mod_security-2.5.9-r1.ebuild:
+  ppc stable #293366
 
 *mod_security-2.5.11-r2 (26 Nov 2009)
 






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

* [gentoo-commits] gentoo-x86 commit in www-apache/mod_security: mod_security-2.5.9-r1.ebuild ChangeLog
@ 2009-12-28 18:18 Raul Porcel (armin76)
  0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2009-12-28 18:18 UTC (permalink / raw
  To: gentoo-commits

armin76     09/12/28 18:18:13

  Modified:             mod_security-2.5.9-r1.ebuild ChangeLog
  Log:
  sparc stable wrt #293366
  (Portage version: 2.1.6.13/cvs/Linux ia64)

Revision  Changes    Path
1.6                  www-apache/mod_security/mod_security-2.5.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild?r1=1.5&r2=1.6

Index: mod_security-2.5.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- mod_security-2.5.9-r1.ebuild	8 Dec 2009 19:39:46 -0000	1.5
+++ mod_security-2.5.9-r1.ebuild	28 Dec 2009 18:18:13 -0000	1.6
@@ -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/www-apache/mod_security/mod_security-2.5.9-r1.ebuild,v 1.5 2009/12/08 19:39:46 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/mod_security-2.5.9-r1.ebuild,v 1.6 2009/12/28 18:18:13 armin76 Exp $
 
 inherit apache-module autotools
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~mips ppc ~sparc x86"
+KEYWORDS="amd64 ~mips ppc sparc x86"
 IUSE="lua perl"
 
 DEPEND="dev-libs/libxml2



1.36                 www-apache/mod_security/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_security/ChangeLog?r1=1.35&r2=1.36

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	8 Dec 2009 19:39:46 -0000	1.35
+++ ChangeLog	28 Dec 2009 18:18:13 -0000	1.36
@@ -1,6 +1,10 @@
 # ChangeLog for www-apache/mod_security
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v 1.35 2009/12/08 19:39:46 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_security/ChangeLog,v 1.36 2009/12/28 18:18:13 armin76 Exp $
+
+  28 Dec 2009; Raúl Porcel <armin76@gentoo.org>
+  mod_security-2.5.9-r1.ebuild:
+  sparc stable wrt #293366
 
   08 Dec 2009; nixnut <nixnut@gentoo.org> mod_security-2.5.9-r1.ebuild:
   ppc stable #293366






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

end of thread, other threads:[~2009-12-28 18:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-19 16:38 [gentoo-commits] gentoo-x86 commit in www-apache/mod_security: mod_security-2.5.9-r1.ebuild ChangeLog Markus Meier (maekke)
  -- strict thread matches above, loose matches on Subject: below --
2009-12-28 18:18 Raul Porcel (armin76)
2009-12-08 19:39 Gysbert Wassenaar (nixnut)
2009-07-27 16:42 Diego Petteno (flameeyes)
2009-07-15 19:13 Diego Petteno (flameeyes)
2009-07-14 17:09 Diego Petteno (flameeyes)

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