public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/elfutils: elfutils-0.158.ebuild ChangeLog
@ 2014-01-06 13:30 Mike Frysinger (vapier)
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Frysinger (vapier) @ 2014-01-06 13:30 UTC (permalink / raw
  To: gentoo-commits

vapier      14/01/06 13:30:07

  Modified:             ChangeLog
  Added:                elfutils-0.158.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key D2E96200)

Revision  Changes    Path
1.174                dev-libs/elfutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.174&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.174&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?r1=1.173&r2=1.174

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v
retrieving revision 1.173
retrieving revision 1.174
diff -u -r1.173 -r1.174
--- ChangeLog	2 Jan 2014 12:54:54 -0000	1.173
+++ ChangeLog	6 Jan 2014 13:30:07 -0000	1.174
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/elfutils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.173 2014/01/02 12:54:54 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.174 2014/01/06 13:30:07 vapier Exp $
+
+*elfutils-0.158 (06 Jan 2014)
+
+  06 Jan 2014; Mike Frysinger <vapier@gentoo.org> +elfutils-0.158.ebuild:
+  Version bump.
 
   02 Jan 2014; Mike Frysinger <vapier@gentoo.org> elfutils-0.157.ebuild:
   Drop some sed hacks as the fixes are in the portability patch now.



1.1                  dev-libs/elfutils/elfutils-0.158.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.1&content-type=text/plain

Index: elfutils-0.158.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v 1.1 2014/01/06 13:30:07 vapier Exp $

EAPI="4"

inherit eutils flag-o-matic multilib-minimal

DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement for libelf)"
HOMEPAGE="https://fedorahosted.org/elfutils/"
SRC_URI="https://fedorahosted.org/releases/e/l/${PN}/${PV}/${P}.tar.bz2
	https://fedorahosted.org/releases/e/l/${PN}/${PV}/${PN}-portability.patch -> ${P}-portability.patch
	https://fedorahosted.org/releases/e/l/${PN}/${PV}/${PN}-robustify.patch -> ${P}-robustify.patch"

LICENSE="GPL-2-with-exceptions"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
IUSE="bzip2 lzma nls static-libs test +threads +utils zlib"

# This pkg does not actually seem to compile currently in a uClibc
# environment (xrealloc errs), but we need to ensure that glibc never
# gets pulled in as a dep since this package does not respect virtual/libc
RDEPEND="zlib? ( >=sys-libs/zlib-1.2.2.3[${MULTILIB_USEDEP}] )
	bzip2? ( app-arch/bzip2[${MULTILIB_USEDEP}] )
	lzma? ( app-arch/xz-utils[${MULTILIB_USEDEP}] )
	!dev-libs/libelf
	abi_x86_32? (
		!<=app-emulation/emul-linux-x86-baselibs-20130224-r11
		!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
	)"
DEPEND="${RDEPEND}
	nls? ( sys-devel/gettext )
	>=sys-devel/flex-2.5.4a
	sys-devel/m4"

src_prepare() {
	epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch
	epatch "${DISTDIR}"/${P}-{portability,robustify}.patch
	use static-libs || sed -i -e '/^lib_LIBRARIES/s:=.*:=:' -e '/^%.os/s:%.o$::' lib{asm,dw,elf}/Makefile.in
	# some patches touch both configure and configure.ac
	find -type f -exec touch -r configure {} +
}

src_configure() {
	use test && append-flags -g #407135
	multilib-minimal_src_configure
}

multilib_src_configure() {
	ECONF_SOURCE="${S}" econf \
		--disable-werror \
		$(use_enable nls) \
		$(use_enable threads thread-safety) \
		--program-prefix="eu-" \
		$(use_with zlib) \
		$(use_with bzip2 bzlib) \
		$(use_with lzma)
}

multilib_src_test() {
	env	LD_LIBRARY_PATH="${BUILD_DIR}/libelf:${BUILD_DIR}/libebl:${BUILD_DIR}/libdw:${BUILD_DIR}/libasm" \
		LC_ALL="C" \
		emake check || die
}

multilib_src_install_all() {
	einstalldocs
	dodoc NOTES
	# These build quick, and are needed for most tests, so don't
	# disable their building when the USE flag is disabled.
	use utils || rm -rf "${ED}"/usr/bin
}





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/elfutils: elfutils-0.158.ebuild ChangeLog
@ 2014-01-18  2:44 Mike Frysinger (vapier)
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Frysinger (vapier) @ 2014-01-18  2:44 UTC (permalink / raw
  To: gentoo-commits

vapier      14/01/18 02:44:19

  Modified:             elfutils-0.158.ebuild ChangeLog
  Log:
  Add arm64 love.
  
  (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key D2E96200)

Revision  Changes    Path
1.2                  dev-libs/elfutils/elfutils-0.158.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?r1=1.1&r2=1.2

Index: elfutils-0.158.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- elfutils-0.158.ebuild	6 Jan 2014 13:30:07 -0000	1.1
+++ elfutils-0.158.ebuild	18 Jan 2014 02:44:19 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v 1.1 2014/01/06 13:30:07 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v 1.2 2014/01/18 02:44:19 vapier Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2-with-exceptions"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="bzip2 lzma nls static-libs test +threads +utils zlib"
 
 # This pkg does not actually seem to compile currently in a uClibc



1.175                dev-libs/elfutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.175&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.175&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?r1=1.174&r2=1.175

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -r1.174 -r1.175
--- ChangeLog	6 Jan 2014 13:30:07 -0000	1.174
+++ ChangeLog	18 Jan 2014 02:44:19 -0000	1.175
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/elfutils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.174 2014/01/06 13:30:07 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.175 2014/01/18 02:44:19 vapier Exp $
+
+  18 Jan 2014; Mike Frysinger <vapier@gentoo.org> elfutils-0.158.ebuild:
+  Add arm64 love.
 
 *elfutils-0.158 (06 Jan 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/elfutils: elfutils-0.158.ebuild ChangeLog
@ 2014-02-03 12:32 Mike Frysinger (vapier)
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Frysinger (vapier) @ 2014-02-03 12:32 UTC (permalink / raw
  To: gentoo-commits

vapier      14/02/03 12:32:52

  Modified:             elfutils-0.158.ebuild ChangeLog
  Log:
  Fix from upstream for backtrace tests #497566 by eroen.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key D2E96200)

Revision  Changes    Path
1.3                  dev-libs/elfutils/elfutils-0.158.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?r1=1.2&r2=1.3

Index: elfutils-0.158.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- elfutils-0.158.ebuild	18 Jan 2014 02:44:19 -0000	1.2
+++ elfutils-0.158.ebuild	3 Feb 2014 12:32:51 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v 1.2 2014/01/18 02:44:19 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v 1.3 2014/02/03 12:32:51 vapier Exp $
 
 EAPI="4"
 
@@ -36,6 +36,7 @@
 src_prepare() {
 	epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch
 	epatch "${DISTDIR}"/${P}-{portability,robustify}.patch
+	epatch "${FILESDIR}"/${PN}-0.158-tests-backtrace-native-core.patch
 	use static-libs || sed -i -e '/^lib_LIBRARIES/s:=.*:=:' -e '/^%.os/s:%.o$::' lib{asm,dw,elf}/Makefile.in
 	# some patches touch both configure and configure.ac
 	find -type f -exec touch -r configure {} +



1.176                dev-libs/elfutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.176&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.176&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?r1=1.175&r2=1.176

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -r1.175 -r1.176
--- ChangeLog	18 Jan 2014 02:44:19 -0000	1.175
+++ ChangeLog	3 Feb 2014 12:32:51 -0000	1.176
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/elfutils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.175 2014/01/18 02:44:19 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.176 2014/02/03 12:32:51 vapier Exp $
+
+  03 Feb 2014; Mike Frysinger <vapier@gentoo.org>
+  +files/elfutils-0.158-tests-backtrace-native-core.patch,
+  elfutils-0.158.ebuild:
+  Fix from upstream for backtrace tests #497566 by eroen.
 
   18 Jan 2014; Mike Frysinger <vapier@gentoo.org> elfutils-0.158.ebuild:
   Add arm64 love.





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/elfutils: elfutils-0.158.ebuild ChangeLog
@ 2014-02-03 19:07 Jeroen Roovers (jer)
  0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2014-02-03 19:07 UTC (permalink / raw
  To: gentoo-commits

jer         14/02/03 19:07:48

  Modified:             elfutils-0.158.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #500178).
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.4                  dev-libs/elfutils/elfutils-0.158.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?r1=1.3&r2=1.4

Index: elfutils-0.158.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- elfutils-0.158.ebuild	3 Feb 2014 12:32:51 -0000	1.3
+++ elfutils-0.158.ebuild	3 Feb 2014 19:07:48 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v 1.3 2014/02/03 12:32:51 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v 1.4 2014/02/03 19:07:48 jer Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2-with-exceptions"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="bzip2 lzma nls static-libs test +threads +utils zlib"
 
 # This pkg does not actually seem to compile currently in a uClibc



1.177                dev-libs/elfutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.177&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.177&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?r1=1.176&r2=1.177

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v
retrieving revision 1.176
retrieving revision 1.177
diff -u -r1.176 -r1.177
--- ChangeLog	3 Feb 2014 12:32:51 -0000	1.176
+++ ChangeLog	3 Feb 2014 19:07:48 -0000	1.177
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/elfutils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.176 2014/02/03 12:32:51 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.177 2014/02/03 19:07:48 jer Exp $
+
+  03 Feb 2014; Jeroen Roovers <jer@gentoo.org> elfutils-0.158.ebuild:
+  Stable for HPPA (bug #500178).
 
   03 Feb 2014; Mike Frysinger <vapier@gentoo.org>
   +files/elfutils-0.158-tests-backtrace-native-core.patch,





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/elfutils: elfutils-0.158.ebuild ChangeLog
@ 2014-02-08 13:00 Akinori Hattori (hattya)
  0 siblings, 0 replies; 10+ messages in thread
From: Akinori Hattori (hattya) @ 2014-02-08 13:00 UTC (permalink / raw
  To: gentoo-commits

hattya      14/02/08 13:00:40

  Modified:             elfutils-0.158.ebuild ChangeLog
  Log:
  ia64 stable wrt bug #500178
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key EC917A6D)

Revision  Changes    Path
1.5                  dev-libs/elfutils/elfutils-0.158.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?r1=1.4&r2=1.5

Index: elfutils-0.158.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- elfutils-0.158.ebuild	3 Feb 2014 19:07:48 -0000	1.4
+++ elfutils-0.158.ebuild	8 Feb 2014 13:00:40 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v 1.4 2014/02/03 19:07:48 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v 1.5 2014/02/08 13:00:40 hattya Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2-with-exceptions"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="bzip2 lzma nls static-libs test +threads +utils zlib"
 
 # This pkg does not actually seem to compile currently in a uClibc



1.178                dev-libs/elfutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.178&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.178&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?r1=1.177&r2=1.178

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v
retrieving revision 1.177
retrieving revision 1.178
diff -u -r1.177 -r1.178
--- ChangeLog	3 Feb 2014 19:07:48 -0000	1.177
+++ ChangeLog	8 Feb 2014 13:00:40 -0000	1.178
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/elfutils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.177 2014/02/03 19:07:48 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.178 2014/02/08 13:00:40 hattya Exp $
+
+  08 Feb 2014; Akinori Hattori <hattya@gentoo.org> elfutils-0.158.ebuild:
+  ia64 stable wrt bug #500178
 
   03 Feb 2014; Jeroen Roovers <jer@gentoo.org> elfutils-0.158.ebuild:
   Stable for HPPA (bug #500178).





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/elfutils: elfutils-0.158.ebuild ChangeLog
@ 2014-02-11  5:41 Matt Turner (mattst88)
  0 siblings, 0 replies; 10+ messages in thread
From: Matt Turner (mattst88) @ 2014-02-11  5:41 UTC (permalink / raw
  To: gentoo-commits

mattst88    14/02/11 05:41:38

  Modified:             elfutils-0.158.ebuild ChangeLog
  Log:
  alpha stable, bug 500780.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 974CA72A)

Revision  Changes    Path
1.6                  dev-libs/elfutils/elfutils-0.158.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?r1=1.5&r2=1.6

Index: elfutils-0.158.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- elfutils-0.158.ebuild	8 Feb 2014 13:00:40 -0000	1.5
+++ elfutils-0.158.ebuild	11 Feb 2014 05:41:38 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v 1.5 2014/02/08 13:00:40 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v 1.6 2014/02/11 05:41:38 mattst88 Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2-with-exceptions"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="alpha ~amd64 ~arm arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="bzip2 lzma nls static-libs test +threads +utils zlib"
 
 # This pkg does not actually seem to compile currently in a uClibc



1.179                dev-libs/elfutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.179&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.179&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?r1=1.178&r2=1.179

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v
retrieving revision 1.178
retrieving revision 1.179
diff -u -r1.178 -r1.179
--- ChangeLog	8 Feb 2014 13:00:40 -0000	1.178
+++ ChangeLog	11 Feb 2014 05:41:38 -0000	1.179
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/elfutils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.178 2014/02/08 13:00:40 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.179 2014/02/11 05:41:38 mattst88 Exp $
+
+  11 Feb 2014; Matt Turner <mattst88@gentoo.org> elfutils-0.158.ebuild:
+  alpha stable, bug 500780.
 
   08 Feb 2014; Akinori Hattori <hattya@gentoo.org> elfutils-0.158.ebuild:
   ia64 stable wrt bug #500178





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/elfutils: elfutils-0.158.ebuild ChangeLog
@ 2014-02-18  2:07 Mike Frysinger (vapier)
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Frysinger (vapier) @ 2014-02-18  2:07 UTC (permalink / raw
  To: gentoo-commits

vapier      14/02/18 02:07:47

  Modified:             elfutils-0.158.ebuild ChangeLog
  Log:
  Mark m68k/s390/sh stable #500178.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key D2E96200)

Revision  Changes    Path
1.7                  dev-libs/elfutils/elfutils-0.158.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?r1=1.6&r2=1.7

Index: elfutils-0.158.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- elfutils-0.158.ebuild	11 Feb 2014 05:41:38 -0000	1.6
+++ elfutils-0.158.ebuild	18 Feb 2014 02:07:46 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v 1.6 2014/02/11 05:41:38 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v 1.7 2014/02/18 02:07:46 vapier Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2-with-exceptions"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="alpha ~amd64 ~arm arm64 hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="bzip2 lzma nls static-libs test +threads +utils zlib"
 
 # This pkg does not actually seem to compile currently in a uClibc



1.181                dev-libs/elfutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.181&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.181&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?r1=1.180&r2=1.181

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v
retrieving revision 1.180
retrieving revision 1.181
diff -u -r1.180 -r1.181
--- ChangeLog	11 Feb 2014 05:58:03 -0000	1.180
+++ ChangeLog	18 Feb 2014 02:07:46 -0000	1.181
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/elfutils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.180 2014/02/11 05:58:03 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.181 2014/02/18 02:07:46 vapier Exp $
+
+  18 Feb 2014; Mike Frysinger <vapier@gentoo.org> elfutils-0.158.ebuild:
+  Mark m68k/s390/sh stable #500178.
 
   11 Feb 2014; Matt Turner <mattst88@gentoo.org> elfutils-0.158.ebuild:
   alpha stable, bug 500178.





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/elfutils: elfutils-0.158.ebuild ChangeLog
@ 2014-03-05 15:22 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-03-05 15:22 UTC (permalink / raw
  To: gentoo-commits

ago         14/03/05 15:22:33

  Modified:             elfutils-0.158.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #500178
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.11                 dev-libs/elfutils/elfutils-0.158.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?r1=1.10&r2=1.11

Index: elfutils-0.158.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- elfutils-0.158.ebuild	27 Feb 2014 01:42:46 -0000	1.10
+++ elfutils-0.158.ebuild	5 Mar 2014 15:22:33 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v 1.10 2014/02/27 01:42:46 rich0 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v 1.11 2014/03/05 15:22:33 ago Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2-with-exceptions"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh ~sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ~ppc64 s390 sh ~sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="bzip2 lzma nls static-libs test +threads +utils zlib"
 
 # This pkg does not actually seem to compile currently in a uClibc



1.185                dev-libs/elfutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.185&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.185&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?r1=1.184&r2=1.185

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v
retrieving revision 1.184
retrieving revision 1.185
diff -u -r1.184 -r1.185
--- ChangeLog	27 Feb 2014 01:42:46 -0000	1.184
+++ ChangeLog	5 Mar 2014 15:22:33 -0000	1.185
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/elfutils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.184 2014/02/27 01:42:46 rich0 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.185 2014/03/05 15:22:33 ago Exp $
+
+  05 Mar 2014; Agostino Sarubbo <ago@gentoo.org> elfutils-0.158.ebuild:
+  Stable for ppc, wrt bug #500178
 
   27 Feb 2014; Richard Freeman <rich0@gentoo.org> elfutils-0.158.ebuild:
   amd64 stable - 500178





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/elfutils: elfutils-0.158.ebuild ChangeLog
@ 2014-03-06 10:32 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-03-06 10:32 UTC (permalink / raw
  To: gentoo-commits

ago         14/03/06 10:32:13

  Modified:             elfutils-0.158.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #500178
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.12                 dev-libs/elfutils/elfutils-0.158.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?r1=1.11&r2=1.12

Index: elfutils-0.158.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- elfutils-0.158.ebuild	5 Mar 2014 15:22:33 -0000	1.11
+++ elfutils-0.158.ebuild	6 Mar 2014 10:32:13 -0000	1.12
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v 1.11 2014/03/05 15:22:33 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v 1.12 2014/03/06 10:32:13 ago Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2-with-exceptions"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ~ppc64 s390 sh ~sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh ~sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="bzip2 lzma nls static-libs test +threads +utils zlib"
 
 # This pkg does not actually seem to compile currently in a uClibc



1.186                dev-libs/elfutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.186&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.186&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?r1=1.185&r2=1.186

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -r1.185 -r1.186
--- ChangeLog	5 Mar 2014 15:22:33 -0000	1.185
+++ ChangeLog	6 Mar 2014 10:32:13 -0000	1.186
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/elfutils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.185 2014/03/05 15:22:33 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.186 2014/03/06 10:32:13 ago Exp $
+
+  06 Mar 2014; Agostino Sarubbo <ago@gentoo.org> elfutils-0.158.ebuild:
+  Stable for ppc64, wrt bug #500178
 
   05 Mar 2014; Agostino Sarubbo <ago@gentoo.org> elfutils-0.158.ebuild:
   Stable for ppc, wrt bug #500178





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/elfutils: elfutils-0.158.ebuild ChangeLog
@ 2014-03-23 17:17 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-03-23 17:17 UTC (permalink / raw
  To: gentoo-commits

ago         14/03/23 17:17:02

  Modified:             elfutils-0.158.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #500178
  
  (Portage version: 2.2.7/cvs/Linux ppc64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.13                 dev-libs/elfutils/elfutils-0.158.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild?r1=1.12&r2=1.13

Index: elfutils-0.158.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- elfutils-0.158.ebuild	6 Mar 2014 10:32:13 -0000	1.12
+++ elfutils-0.158.ebuild	23 Mar 2014 17:17:02 -0000	1.13
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v 1.12 2014/03/06 10:32:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.158.ebuild,v 1.13 2014/03/23 17:17:02 ago Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2-with-exceptions"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh ~sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="bzip2 lzma nls static-libs test +threads +utils zlib"
 
 # This pkg does not actually seem to compile currently in a uClibc



1.187                dev-libs/elfutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.187&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.187&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/elfutils/ChangeLog?r1=1.186&r2=1.187

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v
retrieving revision 1.186
retrieving revision 1.187
diff -u -r1.186 -r1.187
--- ChangeLog	6 Mar 2014 10:32:13 -0000	1.186
+++ ChangeLog	23 Mar 2014 17:17:02 -0000	1.187
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/elfutils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.186 2014/03/06 10:32:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.187 2014/03/23 17:17:02 ago Exp $
+
+  23 Mar 2014; Agostino Sarubbo <ago@gentoo.org> elfutils-0.158.ebuild:
+  Stable for sparc, wrt bug #500178
 
   06 Mar 2014; Agostino Sarubbo <ago@gentoo.org> elfutils-0.158.ebuild:
   Stable for ppc64, wrt bug #500178





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

end of thread, other threads:[~2014-03-23 17:17 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-11  5:41 [gentoo-commits] gentoo-x86 commit in dev-libs/elfutils: elfutils-0.158.ebuild ChangeLog Matt Turner (mattst88)
  -- strict thread matches above, loose matches on Subject: below --
2014-03-23 17:17 Agostino Sarubbo (ago)
2014-03-06 10:32 Agostino Sarubbo (ago)
2014-03-05 15:22 Agostino Sarubbo (ago)
2014-02-18  2:07 Mike Frysinger (vapier)
2014-02-08 13:00 Akinori Hattori (hattya)
2014-02-03 19:07 Jeroen Roovers (jer)
2014-02-03 12:32 Mike Frysinger (vapier)
2014-01-18  2:44 Mike Frysinger (vapier)
2014-01-06 13:30 Mike Frysinger (vapier)

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