public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-misc/quagga: ChangeLog quagga-0.99.20-r1.ebuild
@ 2011-10-21 22:51 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 5+ messages in thread
From: Diego Petteno (flameeyes) @ 2011-10-21 22:51 UTC (permalink / raw
  To: gentoo-commits

flameeyes    11/10/21 22:51:52

  Modified:             ChangeLog
  Added:                quagga-0.99.20-r1.ebuild
  Log:
  Bump to add a patch to fix bug #387375; take the chance to merge the two init scripts, so that zebra is the only real script, and the rest are actually symlinks.
  
  (Portage version: 2.2.0_alpha69/cvs/Linux x86_64)

Revision  Changes    Path
1.126                net-misc/quagga/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.126&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.126&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?r1=1.125&r2=1.126

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v
retrieving revision 1.125
retrieving revision 1.126
diff -u -r1.125 -r1.126
--- ChangeLog	17 Oct 2011 11:27:41 -0000	1.125
+++ ChangeLog	21 Oct 2011 22:51:52 -0000	1.126
@@ -1,6 +1,14 @@
 # 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.125 2011/10/17 11:27:41 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.126 2011/10/21 22:51:52 flameeyes Exp $
+
+*quagga-0.99.20-r1 (21 Oct 2011)
+
+  21 Oct 2011; Diego E. Pettenò <flameeyes@gentoo.org>
+  +quagga-0.99.20-r1.ebuild, +files/quagga-services.init.3:
+  Bump to add a patch to fix bug #387375; take the chance to merge the two init
+  scripts, so that zebra is the only real script, and the rest are actually
+  symlinks.
 
   17 Oct 2011; Diego E. Pettenò <flameeyes@gentoo.org> -quagga-0.99.18.ebuild,
   -quagga-0.99.19-r1.ebuild, -files/quagga-services.init, -files/zebra.init.2:



1.1                  net-misc/quagga/quagga-0.99.20-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.20-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.20-r1.ebuild?rev=1.1&content-type=text/plain

Index: quagga-0.99.20-r1.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.20-r1.ebuild,v 1.1 2011/10/21 22:51:52 flameeyes Exp $

EAPI="4"

CLASSLESS_BGP_PATCH=ht-20040304-classless-bgp.patch

BACKPORTS=2

inherit eutils multilib autotools pam flag-o-matic

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
	${BACKPORTS:+
		http://dev.gentoo.org/~flameeyes/${PN}/${P}-backports-${BACKPORTS}.tar.xz}
	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 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}
	app-arch/xz-utils
	>=sys-devel/libtool-2.2.4"
RDEPEND="${COMMON_DEPEND}
	sys-apps/openrc
	sys-apps/iproute2"

pkg_setup() {
	enewgroup quagga
	enewuser quagga -1 -1 /var/empty quagga
}

src_prepare() {
	[[ -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}"

	eautoreconf
}

src_configure() {
	local myconf=

	use ospfapi \
			&& myconf="${myconf} --enable-opaque-lsa --enable-ospf-te --enable-ospfclient"

	use multipath && myconf="${myconf} --enable-multipath=0"

	append-flags -fno-strict-aliasing

	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}
}

src_install() {
	emake DESTDIR="${D}" install
	find "${D}" -name '*.la' -delete || die

	keepdir /etc/quagga
	fowners root:quagga /etc/quagga
	fperms 0770 /etc/quagga

	# install zebra as a file, symlink the rest
	newinitd "${FILESDIR}"/quagga-services.init.3 zebra

	for service in ripd ospfd bgpd $(use ipv6 && echo ripngd ospf6d); do
		dosym zebra /etc/init.d/${service}
	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"
	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."
}






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

* [gentoo-commits] gentoo-x86 commit in net-misc/quagga: ChangeLog quagga-0.99.20-r1.ebuild
@ 2011-10-25 16:40 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 5+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-10-25 16:40 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/10/25 16:40:26

  Modified:             ChangeLog quagga-0.99.20-r1.ebuild
  Log:
  x86 stable wrt bug #387375
  
  (Portage version: 2.1.10.11/cvs/Linux i686)

Revision  Changes    Path
1.127                net-misc/quagga/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.127&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.127&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?r1=1.126&r2=1.127

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v
retrieving revision 1.126
retrieving revision 1.127
diff -u -r1.126 -r1.127
--- ChangeLog	21 Oct 2011 22:51:52 -0000	1.126
+++ ChangeLog	25 Oct 2011 16:40:26 -0000	1.127
@@ -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.126 2011/10/21 22:51:52 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.127 2011/10/25 16:40:26 phajdan.jr Exp $
+
+  25 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  quagga-0.99.20-r1.ebuild:
+  x86 stable wrt bug #387375
 
 *quagga-0.99.20-r1 (21 Oct 2011)
 



1.2                  net-misc/quagga/quagga-0.99.20-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.20-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.20-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.20-r1.ebuild?r1=1.1&r2=1.2

Index: quagga-0.99.20-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.20-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- quagga-0.99.20-r1.ebuild	21 Oct 2011 22:51:52 -0000	1.1
+++ quagga-0.99.20-r1.ebuild	25 Oct 2011 16:40:26 -0000	1.2
@@ -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.20-r1.ebuild,v 1.1 2011/10/21 22:51:52 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.20-r1.ebuild,v 1.2 2011/10/25 16:40:26 phajdan.jr Exp $
 
 EAPI="4"
 
@@ -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="






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

* [gentoo-commits] gentoo-x86 commit in net-misc/quagga: ChangeLog quagga-0.99.20-r1.ebuild
@ 2011-10-28 15:23 Jeroen Roovers (jer)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeroen Roovers (jer) @ 2011-10-28 15:23 UTC (permalink / raw
  To: gentoo-commits

jer         11/10/28 15:23:02

  Modified:             ChangeLog quagga-0.99.20-r1.ebuild
  Log:
  Stable for HPPA (bug #387375).
  
  (Portage version: 2.2.0_alpha71/cvs/Linux x86_64)

Revision  Changes    Path
1.128                net-misc/quagga/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.128&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.128&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?r1=1.127&r2=1.128

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v
retrieving revision 1.127
retrieving revision 1.128
diff -u -r1.127 -r1.128
--- ChangeLog	25 Oct 2011 16:40:26 -0000	1.127
+++ ChangeLog	28 Oct 2011 15:23:01 -0000	1.128
@@ -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.127 2011/10/25 16:40:26 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.128 2011/10/28 15:23:01 jer Exp $
+
+  28 Oct 2011; Jeroen Roovers <jer@gentoo.org> quagga-0.99.20-r1.ebuild:
+  Stable for HPPA (bug #387375).
 
   25 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
   quagga-0.99.20-r1.ebuild:



1.3                  net-misc/quagga/quagga-0.99.20-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.20-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.20-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.20-r1.ebuild?r1=1.2&r2=1.3

Index: quagga-0.99.20-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.20-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- quagga-0.99.20-r1.ebuild	25 Oct 2011 16:40:26 -0000	1.2
+++ quagga-0.99.20-r1.ebuild	28 Oct 2011 15:23:01 -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.20-r1.ebuild,v 1.2 2011/10/25 16:40:26 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.20-r1.ebuild,v 1.3 2011/10/28 15:23:01 jer Exp $
 
 EAPI="4"
 
@@ -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="






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

* [gentoo-commits] gentoo-x86 commit in net-misc/quagga: ChangeLog quagga-0.99.20-r1.ebuild
@ 2011-11-01  5:46 Markus Meier (maekke)
  0 siblings, 0 replies; 5+ messages in thread
From: Markus Meier (maekke) @ 2011-11-01  5:46 UTC (permalink / raw
  To: gentoo-commits

maekke      11/11/01 05:46:19

  Modified:             ChangeLog quagga-0.99.20-r1.ebuild
  Log:
  arm stable, bug #387375
  
  (Portage version: 2.1.10.32/cvs/Linux i686)

Revision  Changes    Path
1.130                net-misc/quagga/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.130&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.130&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?r1=1.129&r2=1.130

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v
retrieving revision 1.129
retrieving revision 1.130
diff -u -r1.129 -r1.130
--- ChangeLog	29 Oct 2011 10:37:31 -0000	1.129
+++ ChangeLog	1 Nov 2011 05:46:19 -0000	1.130
@@ -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.129 2011/10/29 10:37:31 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.130 2011/11/01 05:46:19 maekke Exp $
+
+  01 Nov 2011; Markus Meier <maekke@gentoo.org> quagga-0.99.20-r1.ebuild:
+  arm stable, bug #387375
 
   29 Oct 2011; Markos Chandras <hwoarang@gentoo.org> quagga-0.99.20-r1.ebuild:
   Stable on amd64 wrt bug #387375



1.5                  net-misc/quagga/quagga-0.99.20-r1.ebuild

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

Index: quagga-0.99.20-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.20-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- quagga-0.99.20-r1.ebuild	29 Oct 2011 10:37:31 -0000	1.4
+++ quagga-0.99.20-r1.ebuild	1 Nov 2011 05:46:19 -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.20-r1.ebuild,v 1.4 2011/10/29 10:37:31 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.20-r1.ebuild,v 1.5 2011/11/01 05:46:19 maekke Exp $
 
 EAPI="4"
 
@@ -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="






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

* [gentoo-commits] gentoo-x86 commit in net-misc/quagga: ChangeLog quagga-0.99.20-r1.ebuild
@ 2011-12-18 17:56 Raul Porcel (armin76)
  0 siblings, 0 replies; 5+ messages in thread
From: Raul Porcel (armin76) @ 2011-12-18 17:56 UTC (permalink / raw
  To: gentoo-commits

armin76     11/12/18 17:56:30

  Modified:             ChangeLog quagga-0.99.20-r1.ebuild
  Log:
  alpha/s390/sparc stable wrt #387375
  
  (Portage version: 2.1.10.38/cvs/Linux ia64)

Revision  Changes    Path
1.131                net-misc/quagga/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.131&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?rev=1.131&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/ChangeLog?r1=1.130&r2=1.131

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- ChangeLog	1 Nov 2011 05:46:19 -0000	1.130
+++ ChangeLog	18 Dec 2011 17:56:30 -0000	1.131
@@ -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.130 2011/11/01 05:46:19 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.131 2011/12/18 17:56:30 armin76 Exp $
+
+  18 Dec 2011; Raúl Porcel <armin76@gentoo.org> quagga-0.99.20-r1.ebuild:
+  alpha/s390/sparc stable wrt #387375
 
   01 Nov 2011; Markus Meier <maekke@gentoo.org> quagga-0.99.20-r1.ebuild:
   arm stable, bug #387375



1.6                  net-misc/quagga/quagga-0.99.20-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.20-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.20-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/quagga/quagga-0.99.20-r1.ebuild?r1=1.5&r2=1.6

Index: quagga-0.99.20-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.20-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- quagga-0.99.20-r1.ebuild	1 Nov 2011 05:46:19 -0000	1.5
+++ quagga-0.99.20-r1.ebuild	18 Dec 2011 17:56:30 -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.20-r1.ebuild,v 1.5 2011/11/01 05:46:19 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.20-r1.ebuild,v 1.6 2011/12/18 17:56:30 armin76 Exp $
 
 EAPI="4"
 
@@ -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="






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

end of thread, other threads:[~2011-12-18 17:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-28 15:23 [gentoo-commits] gentoo-x86 commit in net-misc/quagga: ChangeLog quagga-0.99.20-r1.ebuild Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2011-12-18 17:56 Raul Porcel (armin76)
2011-11-01  5:46 Markus Meier (maekke)
2011-10-25 16:40 PaweA Hajdan (phajdan.jr)
2011-10-21 22:51 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