public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-apps/iproute2: iproute2-3.8.0.ebuild ChangeLog
@ 2013-02-28 19:19 Tim Harder (radhermit)
  0 siblings, 0 replies; 15+ messages in thread
From: Tim Harder (radhermit) @ 2013-02-28 19:19 UTC (permalink / raw
  To: gentoo-commits

radhermit    13/02/28 19:19:37

  Modified:             ChangeLog
  Added:                iproute2-3.8.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)

Revision  Changes    Path
1.209                sys-apps/iproute2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.209&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.209&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?r1=1.208&r2=1.209

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v
retrieving revision 1.208
retrieving revision 1.209
diff -u -r1.208 -r1.209
--- ChangeLog	10 Feb 2013 08:38:29 -0000	1.208
+++ ChangeLog	28 Feb 2013 19:19:37 -0000	1.209
@@ -1,6 +1,11 @@
 # ChangeLog for sys-apps/iproute2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.208 2013/02/10 08:38:29 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.209 2013/02/28 19:19:37 radhermit Exp $
+
+*iproute2-3.8.0 (28 Feb 2013)
+
+  28 Feb 2013; Tim Harder <radhermit@gentoo.org> +iproute2-3.8.0.ebuild:
+  Version bump.
 
   10 Feb 2013; Mike Frysinger <vapier@gentoo.org> iproute2-3.7.0.ebuild:
   Also respect BUILD_CC #401907 by Andrey Hippo.



1.1                  sys-apps/iproute2/iproute2-3.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.1&content-type=text/plain

Index: iproute2-3.8.0.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.1 2013/02/28 19:19:37 radhermit Exp $

EAPI="4"

inherit eutils toolchain-funcs flag-o-matic multilib

if [[ ${PV} == "9999" ]] ; then
	EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
	inherit git-2
else
	SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
	KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
fi

DESCRIPTION="kernel routing and traffic control utilities"
HOMEPAGE="http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2"

LICENSE="GPL-2"
SLOT="0"
IUSE="atm berkdb +iptables ipv6 minimal"

RDEPEND="!net-misc/arpd
	iptables? ( >=net-firewall/iptables-1.4.5 )
	!minimal? ( berkdb? ( sys-libs/db ) )
	atm? ( net-dialup/linux-atm )"
DEPEND="${RDEPEND}
	app-arch/xz-utils
	iptables? ( virtual/pkgconfig )
	sys-devel/bison
	sys-devel/flex
	>=sys-kernel/linux-headers-2.6.27
	elibc_glibc? ( >=sys-libs/glibc-2.7 )"

src_prepare() {
	epatch "${FILESDIR}"/${PN}-3.1.0-mtu.patch #291907
	use ipv6 || epatch "${FILESDIR}"/${PN}-3.1.0-no-ipv6.patch #326849

	sed -i \
		-e '/^CC =/d' \
		-e "/^LIBDIR/s:=.*:=/$(get_libdir):" \
		-e "s:-O2:${CFLAGS} ${CPPFLAGS}:" \
		-e "/^HOSTCC/s:=.*:= $(tc-getBUILD_CC):" \
		-e "/^WFLAGS/s:-Werror::" \
		Makefile || die

	# build against system headers
	rm -r include/netinet #include/linux include/ip{,6}tables{,_common}.h include/libiptc
	sed -i 's:TCPI_OPT_ECN_SEEN:16:' misc/ss.c || die

	# don't build arpd if USE=-berkdb #81660
	use berkdb || sed -i '/^TARGETS=/s: arpd : :' misc/Makefile

	use minimal && sed -i -e '/^SUBDIRS=/s:=.*:=lib tc:' Makefile
}

src_configure() {
	tc-export AR CC PKG_CONFIG

	# This sure is ugly.  Should probably move into toolchain-funcs at some point.
	local setns
	pushd "${T}" >/dev/null
	echo 'main(){return setns();};' > test.c
	${CC} ${CFLAGS} ${LDFLAGS} test.c >&/dev/null && setns=y || setns=n
	echo 'main(){};' > test.c
	${CC} ${CFLAGS} ${LDFLAGS} test.c -lresolv >&/dev/null || sed -i '/^LDLIBS/s:-lresolv::' "${S}"/Makefile
	popd >/dev/null

	cat <<-EOF > Config
	TC_CONFIG_ATM := $(usex atm y n)
	TC_CONFIG_XT  := $(usex iptables y n)
	IP_CONFIG_SETNS := ${setns}
	# Use correct iptables dir, #144265 #293709
	IPT_LIB_DIR := $(use iptables && ${PKG_CONFIG} xtables --variable=xtlibdir)
	EOF
}

src_install() {
	if use minimal ; then
		into /
		dosbin tc/tc
		return 0
	fi

	emake \
		DESTDIR="${D}" \
		LIBDIR="${EPREFIX}"/$(get_libdir) \
		SBINDIR="${EPREFIX}"/sbin \
		CONFDIR="${EPREFIX}"/etc/iproute2 \
		DOCDIR="${EPREFIX}"/usr/share/doc/${PF} \
		MANDIR="${EPREFIX}"/usr/share/man \
		ARPDDIR="${EPREFIX}"/var/lib/arpd \
		install

	dodir /bin
	mv "${ED}"/{s,}bin/ip || die #330115

	dolib.a lib/libnetlink.a
	insinto /usr/include
	doins include/libnetlink.h

	if use berkdb ; then
		dodir /var/lib/arpd
		# bug 47482, arpd doesn't need to be in /sbin
		dodir /usr/bin
		mv "${ED}"/sbin/arpd "${ED}"/usr/bin/ || die
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/iproute2: iproute2-3.8.0.ebuild ChangeLog
@ 2013-04-23  8:09 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-23  8:09 UTC (permalink / raw
  To: gentoo-commits

ago         13/04/23 08:09:26

  Modified:             iproute2-3.8.0.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #458004
  
  (Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.2                  sys-apps/iproute2/iproute2-3.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?r1=1.1&r2=1.2

Index: iproute2-3.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- iproute2-3.8.0.ebuild	28 Feb 2013 19:19:37 -0000	1.1
+++ iproute2-3.8.0.ebuild	23 Apr 2013 08:09:26 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.1 2013/02/28 19:19:37 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.2 2013/04/23 08:09:26 ago Exp $
 
 EAPI="4"
 
@@ -11,7 +11,7 @@
 	inherit git-2
 else
 	SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
-	KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+	KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 fi
 
 DESCRIPTION="kernel routing and traffic control utilities"



1.211                sys-apps/iproute2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.211&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.211&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?r1=1.210&r2=1.211

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v
retrieving revision 1.210
retrieving revision 1.211
diff -u -r1.210 -r1.211
--- ChangeLog	3 Mar 2013 03:33:51 -0000	1.210
+++ ChangeLog	23 Apr 2013 08:09:26 -0000	1.211
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/iproute2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.210 2013/03/03 03:33:51 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.211 2013/04/23 08:09:26 ago Exp $
+
+  23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> iproute2-3.8.0.ebuild:
+  Stable for amd64, wrt bug #458004
 
   03 Mar 2013; Mike Frysinger <vapier@gentoo.org> metadata.xml:
   Document USE=berkdb as disabling arpd only #459008 by Luis Ressel.





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/iproute2: iproute2-3.8.0.ebuild ChangeLog
@ 2013-04-23  8:10 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-23  8:10 UTC (permalink / raw
  To: gentoo-commits

ago         13/04/23 08:10:48

  Modified:             iproute2-3.8.0.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #458004
  
  (Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  sys-apps/iproute2/iproute2-3.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?r1=1.2&r2=1.3

Index: iproute2-3.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- iproute2-3.8.0.ebuild	23 Apr 2013 08:09:26 -0000	1.2
+++ iproute2-3.8.0.ebuild	23 Apr 2013 08:10:48 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.2 2013/04/23 08:09:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.3 2013/04/23 08:10:48 ago Exp $
 
 EAPI="4"
 
@@ -11,7 +11,7 @@
 	inherit git-2
 else
 	SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+	KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
 fi
 
 DESCRIPTION="kernel routing and traffic control utilities"



1.212                sys-apps/iproute2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.212&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.212&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?r1=1.211&r2=1.212

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v
retrieving revision 1.211
retrieving revision 1.212
diff -u -r1.211 -r1.212
--- ChangeLog	23 Apr 2013 08:09:26 -0000	1.211
+++ ChangeLog	23 Apr 2013 08:10:48 -0000	1.212
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/iproute2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.211 2013/04/23 08:09:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.212 2013/04/23 08:10:48 ago Exp $
+
+  23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> iproute2-3.8.0.ebuild:
+  Stable for x86, wrt bug #458004
 
   23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> iproute2-3.8.0.ebuild:
   Stable for amd64, wrt bug #458004





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/iproute2: iproute2-3.8.0.ebuild ChangeLog
@ 2013-04-23  8:20 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-23  8:20 UTC (permalink / raw
  To: gentoo-commits

ago         13/04/23 08:20:53

  Modified:             iproute2-3.8.0.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #458004
  
  (Portage version: 2.1.11.55/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  sys-apps/iproute2/iproute2-3.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?r1=1.3&r2=1.4

Index: iproute2-3.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- iproute2-3.8.0.ebuild	23 Apr 2013 08:10:48 -0000	1.3
+++ iproute2-3.8.0.ebuild	23 Apr 2013 08:20:53 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.3 2013/04/23 08:10:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.4 2013/04/23 08:20:53 ago Exp $
 
 EAPI="4"
 
@@ -11,7 +11,7 @@
 	inherit git-2
 else
 	SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
+	KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86"
 fi
 
 DESCRIPTION="kernel routing and traffic control utilities"



1.213                sys-apps/iproute2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.213&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.213&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?r1=1.212&r2=1.213

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v
retrieving revision 1.212
retrieving revision 1.213
diff -u -r1.212 -r1.213
--- ChangeLog	23 Apr 2013 08:10:48 -0000	1.212
+++ ChangeLog	23 Apr 2013 08:20:53 -0000	1.213
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/iproute2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.212 2013/04/23 08:10:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.213 2013/04/23 08:20:53 ago Exp $
+
+  23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> iproute2-3.8.0.ebuild:
+  Stable for ppc64, wrt bug #458004
 
   23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> iproute2-3.8.0.ebuild:
   Stable for x86, wrt bug #458004





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/iproute2: iproute2-3.8.0.ebuild ChangeLog
@ 2013-04-23  8:41 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-23  8:41 UTC (permalink / raw
  To: gentoo-commits

ago         13/04/23 08:41:26

  Modified:             iproute2-3.8.0.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #458004
  
  (Portage version: 2.1.11.55/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  sys-apps/iproute2/iproute2-3.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?r1=1.4&r2=1.5

Index: iproute2-3.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- iproute2-3.8.0.ebuild	23 Apr 2013 08:20:53 -0000	1.4
+++ iproute2-3.8.0.ebuild	23 Apr 2013 08:41:26 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.4 2013/04/23 08:20:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.5 2013/04/23 08:41:26 ago Exp $
 
 EAPI="4"
 
@@ -11,7 +11,7 @@
 	inherit git-2
 else
 	SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86"
+	KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86"
 fi
 
 DESCRIPTION="kernel routing and traffic control utilities"



1.214                sys-apps/iproute2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.214&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.214&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?r1=1.213&r2=1.214

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v
retrieving revision 1.213
retrieving revision 1.214
diff -u -r1.213 -r1.214
--- ChangeLog	23 Apr 2013 08:20:53 -0000	1.213
+++ ChangeLog	23 Apr 2013 08:41:26 -0000	1.214
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/iproute2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.213 2013/04/23 08:20:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.214 2013/04/23 08:41:26 ago Exp $
+
+  23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> iproute2-3.8.0.ebuild:
+  Stable for ppc, wrt bug #458004
 
   23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> iproute2-3.8.0.ebuild:
   Stable for ppc64, wrt bug #458004





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/iproute2: iproute2-3.8.0.ebuild ChangeLog
@ 2013-04-23  9:03 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-23  9:03 UTC (permalink / raw
  To: gentoo-commits

ago         13/04/23 09:03:45

  Modified:             iproute2-3.8.0.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #458004
  
  (Portage version: 2.1.11.55/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  sys-apps/iproute2/iproute2-3.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?r1=1.5&r2=1.6

Index: iproute2-3.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- iproute2-3.8.0.ebuild	23 Apr 2013 08:41:26 -0000	1.5
+++ iproute2-3.8.0.ebuild	23 Apr 2013 09:03:45 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.5 2013/04/23 08:41:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.6 2013/04/23 09:03:45 ago Exp $
 
 EAPI="4"
 
@@ -11,7 +11,7 @@
 	inherit git-2
 else
 	SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86"
+	KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86"
 fi
 
 DESCRIPTION="kernel routing and traffic control utilities"



1.215                sys-apps/iproute2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.215&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.215&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?r1=1.214&r2=1.215

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v
retrieving revision 1.214
retrieving revision 1.215
diff -u -r1.214 -r1.215
--- ChangeLog	23 Apr 2013 08:41:26 -0000	1.214
+++ ChangeLog	23 Apr 2013 09:03:45 -0000	1.215
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/iproute2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.214 2013/04/23 08:41:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.215 2013/04/23 09:03:45 ago Exp $
+
+  23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> iproute2-3.8.0.ebuild:
+  Stable for ia64, wrt bug #458004
 
   23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> iproute2-3.8.0.ebuild:
   Stable for ppc, wrt bug #458004





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/iproute2: iproute2-3.8.0.ebuild ChangeLog
@ 2013-04-23  9:14 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-23  9:14 UTC (permalink / raw
  To: gentoo-commits

ago         13/04/23 09:14:28

  Modified:             iproute2-3.8.0.ebuild ChangeLog
  Log:
  Stable for arm, wrt bug #458004
  
  (Portage version: 2.1.11.55/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  sys-apps/iproute2/iproute2-3.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?r1=1.6&r2=1.7

Index: iproute2-3.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- iproute2-3.8.0.ebuild	23 Apr 2013 09:03:45 -0000	1.6
+++ iproute2-3.8.0.ebuild	23 Apr 2013 09:14:28 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.6 2013/04/23 09:03:45 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.7 2013/04/23 09:14:28 ago Exp $
 
 EAPI="4"
 
@@ -11,7 +11,7 @@
 	inherit git-2
 else
 	SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86"
+	KEYWORDS="~alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86"
 fi
 
 DESCRIPTION="kernel routing and traffic control utilities"



1.216                sys-apps/iproute2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.216&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.216&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?r1=1.215&r2=1.216

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v
retrieving revision 1.215
retrieving revision 1.216
diff -u -r1.215 -r1.216
--- ChangeLog	23 Apr 2013 09:03:45 -0000	1.215
+++ ChangeLog	23 Apr 2013 09:14:28 -0000	1.216
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/iproute2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.215 2013/04/23 09:03:45 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.216 2013/04/23 09:14:28 ago Exp $
+
+  23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> iproute2-3.8.0.ebuild:
+  Stable for arm, wrt bug #458004
 
   23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> iproute2-3.8.0.ebuild:
   Stable for ia64, wrt bug #458004





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/iproute2: iproute2-3.8.0.ebuild ChangeLog
@ 2013-04-23  9:19 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-23  9:19 UTC (permalink / raw
  To: gentoo-commits

ago         13/04/23 09:19:00

  Modified:             iproute2-3.8.0.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #458004
  
  (Portage version: 2.1.11.55/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  sys-apps/iproute2/iproute2-3.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?r1=1.7&r2=1.8

Index: iproute2-3.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- iproute2-3.8.0.ebuild	23 Apr 2013 09:14:28 -0000	1.7
+++ iproute2-3.8.0.ebuild	23 Apr 2013 09:19:00 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.7 2013/04/23 09:14:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.8 2013/04/23 09:19:00 ago Exp $
 
 EAPI="4"
 
@@ -11,7 +11,7 @@
 	inherit git-2
 else
 	SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86"
+	KEYWORDS="alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86"
 fi
 
 DESCRIPTION="kernel routing and traffic control utilities"



1.217                sys-apps/iproute2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.217&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.217&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?r1=1.216&r2=1.217

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v
retrieving revision 1.216
retrieving revision 1.217
diff -u -r1.216 -r1.217
--- ChangeLog	23 Apr 2013 09:14:28 -0000	1.216
+++ ChangeLog	23 Apr 2013 09:19:00 -0000	1.217
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/iproute2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.216 2013/04/23 09:14:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.217 2013/04/23 09:19:00 ago Exp $
+
+  23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> iproute2-3.8.0.ebuild:
+  Stable for alpha, wrt bug #458004
 
   23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> iproute2-3.8.0.ebuild:
   Stable for arm, wrt bug #458004





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/iproute2: iproute2-3.8.0.ebuild ChangeLog
@ 2013-04-23 15:15 Jeroen Roovers (jer)
  0 siblings, 0 replies; 15+ messages in thread
From: Jeroen Roovers (jer) @ 2013-04-23 15:15 UTC (permalink / raw
  To: gentoo-commits

jer         13/04/23 15:15:10

  Modified:             iproute2-3.8.0.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #458004).
  
  (Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.9                  sys-apps/iproute2/iproute2-3.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?r1=1.8&r2=1.9

Index: iproute2-3.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- iproute2-3.8.0.ebuild	23 Apr 2013 09:19:00 -0000	1.8
+++ iproute2-3.8.0.ebuild	23 Apr 2013 15:15:10 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.8 2013/04/23 09:19:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.9 2013/04/23 15:15:10 jer Exp $
 
 EAPI="4"
 
@@ -11,7 +11,7 @@
 	inherit git-2
 else
 	SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
-	KEYWORDS="alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86"
+	KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86"
 fi
 
 DESCRIPTION="kernel routing and traffic control utilities"



1.218                sys-apps/iproute2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.218&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.218&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?r1=1.217&r2=1.218

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v
retrieving revision 1.217
retrieving revision 1.218
diff -u -r1.217 -r1.218
--- ChangeLog	23 Apr 2013 09:19:00 -0000	1.217
+++ ChangeLog	23 Apr 2013 15:15:10 -0000	1.218
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/iproute2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.217 2013/04/23 09:19:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.218 2013/04/23 15:15:10 jer Exp $
+
+  23 Apr 2013; Jeroen Roovers <jer@gentoo.org> iproute2-3.8.0.ebuild:
+  Stable for HPPA (bug #458004).
 
   23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> iproute2-3.8.0.ebuild:
   Stable for alpha, wrt bug #458004





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/iproute2: iproute2-3.8.0.ebuild ChangeLog
@ 2013-04-26  9:22 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-26  9:22 UTC (permalink / raw
  To: gentoo-commits

ago         13/04/26 09:22:36

  Modified:             iproute2-3.8.0.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #458004
  
  (Portage version: 2.1.11.55/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 sys-apps/iproute2/iproute2-3.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?r1=1.9&r2=1.10

Index: iproute2-3.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- iproute2-3.8.0.ebuild	23 Apr 2013 15:15:10 -0000	1.9
+++ iproute2-3.8.0.ebuild	26 Apr 2013 09:22:36 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.9 2013/04/23 15:15:10 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.10 2013/04/26 09:22:36 ago Exp $
 
 EAPI="4"
 
@@ -11,7 +11,7 @@
 	inherit git-2
 else
 	SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
-	KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86"
+	KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86"
 fi
 
 DESCRIPTION="kernel routing and traffic control utilities"



1.219                sys-apps/iproute2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.219&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.219&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?r1=1.218&r2=1.219

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v
retrieving revision 1.218
retrieving revision 1.219
diff -u -r1.218 -r1.219
--- ChangeLog	23 Apr 2013 15:15:10 -0000	1.218
+++ ChangeLog	26 Apr 2013 09:22:36 -0000	1.219
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/iproute2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.218 2013/04/23 15:15:10 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.219 2013/04/26 09:22:36 ago Exp $
+
+  26 Apr 2013; Agostino Sarubbo <ago@gentoo.org> iproute2-3.8.0.ebuild:
+  Stable for sparc, wrt bug #458004
 
   23 Apr 2013; Jeroen Roovers <jer@gentoo.org> iproute2-3.8.0.ebuild:
   Stable for HPPA (bug #458004).





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/iproute2: iproute2-3.8.0.ebuild ChangeLog
@ 2013-04-27  9:57 Mike Frysinger (vapier)
  0 siblings, 0 replies; 15+ messages in thread
From: Mike Frysinger (vapier) @ 2013-04-27  9:57 UTC (permalink / raw
  To: gentoo-commits

vapier      13/04/27 09:57:57

  Modified:             iproute2-3.8.0.ebuild ChangeLog
  Log:
  Do not bother installing sgml/tex source files as docs #455988 by C W Rose.
  
  (Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)

Revision  Changes    Path
1.11                 sys-apps/iproute2/iproute2-3.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?r1=1.10&r2=1.11

Index: iproute2-3.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- iproute2-3.8.0.ebuild	26 Apr 2013 09:22:36 -0000	1.10
+++ iproute2-3.8.0.ebuild	27 Apr 2013 09:57:57 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.10 2013/04/26 09:22:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.11 2013/04/27 09:57:57 vapier Exp $
 
 EAPI="4"
 
@@ -93,6 +93,8 @@
 		ARPDDIR="${EPREFIX}"/var/lib/arpd \
 		install
 
+	rm "${ED}"/usr/share/doc/${PF}/*.{sgml,tex} || die #455988
+
 	dodir /bin
 	mv "${ED}"/{s,}bin/ip || die #330115
 



1.220                sys-apps/iproute2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.220&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.220&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?r1=1.219&r2=1.220

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v
retrieving revision 1.219
retrieving revision 1.220
diff -u -r1.219 -r1.220
--- ChangeLog	26 Apr 2013 09:22:36 -0000	1.219
+++ ChangeLog	27 Apr 2013 09:57:57 -0000	1.220
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/iproute2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.219 2013/04/26 09:22:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.220 2013/04/27 09:57:57 vapier Exp $
+
+  27 Apr 2013; Mike Frysinger <vapier@gentoo.org> iproute2-3.8.0.ebuild:
+  Do not bother installing sgml/tex source files as docs #455988 by C W Rose.
 
   26 Apr 2013; Agostino Sarubbo <ago@gentoo.org> iproute2-3.8.0.ebuild:
   Stable for sparc, wrt bug #458004





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/iproute2: iproute2-3.8.0.ebuild ChangeLog
@ 2013-04-28 17:07 Mike Frysinger (vapier)
  0 siblings, 0 replies; 15+ messages in thread
From: Mike Frysinger (vapier) @ 2013-04-28 17:07 UTC (permalink / raw
  To: gentoo-commits

vapier      13/04/28 17:07:14

  Modified:             iproute2-3.8.0.ebuild ChangeLog
  Log:
  Fix building w/older linux-headers #467716 by Didier Barvaux.
  
  (Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)

Revision  Changes    Path
1.12                 sys-apps/iproute2/iproute2-3.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?r1=1.11&r2=1.12

Index: iproute2-3.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- iproute2-3.8.0.ebuild	27 Apr 2013 09:57:57 -0000	1.11
+++ iproute2-3.8.0.ebuild	28 Apr 2013 17:07:14 -0000	1.12
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.11 2013/04/27 09:57:57 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.12 2013/04/28 17:07:14 vapier Exp $
 
 EAPI="4"
 
@@ -11,7 +11,7 @@
 	inherit git-2
 else
 	SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
-	KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86"
+	KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 ~s390 ~sh sparc x86"
 fi
 
 DESCRIPTION="kernel routing and traffic control utilities"
@@ -101,6 +101,10 @@
 	dolib.a lib/libnetlink.a
 	insinto /usr/include
 	doins include/libnetlink.h
+	# This local header pulls in a lot of linux headers it
+	# doesn't directly need.  Delete this header that requires
+	# linux-headers-3.8 until that goes stable.  #467716
+	sed -i '/linux\/netconf.h/d' "${ED}"/usr/include/libnetlink.h || die
 
 	if use berkdb ; then
 		dodir /var/lib/arpd



1.221                sys-apps/iproute2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.221&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.221&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?r1=1.220&r2=1.221

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v
retrieving revision 1.220
retrieving revision 1.221
diff -u -r1.220 -r1.221
--- ChangeLog	27 Apr 2013 09:57:57 -0000	1.220
+++ ChangeLog	28 Apr 2013 17:07:14 -0000	1.221
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/iproute2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.220 2013/04/27 09:57:57 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.221 2013/04/28 17:07:14 vapier Exp $
+
+  28 Apr 2013; Mike Frysinger <vapier@gentoo.org> iproute2-3.8.0.ebuild:
+  Fix building w/older linux-headers #467716 by Didier Barvaux.
 
   27 Apr 2013; Mike Frysinger <vapier@gentoo.org> iproute2-3.8.0.ebuild:
   Do not bother installing sgml/tex source files as docs #455988 by C W Rose.





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/iproute2: iproute2-3.8.0.ebuild ChangeLog
@ 2013-04-29 21:06 Mike Frysinger (vapier)
  0 siblings, 0 replies; 15+ messages in thread
From: Mike Frysinger (vapier) @ 2013-04-29 21:06 UTC (permalink / raw
  To: gentoo-commits

vapier      13/04/29 21:06:46

  Modified:             iproute2-3.8.0.ebuild ChangeLog
  Log:
  Mark s390/sh stable #458004.
  
  (Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)

Revision  Changes    Path
1.13                 sys-apps/iproute2/iproute2-3.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?r1=1.12&r2=1.13

Index: iproute2-3.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- iproute2-3.8.0.ebuild	28 Apr 2013 17:07:14 -0000	1.12
+++ iproute2-3.8.0.ebuild	29 Apr 2013 21:06:46 -0000	1.13
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.12 2013/04/28 17:07:14 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.13 2013/04/29 21:06:46 vapier Exp $
 
 EAPI="4"
 
@@ -11,7 +11,7 @@
 	inherit git-2
 else
 	SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
-	KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 ~s390 ~sh sparc x86"
+	KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 ~sh sparc x86"
 fi
 
 DESCRIPTION="kernel routing and traffic control utilities"



1.222                sys-apps/iproute2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.222&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.222&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?r1=1.221&r2=1.222

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v
retrieving revision 1.221
retrieving revision 1.222
diff -u -r1.221 -r1.222
--- ChangeLog	28 Apr 2013 17:07:14 -0000	1.221
+++ ChangeLog	29 Apr 2013 21:06:46 -0000	1.222
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/iproute2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.221 2013/04/28 17:07:14 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.222 2013/04/29 21:06:46 vapier Exp $
+
+  29 Apr 2013; Mike Frysinger <vapier@gentoo.org> iproute2-3.8.0.ebuild:
+  Mark s390/sh stable #458004.
 
   28 Apr 2013; Mike Frysinger <vapier@gentoo.org> iproute2-3.8.0.ebuild:
   Fix building w/older linux-headers #467716 by Didier Barvaux.





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/iproute2: iproute2-3.8.0.ebuild ChangeLog
@ 2013-05-04  5:09 Mike Frysinger (vapier)
  0 siblings, 0 replies; 15+ messages in thread
From: Mike Frysinger (vapier) @ 2013-05-04  5:09 UTC (permalink / raw
  To: gentoo-commits

vapier      13/05/04 05:09:02

  Modified:             iproute2-3.8.0.ebuild ChangeLog
  Log:
  Fix build with older C libs and missing defines in mount.h #468120 by Agostino Sarubbo.
  
  (Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)

Revision  Changes    Path
1.14                 sys-apps/iproute2/iproute2-3.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?r1=1.13&r2=1.14

Index: iproute2-3.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- iproute2-3.8.0.ebuild	29 Apr 2013 21:06:46 -0000	1.13
+++ iproute2-3.8.0.ebuild	4 May 2013 05:09:02 -0000	1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.13 2013/04/29 21:06:46 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.14 2013/05/04 05:09:02 vapier Exp $
 
 EAPI="4"
 
@@ -35,6 +35,7 @@
 
 src_prepare() {
 	epatch "${FILESDIR}"/${PN}-3.1.0-mtu.patch #291907
+	epatch "${FILESDIR}"/${P}-old-mount-libc.patch #468120
 	use ipv6 || epatch "${FILESDIR}"/${PN}-3.1.0-no-ipv6.patch #326849
 
 	sed -i \



1.224                sys-apps/iproute2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.224&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.224&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?r1=1.223&r2=1.224

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v
retrieving revision 1.223
retrieving revision 1.224
diff -u -r1.223 -r1.224
--- ChangeLog	1 May 2013 06:29:19 -0000	1.223
+++ ChangeLog	4 May 2013 05:09:02 -0000	1.224
@@ -1,6 +1,11 @@
 # ChangeLog for sys-apps/iproute2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.223 2013/05/01 06:29:19 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.224 2013/05/04 05:09:02 vapier Exp $
+
+  04 May 2013; Mike Frysinger <vapier@gentoo.org>
+  +files/iproute2-3.8.0-old-mount-libc.patch, iproute2-3.8.0.ebuild:
+  Fix build with older C libs and missing defines in mount.h #468120 by Agostino
+  Sarubbo.
 
 *iproute2-3.9.0 (01 May 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/iproute2: iproute2-3.8.0.ebuild ChangeLog
@ 2014-01-16  6:51 Mike Frysinger (vapier)
  0 siblings, 0 replies; 15+ messages in thread
From: Mike Frysinger (vapier) @ 2014-01-16  6:51 UTC (permalink / raw
  To: gentoo-commits

vapier      14/01/16 06:51:24

  Modified:             iproute2-3.8.0.ebuild ChangeLog
  Log:
  Mark sh stable.
  
  (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key D2E96200)

Revision  Changes    Path
1.16                 sys-apps/iproute2/iproute2-3.8.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild?r1=1.15&r2=1.16

Index: iproute2-3.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- iproute2-3.8.0.ebuild	2 Dec 2013 07:14:20 -0000	1.15
+++ iproute2-3.8.0.ebuild	16 Jan 2014 06:51:23 -0000	1.16
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.15 2013/12/02 07:14:20 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.8.0.ebuild,v 1.16 2014/01/16 06:51:23 vapier Exp $
 
 EAPI="4"
 
@@ -11,7 +11,7 @@
 	inherit git-2
 else
 	SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
-	KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 ~sh sparc x86"
+	KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
 fi
 
 DESCRIPTION="kernel routing and traffic control utilities"



1.228                sys-apps/iproute2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.228&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?rev=1.228&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/iproute2/ChangeLog?r1=1.227&r2=1.228

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v
retrieving revision 1.227
retrieving revision 1.228
diff -u -r1.227 -r1.228
--- ChangeLog	2 Dec 2013 07:14:20 -0000	1.227
+++ ChangeLog	16 Jan 2014 06:51:23 -0000	1.228
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/iproute2
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.227 2013/12/02 07:14:20 vapier Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.228 2014/01/16 06:51:23 vapier Exp $
+
+  16 Jan 2014; Mike Frysinger <vapier@gentoo.org> iproute2-3.8.0.ebuild:
+  Mark sh stable.
 
   02 Dec 2013; Mike Frysinger <vapier@gentoo.org> iproute2-3.11.0.ebuild,
   iproute2-3.12.0.ebuild, iproute2-3.8.0.ebuild:





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

end of thread, other threads:[~2014-01-16  6:51 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-27  9:57 [gentoo-commits] gentoo-x86 commit in sys-apps/iproute2: iproute2-3.8.0.ebuild ChangeLog Mike Frysinger (vapier)
  -- strict thread matches above, loose matches on Subject: below --
2014-01-16  6:51 Mike Frysinger (vapier)
2013-05-04  5:09 Mike Frysinger (vapier)
2013-04-29 21:06 Mike Frysinger (vapier)
2013-04-28 17:07 Mike Frysinger (vapier)
2013-04-26  9:22 Agostino Sarubbo (ago)
2013-04-23 15:15 Jeroen Roovers (jer)
2013-04-23  9:19 Agostino Sarubbo (ago)
2013-04-23  9:14 Agostino Sarubbo (ago)
2013-04-23  9:03 Agostino Sarubbo (ago)
2013-04-23  8:41 Agostino Sarubbo (ago)
2013-04-23  8:20 Agostino Sarubbo (ago)
2013-04-23  8:10 Agostino Sarubbo (ago)
2013-04-23  8:09 Agostino Sarubbo (ago)
2013-02-28 19:19 Tim Harder (radhermit)

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