* [gentoo-commits] gentoo-x86 commit in net-firewall/ipsec-tools: ChangeLog ipsec-tools-0.8.0-r3.ebuild
@ 2012-03-08 12:03 Anthony G. Basile (blueness)
0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-03-08 12:03 UTC (permalink / raw
To: gentoo-commits
blueness 12/03/08 12:03:24
Modified: ChangeLog
Added: ipsec-tools-0.8.0-r3.ebuild
Log:
Install simple configs so it racoon runs out of the box
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Revision Changes Path
1.87 net-firewall/ipsec-tools/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?r1=1.86&r2=1.87
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog 6 Mar 2012 00:18:07 -0000 1.86
+++ ChangeLog 8 Mar 2012 12:03:24 -0000 1.87
@@ -1,6 +1,13 @@
# ChangeLog for net-firewall/ipsec-tools
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.86 2012/03/06 00:18:07 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.87 2012/03/08 12:03:24 blueness Exp $
+
+*ipsec-tools-0.8.0-r3 (08 Mar 2012)
+
+ 08 Mar 2012; Anthony G. Basile <blueness@gentoo.org>
+ +ipsec-tools-0.8.0-r3.ebuild, +files/ipsec.conf, +files/psk.txt,
+ +files/racoon.conf:
+ Install simple configs so it racoon runs out of the box
06 Mar 2012; Anthony G. Basile <blueness@gentoo.org>
-ipsec-tools-0.8.0.ebuild:
1.1 net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?rev=1.1&content-type=text/plain
Index: ipsec-tools-0.8.0-r3.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v 1.1 2012/03/08 12:03:24 blueness Exp $
EAPI="4"
inherit eutils flag-o-matic autotools linux-info pam
DESCRIPTION="A port of KAME's IPsec utilities to the Linux-2.6 IPsec implementation"
HOMEPAGE="http://ipsec-tools.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="hybrid idea ipv6 kerberos ldap nat pam rc5 readline selinux stats"
RDEPEND="
dev-libs/openssl
kerberos? ( virtual/krb5 )
ldap? ( net-nds/openldap )
pam? ( sys-libs/pam )
readline? ( sys-libs/readline )
selinux? (
sys-libs/libselinux
sec-policy/selinux-ipsec-tools
)"
DEPEND="${RDEPEND}
>=sys-kernel/linux-headers-2.6.30"
pkg_setup() {
linux-info_pkg_setup
get_version
if linux_config_exists && kernel_is -ge 2 6 19; then
ewarn
ewarn "\033[1;33m**************************************************\033[00m"
ewarn
ewarn "Checking kernel configuration in /usr/src/linux or"
ewarn "or /proc/config.gz for compatibility with ${PN}."
ewarn "Here are the potential problems:"
ewarn
local nothing="1"
# Check options for all flavors of IPSec
local msg=""
for i in XFRM_USER NET_KEY; do
if ! linux_chkconfig_present ${i}; then
msg="${msg} ${i}"
fi
done
if [[ ! -z "$msg" ]]; then
nothing="0"
ewarn
ewarn "ALL IPSec may fail. CHECK:"
ewarn "${msg}"
fi
# Check unencrypted IPSec
if ! linux_chkconfig_present CRYPTO_NULL; then
nothing="0"
ewarn
ewarn "Unencrypted IPSec may fail. CHECK:"
ewarn " CRYPTO_NULL"
fi
# Check IPv4 IPSec
msg=""
for i in \
INET_IPCOMP INET_AH INET_ESP \
INET_XFRM_MODE_TRANSPORT \
INET_XFRM_MODE_TUNNEL \
INET_XFRM_MODE_BEET
do
if ! linux_chkconfig_present ${i}; then
msg="${msg} ${i}"
fi
done
if [[ ! -z "$msg" ]]; then
nothing="0"
ewarn
ewarn "IPv4 IPSec may fail. CHECK:"
ewarn "${msg}"
fi
# Check IPv6 IPSec
if use ipv6; then
msg=""
for i in INET6_IPCOMP INET6_AH INET6_ESP \
INET6_XFRM_MODE_TRANSPORT \
INET6_XFRM_MODE_TUNNEL \
INET6_XFRM_MODE_BEET
do
if ! linux_chkconfig_present ${i}; then
msg="${msg} ${i}"
fi
done
if [[ ! -z "$msg" ]]; then
nothing="0"
ewarn
ewarn "IPv6 IPSec may fail. CHECK:"
ewarn "${msg}"
fi
fi
# Check IPSec behind NAT
if use nat; then
if ! linux_chkconfig_present NETFILTER_XT_MATCH_POLICY; then
nothing="0"
ewarn
ewarn "IPSec behind NAT may fail. CHECK:"
ewarn " NETFILTER_XT_MATCH_POLICY"
fi
fi
if [[ $nothing == "1" ]]; then
ewarn "NO PROBLEMS FOUND"
fi
ewarn
ewarn "WARNING: If your *configured* and *running* kernel"
ewarn "differ either now or in the future, then these checks"
ewarn "may lead to misleading results."
ewarn
ewarn "\033[1;33m**************************************************\033[00m"
ewarn
else
eerror
eerror "\033[1;31m**************************************************\033[00m"
eerror "Make sure that your *running* kernel is/will be >=2.6.19."
eerror "Building ${PN} now, assuming that you know what you're doing."
eerror "\033[1;31m**************************************************\033[00m"
eerror
fi
}
src_prepare() {
# fix for bug #124813
sed -i 's:-Werror::g' "${S}"/configure.ac || die
# fix for building with gcc-4.6
sed -i 's: -R: -Wl,-R:' "${S}"/configure.ac || die
epatch "${FILESDIR}/${PN}-def-psk.patch"
epatch "${FILESDIR}/${PN}-include-vendoridh.patch"
AT_M4DIR="${S}" eautoreconf
epunt_cxx
}
src_configure() {
#--with-{iconv,libradius} lead to "Broken getaddrinfo()"
#--enable-samode-unspec is not supported in linux
local myconf
myconf="--with-kernel-headers=/usr/include \
--enable-adminport \
--enable-dependency-tracking \
--enable-dpd \
--enable-frag \
--without-libiconv \
--without-libradius \
--disable-samode-unspec \
$(use_enable idea) \
$(use_enable ipv6) \
$(use_enable kerberos gssapi) \
$(use_with ldap libldap) \
$(use_enable nat natt) \
$(use_with pam libpam) \
$(use_enable rc5) \
$(use_with readline) \
$(use_enable selinux security-context) \
$(use_enable stats)"
use nat && myconf="${myconf} --enable-natt-versions=yes"
# enable mode-cfg and xauth support
if use pam; then
myconf="${myconf} --enable-hybrid"
else
myconf="${myconf} $(use_enable hybrid)"
fi
econf ${myconf}
}
src_install() {
emake DESTDIR="${D}" install
keepdir /var/lib/racoon
newconfd "${FILESDIR}"/racoon.conf.d racoon
newinitd "${FILESDIR}"/racoon.init.d racoon
use pam && newpamd "${FILESDIR}"/racoon.pam.d racoon
insinto /etc
doins "${FILESDIR}"/ipsec.conf
insinto /etc/racoon
doins "${FILESDIR}"/racoon.conf
doins "${FILESDIR}"/psk.txt
chmod 400 "${D}"/etc/racoon/psk.txt
dodoc ChangeLog README NEWS
dodoc -r src/racoon/samples
dodoc -r src/racoon/doc
docinto samples
newdoc src/setkey/sample.cf ipsec.conf
}
pkg_postinst() {
if use nat; then
elog
elog "You have enabled the nat traversal functionnality."
elog "Nat versions wich are enabled by default are 00,02,rfc"
elog "you can find those drafts in the CVS repository:"
elog "cvs -d anoncvs@anoncvs.netbsd.org:/cvsroot co ipsec-tools"
elog
elog "If you feel brave enough and you know what you are"
elog "doing, you can consider emerging this ebuild with"
elog "EXTRA_ECONF=\"--enable-natt-versions=08,07,06\""
elog
fi
if use ldap; then
elog
elog "You have enabled ldap support with {$PN}."
elog "The man page does NOT contain any information on it yet."
elog "Consider using a more recent version or CVS."
elog
fi
elog
elog "Please have a look in /usr/share/doc/${P} and visit"
elog "http://www.netbsd.org/Documentation/network/ipsec/"
elog "to find more information on how to configure this tool."
elog
}
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-firewall/ipsec-tools: ChangeLog ipsec-tools-0.8.0-r3.ebuild
@ 2012-03-09 23:03 Anthony G. Basile (blueness)
0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-03-09 23:03 UTC (permalink / raw
To: gentoo-commits
blueness 12/03/09 23:03:38
Modified: ChangeLog ipsec-tools-0.8.0-r3.ebuild
Log:
Tested on ppc
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Revision Changes Path
1.90 net-firewall/ipsec-tools/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?rev=1.90&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?rev=1.90&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?r1=1.89&r2=1.90
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog 9 Mar 2012 02:55:47 -0000 1.89
+++ ChangeLog 9 Mar 2012 23:03:37 -0000 1.90
@@ -1,6 +1,10 @@
# ChangeLog for net-firewall/ipsec-tools
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.89 2012/03/09 02:55:47 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.90 2012/03/09 23:03:37 blueness Exp $
+
+ 09 Mar 2012; Anthony G. Basile <blueness@gentoo.org>
+ ipsec-tools-0.8.0-r3.ebuild:
+ Tested on ppc
09 Mar 2012; Anthony G. Basile <blueness@gentoo.org> files/racoon.conf.d:
Remove option for IPv4 only
1.2 net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?r1=1.1&r2=1.2
Index: ipsec-tools-0.8.0-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ipsec-tools-0.8.0-r3.ebuild 8 Mar 2012 12:03:24 -0000 1.1
+++ ipsec-tools-0.8.0-r3.ebuild 9 Mar 2012 23:03:37 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v 1.1 2012/03/08 12:03:24 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v 1.2 2012/03/09 23:03:37 blueness Exp $
EAPI="4"
@@ -12,7 +12,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc ~x86"
IUSE="hybrid idea ipv6 kerberos ldap nat pam rc5 readline selinux stats"
RDEPEND="
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-firewall/ipsec-tools: ChangeLog ipsec-tools-0.8.0-r3.ebuild
@ 2012-03-10 12:40 Anthony G. Basile (blueness)
0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-03-10 12:40 UTC (permalink / raw
To: gentoo-commits
blueness 12/03/10 12:40:32
Modified: ChangeLog ipsec-tools-0.8.0-r3.ebuild
Log:
Tested on ppc64
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Revision Changes Path
1.92 net-firewall/ipsec-tools/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?rev=1.92&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?rev=1.92&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?r1=1.91&r2=1.92
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog 10 Mar 2012 12:33:26 -0000 1.91
+++ ChangeLog 10 Mar 2012 12:40:32 -0000 1.92
@@ -1,6 +1,10 @@
# ChangeLog for net-firewall/ipsec-tools
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.91 2012/03/10 12:33:26 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.92 2012/03/10 12:40:32 blueness Exp $
+
+ 10 Mar 2012; Anthony G. Basile <blueness@gentoo.org>
+ ipsec-tools-0.8.0-r3.ebuild:
+ Tested on ppc64
10 Mar 2012; Anthony G. Basile <blueness@gentoo.org>
-ipsec-tools-0.8.0-r1.ebuild:
1.3 net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?r1=1.2&r2=1.3
Index: ipsec-tools-0.8.0-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ipsec-tools-0.8.0-r3.ebuild 9 Mar 2012 23:03:37 -0000 1.2
+++ ipsec-tools-0.8.0-r3.ebuild 10 Mar 2012 12:40:32 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v 1.2 2012/03/09 23:03:37 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v 1.3 2012/03/10 12:40:32 blueness Exp $
EAPI="4"
@@ -12,7 +12,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="hybrid idea ipv6 kerberos ldap nat pam rc5 readline selinux stats"
RDEPEND="
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-firewall/ipsec-tools: ChangeLog ipsec-tools-0.8.0-r3.ebuild
@ 2012-07-12 2:33 Anthony G. Basile (blueness)
0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-07-12 2:33 UTC (permalink / raw
To: gentoo-commits
blueness 12/07/12 02:33:57
Modified: ChangeLog ipsec-tools-0.8.0-r3.ebuild
Log:
Stable ppc/ppc64
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Revision Changes Path
1.96 net-firewall/ipsec-tools/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?rev=1.96&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?rev=1.96&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?r1=1.95&r2=1.96
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- ChangeLog 12 Jul 2012 00:11:13 -0000 1.95
+++ ChangeLog 12 Jul 2012 02:33:57 -0000 1.96
@@ -1,6 +1,10 @@
# ChangeLog for net-firewall/ipsec-tools
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.95 2012/07/12 00:11:13 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.96 2012/07/12 02:33:57 blueness Exp $
+
+ 12 Jul 2012; Anthony G. Basile <blueness@gentoo.org>
+ ipsec-tools-0.8.0-r3.ebuild:
+ Stable ppc/ppc64
12 Jul 2012; Anthony G. Basile <blueness@gentoo.org>
ipsec-tools-0.7.3.ebuild, ipsec-tools-0.7.3-r1.ebuild,
1.6 net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?r1=1.5&r2=1.6
Index: ipsec-tools-0.8.0-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ipsec-tools-0.8.0-r3.ebuild 12 Jul 2012 00:11:13 -0000 1.5
+++ ipsec-tools-0.8.0-r3.ebuild 12 Jul 2012 02:33:57 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v 1.5 2012/07/12 00:11:13 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v 1.6 2012/07/12 02:33:57 blueness Exp $
EAPI="4"
@@ -12,7 +12,7 @@
LICENSE="BSD GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ppc ppc64 ~x86"
IUSE="hybrid idea ipv6 kerberos ldap nat pam rc5 readline selinux stats"
RDEPEND="
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-firewall/ipsec-tools: ChangeLog ipsec-tools-0.8.0-r3.ebuild
@ 2012-07-12 18:27 Anthony G. Basile (blueness)
0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-07-12 18:27 UTC (permalink / raw
To: gentoo-commits
blueness 12/07/12 18:27:12
Modified: ChangeLog ipsec-tools-0.8.0-r3.ebuild
Log:
Keyword ~mips
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Revision Changes Path
1.97 net-firewall/ipsec-tools/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?rev=1.97&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?rev=1.97&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?r1=1.96&r2=1.97
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog 12 Jul 2012 02:33:57 -0000 1.96
+++ ChangeLog 12 Jul 2012 18:27:12 -0000 1.97
@@ -1,6 +1,10 @@
# ChangeLog for net-firewall/ipsec-tools
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.96 2012/07/12 02:33:57 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.97 2012/07/12 18:27:12 blueness Exp $
+
+ 12 Jul 2012; Anthony G. Basile <blueness@gentoo.org>
+ ipsec-tools-0.8.0-r3.ebuild:
+ Keyword ~mips
12 Jul 2012; Anthony G. Basile <blueness@gentoo.org>
ipsec-tools-0.8.0-r3.ebuild:
1.7 net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?r1=1.6&r2=1.7
Index: ipsec-tools-0.8.0-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ipsec-tools-0.8.0-r3.ebuild 12 Jul 2012 02:33:57 -0000 1.6
+++ ipsec-tools-0.8.0-r3.ebuild 12 Jul 2012 18:27:12 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v 1.6 2012/07/12 02:33:57 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v 1.7 2012/07/12 18:27:12 blueness Exp $
EAPI="4"
@@ -12,7 +12,7 @@
LICENSE="BSD GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ppc ppc64 ~x86"
+KEYWORDS="~amd64 ~mips ppc ppc64 ~x86"
IUSE="hybrid idea ipv6 kerberos ldap nat pam rc5 readline selinux stats"
RDEPEND="
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-firewall/ipsec-tools: ChangeLog ipsec-tools-0.8.0-r3.ebuild
@ 2012-07-15 11:37 Agostino Sarubbo (ago)
0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-07-15 11:37 UTC (permalink / raw
To: gentoo-commits
ago 12/07/15 11:37:25
Modified: ChangeLog ipsec-tools-0.8.0-r3.ebuild
Log:
Stable for amd64, wrt bug #326647
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Revision Changes Path
1.98 net-firewall/ipsec-tools/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?rev=1.98&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?rev=1.98&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?r1=1.97&r2=1.98
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog 12 Jul 2012 18:27:12 -0000 1.97
+++ ChangeLog 15 Jul 2012 11:37:25 -0000 1.98
@@ -1,6 +1,9 @@
# ChangeLog for net-firewall/ipsec-tools
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.97 2012/07/12 18:27:12 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.98 2012/07/15 11:37:25 ago Exp $
+
+ 15 Jul 2012; Agostino Sarubbo <ago@gentoo.org> ipsec-tools-0.8.0-r3.ebuild:
+ Stable for amd64, wrt bug #326647
12 Jul 2012; Anthony G. Basile <blueness@gentoo.org>
ipsec-tools-0.8.0-r3.ebuild:
1.8 net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?r1=1.7&r2=1.8
Index: ipsec-tools-0.8.0-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ipsec-tools-0.8.0-r3.ebuild 12 Jul 2012 18:27:12 -0000 1.7
+++ ipsec-tools-0.8.0-r3.ebuild 15 Jul 2012 11:37:25 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v 1.7 2012/07/12 18:27:12 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v 1.8 2012/07/15 11:37:25 ago Exp $
EAPI="4"
@@ -12,7 +12,7 @@
LICENSE="BSD GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~mips ppc ppc64 ~x86"
+KEYWORDS="amd64 ~mips ppc ppc64 ~x86"
IUSE="hybrid idea ipv6 kerberos ldap nat pam rc5 readline selinux stats"
RDEPEND="
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-firewall/ipsec-tools: ChangeLog ipsec-tools-0.8.0-r3.ebuild
@ 2012-07-17 6:10 Jeff Horelick (jdhore)
0 siblings, 0 replies; 9+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-07-17 6:10 UTC (permalink / raw
To: gentoo-commits
jdhore 12/07/17 06:10:23
Modified: ChangeLog ipsec-tools-0.8.0-r3.ebuild
Log:
marked x86 per bug 326647
(Portage version: 2.2.0_alpha118/cvs/Linux i686)
Revision Changes Path
1.99 net-firewall/ipsec-tools/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?rev=1.99&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?rev=1.99&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?r1=1.98&r2=1.99
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog 15 Jul 2012 11:37:25 -0000 1.98
+++ ChangeLog 17 Jul 2012 06:10:23 -0000 1.99
@@ -1,6 +1,9 @@
# ChangeLog for net-firewall/ipsec-tools
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.98 2012/07/15 11:37:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.99 2012/07/17 06:10:23 jdhore Exp $
+
+ 17 Jul 2012; Jeff Horelick <jdhore@gentoo.org> ipsec-tools-0.8.0-r3.ebuild:
+ marked x86 per bug 326647
15 Jul 2012; Agostino Sarubbo <ago@gentoo.org> ipsec-tools-0.8.0-r3.ebuild:
Stable for amd64, wrt bug #326647
1.9 net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?r1=1.8&r2=1.9
Index: ipsec-tools-0.8.0-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ipsec-tools-0.8.0-r3.ebuild 15 Jul 2012 11:37:25 -0000 1.8
+++ ipsec-tools-0.8.0-r3.ebuild 17 Jul 2012 06:10:23 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v 1.8 2012/07/15 11:37:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v 1.9 2012/07/17 06:10:23 jdhore Exp $
EAPI="4"
@@ -12,7 +12,7 @@
LICENSE="BSD GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~mips ppc ppc64 ~x86"
+KEYWORDS="amd64 ~mips ppc ppc64 x86"
IUSE="hybrid idea ipv6 kerberos ldap nat pam rc5 readline selinux stats"
RDEPEND="
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-firewall/ipsec-tools: ChangeLog ipsec-tools-0.8.0-r3.ebuild
@ 2012-08-05 20:08 Anthony G. Basile (blueness)
0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-08-05 20:08 UTC (permalink / raw
To: gentoo-commits
blueness 12/08/05 20:08:33
Modified: ChangeLog ipsec-tools-0.8.0-r3.ebuild
Log:
Keyword ~arm
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Revision Changes Path
1.100 net-firewall/ipsec-tools/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?rev=1.100&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?rev=1.100&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?r1=1.99&r2=1.100
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog 17 Jul 2012 06:10:23 -0000 1.99
+++ ChangeLog 5 Aug 2012 20:08:33 -0000 1.100
@@ -1,6 +1,10 @@
# ChangeLog for net-firewall/ipsec-tools
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.99 2012/07/17 06:10:23 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.100 2012/08/05 20:08:33 blueness Exp $
+
+ 05 Aug 2012; Anthony G. Basile <blueness@gentoo.org>
+ ipsec-tools-0.8.0-r3.ebuild:
+ Keyword ~arm
17 Jul 2012; Jeff Horelick <jdhore@gentoo.org> ipsec-tools-0.8.0-r3.ebuild:
marked x86 per bug 326647
1.10 net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?r1=1.9&r2=1.10
Index: ipsec-tools-0.8.0-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ipsec-tools-0.8.0-r3.ebuild 17 Jul 2012 06:10:23 -0000 1.9
+++ ipsec-tools-0.8.0-r3.ebuild 5 Aug 2012 20:08:33 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v 1.9 2012/07/17 06:10:23 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v 1.10 2012/08/05 20:08:33 blueness Exp $
EAPI="4"
@@ -12,7 +12,7 @@
LICENSE="BSD GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~mips ppc ppc64 x86"
+KEYWORDS="amd64 ~arm ~mips ppc ppc64 x86"
IUSE="hybrid idea ipv6 kerberos ldap nat pam rc5 readline selinux stats"
RDEPEND="
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-firewall/ipsec-tools: ChangeLog ipsec-tools-0.8.0-r3.ebuild
@ 2012-09-16 17:57 Anthony G. Basile (blueness)
0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-09-16 17:57 UTC (permalink / raw
To: gentoo-commits
blueness 12/09/16 17:57:53
Modified: ChangeLog ipsec-tools-0.8.0-r3.ebuild
Log:
Stable arm
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Revision Changes Path
1.102 net-firewall/ipsec-tools/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?rev=1.102&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?rev=1.102&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ChangeLog?r1=1.101&r2=1.102
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog 16 Sep 2012 17:54:50 -0000 1.101
+++ ChangeLog 16 Sep 2012 17:57:53 -0000 1.102
@@ -1,6 +1,10 @@
# ChangeLog for net-firewall/ipsec-tools
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.101 2012/09/16 17:54:50 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.102 2012/09/16 17:57:53 blueness Exp $
+
+ 16 Sep 2012; Anthony G. Basile <blueness@gentoo.org>
+ ipsec-tools-0.8.0-r3.ebuild:
+ Stable arm
*ipsec-tools-0.8.0-r4 (16 Sep 2012)
1.11 net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild?r1=1.10&r2=1.11
Index: ipsec-tools-0.8.0-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ipsec-tools-0.8.0-r3.ebuild 5 Aug 2012 20:08:33 -0000 1.10
+++ ipsec-tools-0.8.0-r3.ebuild 16 Sep 2012 17:57:53 -0000 1.11
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v 1.10 2012/08/05 20:08:33 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.8.0-r3.ebuild,v 1.11 2012/09/16 17:57:53 blueness Exp $
EAPI="4"
@@ -12,7 +12,7 @@
LICENSE="BSD GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~arm ~mips ppc ppc64 x86"
+KEYWORDS="amd64 arm ~mips ppc ppc64 x86"
IUSE="hybrid idea ipv6 kerberos ldap nat pam rc5 readline selinux stats"
RDEPEND="
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2012-09-16 17:58 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-16 17:57 [gentoo-commits] gentoo-x86 commit in net-firewall/ipsec-tools: ChangeLog ipsec-tools-0.8.0-r3.ebuild Anthony G. Basile (blueness)
-- strict thread matches above, loose matches on Subject: below --
2012-08-05 20:08 Anthony G. Basile (blueness)
2012-07-17 6:10 Jeff Horelick (jdhore)
2012-07-15 11:37 Agostino Sarubbo (ago)
2012-07-12 18:27 Anthony G. Basile (blueness)
2012-07-12 2:33 Anthony G. Basile (blueness)
2012-03-10 12:40 Anthony G. Basile (blueness)
2012-03-09 23:03 Anthony G. Basile (blueness)
2012-03-08 12:03 Anthony G. Basile (blueness)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox