* [gentoo-commits] gentoo-x86 commit in net-misc/quagga: quagga-0.99.18.ebuild ChangeLog
@ 2011-03-21 16:27 Diego Petteno (flameeyes)
0 siblings, 0 replies; 9+ messages in thread
From: Diego Petteno (flameeyes) @ 2011-03-21 16:27 UTC (permalink / raw
To: gentoo-commits
flameeyes 11/03/21 16:27:11
Modified: ChangeLog
Added: quagga-0.99.18.ebuild
Log:
Version bump.
(Portage version: 2.2.0_alpha28/cvs/Linux x86_64)
Revision Changes Path
1.103 net-misc/quagga/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.103&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.103&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?r1=1.102&r2=1.103
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- ChangeLog 12 Feb 2011 18:22:06 -0000 1.102
+++ ChangeLog 21 Mar 2011 16:27:11 -0000 1.103
@@ -1,6 +1,11 @@
# ChangeLog for net-misc/quagga
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.102 2011/02/12 18:22:06 idl0r Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.103 2011/03/21 16:27:11 flameeyes Exp $
+
+*quagga-0.99.18 (21 Mar 2011)
+
+ 21 Mar 2011; Diego E. Pettenò <flameeyes@gentoo.org> +quagga-0.99.18.ebuild:
+ Version bump.
06 Feb 2011; Diego E. Pettenò <flameeyes@gentoo.org> metadata.xml:
Fix email address and missing space.
1.1 net-misc/quagga/quagga-0.99.18.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?rev=1.1&content-type=text/plain
Index: quagga-0.99.18.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v 1.1 2011/03/21 16:27:10 flameeyes Exp $
EAPI="2"
CLASSLESS_BGP_PATCH=ht-20040304-classless-bgp.patch
#REALMS_PATCH=quagga-0.99.14-realms-test2.diff
REALMS_PATCH=quagga-0.99.14-realms-test2-gentoo.patch.bz2
inherit eutils multilib autotools pam
DESCRIPTION="A free routing daemon replacing Zebra supporting RIP, OSPF and BGP."
HOMEPAGE="http://quagga.net/"
SRC_URI="http://www.quagga.net/download/${P}.tar.gz
bgpclassless? ( http://hasso.linux.ee/stuff/patches/quagga/${CLASSLESS_BGP_PATCH} )
realms? ( http://dev.gentoo.org/~flameeyes/patches/${PN}/${REALMS_PATCH} )"
# realms? ( http://linux.mantech.ro/download/quagga/${REALMS_PATCH} )
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~s390 ~sparc ~x86"
IUSE="caps doc ipv6 snmp pam bgpclassless ospfapi realms multipath tcp-zebra elibc_glibc +readline"
COMMON_DEPEND="
caps? ( sys-libs/libcap )
snmp? ( net-analyzer/net-snmp )
readline? (
sys-libs/readline
pam? ( sys-libs/pam )
)
!elibc_glibc? ( dev-libs/libpcre )"
DEPEND="${COMMON_DEPEND}
>=sys-devel/libtool-2.2.4"
RDEPEND="${COMMON_DEPEND}
sys-apps/iproute2"
pkg_setup() {
enewgroup quagga
enewuser quagga -1 -1 /var/empty quagga
}
src_prepare() {
epatch "${FILESDIR}/${PN}-0.99.17-gentoo.patch"
# Classless prefixes for BGP
# http://hasso.linux.ee/doku.php/english:network:quagga
use bgpclassless && epatch "${DISTDIR}/${CLASSLESS_BGP_PATCH}"
# Realms support (Calin Velea)
# http://vcalinus.gemenii.ro/quaggarealms.html
# http://linux.mantech.ro/quagga+realm_en.php
use realms && epatch "${DISTDIR}/${REALMS_PATCH}"
eautoreconf
}
src_configure() {
local myconf=
use ospfapi \
&& myconf="${myconf} --enable-opaque-lsa --enable-ospf-te --enable-ospfclient"
use realms && myconf="${myconf} --enable-realms"
use multipath && myconf="${myconf} --enable-multipath=0"
econf \
--enable-user=quagga \
--enable-group=quagga \
--enable-vty-group=quagga \
--with-cflags="${CFLAGS}" \
--sysconfdir=/etc/quagga \
--enable-exampledir=/usr/share/doc/${PF}/samples \
--localstatedir=/var/run/quagga \
--disable-static \
--disable-pie \
\
$(use_enable caps capabilities) \
$(use_enable snmp) \
$(use_enable !elibc_glibc pcreposix) \
$(use_enable tcp-zebra) \
$(use_enable doc) \
\
$(use_enable readline vtysh) \
$(use_with pam libpam) \
\
$(use_enable ipv6) \
$(use_enable ipv6 ripngd) \
$(use_enable ipv6 ospf6d) \
$(use_enable ipv6 rtadv) \
\
${myconf} \
|| die "configure failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
find "${D}" -name '*.la' -delete || die
keepdir /etc/quagga || die
fowners root:quagga /etc/quagga || die
fperms 0770 /etc/quagga || die
newinitd "${FILESDIR}"/zebra.init.2 zebra || die
# install ripd as a file, symlink the rest
newinitd "${FILESDIR}"/quagga-services.init ripd || die
for service in ospfd bgpd $(use ipv6 && echo ripngd ospf6d); do
ln -s ripd "${D}"/etc/init.d/${service} || die
done
use readline && newpamd "${FILESDIR}/quagga.pam" quagga
}
pkg_postinst() {
elog "Sample configuration files can be found in /usr/share/doc/${PF}/samples"
elog "You have to create config files in /etc/quagga before"
elog "starting one of the daemons."
elog ""
elog "You can pass additional options to the daemon by setting the EXTRA_OPTS"
elog "variable in their respective file in /etc/conf.d"
}
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/quagga: quagga-0.99.18.ebuild ChangeLog
@ 2011-03-22 17:06 Diego Petteno (flameeyes)
0 siblings, 0 replies; 9+ messages in thread
From: Diego Petteno (flameeyes) @ 2011-03-22 17:06 UTC (permalink / raw
To: gentoo-commits
flameeyes 11/03/22 17:06:24
Modified: quagga-0.99.18.ebuild ChangeLog
Log:
Drop realms patch (failed to apply this time as well), add backports with fix for opaque-lsa (USE=ospfapi).
(Portage version: 2.2.0_alpha28/cvs/Linux x86_64)
Revision Changes Path
1.2 net-misc/quagga/quagga-0.99.18.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?r1=1.1&r2=1.2
Index: quagga-0.99.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- quagga-0.99.18.ebuild 21 Mar 2011 16:27:10 -0000 1.1
+++ quagga-0.99.18.ebuild 22 Mar 2011 17:06:23 -0000 1.2
@@ -1,26 +1,26 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v 1.1 2011/03/21 16:27:10 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v 1.2 2011/03/22 17:06:23 flameeyes Exp $
EAPI="2"
CLASSLESS_BGP_PATCH=ht-20040304-classless-bgp.patch
-#REALMS_PATCH=quagga-0.99.14-realms-test2.diff
-REALMS_PATCH=quagga-0.99.14-realms-test2-gentoo.patch.bz2
+
+BACKPORTS=1
inherit eutils multilib autotools pam
DESCRIPTION="A free routing daemon replacing Zebra supporting RIP, OSPF and BGP."
HOMEPAGE="http://quagga.net/"
SRC_URI="http://www.quagga.net/download/${P}.tar.gz
- bgpclassless? ( http://hasso.linux.ee/stuff/patches/quagga/${CLASSLESS_BGP_PATCH} )
- realms? ( http://dev.gentoo.org/~flameeyes/patches/${PN}/${REALMS_PATCH} )"
-# realms? ( http://linux.mantech.ro/download/quagga/${REALMS_PATCH} )
+ ${BACKPORTS:+
+ http://dev.gentoo.org/~flameeyes/${PN}/${P}-backports-${BACKPORTS}.tar.bz2}
+ bgpclassless? ( http://hasso.linux.ee/stuff/patches/quagga/${CLASSLESS_BGP_PATCH} )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~s390 ~sparc ~x86"
-IUSE="caps doc ipv6 snmp pam bgpclassless ospfapi realms multipath tcp-zebra elibc_glibc +readline"
+IUSE="caps doc ipv6 snmp pam bgpclassless ospfapi multipath tcp-zebra elibc_glibc +readline"
COMMON_DEPEND="
caps? ( sys-libs/libcap )
@@ -41,17 +41,14 @@
}
src_prepare() {
- epatch "${FILESDIR}/${PN}-0.99.17-gentoo.patch"
+ [[ -n ${BACKPORTS} ]] && \
+ EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \
+ epatch
# Classless prefixes for BGP
# http://hasso.linux.ee/doku.php/english:network:quagga
use bgpclassless && epatch "${DISTDIR}/${CLASSLESS_BGP_PATCH}"
- # Realms support (Calin Velea)
- # http://vcalinus.gemenii.ro/quaggarealms.html
- # http://linux.mantech.ro/quagga+realm_en.php
- use realms && epatch "${DISTDIR}/${REALMS_PATCH}"
-
eautoreconf
}
@@ -61,7 +58,6 @@
use ospfapi \
&& myconf="${myconf} --enable-opaque-lsa --enable-ospf-te --enable-ospfclient"
- use realms && myconf="${myconf} --enable-realms"
use multipath && myconf="${myconf} --enable-multipath=0"
econf \
@@ -120,4 +116,8 @@
elog ""
elog "You can pass additional options to the daemon by setting the EXTRA_OPTS"
elog "variable in their respective file in /etc/conf.d"
+ elog ""
+ elog "Starting from version 0.99.18, quagga no longer supports the realms patch."
+ elog "The patch was abandoned upstream and once again didn't apply; it needs a"
+ elog "dedicated maintainer, if it is still necessary."
}
1.104 net-misc/quagga/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.104&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.104&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?r1=1.103&r2=1.104
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog 21 Mar 2011 16:27:11 -0000 1.103
+++ ChangeLog 22 Mar 2011 17:06:23 -0000 1.104
@@ -1,6 +1,10 @@
# ChangeLog for net-misc/quagga
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.103 2011/03/21 16:27:11 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.104 2011/03/22 17:06:23 flameeyes Exp $
+
+ 22 Mar 2011; Diego E. Pettenò <flameeyes@gentoo.org> quagga-0.99.18.ebuild:
+ Drop realms patch (failed to apply this time as well), add backports with fix
+ for opaque-lsa (USE=ospfapi).
*quagga-0.99.18 (21 Mar 2011)
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/quagga: quagga-0.99.18.ebuild ChangeLog
@ 2011-03-22 18:33 Christoph Mende (angelos)
0 siblings, 0 replies; 9+ messages in thread
From: Christoph Mende (angelos) @ 2011-03-22 18:33 UTC (permalink / raw
To: gentoo-commits
angelos 11/03/22 18:33:03
Modified: quagga-0.99.18.ebuild ChangeLog
Log:
Stable on amd64 wrt bug #359903
(Portage version: 2.2.0_alpha28/cvs/Linux x86_64)
Revision Changes Path
1.3 net-misc/quagga/quagga-0.99.18.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?r1=1.2&r2=1.3
Index: quagga-0.99.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- quagga-0.99.18.ebuild 22 Mar 2011 17:06:23 -0000 1.2
+++ quagga-0.99.18.ebuild 22 Mar 2011 18:33:03 -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-misc/quagga/quagga-0.99.18.ebuild,v 1.2 2011/03/22 17:06:23 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v 1.3 2011/03/22 18:33:03 angelos Exp $
EAPI="2"
@@ -19,7 +19,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~s390 ~sparc ~x86"
IUSE="caps doc ipv6 snmp pam bgpclassless ospfapi multipath tcp-zebra elibc_glibc +readline"
COMMON_DEPEND="
1.105 net-misc/quagga/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.105&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.105&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?r1=1.104&r2=1.105
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog 22 Mar 2011 17:06:23 -0000 1.104
+++ ChangeLog 22 Mar 2011 18:33:03 -0000 1.105
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/quagga
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.104 2011/03/22 17:06:23 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.105 2011/03/22 18:33:03 angelos Exp $
+
+ 22 Mar 2011; Christoph Mende <angelos@gentoo.org> quagga-0.99.18.ebuild:
+ Stable on amd64 wrt bug #359903
22 Mar 2011; Diego E. Pettenò <flameeyes@gentoo.org> quagga-0.99.18.ebuild:
Drop realms patch (failed to apply this time as well), add backports with fix
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/quagga: quagga-0.99.18.ebuild ChangeLog
@ 2011-03-23 10:58 Diego Petteno (flameeyes)
0 siblings, 0 replies; 9+ messages in thread
From: Diego Petteno (flameeyes) @ 2011-03-23 10:58 UTC (permalink / raw
To: gentoo-commits
flameeyes 11/03/23 10:58:01
Modified: quagga-0.99.18.ebuild ChangeLog
Log:
Add upstream patch to fix building with USE=-ipv6; thanks to Andreas Schürch for reporting in bug #360091.
(Portage version: 2.2.0_alpha28/cvs/Linux x86_64)
Revision Changes Path
1.4 net-misc/quagga/quagga-0.99.18.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?r1=1.3&r2=1.4
Index: quagga-0.99.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- quagga-0.99.18.ebuild 22 Mar 2011 18:33:03 -0000 1.3
+++ quagga-0.99.18.ebuild 23 Mar 2011 10:58:01 -0000 1.4
@@ -1,12 +1,12 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v 1.3 2011/03/22 18:33:03 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v 1.4 2011/03/23 10:58:01 flameeyes Exp $
EAPI="2"
CLASSLESS_BGP_PATCH=ht-20040304-classless-bgp.patch
-BACKPORTS=1
+BACKPORTS=2
inherit eutils multilib autotools pam
1.106 net-misc/quagga/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.106&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.106&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?r1=1.105&r2=1.106
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog 22 Mar 2011 18:33:03 -0000 1.105
+++ ChangeLog 23 Mar 2011 10:58:01 -0000 1.106
@@ -1,6 +1,10 @@
# ChangeLog for net-misc/quagga
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.105 2011/03/22 18:33:03 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.106 2011/03/23 10:58:01 flameeyes Exp $
+
+ 23 Mar 2011; Diego E. Pettenò <flameeyes@gentoo.org> quagga-0.99.18.ebuild:
+ Add upstream patch to fix building with USE=-ipv6; thanks to Andreas Schürch
+ for reporting in bug #360091.
22 Mar 2011; Christoph Mende <angelos@gentoo.org> quagga-0.99.18.ebuild:
Stable on amd64 wrt bug #359903
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/quagga: quagga-0.99.18.ebuild ChangeLog
@ 2011-03-23 17:28 Kacper Kowalik (xarthisius)
0 siblings, 0 replies; 9+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-03-23 17:28 UTC (permalink / raw
To: gentoo-commits
xarthisius 11/03/23 17:28:38
Modified: quagga-0.99.18.ebuild ChangeLog
Log:
ppc stable wrt #359903
(Portage version: 2.2.0_alpha27/cvs/Linux x86_64)
Revision Changes Path
1.5 net-misc/quagga/quagga-0.99.18.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?r1=1.4&r2=1.5
Index: quagga-0.99.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- quagga-0.99.18.ebuild 23 Mar 2011 10:58:01 -0000 1.4
+++ quagga-0.99.18.ebuild 23 Mar 2011 17:28:37 -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-misc/quagga/quagga-0.99.18.ebuild,v 1.4 2011/03/23 10:58:01 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v 1.5 2011/03/23 17:28:37 xarthisius Exp $
EAPI="2"
@@ -19,7 +19,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ppc ~s390 ~sparc ~x86"
IUSE="caps doc ipv6 snmp pam bgpclassless ospfapi multipath tcp-zebra elibc_glibc +readline"
COMMON_DEPEND="
1.107 net-misc/quagga/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.107&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.107&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?r1=1.106&r2=1.107
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog 23 Mar 2011 10:58:01 -0000 1.106
+++ ChangeLog 23 Mar 2011 17:28:37 -0000 1.107
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/quagga
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.106 2011/03/23 10:58:01 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.107 2011/03/23 17:28:37 xarthisius Exp $
+
+ 23 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> quagga-0.99.18.ebuild:
+ ppc stable wrt #359903
23 Mar 2011; Diego E. Pettenò <flameeyes@gentoo.org> quagga-0.99.18.ebuild:
Add upstream patch to fix building with USE=-ipv6; thanks to Andreas Schürch
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/quagga: quagga-0.99.18.ebuild ChangeLog
@ 2011-03-24 8:09 Thomas Kahle (tomka)
0 siblings, 0 replies; 9+ messages in thread
From: Thomas Kahle (tomka) @ 2011-03-24 8:09 UTC (permalink / raw
To: gentoo-commits
tomka 11/03/24 08:09:44
Modified: quagga-0.99.18.ebuild ChangeLog
Log:
x86 stable per bug 359903
(Portage version: 2.1.9.44/cvs/Linux i686)
Revision Changes Path
1.6 net-misc/quagga/quagga-0.99.18.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?r1=1.5&r2=1.6
Index: quagga-0.99.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- quagga-0.99.18.ebuild 23 Mar 2011 17:28:37 -0000 1.5
+++ quagga-0.99.18.ebuild 24 Mar 2011 08:09:44 -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-misc/quagga/quagga-0.99.18.ebuild,v 1.5 2011/03/23 17:28:37 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v 1.6 2011/03/24 08:09:44 tomka Exp $
EAPI="2"
@@ -19,7 +19,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ppc ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ppc ~s390 ~sparc x86"
IUSE="caps doc ipv6 snmp pam bgpclassless ospfapi multipath tcp-zebra elibc_glibc +readline"
COMMON_DEPEND="
1.108 net-misc/quagga/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.108&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.108&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?r1=1.107&r2=1.108
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog 23 Mar 2011 17:28:37 -0000 1.107
+++ ChangeLog 24 Mar 2011 08:09:44 -0000 1.108
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/quagga
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.107 2011/03/23 17:28:37 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.108 2011/03/24 08:09:44 tomka Exp $
+
+ 24 Mar 2011; Thomas Kahle <tomka@gentoo.org> quagga-0.99.18.ebuild:
+ x86 stable per bug 359903
23 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> quagga-0.99.18.ebuild:
ppc stable wrt #359903
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/quagga: quagga-0.99.18.ebuild ChangeLog
@ 2011-03-24 23:56 Jeroen Roovers (jer)
0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2011-03-24 23:56 UTC (permalink / raw
To: gentoo-commits
jer 11/03/24 23:56:38
Modified: quagga-0.99.18.ebuild ChangeLog
Log:
Stable for HPPA (bug #359903).
(Portage version: 2.2.0_alpha28/cvs/Linux i686)
Revision Changes Path
1.7 net-misc/quagga/quagga-0.99.18.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?r1=1.6&r2=1.7
Index: quagga-0.99.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- quagga-0.99.18.ebuild 24 Mar 2011 08:09:44 -0000 1.6
+++ quagga-0.99.18.ebuild 24 Mar 2011 23:56:38 -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-misc/quagga/quagga-0.99.18.ebuild,v 1.6 2011/03/24 08:09:44 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v 1.7 2011/03/24 23:56:38 jer Exp $
EAPI="2"
@@ -19,7 +19,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ppc ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm hppa ppc ~s390 ~sparc x86"
IUSE="caps doc ipv6 snmp pam bgpclassless ospfapi multipath tcp-zebra elibc_glibc +readline"
COMMON_DEPEND="
1.109 net-misc/quagga/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.109&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.109&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?r1=1.108&r2=1.109
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -r1.108 -r1.109
--- ChangeLog 24 Mar 2011 08:09:44 -0000 1.108
+++ ChangeLog 24 Mar 2011 23:56:38 -0000 1.109
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/quagga
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.108 2011/03/24 08:09:44 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.109 2011/03/24 23:56:38 jer Exp $
+
+ 24 Mar 2011; Jeroen Roovers <jer@gentoo.org> quagga-0.99.18.ebuild:
+ Stable for HPPA (bug #359903).
24 Mar 2011; Thomas Kahle <tomka@gentoo.org> quagga-0.99.18.ebuild:
x86 stable per bug 359903
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/quagga: quagga-0.99.18.ebuild ChangeLog
@ 2011-03-26 20:06 Tobias Klausmann (klausman)
0 siblings, 0 replies; 9+ messages in thread
From: Tobias Klausmann (klausman) @ 2011-03-26 20:06 UTC (permalink / raw
To: gentoo-commits
klausman 11/03/26 20:06:43
Modified: quagga-0.99.18.ebuild ChangeLog
Log:
Stable on alpha, bug #359903
(Portage version: 2.1.9.44/cvs/Linux x86_64)
Revision Changes Path
1.8 net-misc/quagga/quagga-0.99.18.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?r1=1.7&r2=1.8
Index: quagga-0.99.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- quagga-0.99.18.ebuild 24 Mar 2011 23:56:38 -0000 1.7
+++ quagga-0.99.18.ebuild 26 Mar 2011 20:06:43 -0000 1.8
@@ -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-misc/quagga/quagga-0.99.18.ebuild,v 1.7 2011/03/24 23:56:38 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v 1.8 2011/03/26 20:06:43 klausman Exp $
EAPI="2"
@@ -19,7 +19,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ppc ~s390 ~sparc x86"
+KEYWORDS="alpha amd64 ~arm hppa ppc ~s390 ~sparc x86"
IUSE="caps doc ipv6 snmp pam bgpclassless ospfapi multipath tcp-zebra elibc_glibc +readline"
COMMON_DEPEND="
1.110 net-misc/quagga/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.110&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.110&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?r1=1.109&r2=1.110
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- ChangeLog 24 Mar 2011 23:56:38 -0000 1.109
+++ ChangeLog 26 Mar 2011 20:06:43 -0000 1.110
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/quagga
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.109 2011/03/24 23:56:38 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.110 2011/03/26 20:06:43 klausman Exp $
+
+ 26 Mar 2011; Tobias Klausmann <klausman@gentoo.org> quagga-0.99.18.ebuild:
+ Stable on alpha, bug #359903
24 Mar 2011; Jeroen Roovers <jer@gentoo.org> quagga-0.99.18.ebuild:
Stable for HPPA (bug #359903).
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/quagga: quagga-0.99.18.ebuild ChangeLog
@ 2011-04-02 15:43 Raul Porcel (armin76)
0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2011-04-02 15:43 UTC (permalink / raw
To: gentoo-commits
armin76 11/04/02 15:43:12
Modified: quagga-0.99.18.ebuild ChangeLog
Log:
arm/s390/sparc stable wrt #359903
(Portage version: 2.1.9.44/cvs/Linux ia64)
Revision Changes Path
1.9 net-misc/quagga/quagga-0.99.18.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild?r1=1.8&r2=1.9
Index: quagga-0.99.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- quagga-0.99.18.ebuild 26 Mar 2011 20:06:43 -0000 1.8
+++ quagga-0.99.18.ebuild 2 Apr 2011 15:43:11 -0000 1.9
@@ -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-misc/quagga/quagga-0.99.18.ebuild,v 1.8 2011/03/26 20:06:43 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v 1.9 2011/04/02 15:43:11 armin76 Exp $
EAPI="2"
@@ -19,7 +19,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ppc ~s390 ~sparc x86"
+KEYWORDS="alpha amd64 arm hppa ppc s390 sparc x86"
IUSE="caps doc ipv6 snmp pam bgpclassless ospfapi multipath tcp-zebra elibc_glibc +readline"
COMMON_DEPEND="
1.111 net-misc/quagga/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.111&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.111&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?r1=1.110&r2=1.111
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- ChangeLog 26 Mar 2011 20:06:43 -0000 1.110
+++ ChangeLog 2 Apr 2011 15:43:11 -0000 1.111
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/quagga
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.110 2011/03/26 20:06:43 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.111 2011/04/02 15:43:11 armin76 Exp $
+
+ 02 Apr 2011; Raúl Porcel <armin76@gentoo.org> quagga-0.99.18.ebuild:
+ arm/s390/sparc stable wrt #359903
26 Mar 2011; Tobias Klausmann <klausman@gentoo.org> quagga-0.99.18.ebuild:
Stable on alpha, bug #359903
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2011-04-02 15:43 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-26 20:06 [gentoo-commits] gentoo-x86 commit in net-misc/quagga: quagga-0.99.18.ebuild ChangeLog Tobias Klausmann (klausman)
-- strict thread matches above, loose matches on Subject: below --
2011-04-02 15:43 Raul Porcel (armin76)
2011-03-24 23:56 Jeroen Roovers (jer)
2011-03-24 8:09 Thomas Kahle (tomka)
2011-03-23 17:28 Kacper Kowalik (xarthisius)
2011-03-23 10:58 Diego Petteno (flameeyes)
2011-03-22 18:33 Christoph Mende (angelos)
2011-03-22 17:06 Diego Petteno (flameeyes)
2011-03-21 16:27 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