* [gentoo-commits] gentoo-x86 commit in net-firewall/ipset: ChangeLog ipset-4.4.ebuild
@ 2010-10-14 15:41 Peter Volkov (pva)
0 siblings, 0 replies; 3+ messages in thread
From: Peter Volkov (pva) @ 2010-10-14 15:41 UTC (permalink / raw
To: gentoo-commits
pva 10/10/14 15:41:22
Modified: ChangeLog
Added: ipset-4.4.ebuild
Log:
Version bump.
(Portage version: 2.2_rc83/cvs/Linux x86_64)
Revision Changes Path
1.38 net-firewall/ipset/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipset/ChangeLog?rev=1.38&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipset/ChangeLog?rev=1.38&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipset/ChangeLog?r1=1.37&r2=1.38
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipset/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog 25 Aug 2010 09:13:21 -0000 1.37
+++ ChangeLog 14 Oct 2010 15:41:22 -0000 1.38
@@ -1,6 +1,11 @@
# ChangeLog for net-firewall/ipset
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipset/ChangeLog,v 1.37 2010/08/25 09:13:21 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipset/ChangeLog,v 1.38 2010/10/14 15:41:22 pva Exp $
+
+*ipset-4.4 (14 Oct 2010)
+
+ 14 Oct 2010; Peter Volkov <pva@gentoo.org> +ipset-4.4.ebuild:
+ Version bump.
*ipset-4.3 (25 Aug 2010)
1.1 net-firewall/ipset/ipset-4.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipset/ipset-4.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipset/ipset-4.4.ebuild?rev=1.1&content-type=text/plain
Index: ipset-4.4.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipset/ipset-4.4.ebuild,v 1.1 2010/10/14 15:41:22 pva Exp $
EAPI="2"
inherit eutils versionator toolchain-funcs linux-mod
DESCRIPTION="IPset tool for iptables, successor to ippool."
HOMEPAGE="http://ipset.netfilter.org/"
SRC_URI="http://ipset.netfilter.org/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="modules"
RDEPEND=">=net-firewall/iptables-1.4.4"
DEPEND="${RDEPEND}"
# configurable from outside
[ -z "${IP_NF_SET_MAX}" ] && IP_NF_SET_MAX=256
[ -z "${IP_NF_SET_HASHSIZE}" ] && IP_NF_SET_HASHSIZE=1024
BUILD_PARAMS="IP_NF_SET_MAX=$IP_NF_SET_MAX IP_NF_SET_HASHSIZE=${IP_NF_SET_HASHSIZE}"
# module fun
BUILD_TARGETS="all"
MODULE_NAMES_ARG="kernel/net/ipv4/netfilter:${S}/kernel"
MODULE_NAMES=""
for i in ip_set{,_{setlist,{ip,port,macip}map,{ip,net,ipport,ipportip,ipportnet}hash,iptree{,map}}} \
ipt_{SET,set}; do
MODULE_NAMES="${MODULE_NAMES} ${i}(${MODULE_NAMES_ARG})"
done
# sanity
CONFIG_CHECK="NETFILTER"
ERROR_CFG="ipset requires netfilter support in your kernel."
pkg_setup() {
get_version
build_modules=0
if use modules; then
if linux_config_src_exists && linux_chkconfig_builtin "MODULES" ; then
if linux_chkconfig_builtin "IP_NF_SET"; then #274577
einfo "Modular kernel detected but IP_NF_SET=y, will not build kernel modules"
else
build_modules=1
einfo "Modular kernel detected, will build kernel modules"
fi
else
einfo "Nonmodular kernel detected, will not build kernel modules"
fi
fi
[[ ${build_modules} -eq 1 ]] && linux-mod_pkg_setup
myconf="${myconf} PREFIX="
myconf="${myconf} LIBDIR=/$(get_libdir)"
myconf="${myconf} BINDIR=/sbin"
myconf="${myconf} MANDIR=/usr/share/man"
myconf="${myconf} INCDIR=/usr/include"
myconf="${myconf} NO_EXTRA_WARN_FLAGS=yes"
export myconf
}
src_prepare() {
sed -i \
-e 's/KERNELDIR/(KERNELDIR)/g' \
-e 's/^(\?KERNEL_\?DIR.*/KERNELDIR ?= /' \
-e '/^all::/iV ?= 0' \
-e '/^all::/iKBUILD_OUTPUT ?=' \
-e '/$(MAKE)/{s/$@/ V=$(V) KBUILD_OUTPUT=$(KBUILD_OUTPUT) modules/}' \
"${S}"/kernel/Makefile
}
src_compile() {
einfo "Building userspace"
emake \
CC="$(tc-getCC)" \
COPT_FLAGS="${CFLAGS}" \
LDFLAGS="${LDFLAGS}" \
${myconf} \
binaries || die "failed to build"
if [[ ${build_modules} -eq 1 ]]; then
einfo "Building kernel modules"
cd "${S}/kernel"
export KERNELDIR="${KERNEL_DIR}"
linux-mod_src_compile || die "failed to build modules"
fi
}
src_install() {
einfo "Installing userspace"
emake DESTDIR="${D}" ${myconf} binaries_install || die "failed to package"
if [[ ${build_modules} -eq 1 ]]; then
einfo "Installing kernel modules"
cd "${S}/kernel"
export KERNELDIR="${KERNEL_DIR}"
linux-mod_src_install
fi
}
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-firewall/ipset: ChangeLog ipset-4.4.ebuild
@ 2010-11-11 20:54 Markos Chandras (hwoarang)
0 siblings, 0 replies; 3+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-11-11 20:54 UTC (permalink / raw
To: gentoo-commits
hwoarang 10/11/11 20:54:33
Modified: ChangeLog ipset-4.4.ebuild
Log:
Stable on amd64 wrt bug #345019
(Portage version: 2.1.9.24/cvs/Linux x86_64)
Revision Changes Path
1.39 net-firewall/ipset/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipset/ChangeLog?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipset/ChangeLog?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipset/ChangeLog?r1=1.38&r2=1.39
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipset/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog 14 Oct 2010 15:41:22 -0000 1.38
+++ ChangeLog 11 Nov 2010 20:54:33 -0000 1.39
@@ -1,6 +1,9 @@
# ChangeLog for net-firewall/ipset
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipset/ChangeLog,v 1.38 2010/10/14 15:41:22 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipset/ChangeLog,v 1.39 2010/11/11 20:54:33 hwoarang Exp $
+
+ 11 Nov 2010; Markos Chandras <hwoarang@gentoo.org> ipset-4.4.ebuild:
+ Stable on amd64 wrt bug #345019
*ipset-4.4 (14 Oct 2010)
1.2 net-firewall/ipset/ipset-4.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipset/ipset-4.4.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipset/ipset-4.4.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipset/ipset-4.4.ebuild?r1=1.1&r2=1.2
Index: ipset-4.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipset/ipset-4.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ipset-4.4.ebuild 14 Oct 2010 15:41:22 -0000 1.1
+++ ipset-4.4.ebuild 11 Nov 2010 20:54:33 -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/ipset/ipset-4.4.ebuild,v 1.1 2010/10/14 15:41:22 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipset/ipset-4.4.ebuild,v 1.2 2010/11/11 20:54:33 hwoarang Exp $
EAPI="2"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
IUSE="modules"
RDEPEND=">=net-firewall/iptables-1.4.4"
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-firewall/ipset: ChangeLog ipset-4.4.ebuild
@ 2010-11-26 19:59 Christian Faulhammer (fauli)
0 siblings, 0 replies; 3+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-11-26 19:59 UTC (permalink / raw
To: gentoo-commits
fauli 10/11/26 19:59:19
Modified: ChangeLog ipset-4.4.ebuild
Log:
stable x86, bug 345019
(Portage version: 2.1.9.24/cvs/Linux i686)
Revision Changes Path
1.40 net-firewall/ipset/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipset/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipset/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipset/ChangeLog?r1=1.39&r2=1.40
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipset/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog 11 Nov 2010 20:54:33 -0000 1.39
+++ ChangeLog 26 Nov 2010 19:59:19 -0000 1.40
@@ -1,6 +1,9 @@
# ChangeLog for net-firewall/ipset
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipset/ChangeLog,v 1.39 2010/11/11 20:54:33 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipset/ChangeLog,v 1.40 2010/11/26 19:59:19 fauli Exp $
+
+ 26 Nov 2010; Christian Faulhammer <fauli@gentoo.org> ipset-4.4.ebuild:
+ stable x86, bug 345019
11 Nov 2010; Markos Chandras <hwoarang@gentoo.org> ipset-4.4.ebuild:
Stable on amd64 wrt bug #345019
1.3 net-firewall/ipset/ipset-4.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipset/ipset-4.4.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipset/ipset-4.4.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipset/ipset-4.4.ebuild?r1=1.2&r2=1.3
Index: ipset-4.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipset/ipset-4.4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ipset-4.4.ebuild 11 Nov 2010 20:54:33 -0000 1.2
+++ ipset-4.4.ebuild 26 Nov 2010 19:59:19 -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/ipset/ipset-4.4.ebuild,v 1.2 2010/11/11 20:54:33 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipset/ipset-4.4.ebuild,v 1.3 2010/11/26 19:59:19 fauli Exp $
EAPI="2"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
IUSE="modules"
RDEPEND=">=net-firewall/iptables-1.4.4"
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-11-26 20:05 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-26 19:59 [gentoo-commits] gentoo-x86 commit in net-firewall/ipset: ChangeLog ipset-4.4.ebuild Christian Faulhammer (fauli)
-- strict thread matches above, loose matches on Subject: below --
2010-11-11 20:54 Markos Chandras (hwoarang)
2010-10-14 15:41 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