All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/mono-gtksharp: new package
@ 2015-02-14 10:16 Angelo Compagnucci
  2015-03-04 14:56 ` Angelo Compagnucci
  2015-03-05  0:12 ` Arnout Vandecappelle
  0 siblings, 2 replies; 6+ messages in thread
From: Angelo Compagnucci @ 2015-02-14 10:16 UTC (permalink / raw)
  To: buildroot

This patch adds gtksharp package for mono.

Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
---

Changes: I superseeded previous patch to adhere the package naming, so
gtksharp becames mono-gtksharp.

 package/Config.in                      |  5 +++++
 package/mono-gtksharp/Config.in        |  7 +++++++
 package/mono-gtksharp/mono-gtksharp.mk | 16 ++++++++++++++++
 3 files changed, 28 insertions(+)
 create mode 100644 package/mono-gtksharp/Config.in
 create mode 100644 package/mono-gtksharp/mono-gtksharp.mk

diff --git a/package/Config.in b/package/Config.in
index fe3d3d0..fbba20c 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -464,6 +464,11 @@ menu "Lua libraries/modules"
 endmenu
 endif
 	source "package/mono/Config.in"
+if BR2_PACKAGE_MONO
+menu "Mono libraries/modules"
+	source "package/mono-gtksharp/Config.in"
+endmenu
+endif
 	source "package/nodejs/Config.in"
 	source "package/perl/Config.in"
 if BR2_PACKAGE_PERL
diff --git a/package/mono-gtksharp/Config.in b/package/mono-gtksharp/Config.in
new file mode 100644
index 0000000..b3f16f0
--- /dev/null
+++ b/package/mono-gtksharp/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_MONO_GTKSHARP
+	bool "gtk#"
+	depends on BR2_PACKAGE_LIBGTK3
+	help
+	  Gtk# is a .NET language binding for the GTK+ toolkit.
+
+	  http://www.mono-project.com/docs/gui/gtksharp/
diff --git a/package/mono-gtksharp/mono-gtksharp.mk b/package/mono-gtksharp/mono-gtksharp.mk
new file mode 100644
index 0000000..58412eb
--- /dev/null
+++ b/package/mono-gtksharp/mono-gtksharp.mk
@@ -0,0 +1,16 @@
+################################################################################
+#
+# gtksharp
+#
+################################################################################
+
+MONO_GTKSHARP_VERSION_MAJOR = 2.99
+MONO_GTKSHARP_VERSION = $(MONO_GTKSHARP_VERSION_MAJOR).3
+MONO_GTKSHARP_SITE = http://ftp.gnome.org/pub/gnome/sources/gtk-sharp/$(MONO_GTKSHARP_VERSION_MAJOR)/
+MONO_GTKSHARP_SOURCE = gtk-sharp-$(MONO_GTKSHARP_VERSION).tar.xz
+MONO_GTKSHARP_LICENSE = LGPLv2
+MONO_GTKSHARP_LICENSE_FILES = COPYING
+MONO_GTKSHARP_INSTALL_STAGING = YES
+MONO_GTKSHARP_DEPENDENCIES = mono libgtk3
+
+$(eval $(autotools-package))
-- 
1.9.1

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

* [Buildroot] [PATCH] package/mono-gtksharp: new package
  2015-02-14 10:16 [Buildroot] [PATCH] package/mono-gtksharp: new package Angelo Compagnucci
@ 2015-03-04 14:56 ` Angelo Compagnucci
  2015-03-05  0:12 ` Arnout Vandecappelle
  1 sibling, 0 replies; 6+ messages in thread
From: Angelo Compagnucci @ 2015-03-04 14:56 UTC (permalink / raw)
  To: buildroot

Hello List,

2015-02-14 11:16 GMT+01:00 Angelo Compagnucci <angelo.compagnucci@gmail.com>:
> This patch adds gtksharp package for mono.
>
> Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
> ---
>
> Changes: I superseeded previous patch to adhere the package naming, so
> gtksharp becames mono-gtksharp.
>
>  package/Config.in                      |  5 +++++
>  package/mono-gtksharp/Config.in        |  7 +++++++
>  package/mono-gtksharp/mono-gtksharp.mk | 16 ++++++++++++++++
>  3 files changed, 28 insertions(+)
>  create mode 100644 package/mono-gtksharp/Config.in
>  create mode 100644 package/mono-gtksharp/mono-gtksharp.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index fe3d3d0..fbba20c 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -464,6 +464,11 @@ menu "Lua libraries/modules"
>  endmenu
>  endif
>         source "package/mono/Config.in"
> +if BR2_PACKAGE_MONO
> +menu "Mono libraries/modules"
> +       source "package/mono-gtksharp/Config.in"
> +endmenu
> +endif
>         source "package/nodejs/Config.in"
>         source "package/perl/Config.in"
>  if BR2_PACKAGE_PERL
> diff --git a/package/mono-gtksharp/Config.in b/package/mono-gtksharp/Config.in
> new file mode 100644
> index 0000000..b3f16f0
> --- /dev/null
> +++ b/package/mono-gtksharp/Config.in
> @@ -0,0 +1,7 @@
> +config BR2_PACKAGE_MONO_GTKSHARP
> +       bool "gtk#"
> +       depends on BR2_PACKAGE_LIBGTK3
> +       help
> +         Gtk# is a .NET language binding for the GTK+ toolkit.
> +
> +         http://www.mono-project.com/docs/gui/gtksharp/
> diff --git a/package/mono-gtksharp/mono-gtksharp.mk b/package/mono-gtksharp/mono-gtksharp.mk
> new file mode 100644
> index 0000000..58412eb
> --- /dev/null
> +++ b/package/mono-gtksharp/mono-gtksharp.mk
> @@ -0,0 +1,16 @@
> +################################################################################
> +#
> +# gtksharp
> +#
> +################################################################################
> +
> +MONO_GTKSHARP_VERSION_MAJOR = 2.99
> +MONO_GTKSHARP_VERSION = $(MONO_GTKSHARP_VERSION_MAJOR).3
> +MONO_GTKSHARP_SITE = http://ftp.gnome.org/pub/gnome/sources/gtk-sharp/$(MONO_GTKSHARP_VERSION_MAJOR)/
> +MONO_GTKSHARP_SOURCE = gtk-sharp-$(MONO_GTKSHARP_VERSION).tar.xz
> +MONO_GTKSHARP_LICENSE = LGPLv2
> +MONO_GTKSHARP_LICENSE_FILES = COPYING
> +MONO_GTKSHARP_INSTALL_STAGING = YES
> +MONO_GTKSHARP_DEPENDENCIES = mono libgtk3
> +
> +$(eval $(autotools-package))
> --
> 1.9.1
>

Any news on this?

Thank you!

-- 
Profile: http://it.linkedin.com/in/compagnucciangelo

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

* [Buildroot] [PATCH] package/mono-gtksharp: new package
  2015-02-14 10:16 [Buildroot] [PATCH] package/mono-gtksharp: new package Angelo Compagnucci
  2015-03-04 14:56 ` Angelo Compagnucci
@ 2015-03-05  0:12 ` Arnout Vandecappelle
  2015-03-05 11:44   ` Angelo Compagnucci
  1 sibling, 1 reply; 6+ messages in thread
From: Arnout Vandecappelle @ 2015-03-05  0:12 UTC (permalink / raw)
  To: buildroot

On 14/02/15 11:16, Angelo Compagnucci wrote:
> This patch adds gtksharp package for mono.
> 
> Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>

Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

A few comments below, but nothing obligatory.

> ---
> 
> Changes: I superseeded previous patch to adhere the package naming, so
> gtksharp becames mono-gtksharp.
> 
>  package/Config.in                      |  5 +++++
>  package/mono-gtksharp/Config.in        |  7 +++++++
>  package/mono-gtksharp/mono-gtksharp.mk | 16 ++++++++++++++++
>  3 files changed, 28 insertions(+)
>  create mode 100644 package/mono-gtksharp/Config.in
>  create mode 100644 package/mono-gtksharp/mono-gtksharp.mk
> 
> diff --git a/package/Config.in b/package/Config.in
> index fe3d3d0..fbba20c 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -464,6 +464,11 @@ menu "Lua libraries/modules"
>  endmenu
>  endif
>  	source "package/mono/Config.in"
> +if BR2_PACKAGE_MONO
> +menu "Mono libraries/modules"
> +	source "package/mono-gtksharp/Config.in"
> +endmenu
> +endif
>  	source "package/nodejs/Config.in"
>  	source "package/perl/Config.in"
>  if BR2_PACKAGE_PERL
> diff --git a/package/mono-gtksharp/Config.in b/package/mono-gtksharp/Config.in
> new file mode 100644
> index 0000000..b3f16f0
> --- /dev/null
> +++ b/package/mono-gtksharp/Config.in
> @@ -0,0 +1,7 @@
> +config BR2_PACKAGE_MONO_GTKSHARP
> +	bool "gtk#"
> +	depends on BR2_PACKAGE_LIBGTK3

 I think it would be appropriate to select libgtk3 rather than depending on it.

> +	help
> +	  Gtk# is a .NET language binding for the GTK+ toolkit.

 Perhaps mention that it's GTK3.

> +
> +	  http://www.mono-project.com/docs/gui/gtksharp/
> diff --git a/package/mono-gtksharp/mono-gtksharp.mk b/package/mono-gtksharp/mono-gtksharp.mk
> new file mode 100644
> index 0000000..58412eb
> --- /dev/null
> +++ b/package/mono-gtksharp/mono-gtksharp.mk
> @@ -0,0 +1,16 @@
> +################################################################################
> +#
> +# gtksharp
> +#
> +################################################################################
> +
> +MONO_GTKSHARP_VERSION_MAJOR = 2.99
> +MONO_GTKSHARP_VERSION = $(MONO_GTKSHARP_VERSION_MAJOR).3

 We normally prefer stable releases rather than beta releases, so that would be
2.12.25. However, that release still uses gtk2 rather than gtk3, so it does make
complete sense to me to go for the beta.

> +MONO_GTKSHARP_SITE = http://ftp.gnome.org/pub/gnome/sources/gtk-sharp/$(MONO_GTKSHARP_VERSION_MAJOR)/
> +MONO_GTKSHARP_SOURCE = gtk-sharp-$(MONO_GTKSHARP_VERSION).tar.xz
> +MONO_GTKSHARP_LICENSE = LGPLv2

 A few files, in particular all of the cairo library, is MIT rather than LGPLv2.
The others are combined with LGPLv2 code in a single DLL so LGPLv2 is correct,
but the cairo library is a separate DLL that doesn't seem to depend on any other
gtksharp library, so I'd make that

MONO_GTKSHARP_LICENSE = LGPLv2, MIT (cairo)


> +MONO_GTKSHARP_LICENSE_FILES = COPYING
> +MONO_GTKSHARP_INSTALL_STAGING = YES
> +MONO_GTKSHARP_DEPENDENCIES = mono libgtk3
> +
> +$(eval $(autotools-package))
> 

 Perhaps add a hash file?

# sha256 from
https://download.gnome.org/sources/gtk-sharp/2.99/gtk-sharp-2.99.3.sha256sum
sha256	6440f571416267ae0cb5698071d087b31e3084693fa2c829b1db37ca7ea2c3a2
gtk-sharp-2.99.3.tar.xz



 Regards,
 Arnout

-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

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

* [Buildroot] [PATCH] package/mono-gtksharp: new package
  2015-03-05  0:12 ` Arnout Vandecappelle
@ 2015-03-05 11:44   ` Angelo Compagnucci
  2015-03-05 12:12     ` Arnout Vandecappelle
  0 siblings, 1 reply; 6+ messages in thread
From: Angelo Compagnucci @ 2015-03-05 11:44 UTC (permalink / raw)
  To: buildroot

Dear Arnout Vandecappelle,

2015-03-05 1:12 GMT+01:00 Arnout Vandecappelle <arnout@mind.be>:
> On 14/02/15 11:16, Angelo Compagnucci wrote:
>> This patch adds gtksharp package for mono.
>>
>> Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
>
> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
>
> A few comments below, but nothing obligatory.
>
>> ---
>>
>> Changes: I superseeded previous patch to adhere the package naming, so
>> gtksharp becames mono-gtksharp.
>>
>>  package/Config.in                      |  5 +++++
>>  package/mono-gtksharp/Config.in        |  7 +++++++
>>  package/mono-gtksharp/mono-gtksharp.mk | 16 ++++++++++++++++
>>  3 files changed, 28 insertions(+)
>>  create mode 100644 package/mono-gtksharp/Config.in
>>  create mode 100644 package/mono-gtksharp/mono-gtksharp.mk
>>
>> diff --git a/package/Config.in b/package/Config.in
>> index fe3d3d0..fbba20c 100644
>> --- a/package/Config.in
>> +++ b/package/Config.in
>> @@ -464,6 +464,11 @@ menu "Lua libraries/modules"
>>  endmenu
>>  endif
>>       source "package/mono/Config.in"
>> +if BR2_PACKAGE_MONO
>> +menu "Mono libraries/modules"
>> +     source "package/mono-gtksharp/Config.in"
>> +endmenu
>> +endif
>>       source "package/nodejs/Config.in"
>>       source "package/perl/Config.in"
>>  if BR2_PACKAGE_PERL
>> diff --git a/package/mono-gtksharp/Config.in b/package/mono-gtksharp/Config.in
>> new file mode 100644
>> index 0000000..b3f16f0
>> --- /dev/null
>> +++ b/package/mono-gtksharp/Config.in
>> @@ -0,0 +1,7 @@
>> +config BR2_PACKAGE_MONO_GTKSHARP
>> +     bool "gtk#"
>> +     depends on BR2_PACKAGE_LIBGTK3
>
>  I think it would be appropriate to select libgtk3 rather than depending on it.
>
>> +     help
>> +       Gtk# is a .NET language binding for the GTK+ toolkit.
>
>  Perhaps mention that it's GTK3.

Yes, you are right, probably it's best to name it gtk3.

>
>> +
>> +       http://www.mono-project.com/docs/gui/gtksharp/
>> diff --git a/package/mono-gtksharp/mono-gtksharp.mk b/package/mono-gtksharp/mono-gtksharp.mk
>> new file mode 100644
>> index 0000000..58412eb
>> --- /dev/null
>> +++ b/package/mono-gtksharp/mono-gtksharp.mk
>> @@ -0,0 +1,16 @@
>> +################################################################################
>> +#
>> +# gtksharp
>> +#
>> +################################################################################
>> +
>> +MONO_GTKSHARP_VERSION_MAJOR = 2.99
>> +MONO_GTKSHARP_VERSION = $(MONO_GTKSHARP_VERSION_MAJOR).3
>
>  We normally prefer stable releases rather than beta releases, so that would be
> 2.12.25. However, that release still uses gtk2 rather than gtk3, so it does make
> complete sense to me to go for the beta.

There are not stable releases of gtk#3, everyone uses the beta one,
it's the de facto version.

>> +MONO_GTKSHARP_SITE = http://ftp.gnome.org/pub/gnome/sources/gtk-sharp/$(MONO_GTKSHARP_VERSION_MAJOR)/
>> +MONO_GTKSHARP_SOURCE = gtk-sharp-$(MONO_GTKSHARP_VERSION).tar.xz
>> +MONO_GTKSHARP_LICENSE = LGPLv2
>
>  A few files, in particular all of the cairo library, is MIT rather than LGPLv2.
> The others are combined with LGPLv2 code in a single DLL so LGPLv2 is correct,
> but the cairo library is a separate DLL that doesn't seem to depend on any other
> gtksharp library, so I'd make that
>
> MONO_GTKSHARP_LICENSE = LGPLv2, MIT (cairo)

I don't think there are cairo files distributed with mono, the cairo
folder contains a c# wrapper to cairo, but it's original code. Can you
point me to the offending files?

>> +MONO_GTKSHARP_LICENSE_FILES = COPYING
>> +MONO_GTKSHARP_INSTALL_STAGING = YES
>> +MONO_GTKSHARP_DEPENDENCIES = mono libgtk3
>> +
>> +$(eval $(autotools-package))
>>
>
>  Perhaps add a hash file?
>
> # sha256 from
> https://download.gnome.org/sources/gtk-sharp/2.99/gtk-sharp-2.99.3.sha256sum
> sha256  6440f571416267ae0cb5698071d087b31e3084693fa2c829b1db37ca7ea2c3a2
> gtk-sharp-2.99.3.tar.xz

Sure!

>
>
>
>  Regards,
>  Arnout
>
> --
> Arnout Vandecappelle                          arnout at mind be
> Senior Embedded Software Architect            +32-16-286500
> Essensium/Mind                                http://www.mind.be
> G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
> LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
> GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F



-- 
Profile: http://it.linkedin.com/in/compagnucciangelo

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

* [Buildroot] [PATCH] package/mono-gtksharp: new package
  2015-03-05 11:44   ` Angelo Compagnucci
@ 2015-03-05 12:12     ` Arnout Vandecappelle
  2015-03-05 12:23       ` Angelo Compagnucci
  0 siblings, 1 reply; 6+ messages in thread
From: Arnout Vandecappelle @ 2015-03-05 12:12 UTC (permalink / raw)
  To: buildroot

On 05/03/15 12:44, Angelo Compagnucci wrote:
> Dear Arnout Vandecappelle,
> 
> 2015-03-05 1:12 GMT+01:00 Arnout Vandecappelle <arnout@mind.be>:
>> On 14/02/15 11:16, Angelo Compagnucci wrote:
[snip]
>>> +MONO_GTKSHARP_SITE = http://ftp.gnome.org/pub/gnome/sources/gtk-sharp/$(MONO_GTKSHARP_VERSION_MAJOR)/
>>> +MONO_GTKSHARP_SOURCE = gtk-sharp-$(MONO_GTKSHARP_VERSION).tar.xz
>>> +MONO_GTKSHARP_LICENSE = LGPLv2
>>
>>  A few files, in particular all of the cairo library, is MIT rather than LGPLv2.
>> The others are combined with LGPLv2 code in a single DLL so LGPLv2 is correct,
>> but the cairo library is a separate DLL that doesn't seem to depend on any other
>> gtksharp library, so I'd make that
>>
>> MONO_GTKSHARP_LICENSE = LGPLv2, MIT (cairo)
> 
> I don't think there are cairo files distributed with mono, the cairo
> folder contains a c# wrapper to cairo, but it's original code. Can you
> point me to the offending files?

 I am indeed referring to the C# wrapper of cairo. Gtk# builds a .so and .dll
for cairo, which AFAICS can be used independently from the rest of Gtk#, and
which AFAICS is only derived from sources that carry a MIT license (i.e.,
everything in the cairo/ directory).

 (cairo itself is still LGPLv2+, of course. However, since this is a different
shared library, the cairo# .dll and .so could be used with a
differently-licensed implementation of the cairo ABI).

 Regards,
 Arnout

-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

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

* [Buildroot] [PATCH] package/mono-gtksharp: new package
  2015-03-05 12:12     ` Arnout Vandecappelle
@ 2015-03-05 12:23       ` Angelo Compagnucci
  0 siblings, 0 replies; 6+ messages in thread
From: Angelo Compagnucci @ 2015-03-05 12:23 UTC (permalink / raw)
  To: buildroot

Dear Arnout Vandecappelle,

2015-03-05 13:12 GMT+01:00 Arnout Vandecappelle <arnout@mind.be>:
> On 05/03/15 12:44, Angelo Compagnucci wrote:
>> Dear Arnout Vandecappelle,
>>
>> 2015-03-05 1:12 GMT+01:00 Arnout Vandecappelle <arnout@mind.be>:
>>> On 14/02/15 11:16, Angelo Compagnucci wrote:
> [snip]
>>>> +MONO_GTKSHARP_SITE = http://ftp.gnome.org/pub/gnome/sources/gtk-sharp/$(MONO_GTKSHARP_VERSION_MAJOR)/
>>>> +MONO_GTKSHARP_SOURCE = gtk-sharp-$(MONO_GTKSHARP_VERSION).tar.xz
>>>> +MONO_GTKSHARP_LICENSE = LGPLv2
>>>
>>>  A few files, in particular all of the cairo library, is MIT rather than LGPLv2.
>>> The others are combined with LGPLv2 code in a single DLL so LGPLv2 is correct,
>>> but the cairo library is a separate DLL that doesn't seem to depend on any other
>>> gtksharp library, so I'd make that
>>>
>>> MONO_GTKSHARP_LICENSE = LGPLv2, MIT (cairo)
>>
>> I don't think there are cairo files distributed with mono, the cairo
>> folder contains a c# wrapper to cairo, but it's original code. Can you
>> point me to the offending files?
>
>  I am indeed referring to the C# wrapper of cairo. Gtk# builds a .so and .dll
> for cairo, which AFAICS can be used independently from the rest of Gtk#, and
> which AFAICS is only derived from sources that carry a MIT license (i.e.,
> everything in the cairo/ directory).
>
>  (cairo itself is still LGPLv2+, of course. However, since this is a different
> shared library, the cairo# .dll and .so could be used with a
> differently-licensed implementation of the cairo ABI).

Ops, you are totally right! I haven't noticed that the cairo wrapper
was under another license!

For the other question about select/depends, Thomas in a previous
thread said me to use depends instead of select!

Sincerely, Angelo

>
>  Regards,
>  Arnout
>
> --
> Arnout Vandecappelle                          arnout at mind be
> Senior Embedded Software Architect            +32-16-286500
> Essensium/Mind                                http://www.mind.be
> G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
> LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
> GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F



-- 
Profile: http://it.linkedin.com/in/compagnucciangelo

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

end of thread, other threads:[~2015-03-05 12:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-14 10:16 [Buildroot] [PATCH] package/mono-gtksharp: new package Angelo Compagnucci
2015-03-04 14:56 ` Angelo Compagnucci
2015-03-05  0:12 ` Arnout Vandecappelle
2015-03-05 11:44   ` Angelo Compagnucci
2015-03-05 12:12     ` Arnout Vandecappelle
2015-03-05 12:23       ` Angelo Compagnucci

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.