public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/nettle: nettle-2.6.ebuild ChangeLog
@ 2013-01-18  0:57 Tim Harder (radhermit)
  0 siblings, 0 replies; 15+ messages in thread
From: Tim Harder (radhermit) @ 2013-01-18  0:57 UTC (permalink / raw
  To: gentoo-commits

radhermit    13/01/18 00:57:24

  Modified:             ChangeLog
  Added:                nettle-2.6.ebuild
  Log:
  Version bump. Update to EAPI 5 and add subslot, add doc and test use flags, and run tests.
  
  (Portage version: 2.2.0_alpha154/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)

Revision  Changes    Path
1.74                 dev-libs/nettle/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog	15 Dec 2012 12:06:14 -0000	1.73
+++ ChangeLog	18 Jan 2013 00:57:24 -0000	1.74
@@ -1,6 +1,13 @@
 # ChangeLog for dev-libs/nettle
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.73 2012/12/15 12:06:14 alonbl Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.74 2013/01/18 00:57:24 radhermit Exp $
+
+*nettle-2.6 (18 Jan 2013)
+
+  18 Jan 2013; Tim Harder <radhermit@gentoo.org> +nettle-2.6.ebuild,
+  +files/nettle-2.6-shared.patch:
+  Version bump. Update to EAPI 5 and add subslot, add doc and test use flags,
+  and run tests.
 
   14 Dec 2012;  Alon Bar-Lev <alonbl@gentoo.org> +files/nettle-2.5-build-ar.patch,
   nettle-2.5-r1.ebuild:



1.1                  dev-libs/nettle/nettle-2.6.ebuild

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

Index: nettle-2.6.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v 1.1 2013/01/18 00:57:24 radhermit Exp $

EAPI="5"

inherit eutils autotools

DESCRIPTION="Low-level cryptographic library"
HOMEPAGE="http://www.lysator.liu.se/~nisse/nettle/"
SRC_URI="http://www.lysator.liu.se/~nisse/archive/${P}.tar.gz"

LICENSE="|| ( LGPL-3 LGPL-2.1 )"
SLOT="0/4" # subslot = libnettle soname version
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="doc +gmp static-libs test"

DEPEND="gmp? ( dev-libs/gmp )"
RDEPEND="${DEPEND}"

src_prepare() {
	epatch "${FILESDIR}"/${P}-shared.patch
	sed -e '/CFLAGS=/s: -ggdb3::' \
		-e 's/solaris\*)/sunldsolaris*)/' \
		-i configure.ac || die

	# conditionally build tests and examples required by tests
	use test || sed -i '/SUBDIRS/s/testsuite.*//' Makefile.in || die

	eautoreconf
}

src_configure() {
	# --disable-openssl bug #427526
	econf \
		$(use_enable gmp public-key) \
		$(use_enable static-libs static) \
		$(use_enable doc documentation) \
		--disable-openssl
}

src_test() {
	cd testsuite

	# symbols test requires static libs
	use static-libs || rm symbols-test || die

	../run-tests || die
}

src_install() {
	default

	if use doc ; then
		dohtml nettle.html
		dodoc nettle.pdf
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/nettle: nettle-2.6.ebuild ChangeLog
@ 2013-01-18  1:22 Tim Harder (radhermit)
  0 siblings, 0 replies; 15+ messages in thread
From: Tim Harder (radhermit) @ 2013-01-18  1:22 UTC (permalink / raw
  To: gentoo-commits

radhermit    13/01/18 01:22:08

  Modified:             nettle-2.6.ebuild ChangeLog
  Log:
  Explicitly specify examples dir.
  
  (Portage version: 2.2.0_alpha154/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)

Revision  Changes    Path
1.2                  dev-libs/nettle/nettle-2.6.ebuild

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

Index: nettle-2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nettle-2.6.ebuild	18 Jan 2013 00:57:24 -0000	1.1
+++ nettle-2.6.ebuild	18 Jan 2013 01:22:08 -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/dev-libs/nettle/nettle-2.6.ebuild,v 1.1 2013/01/18 00:57:24 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v 1.2 2013/01/18 01:22:08 radhermit Exp $
 
 EAPI="5"
 
@@ -20,12 +20,13 @@
 
 src_prepare() {
 	epatch "${FILESDIR}"/${P}-shared.patch
+
 	sed -e '/CFLAGS=/s: -ggdb3::' \
 		-e 's/solaris\*)/sunldsolaris*)/' \
 		-i configure.ac || die
 
 	# conditionally build tests and examples required by tests
-	use test || sed -i '/SUBDIRS/s/testsuite.*//' Makefile.in || die
+	use test || sed -i '/SUBDIRS/s/testsuite examples//' Makefile.in || die
 
 	eautoreconf
 }



1.75                 dev-libs/nettle/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog	18 Jan 2013 00:57:24 -0000	1.74
+++ ChangeLog	18 Jan 2013 01:22:08 -0000	1.75
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nettle
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.74 2013/01/18 00:57:24 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.75 2013/01/18 01:22:08 radhermit Exp $
+
+  18 Jan 2013; Tim Harder <radhermit@gentoo.org> nettle-2.6.ebuild:
+  Explicitly specify examples dir.
 
 *nettle-2.6 (18 Jan 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/nettle: nettle-2.6.ebuild ChangeLog
@ 2013-01-18  3:39 Tim Harder (radhermit)
  0 siblings, 0 replies; 15+ messages in thread
From: Tim Harder (radhermit) @ 2013-01-18  3:39 UTC (permalink / raw
  To: gentoo-commits

radhermit    13/01/18 03:39:56

  Modified:             nettle-2.6.ebuild ChangeLog
  Log:
  Remove explicit src_test. The default just throws a couple warnings if static libs aren't built but still passes successfully.
  
  (Portage version: 2.2.0_alpha154/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)

Revision  Changes    Path
1.3                  dev-libs/nettle/nettle-2.6.ebuild

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

Index: nettle-2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- nettle-2.6.ebuild	18 Jan 2013 01:22:08 -0000	1.2
+++ nettle-2.6.ebuild	18 Jan 2013 03:39:56 -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/dev-libs/nettle/nettle-2.6.ebuild,v 1.2 2013/01/18 01:22:08 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v 1.3 2013/01/18 03:39:56 radhermit Exp $
 
 EAPI="5"
 
@@ -40,15 +40,6 @@
 		--disable-openssl
 }
 
-src_test() {
-	cd testsuite
-
-	# symbols test requires static libs
-	use static-libs || rm symbols-test || die
-
-	../run-tests || die
-}
-
 src_install() {
 	default
 



1.76                 dev-libs/nettle/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog	18 Jan 2013 01:22:08 -0000	1.75
+++ ChangeLog	18 Jan 2013 03:39:56 -0000	1.76
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/nettle
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.75 2013/01/18 01:22:08 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.76 2013/01/18 03:39:56 radhermit Exp $
+
+  18 Jan 2013; Tim Harder <radhermit@gentoo.org> nettle-2.6.ebuild,
+  files/nettle-2.6-shared.patch:
+  Remove explicit src_test. The default just throws a couple warnings if static
+  libs aren't built but still passes successfully.
 
   18 Jan 2013; Tim Harder <radhermit@gentoo.org> nettle-2.6.ebuild:
   Explicitly specify examples dir.





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/nettle: nettle-2.6.ebuild ChangeLog
@ 2013-02-20 23:35 Zac Medico (zmedico)
  0 siblings, 0 replies; 15+ messages in thread
From: Zac Medico (zmedico) @ 2013-02-20 23:35 UTC (permalink / raw
  To: gentoo-commits

zmedico     13/02/20 23:35:00

  Modified:             nettle-2.6.ebuild ChangeLog
  Log:
  Add ~arm-linux keyword.
  
  (Portage version: 2.2.0_alpha163_p9/cvs/Linux i686, signed Manifest commit with key 0xFDE8EF85AE5719A3)

Revision  Changes    Path
1.4                  dev-libs/nettle/nettle-2.6.ebuild

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

Index: nettle-2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- nettle-2.6.ebuild	18 Jan 2013 03:39:56 -0000	1.3
+++ nettle-2.6.ebuild	20 Feb 2013 23:35:00 -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/dev-libs/nettle/nettle-2.6.ebuild,v 1.3 2013/01/18 03:39:56 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v 1.4 2013/02/20 23:35:00 zmedico Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/4" # subslot = libnettle soname version
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc +gmp static-libs test"
 
 DEPEND="gmp? ( dev-libs/gmp )"



1.77                 dev-libs/nettle/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog	18 Jan 2013 03:39:56 -0000	1.76
+++ ChangeLog	20 Feb 2013 23:35:00 -0000	1.77
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nettle
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.76 2013/01/18 03:39:56 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.77 2013/02/20 23:35:00 zmedico Exp $
+
+  20 Feb 2013; Zac Medico <zmedico@gentoo.org> nettle-2.6.ebuild:
+  Add ~arm-linux keyword.
 
   18 Jan 2013; Tim Harder <radhermit@gentoo.org> nettle-2.6.ebuild,
   files/nettle-2.6-shared.patch:





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/nettle: nettle-2.6.ebuild ChangeLog
@ 2013-03-10 16:26 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-10 16:26 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/10 16:26:15

  Modified:             nettle-2.6.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #461104
  
  (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  dev-libs/nettle/nettle-2.6.ebuild

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

Index: nettle-2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- nettle-2.6.ebuild	20 Feb 2013 23:35:00 -0000	1.4
+++ nettle-2.6.ebuild	10 Mar 2013 16:26:15 -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/dev-libs/nettle/nettle-2.6.ebuild,v 1.4 2013/02/20 23:35:00 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v 1.5 2013/03/10 16:26:15 ago Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/4" # subslot = libnettle soname version
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc +gmp static-libs test"
 
 DEPEND="gmp? ( dev-libs/gmp )"



1.78                 dev-libs/nettle/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog	20 Feb 2013 23:35:00 -0000	1.77
+++ ChangeLog	10 Mar 2013 16:26:15 -0000	1.78
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nettle
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.77 2013/02/20 23:35:00 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.78 2013/03/10 16:26:15 ago Exp $
+
+  10 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
+  Stable for amd64, wrt bug #461104
 
   20 Feb 2013; Zac Medico <zmedico@gentoo.org> nettle-2.6.ebuild:
   Add ~arm-linux keyword.





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/nettle: nettle-2.6.ebuild ChangeLog
@ 2013-03-10 16:29 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-10 16:29 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/10 16:29:55

  Modified:             nettle-2.6.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #461104
  
  (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  dev-libs/nettle/nettle-2.6.ebuild

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

Index: nettle-2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- nettle-2.6.ebuild	10 Mar 2013 16:26:15 -0000	1.5
+++ nettle-2.6.ebuild	10 Mar 2013 16:29:55 -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/dev-libs/nettle/nettle-2.6.ebuild,v 1.5 2013/03/10 16:26:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v 1.6 2013/03/10 16:29:55 ago Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/4" # subslot = libnettle soname version
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc +gmp static-libs test"
 
 DEPEND="gmp? ( dev-libs/gmp )"



1.79                 dev-libs/nettle/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog	10 Mar 2013 16:26:15 -0000	1.78
+++ ChangeLog	10 Mar 2013 16:29:55 -0000	1.79
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nettle
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.78 2013/03/10 16:26:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.79 2013/03/10 16:29:55 ago Exp $
+
+  10 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
+  Stable for x86, wrt bug #461104
 
   10 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
   Stable for amd64, wrt bug #461104





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/nettle: nettle-2.6.ebuild ChangeLog
@ 2013-03-12 18:26 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-12 18:26 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/12 18:26:41

  Modified:             nettle-2.6.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #461104
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  dev-libs/nettle/nettle-2.6.ebuild

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

Index: nettle-2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- nettle-2.6.ebuild	10 Mar 2013 16:29:55 -0000	1.6
+++ nettle-2.6.ebuild	12 Mar 2013 18:26:41 -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/dev-libs/nettle/nettle-2.6.ebuild,v 1.6 2013/03/10 16:29:55 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v 1.7 2013/03/12 18:26:41 ago Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/4" # subslot = libnettle soname version
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc +gmp static-libs test"
 
 DEPEND="gmp? ( dev-libs/gmp )"



1.80                 dev-libs/nettle/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog	10 Mar 2013 16:29:55 -0000	1.79
+++ ChangeLog	12 Mar 2013 18:26:41 -0000	1.80
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nettle
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.79 2013/03/10 16:29:55 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.80 2013/03/12 18:26:41 ago Exp $
+
+  12 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
+  Stable for ppc, wrt bug #461104
 
   10 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
   Stable for x86, wrt bug #461104





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/nettle: nettle-2.6.ebuild ChangeLog
@ 2013-03-13 11:25 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-13 11:25 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/13 11:25:40

  Modified:             nettle-2.6.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #461104
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  dev-libs/nettle/nettle-2.6.ebuild

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

Index: nettle-2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- nettle-2.6.ebuild	12 Mar 2013 18:26:41 -0000	1.7
+++ nettle-2.6.ebuild	13 Mar 2013 11:25:40 -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/dev-libs/nettle/nettle-2.6.ebuild,v 1.7 2013/03/12 18:26:41 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v 1.8 2013/03/13 11:25:40 ago Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/4" # subslot = libnettle soname version
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc +gmp static-libs test"
 
 DEPEND="gmp? ( dev-libs/gmp )"



1.81                 dev-libs/nettle/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	12 Mar 2013 18:26:41 -0000	1.80
+++ ChangeLog	13 Mar 2013 11:25:40 -0000	1.81
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nettle
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.80 2013/03/12 18:26:41 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.81 2013/03/13 11:25:40 ago Exp $
+
+  13 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
+  Stable for ppc64, wrt bug #461104
 
   12 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
   Stable for ppc, wrt bug #461104





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/nettle: nettle-2.6.ebuild ChangeLog
@ 2013-03-14  6:54 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-14  6:54 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/14 06:54:01

  Modified:             nettle-2.6.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #461104
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.9                  dev-libs/nettle/nettle-2.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild?r1=1.8&r2=1.9

Index: nettle-2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- nettle-2.6.ebuild	13 Mar 2013 11:25:40 -0000	1.8
+++ nettle-2.6.ebuild	14 Mar 2013 06:54:01 -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/dev-libs/nettle/nettle-2.6.ebuild,v 1.8 2013/03/13 11:25:40 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v 1.9 2013/03/14 06:54:01 ago Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/4" # subslot = libnettle soname version
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc +gmp static-libs test"
 
 DEPEND="gmp? ( dev-libs/gmp )"



1.82                 dev-libs/nettle/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog	13 Mar 2013 11:25:40 -0000	1.81
+++ ChangeLog	14 Mar 2013 06:54:01 -0000	1.82
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nettle
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.81 2013/03/13 11:25:40 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.82 2013/03/14 06:54:01 ago Exp $
+
+  14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
+  Stable for alpha, wrt bug #461104
 
   13 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
   Stable for ppc64, wrt bug #461104





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/nettle: nettle-2.6.ebuild ChangeLog
@ 2013-03-14  7:15 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-14  7:15 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/14 07:15:42

  Modified:             nettle-2.6.ebuild ChangeLog
  Log:
  Stable for arm, wrt bug #461104
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 dev-libs/nettle/nettle-2.6.ebuild

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

Index: nettle-2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- nettle-2.6.ebuild	14 Mar 2013 06:54:01 -0000	1.9
+++ nettle-2.6.ebuild	14 Mar 2013 07:15:42 -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/dev-libs/nettle/nettle-2.6.ebuild,v 1.9 2013/03/14 06:54:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v 1.10 2013/03/14 07:15:42 ago Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/4" # subslot = libnettle soname version
-KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc +gmp static-libs test"
 
 DEPEND="gmp? ( dev-libs/gmp )"



1.83                 dev-libs/nettle/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog	14 Mar 2013 06:54:01 -0000	1.82
+++ ChangeLog	14 Mar 2013 07:15:42 -0000	1.83
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nettle
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.82 2013/03/14 06:54:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.83 2013/03/14 07:15:42 ago Exp $
+
+  14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
+  Stable for arm, wrt bug #461104
 
   14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
   Stable for alpha, wrt bug #461104





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/nettle: nettle-2.6.ebuild ChangeLog
@ 2013-03-14  7:49 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-14  7:49 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/14 07:49:01

  Modified:             nettle-2.6.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #461104
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.11                 dev-libs/nettle/nettle-2.6.ebuild

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

Index: nettle-2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- nettle-2.6.ebuild	14 Mar 2013 07:15:42 -0000	1.10
+++ nettle-2.6.ebuild	14 Mar 2013 07:49:01 -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/dev-libs/nettle/nettle-2.6.ebuild,v 1.10 2013/03/14 07:15:42 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v 1.11 2013/03/14 07:49:01 ago Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/4" # subslot = libnettle soname version
-KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc +gmp static-libs test"
 
 DEPEND="gmp? ( dev-libs/gmp )"



1.84                 dev-libs/nettle/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	14 Mar 2013 07:15:42 -0000	1.83
+++ ChangeLog	14 Mar 2013 07:49:01 -0000	1.84
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nettle
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.83 2013/03/14 07:15:42 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.84 2013/03/14 07:49:01 ago Exp $
+
+  14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
+  Stable for ia64, wrt bug #461104
 
   14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
   Stable for arm, wrt bug #461104





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/nettle: nettle-2.6.ebuild ChangeLog
@ 2013-03-14 12:44 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-14 12:44 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/14 12:44:42

  Modified:             nettle-2.6.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #461104
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.12                 dev-libs/nettle/nettle-2.6.ebuild

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

Index: nettle-2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- nettle-2.6.ebuild	14 Mar 2013 07:49:01 -0000	1.11
+++ nettle-2.6.ebuild	14 Mar 2013 12:44:42 -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/dev-libs/nettle/nettle-2.6.ebuild,v 1.11 2013/03/14 07:49:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v 1.12 2013/03/14 12:44:42 ago Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/4" # subslot = libnettle soname version
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc +gmp static-libs test"
 
 DEPEND="gmp? ( dev-libs/gmp )"



1.85                 dev-libs/nettle/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog	14 Mar 2013 07:49:01 -0000	1.84
+++ ChangeLog	14 Mar 2013 12:44:42 -0000	1.85
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nettle
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.84 2013/03/14 07:49:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.85 2013/03/14 12:44:42 ago Exp $
+
+  14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
+  Stable for sparc, wrt bug #461104
 
   14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
   Stable for ia64, wrt bug #461104





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/nettle: nettle-2.6.ebuild ChangeLog
@ 2013-03-14 16:19 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-14 16:19 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/14 16:19:49

  Modified:             nettle-2.6.ebuild ChangeLog
  Log:
  Stable for s390, wrt bug #461104
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.13                 dev-libs/nettle/nettle-2.6.ebuild

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

Index: nettle-2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- nettle-2.6.ebuild	14 Mar 2013 12:44:42 -0000	1.12
+++ nettle-2.6.ebuild	14 Mar 2013 16:19:49 -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/dev-libs/nettle/nettle-2.6.ebuild,v 1.12 2013/03/14 12:44:42 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v 1.13 2013/03/14 16:19:49 ago Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/4" # subslot = libnettle soname version
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc +gmp static-libs test"
 
 DEPEND="gmp? ( dev-libs/gmp )"



1.86                 dev-libs/nettle/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog	14 Mar 2013 12:44:42 -0000	1.85
+++ ChangeLog	14 Mar 2013 16:19:49 -0000	1.86
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nettle
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.85 2013/03/14 12:44:42 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.86 2013/03/14 16:19:49 ago Exp $
+
+  14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
+  Stable for s390, wrt bug #461104
 
   14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
   Stable for sparc, wrt bug #461104





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/nettle: nettle-2.6.ebuild ChangeLog
@ 2013-03-15 13:27 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-15 13:27 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/15 13:27:00

  Modified:             nettle-2.6.ebuild ChangeLog
  Log:
  Stable for sh, wrt bug #461104
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.14                 dev-libs/nettle/nettle-2.6.ebuild

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

Index: nettle-2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- nettle-2.6.ebuild	14 Mar 2013 16:19:49 -0000	1.13
+++ nettle-2.6.ebuild	15 Mar 2013 13:27:00 -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/dev-libs/nettle/nettle-2.6.ebuild,v 1.13 2013/03/14 16:19:49 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v 1.14 2013/03/15 13:27:00 ago Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/4" # subslot = libnettle soname version
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc +gmp static-libs test"
 
 DEPEND="gmp? ( dev-libs/gmp )"



1.87                 dev-libs/nettle/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog	14 Mar 2013 16:19:49 -0000	1.86
+++ ChangeLog	15 Mar 2013 13:27:00 -0000	1.87
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nettle
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.86 2013/03/14 16:19:49 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.87 2013/03/15 13:27:00 ago Exp $
+
+  15 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
+  Stable for sh, wrt bug #461104
 
   14 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
   Stable for s390, wrt bug #461104





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/nettle: nettle-2.6.ebuild ChangeLog
@ 2013-03-15 15:25 Jeroen Roovers (jer)
  0 siblings, 0 replies; 15+ messages in thread
From: Jeroen Roovers (jer) @ 2013-03-15 15:25 UTC (permalink / raw
  To: gentoo-commits

jer         13/03/15 15:25:17

  Modified:             nettle-2.6.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #461104).
  
  (Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.15                 dev-libs/nettle/nettle-2.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild?r1=1.14&r2=1.15

Index: nettle-2.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- nettle-2.6.ebuild	15 Mar 2013 13:27:00 -0000	1.14
+++ nettle-2.6.ebuild	15 Mar 2013 15:25:17 -0000	1.15
@@ -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/dev-libs/nettle/nettle-2.6.ebuild,v 1.14 2013/03/15 13:27:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.6.ebuild,v 1.15 2013/03/15 15:25:17 jer Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/4" # subslot = libnettle soname version
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc +gmp static-libs test"
 
 DEPEND="gmp? ( dev-libs/gmp )"



1.88                 dev-libs/nettle/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog	15 Mar 2013 13:27:00 -0000	1.87
+++ ChangeLog	15 Mar 2013 15:25:17 -0000	1.88
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nettle
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.87 2013/03/15 13:27:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.88 2013/03/15 15:25:17 jer Exp $
+
+  15 Mar 2013; Jeroen Roovers <jer@gentoo.org> nettle-2.6.ebuild:
+  Stable for HPPA (bug #461104).
 
   15 Mar 2013; Agostino Sarubbo <ago@gentoo.org> nettle-2.6.ebuild:
   Stable for sh, wrt bug #461104





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

end of thread, other threads:[~2013-03-15 15:25 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-18  0:57 [gentoo-commits] gentoo-x86 commit in dev-libs/nettle: nettle-2.6.ebuild ChangeLog Tim Harder (radhermit)
  -- strict thread matches above, loose matches on Subject: below --
2013-01-18  1:22 Tim Harder (radhermit)
2013-01-18  3:39 Tim Harder (radhermit)
2013-02-20 23:35 Zac Medico (zmedico)
2013-03-10 16:26 Agostino Sarubbo (ago)
2013-03-10 16:29 Agostino Sarubbo (ago)
2013-03-12 18:26 Agostino Sarubbo (ago)
2013-03-13 11:25 Agostino Sarubbo (ago)
2013-03-14  6:54 Agostino Sarubbo (ago)
2013-03-14  7:15 Agostino Sarubbo (ago)
2013-03-14  7:49 Agostino Sarubbo (ago)
2013-03-14 12:44 Agostino Sarubbo (ago)
2013-03-14 16:19 Agostino Sarubbo (ago)
2013-03-15 13:27 Agostino Sarubbo (ago)
2013-03-15 15:25 Jeroen Roovers (jer)

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