public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in gnome-base/orbit: orbit-2.14.19-r4.ebuild ChangeLog
@ 2014-07-08  7:16 Michael Haubenwallner (haubi)
  0 siblings, 0 replies; 9+ messages in thread
From: Michael Haubenwallner (haubi) @ 2014-07-08  7:16 UTC (permalink / raw
  To: gentoo-commits

haubi       14/07/08 07:16:16

  Modified:             ChangeLog
  Added:                orbit-2.14.19-r4.ebuild
  Log:
  +orbit-2.14.19-r4: Support Prefix, fix ppc-aix, drop G2CONF (#515094). Build parallel (#273031).
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A630CCB8)

Revision  Changes    Path
1.208                gnome-base/orbit/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/ChangeLog?rev=1.208&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/ChangeLog?rev=1.208&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/ChangeLog?r1=1.207&r2=1.208

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v
retrieving revision 1.207
retrieving revision 1.208
diff -u -r1.207 -r1.208
--- ChangeLog	26 Apr 2014 18:47:00 -0000	1.207
+++ ChangeLog	8 Jul 2014 07:16:15 -0000	1.208
@@ -1,6 +1,13 @@
 # ChangeLog for gnome-base/orbit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.207 2014/04/26 18:47:00 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.208 2014/07/08 07:16:15 haubi Exp $
+
+*orbit-2.14.19-r4 (08 Jul 2014)
+
+  08 Jul 2014; Michael Haubenwallner <haubi@gentoo.org>
+  +orbit-2.14.19-r4.ebuild, +files/orbit-2.14.19-aix-func_data.patch,
+  +files/orbit-2.14.19-parallel-build.patch:
+  Support Prefix, fix ppc-aix, drop G2CONF (#515094). Build parallel (#273031).
 
   26 Apr 2014; Pacho Ramos <pacho@gentoo.org> -orbit-2.14.19-r1.ebuild,
   -orbit-2.14.19-r2.ebuild:



1.1                  gnome-base/orbit/orbit-2.14.19-r4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.1&content-type=text/plain

Index: orbit-2.14.19-r4.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v 1.1 2014/07/08 07:16:15 haubi Exp $

EAPI="5"
GCONF_DEBUG="yes"
GNOME_ORG_MODULE="ORBit2"
GNOME_TARBALL_SUFFIX="bz2"
GNOME2_LA_PUNT="yes"

inherit eutils gnome2 toolchain-funcs autotools

DESCRIPTION="ORBit2 is a high-performance CORBA ORB"
HOMEPAGE="http://projects.gnome.org/ORBit2/"

LICENSE="GPL-2 LGPL-2"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
IUSE="pic static-libs test"
REQUIRED_USE="test? ( debug )"

RDEPEND=">=dev-libs/glib-2.8:2
	>=dev-libs/libIDL-0.8.2
"
DEPEND="${RDEPEND}
	dev-util/gtk-doc-am
	virtual/pkgconfig
"

src_prepare() {
	# Fix wrong process kill, bug #268142
	sed "s:killall lt-timeout-server:killall timeout-server:" \
		-i test/timeout.sh || die "sed 1 failed"

	# Do not mess with CFLAGS
	sed 's/-ggdb -O0//' -i configure.in configure || die "sed 2 failed"

	if ! use test; then
		sed -i -e 's/test //' Makefile.am || die
	fi

	# Drop failing test, bug #331709
	sed -i -e 's/test-mem //' test/Makefile.am || die

	# Fix link_protocol_is_local() for ipv4 on machines with ipv6
	# https://bugzilla.gnome.org/show_bug.cgi?id=693636
	epatch "${FILESDIR}/${PN}-2.14.19-link_protocol_is_local.patch"

	# Build libname-server-2.a with -fPIC on hardened, bug #312161
	epatch "${FILESDIR}/${PN}-2.14.19-fPIC.patch"

	epatch "${FILESDIR}"/${P}-automake-1.13.patch
	epatch "${FILESDIR}"/${P}-parallel-build.patch #273031
	epatch "${FILESDIR}"/${P}-aix-func_data.patch #515094

	eautoreconf
	gnome2_src_prepare
}

src_configure() {
	local myconf=()
	DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README* TODO"

	# We need to unset IDL_DIR, which is set by RSI's IDL.  This causes certain
	# files to be not found by autotools when compiling ORBit.  See bug #58540
	# for more information.  Please don't remove -- 8/18/06
	unset IDL_DIR

	# We need to use the hosts IDL compiler if cross-compiling, bug #262741
	if tc-is-cross-compiler; then
		# check that host version is present and executable
		[[ -x ${EPREFIX}/usr/bin/orbit-idl-2 ]] || die "Please emerge ~${CATEGORY}/${P} on the host system first"
		myconf=("${myconf[@]}" "--with-idl-compiler=${EPREFIX}/usr/bin/orbit-idl-2")
	fi
	gnome2_src_configure \
		$(use_enable pic libname-server-pic) \
		$(use_enable static-libs static) \
		"${myconf[@]}"
}

src_test() {
	# can fail in parallel, see bug #235994
	emake -j1 check
}





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

* [gentoo-commits] gentoo-x86 commit in gnome-base/orbit: orbit-2.14.19-r4.ebuild ChangeLog
@ 2014-07-22 10:46 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-07-22 10:46 UTC (permalink / raw
  To: gentoo-commits

ago         14/07/22 10:46:15

  Modified:             orbit-2.14.19-r4.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #512912
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.2                  gnome-base/orbit/orbit-2.14.19-r4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?r1=1.1&r2=1.2

Index: orbit-2.14.19-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- orbit-2.14.19-r4.ebuild	8 Jul 2014 07:16:15 -0000	1.1
+++ orbit-2.14.19-r4.ebuild	22 Jul 2014 10:46:15 -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/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v 1.1 2014/07/08 07:16:15 haubi Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v 1.2 2014/07/22 10:46:15 ago Exp $
 
 EAPI="5"
 GCONF_DEBUG="yes"
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="pic static-libs test"
 REQUIRED_USE="test? ( debug )"
 



1.209                gnome-base/orbit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v
retrieving revision 1.208
retrieving revision 1.209
diff -u -r1.208 -r1.209
--- ChangeLog	8 Jul 2014 07:16:15 -0000	1.208
+++ ChangeLog	22 Jul 2014 10:46:15 -0000	1.209
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-base/orbit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.208 2014/07/08 07:16:15 haubi Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.209 2014/07/22 10:46:15 ago Exp $
+
+  22 Jul 2014; Agostino Sarubbo <ago@gentoo.org> orbit-2.14.19-r4.ebuild:
+  Stable for amd64, wrt bug #512912
 
 *orbit-2.14.19-r4 (08 Jul 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in gnome-base/orbit: orbit-2.14.19-r4.ebuild ChangeLog
@ 2014-07-23 15:17 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-07-23 15:17 UTC (permalink / raw
  To: gentoo-commits

ago         14/07/23 15:17:31

  Modified:             orbit-2.14.19-r4.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #512012
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  gnome-base/orbit/orbit-2.14.19-r4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?r1=1.2&r2=1.3

Index: orbit-2.14.19-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- orbit-2.14.19-r4.ebuild	22 Jul 2014 10:46:15 -0000	1.2
+++ orbit-2.14.19-r4.ebuild	23 Jul 2014 15:17:31 -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/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v 1.2 2014/07/22 10:46:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v 1.3 2014/07/23 15:17:31 ago Exp $
 
 EAPI="5"
 GCONF_DEBUG="yes"
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="pic static-libs test"
 REQUIRED_USE="test? ( debug )"
 



1.210                gnome-base/orbit/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/ChangeLog?rev=1.210&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/ChangeLog?rev=1.210&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/ChangeLog?r1=1.209&r2=1.210

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v
retrieving revision 1.209
retrieving revision 1.210
diff -u -r1.209 -r1.210
--- ChangeLog	22 Jul 2014 10:46:15 -0000	1.209
+++ ChangeLog	23 Jul 2014 15:17:31 -0000	1.210
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-base/orbit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.209 2014/07/22 10:46:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.210 2014/07/23 15:17:31 ago Exp $
+
+  23 Jul 2014; Agostino Sarubbo <ago@gentoo.org> orbit-2.14.19-r4.ebuild:
+  Stable for x86, wrt bug #512012
 
   22 Jul 2014; Agostino Sarubbo <ago@gentoo.org> orbit-2.14.19-r4.ebuild:
   Stable for amd64, wrt bug #512912





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

* [gentoo-commits] gentoo-x86 commit in gnome-base/orbit: orbit-2.14.19-r4.ebuild ChangeLog
@ 2014-07-28 13:44 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-07-28 13:44 UTC (permalink / raw
  To: gentoo-commits

ago         14/07/28 13:44:54

  Modified:             orbit-2.14.19-r4.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #512012
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  gnome-base/orbit/orbit-2.14.19-r4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?r1=1.3&r2=1.4

Index: orbit-2.14.19-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- orbit-2.14.19-r4.ebuild	23 Jul 2014 15:17:31 -0000	1.3
+++ orbit-2.14.19-r4.ebuild	28 Jul 2014 13:44:54 -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/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v 1.3 2014/07/23 15:17:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v 1.4 2014/07/28 13:44:54 ago Exp $
 
 EAPI="5"
 GCONF_DEBUG="yes"
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="pic static-libs test"
 REQUIRED_USE="test? ( debug )"
 



1.211                gnome-base/orbit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v
retrieving revision 1.210
retrieving revision 1.211
diff -u -r1.210 -r1.211
--- ChangeLog	23 Jul 2014 15:17:31 -0000	1.210
+++ ChangeLog	28 Jul 2014 13:44:54 -0000	1.211
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-base/orbit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.210 2014/07/23 15:17:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.211 2014/07/28 13:44:54 ago Exp $
+
+  28 Jul 2014; Agostino Sarubbo <ago@gentoo.org> orbit-2.14.19-r4.ebuild:
+  Stable for ppc, wrt bug #512012
 
   23 Jul 2014; Agostino Sarubbo <ago@gentoo.org> orbit-2.14.19-r4.ebuild:
   Stable for x86, wrt bug #512012





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

* [gentoo-commits] gentoo-x86 commit in gnome-base/orbit: orbit-2.14.19-r4.ebuild ChangeLog
@ 2014-08-21 10:41 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-08-21 10:41 UTC (permalink / raw
  To: gentoo-commits

ago         14/08/21 10:41:08

  Modified:             orbit-2.14.19-r4.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #512012
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  gnome-base/orbit/orbit-2.14.19-r4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?r1=1.4&r2=1.5

Index: orbit-2.14.19-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- orbit-2.14.19-r4.ebuild	28 Jul 2014 13:44:54 -0000	1.4
+++ orbit-2.14.19-r4.ebuild	21 Aug 2014 10:41:08 -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/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v 1.4 2014/07/28 13:44:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v 1.5 2014/08/21 10:41:08 ago Exp $
 
 EAPI="5"
 GCONF_DEBUG="yes"
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="pic static-libs test"
 REQUIRED_USE="test? ( debug )"
 



1.212                gnome-base/orbit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v
retrieving revision 1.211
retrieving revision 1.212
diff -u -r1.211 -r1.212
--- ChangeLog	28 Jul 2014 13:44:54 -0000	1.211
+++ ChangeLog	21 Aug 2014 10:41:08 -0000	1.212
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-base/orbit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.211 2014/07/28 13:44:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.212 2014/08/21 10:41:08 ago Exp $
+
+  21 Aug 2014; Agostino Sarubbo <ago@gentoo.org> orbit-2.14.19-r4.ebuild:
+  Stable for ppc64, wrt bug #512012
 
   28 Jul 2014; Agostino Sarubbo <ago@gentoo.org> orbit-2.14.19-r4.ebuild:
   Stable for ppc, wrt bug #512012





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

* [gentoo-commits] gentoo-x86 commit in gnome-base/orbit: orbit-2.14.19-r4.ebuild ChangeLog
@ 2014-08-23 15:30 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-08-23 15:30 UTC (permalink / raw
  To: gentoo-commits

ago         14/08/23 15:30:30

  Modified:             orbit-2.14.19-r4.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #512012
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  gnome-base/orbit/orbit-2.14.19-r4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?r1=1.5&r2=1.6

Index: orbit-2.14.19-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- orbit-2.14.19-r4.ebuild	21 Aug 2014 10:41:08 -0000	1.5
+++ orbit-2.14.19-r4.ebuild	23 Aug 2014 15:30:30 -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/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v 1.5 2014/08/21 10:41:08 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v 1.6 2014/08/23 15:30:30 ago Exp $
 
 EAPI="5"
 GCONF_DEBUG="yes"
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha amd64 ~arm ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="pic static-libs test"
 REQUIRED_USE="test? ( debug )"
 



1.213                gnome-base/orbit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v
retrieving revision 1.212
retrieving revision 1.213
diff -u -r1.212 -r1.213
--- ChangeLog	21 Aug 2014 10:41:08 -0000	1.212
+++ ChangeLog	23 Aug 2014 15:30:30 -0000	1.213
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-base/orbit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.212 2014/08/21 10:41:08 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.213 2014/08/23 15:30:30 ago Exp $
+
+  23 Aug 2014; Agostino Sarubbo <ago@gentoo.org> orbit-2.14.19-r4.ebuild:
+  Stable for ia64, wrt bug #512012
 
   21 Aug 2014; Agostino Sarubbo <ago@gentoo.org> orbit-2.14.19-r4.ebuild:
   Stable for ppc64, wrt bug #512012





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

* [gentoo-commits] gentoo-x86 commit in gnome-base/orbit: orbit-2.14.19-r4.ebuild ChangeLog
@ 2014-08-25 10:59 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-08-25 10:59 UTC (permalink / raw
  To: gentoo-commits

ago         14/08/25 10:59:09

  Modified:             orbit-2.14.19-r4.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #512012
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  gnome-base/orbit/orbit-2.14.19-r4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?r1=1.6&r2=1.7

Index: orbit-2.14.19-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- orbit-2.14.19-r4.ebuild	23 Aug 2014 15:30:30 -0000	1.6
+++ orbit-2.14.19-r4.ebuild	25 Aug 2014 10:59:08 -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/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v 1.6 2014/08/23 15:30:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v 1.7 2014/08/25 10:59:08 ago Exp $
 
 EAPI="5"
 GCONF_DEBUG="yes"
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="alpha amd64 ~arm ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="pic static-libs test"
 REQUIRED_USE="test? ( debug )"
 



1.214                gnome-base/orbit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v
retrieving revision 1.213
retrieving revision 1.214
diff -u -r1.213 -r1.214
--- ChangeLog	23 Aug 2014 15:30:30 -0000	1.213
+++ ChangeLog	25 Aug 2014 10:59:08 -0000	1.214
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-base/orbit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.213 2014/08/23 15:30:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.214 2014/08/25 10:59:08 ago Exp $
+
+  25 Aug 2014; Agostino Sarubbo <ago@gentoo.org> orbit-2.14.19-r4.ebuild:
+  Stable for alpha, wrt bug #512012
 
   23 Aug 2014; Agostino Sarubbo <ago@gentoo.org> orbit-2.14.19-r4.ebuild:
   Stable for ia64, wrt bug #512012





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

* [gentoo-commits] gentoo-x86 commit in gnome-base/orbit: orbit-2.14.19-r4.ebuild ChangeLog
@ 2014-09-15  8:20 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-09-15  8:20 UTC (permalink / raw
  To: gentoo-commits

ago         14/09/15 08:20:36

  Modified:             orbit-2.14.19-r4.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #512012
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  gnome-base/orbit/orbit-2.14.19-r4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?r1=1.7&r2=1.8

Index: orbit-2.14.19-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- orbit-2.14.19-r4.ebuild	25 Aug 2014 10:59:08 -0000	1.7
+++ orbit-2.14.19-r4.ebuild	15 Sep 2014 08:20:36 -0000	1.8
@@ -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/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v 1.7 2014/08/25 10:59:08 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v 1.8 2014/09/15 08:20:36 ago Exp $
 
 EAPI="5"
 GCONF_DEBUG="yes"
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="2"
-KEYWORDS="alpha amd64 ~arm ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="alpha amd64 ~arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="pic static-libs test"
 REQUIRED_USE="test? ( debug )"
 



1.215                gnome-base/orbit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v
retrieving revision 1.214
retrieving revision 1.215
diff -u -r1.214 -r1.215
--- ChangeLog	25 Aug 2014 10:59:08 -0000	1.214
+++ ChangeLog	15 Sep 2014 08:20:36 -0000	1.215
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-base/orbit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.214 2014/08/25 10:59:08 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.215 2014/09/15 08:20:36 ago Exp $
+
+  15 Sep 2014; Agostino Sarubbo <ago@gentoo.org> orbit-2.14.19-r4.ebuild:
+  Stable for sparc, wrt bug #512012
 
   25 Aug 2014; Agostino Sarubbo <ago@gentoo.org> orbit-2.14.19-r4.ebuild:
   Stable for alpha, wrt bug #512012





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

* [gentoo-commits] gentoo-x86 commit in gnome-base/orbit: orbit-2.14.19-r4.ebuild ChangeLog
@ 2014-10-11 13:35 Markus Meier (maekke)
  0 siblings, 0 replies; 9+ messages in thread
From: Markus Meier (maekke) @ 2014-10-11 13:35 UTC (permalink / raw
  To: gentoo-commits

maekke      14/10/11 13:35:50

  Modified:             orbit-2.14.19-r4.ebuild ChangeLog
  Log:
  arm stable, bug #512012
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.9                  gnome-base/orbit/orbit-2.14.19-r4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild?r1=1.8&r2=1.9

Index: orbit-2.14.19-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- orbit-2.14.19-r4.ebuild	15 Sep 2014 08:20:36 -0000	1.8
+++ orbit-2.14.19-r4.ebuild	11 Oct 2014 13:35:50 -0000	1.9
@@ -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/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v 1.8 2014/09/15 08:20:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r4.ebuild,v 1.9 2014/10/11 13:35:50 maekke Exp $
 
 EAPI="5"
 GCONF_DEBUG="yes"
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="2"
-KEYWORDS="alpha amd64 ~arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="pic static-libs test"
 REQUIRED_USE="test? ( debug )"
 



1.216                gnome-base/orbit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v
retrieving revision 1.215
retrieving revision 1.216
diff -u -r1.215 -r1.216
--- ChangeLog	15 Sep 2014 08:20:36 -0000	1.215
+++ ChangeLog	11 Oct 2014 13:35:50 -0000	1.216
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-base/orbit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.215 2014/09/15 08:20:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.216 2014/10/11 13:35:50 maekke Exp $
+
+  11 Oct 2014; Markus Meier <maekke@gentoo.org> orbit-2.14.19-r4.ebuild:
+  arm stable, bug #512012
 
   15 Sep 2014; Agostino Sarubbo <ago@gentoo.org> orbit-2.14.19-r4.ebuild:
   Stable for sparc, wrt bug #512012





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

end of thread, other threads:[~2014-10-11 13:35 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-15  8:20 [gentoo-commits] gentoo-x86 commit in gnome-base/orbit: orbit-2.14.19-r4.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2014-10-11 13:35 Markus Meier (maekke)
2014-08-25 10:59 Agostino Sarubbo (ago)
2014-08-23 15:30 Agostino Sarubbo (ago)
2014-08-21 10:41 Agostino Sarubbo (ago)
2014-07-28 13:44 Agostino Sarubbo (ago)
2014-07-23 15:17 Agostino Sarubbo (ago)
2014-07-22 10:46 Agostino Sarubbo (ago)
2014-07-08  7:16 Michael Haubenwallner (haubi)

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