All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-networking] [PATCH] traceroute: filter-out patches dir
@ 2014-01-20 12:52 Robert Yang
  2014-01-22 14:21 ` Otavio Salvador
  2014-03-27 20:28 ` Joe MacDonald
  0 siblings, 2 replies; 9+ messages in thread
From: Robert Yang @ 2014-01-20 12:52 UTC (permalink / raw)
  To: openembedded-devel

The $(subdirs) contains all the dirs under the ${B}, and this one:

do_unpack[cleandirs] = "${S}/patches"

will create a "patches" dir, then there will be compile errors, filter
out the patches will fix the problem.

Note: poky doesn't have this problem since it separates the ${S} and
${B}

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 .../filter-out-the-patches-from-subdirs.patch      | 47 ++++++++++++++++++++++
 .../traceroute/traceroute_2.0.18.bb                |  1 +
 2 files changed, 48 insertions(+)
 create mode 100644 meta-networking/recipes-support/traceroute/traceroute/filter-out-the-patches-from-subdirs.patch

diff --git a/meta-networking/recipes-support/traceroute/traceroute/filter-out-the-patches-from-subdirs.patch b/meta-networking/recipes-support/traceroute/traceroute/filter-out-the-patches-from-subdirs.patch
new file mode 100644
index 0000000..2c030b5
--- /dev/null
+++ b/meta-networking/recipes-support/traceroute/traceroute/filter-out-the-patches-from-subdirs.patch
@@ -0,0 +1,47 @@
+From e273e0ebc753645555909bcc4874c72458b17891 Mon Sep 17 00:00:00 2001
+From: Robert Yang <liezhi.yang@windriver.com>
+Date: Fri, 17 Jan 2014 03:17:44 -0500
+Subject: [PATCH] Make.rules: filter-out the patches from subdirs
+
+The $(subdirs) contains all the dirs under the ${B}, and this one:
+
+do_unpack[cleandirs] = "${S}/patches"
+
+will create a "patches" dir, then there will be compile errors, filter
+out the patches will fix the problem.
+
+Note: poky doesn't have this problem since it separates the ${S} and
+${B}
+
+Upstream-Status: Inappropriate [OE specific]
+
+Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
+---
+ Make.rules |    4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/Make.rules b/Make.rules
+index b077cd5..0bfce2d 100644
+--- a/Make.rules
++++ b/Make.rules
+@@ -97,7 +97,7 @@ endif
+ subdirs := $(filter-out $(SKIPDIRS), $(subdirs))
+ endif
+ 
+-install install-%: subdirs := $(filter-out $(SKIPINSTALL), $(subdirs))
++install install-%: subdirs := $(filter-out $(SKIPINSTALL) patches, $(subdirs))
+ 
+ 
+ override MAKE += srcdir=$(srcdir) subdirs="$(subdirs)" shared=$(shared)
+@@ -106,7 +106,7 @@ override MAKE += srcdir=$(srcdir) subdirs="$(subdirs)" shared=$(shared)
+ INCLUDEDIRS := $(filter $(INCLUDEDIRS), $(subdirs))
+ LIBDIRS := $(filter $(LIBDIRS), $(subdirs))
+ MODDIRS := $(filter $(MODDIRS), $(subdirs))
+-EXEDIRS := $(filter-out $(INCLUDEDIRS) $(LIBDIRS) $(MODDIRS), $(subdirs))
++EXEDIRS := $(filter-out $(INCLUDEDIRS) $(LIBDIRS) $(MODDIRS) patches, $(subdirs))
+ MODUSERS := $(filter $(MODUSERS), $(subdirs))
+ SBINUSERS := $(filter $(SBINUSERS), $(subdirs))
+ 
+-- 
+1.7.10.4
+
diff --git a/meta-networking/recipes-support/traceroute/traceroute_2.0.18.bb b/meta-networking/recipes-support/traceroute/traceroute_2.0.18.bb
index e6718db..31c16aa 100644
--- a/meta-networking/recipes-support/traceroute/traceroute_2.0.18.bb
+++ b/meta-networking/recipes-support/traceroute/traceroute_2.0.18.bb
@@ -16,6 +16,7 @@ PR = "r1"
 inherit update-alternatives
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/traceroute/traceroute/traceroute-2.0.18/traceroute-2.0.18.tar.gz \
+           file://filter-out-the-patches-from-subdirs.patch \
 "
 
 SRC_URI[md5sum] = "b7254149b7f081cce07f4b9e065ba5ef"
-- 
1.8.3.1



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

* Re: [meta-networking] [PATCH] traceroute: filter-out patches dir
  2014-01-20 12:52 [meta-networking] [PATCH] traceroute: filter-out patches dir Robert Yang
@ 2014-01-22 14:21 ` Otavio Salvador
  2014-02-13  0:59   ` Joe MacDonald
  2014-02-13  3:03   ` Robert Yang
  2014-03-27 20:28 ` Joe MacDonald
  1 sibling, 2 replies; 9+ messages in thread
From: Otavio Salvador @ 2014-01-22 14:21 UTC (permalink / raw)
  To: OpenEmbedded Devel List

On Mon, Jan 20, 2014 at 10:52 AM, Robert Yang <liezhi.yang@windriver.com> wrote:
> The $(subdirs) contains all the dirs under the ${B}, and this one:
>
> do_unpack[cleandirs] = "${S}/patches"
>
> will create a "patches" dir, then there will be compile errors, filter
> out the patches will fix the problem.
>
> Note: poky doesn't have this problem since it separates the ${S} and
> ${B}
>
> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>

Couldn't we change it for OE-Core as well? So we avoid having to patch
the build system.

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: [meta-networking] [PATCH] traceroute: filter-out patches dir
  2014-01-22 14:21 ` Otavio Salvador
@ 2014-02-13  0:59   ` Joe MacDonald
  2014-02-13  3:03   ` Robert Yang
  1 sibling, 0 replies; 9+ messages in thread
From: Joe MacDonald @ 2014-02-13  0:59 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 918 bytes --]

[Re: [oe] [meta-networking] [PATCH] traceroute: filter-out patches dir] On 14.01.22 (Wed 12:21) Otavio Salvador wrote:

> On Mon, Jan 20, 2014 at 10:52 AM, Robert Yang <liezhi.yang@windriver.com> wrote:
> > The $(subdirs) contains all the dirs under the ${B}, and this one:
> >
> > do_unpack[cleandirs] = "${S}/patches"
> >
> > will create a "patches" dir, then there will be compile errors, filter
> > out the patches will fix the problem.
> >
> > Note: poky doesn't have this problem since it separates the ${S} and
> > ${B}
> >
> > Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> 
> Couldn't we change it for OE-Core as well? So we avoid having to patch
> the build system.

That seems sensible.  I've not seen any follow-up on this, so I'm going
to drop this patch and assume this is a change being done in OE-Core (if
it hasn't already been done there).

-- 
-Joe MacDonald.
:wq

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [meta-networking] [PATCH] traceroute: filter-out patches dir
  2014-01-22 14:21 ` Otavio Salvador
  2014-02-13  0:59   ` Joe MacDonald
@ 2014-02-13  3:03   ` Robert Yang
  2014-02-13 10:40     ` Otavio Salvador
  1 sibling, 1 reply; 9+ messages in thread
From: Robert Yang @ 2014-02-13  3:03 UTC (permalink / raw)
  To: openembedded-devel



On 01/22/2014 10:21 PM, Otavio Salvador wrote:
> On Mon, Jan 20, 2014 at 10:52 AM, Robert Yang <liezhi.yang@windriver.com> wrote:
>> The $(subdirs) contains all the dirs under the ${B}, and this one:
>>
>> do_unpack[cleandirs] = "${S}/patches"
>>
>> will create a "patches" dir, then there will be compile errors, filter
>> out the patches will fix the problem.
>>
>> Note: poky doesn't have this problem since it separates the ${S} and
>> ${B}
>>
>> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
>
> Couldn't we change it for OE-Core as well? So we avoid having to patch
> the build system.
>

Hi Otavio,

I'm sorry, I don't quite understand what do you mean, this patch didn't
change the build system, it changed the Make.rules.

// Robert


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

* Re: [meta-networking] [PATCH] traceroute: filter-out patches dir
  2014-02-13  3:03   ` Robert Yang
@ 2014-02-13 10:40     ` Otavio Salvador
  2014-02-14  3:29       ` Joe MacDonald
  0 siblings, 1 reply; 9+ messages in thread
From: Otavio Salvador @ 2014-02-13 10:40 UTC (permalink / raw)
  To: OpenEmbedded Devel List

On Thu, Feb 13, 2014 at 1:03 AM, Robert Yang <liezhi.yang@windriver.com> wrote:
>
>
> On 01/22/2014 10:21 PM, Otavio Salvador wrote:
>>
>> On Mon, Jan 20, 2014 at 10:52 AM, Robert Yang <liezhi.yang@windriver.com>
>> wrote:
>>>
>>> The $(subdirs) contains all the dirs under the ${B}, and this one:
>>>
>>> do_unpack[cleandirs] = "${S}/patches"
>>>
>>> will create a "patches" dir, then there will be compile errors, filter
>>> out the patches will fix the problem.
>>>
>>> Note: poky doesn't have this problem since it separates the ${S} and
>>> ${B}
>>>
>>> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
>>
>>
>> Couldn't we change it for OE-Core as well? So we avoid having to patch
>> the build system.
>>
>
> I'm sorry, I don't quite understand what do you mean, this patch didn't
> change the build system, it changed the Make.rules.


To be sincere I didn't understand my comment as well ...  don't recall
what I thought... I'd say to ignore it.

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: [meta-networking] [PATCH] traceroute: filter-out patches dir
  2014-02-13 10:40     ` Otavio Salvador
@ 2014-02-14  3:29       ` Joe MacDonald
  2014-02-14  6:32         ` Robert Yang
  0 siblings, 1 reply; 9+ messages in thread
From: Joe MacDonald @ 2014-02-14  3:29 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1563 bytes --]

[Re: [oe] [meta-networking] [PATCH] traceroute: filter-out patches dir] On 14.02.13 (Thu 08:40) Otavio Salvador wrote:

> On Thu, Feb 13, 2014 at 1:03 AM, Robert Yang <liezhi.yang@windriver.com> wrote:
> >
> >
> > On 01/22/2014 10:21 PM, Otavio Salvador wrote:
> >>
> >> On Mon, Jan 20, 2014 at 10:52 AM, Robert Yang <liezhi.yang@windriver.com>
> >> wrote:
> >>>
> >>> The $(subdirs) contains all the dirs under the ${B}, and this one:
> >>>
> >>> do_unpack[cleandirs] = "${S}/patches"
> >>>
> >>> will create a "patches" dir, then there will be compile errors, filter
> >>> out the patches will fix the problem.
> >>>
> >>> Note: poky doesn't have this problem since it separates the ${S} and
> >>> ${B}
> >>>
> >>> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> >>
> >>
> >> Couldn't we change it for OE-Core as well? So we avoid having to patch
> >> the build system.
> >>
> >
> > I'm sorry, I don't quite understand what do you mean, this patch didn't
> > change the build system, it changed the Make.rules.
> 
> 
> To be sincere I didn't understand my comment as well ...  don't recall
> what I thought... I'd say to ignore it.

Oh.  Heh.  I thought you were proposing a change to oe-core's build
approach that would mean we didn't need to have a patch here to
traceroute to separate $(B) and $(S).  At least that's what I got from
it based on the commit log.  I'm still a bit confused about what's so
different about traceroute's build system that it needs special handling
...

-- 
-Joe MacDonald.
:wq

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [meta-networking] [PATCH] traceroute: filter-out patches dir
  2014-02-14  3:29       ` Joe MacDonald
@ 2014-02-14  6:32         ` Robert Yang
  2014-03-18  9:24           ` Robert Yang
  0 siblings, 1 reply; 9+ messages in thread
From: Robert Yang @ 2014-02-14  6:32 UTC (permalink / raw)
  To: openembedded-devel



On 02/14/2014 11:29 AM, Joe MacDonald wrote:
> [Re: [oe] [meta-networking] [PATCH] traceroute: filter-out patches dir] On 14.02.13 (Thu 08:40) Otavio Salvador wrote:
>
>> On Thu, Feb 13, 2014 at 1:03 AM, Robert Yang <liezhi.yang@windriver.com> wrote:
>>>
>>>
>>> On 01/22/2014 10:21 PM, Otavio Salvador wrote:
>>>>
>>>> On Mon, Jan 20, 2014 at 10:52 AM, Robert Yang <liezhi.yang@windriver.com>
>>>> wrote:
>>>>>
>>>>> The $(subdirs) contains all the dirs under the ${B}, and this one:
>>>>>
>>>>> do_unpack[cleandirs] = "${S}/patches"
>>>>>
>>>>> will create a "patches" dir, then there will be compile errors, filter
>>>>> out the patches will fix the problem.
>>>>>
>>>>> Note: poky doesn't have this problem since it separates the ${S} and
>>>>> ${B}
>>>>>
>>>>> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
>>>>
>>>>
>>>> Couldn't we change it for OE-Core as well? So we avoid having to patch
>>>> the build system.
>>>>
>>>
>>> I'm sorry, I don't quite understand what do you mean, this patch didn't
>>> change the build system, it changed the Make.rules.
>>
>>
>> To be sincere I didn't understand my comment as well ...  don't recall
>> what I thought... I'd say to ignore it.
>
> Oh.  Heh.  I thought you were proposing a change to oe-core's build
> approach that would mean we didn't need to have a patch here to
> traceroute to separate $(B) and $(S).  At least that's what I got from
> it based on the commit log.  I'm still a bit confused about what's so
> different about traceroute's build system that it needs special handling

traceroute uses this:

EXEDIRS := $(filter-out $(INCLUDEDIRS) $(LIBDIRS) $(MODDIRS), $(subdirs))

the "patches" dir will be included in EXEDIRS which will cause errors, so
we need filter out it.

// Robert


> ...
>
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>


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

* Re: [meta-networking] [PATCH] traceroute: filter-out patches dir
  2014-02-14  6:32         ` Robert Yang
@ 2014-03-18  9:24           ` Robert Yang
  0 siblings, 0 replies; 9+ messages in thread
From: Robert Yang @ 2014-03-18  9:24 UTC (permalink / raw)
  To: openembedded-devel

ping.

// Robert

On 02/14/2014 02:32 PM, Robert Yang wrote:
>
>
> On 02/14/2014 11:29 AM, Joe MacDonald wrote:
>> [Re: [oe] [meta-networking] [PATCH] traceroute: filter-out patches dir] On
>> 14.02.13 (Thu 08:40) Otavio Salvador wrote:
>>
>>> On Thu, Feb 13, 2014 at 1:03 AM, Robert Yang <liezhi.yang@windriver.com> wrote:
>>>>
>>>>
>>>> On 01/22/2014 10:21 PM, Otavio Salvador wrote:
>>>>>
>>>>> On Mon, Jan 20, 2014 at 10:52 AM, Robert Yang <liezhi.yang@windriver.com>
>>>>> wrote:
>>>>>>
>>>>>> The $(subdirs) contains all the dirs under the ${B}, and this one:
>>>>>>
>>>>>> do_unpack[cleandirs] = "${S}/patches"
>>>>>>
>>>>>> will create a "patches" dir, then there will be compile errors, filter
>>>>>> out the patches will fix the problem.
>>>>>>
>>>>>> Note: poky doesn't have this problem since it separates the ${S} and
>>>>>> ${B}
>>>>>>
>>>>>> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
>>>>>
>>>>>
>>>>> Couldn't we change it for OE-Core as well? So we avoid having to patch
>>>>> the build system.
>>>>>
>>>>
>>>> I'm sorry, I don't quite understand what do you mean, this patch didn't
>>>> change the build system, it changed the Make.rules.
>>>
>>>
>>> To be sincere I didn't understand my comment as well ...  don't recall
>>> what I thought... I'd say to ignore it.
>>
>> Oh.  Heh.  I thought you were proposing a change to oe-core's build
>> approach that would mean we didn't need to have a patch here to
>> traceroute to separate $(B) and $(S).  At least that's what I got from
>> it based on the commit log.  I'm still a bit confused about what's so
>> different about traceroute's build system that it needs special handling
>
> traceroute uses this:
>
> EXEDIRS := $(filter-out $(INCLUDEDIRS) $(LIBDIRS) $(MODDIRS), $(subdirs))
>
> the "patches" dir will be included in EXEDIRS which will cause errors, so
> we need filter out it.
>
> // Robert
>
>
>> ...
>>
>>
>>
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
>


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

* Re: [meta-networking] [PATCH] traceroute: filter-out patches dir
  2014-01-20 12:52 [meta-networking] [PATCH] traceroute: filter-out patches dir Robert Yang
  2014-01-22 14:21 ` Otavio Salvador
@ 2014-03-27 20:28 ` Joe MacDonald
  1 sibling, 0 replies; 9+ messages in thread
From: Joe MacDonald @ 2014-03-27 20:28 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 3689 bytes --]

Merged, thanks.
-J.

[[oe] [meta-networking] [PATCH] traceroute: filter-out patches dir] On 14.01.20 (Mon 20:52) Robert Yang wrote:

> The $(subdirs) contains all the dirs under the ${B}, and this one:
> 
> do_unpack[cleandirs] = "${S}/patches"
> 
> will create a "patches" dir, then there will be compile errors, filter
> out the patches will fix the problem.
> 
> Note: poky doesn't have this problem since it separates the ${S} and
> ${B}
> 
> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> ---
>  .../filter-out-the-patches-from-subdirs.patch      | 47 ++++++++++++++++++++++
>  .../traceroute/traceroute_2.0.18.bb                |  1 +
>  2 files changed, 48 insertions(+)
>  create mode 100644 meta-networking/recipes-support/traceroute/traceroute/filter-out-the-patches-from-subdirs.patch
> 
> diff --git a/meta-networking/recipes-support/traceroute/traceroute/filter-out-the-patches-from-subdirs.patch b/meta-networking/recipes-support/traceroute/traceroute/filter-out-the-patches-from-subdirs.patch
> new file mode 100644
> index 0000000..2c030b5
> --- /dev/null
> +++ b/meta-networking/recipes-support/traceroute/traceroute/filter-out-the-patches-from-subdirs.patch
> @@ -0,0 +1,47 @@
> +From e273e0ebc753645555909bcc4874c72458b17891 Mon Sep 17 00:00:00 2001
> +From: Robert Yang <liezhi.yang@windriver.com>
> +Date: Fri, 17 Jan 2014 03:17:44 -0500
> +Subject: [PATCH] Make.rules: filter-out the patches from subdirs
> +
> +The $(subdirs) contains all the dirs under the ${B}, and this one:
> +
> +do_unpack[cleandirs] = "${S}/patches"
> +
> +will create a "patches" dir, then there will be compile errors, filter
> +out the patches will fix the problem.
> +
> +Note: poky doesn't have this problem since it separates the ${S} and
> +${B}
> +
> +Upstream-Status: Inappropriate [OE specific]
> +
> +Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> +---
> + Make.rules |    4 ++--
> + 1 file changed, 2 insertions(+), 2 deletions(-)
> +
> +diff --git a/Make.rules b/Make.rules
> +index b077cd5..0bfce2d 100644
> +--- a/Make.rules
> ++++ b/Make.rules
> +@@ -97,7 +97,7 @@ endif
> + subdirs := $(filter-out $(SKIPDIRS), $(subdirs))
> + endif
> + 
> +-install install-%: subdirs := $(filter-out $(SKIPINSTALL), $(subdirs))
> ++install install-%: subdirs := $(filter-out $(SKIPINSTALL) patches, $(subdirs))
> + 
> + 
> + override MAKE += srcdir=$(srcdir) subdirs="$(subdirs)" shared=$(shared)
> +@@ -106,7 +106,7 @@ override MAKE += srcdir=$(srcdir) subdirs="$(subdirs)" shared=$(shared)
> + INCLUDEDIRS := $(filter $(INCLUDEDIRS), $(subdirs))
> + LIBDIRS := $(filter $(LIBDIRS), $(subdirs))
> + MODDIRS := $(filter $(MODDIRS), $(subdirs))
> +-EXEDIRS := $(filter-out $(INCLUDEDIRS) $(LIBDIRS) $(MODDIRS), $(subdirs))
> ++EXEDIRS := $(filter-out $(INCLUDEDIRS) $(LIBDIRS) $(MODDIRS) patches, $(subdirs))
> + MODUSERS := $(filter $(MODUSERS), $(subdirs))
> + SBINUSERS := $(filter $(SBINUSERS), $(subdirs))
> + 
> +-- 
> +1.7.10.4
> +
> diff --git a/meta-networking/recipes-support/traceroute/traceroute_2.0.18.bb b/meta-networking/recipes-support/traceroute/traceroute_2.0.18.bb
> index e6718db..31c16aa 100644
> --- a/meta-networking/recipes-support/traceroute/traceroute_2.0.18.bb
> +++ b/meta-networking/recipes-support/traceroute/traceroute_2.0.18.bb
> @@ -16,6 +16,7 @@ PR = "r1"
>  inherit update-alternatives
>  
>  SRC_URI = "${SOURCEFORGE_MIRROR}/traceroute/traceroute/traceroute-2.0.18/traceroute-2.0.18.tar.gz \
> +           file://filter-out-the-patches-from-subdirs.patch \
>  "
>  
>  SRC_URI[md5sum] = "b7254149b7f081cce07f4b9e065ba5ef"
-- 
-Joe MacDonald.
:wq

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

end of thread, other threads:[~2014-03-27 20:28 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-20 12:52 [meta-networking] [PATCH] traceroute: filter-out patches dir Robert Yang
2014-01-22 14:21 ` Otavio Salvador
2014-02-13  0:59   ` Joe MacDonald
2014-02-13  3:03   ` Robert Yang
2014-02-13 10:40     ` Otavio Salvador
2014-02-14  3:29       ` Joe MacDonald
2014-02-14  6:32         ` Robert Yang
2014-03-18  9:24           ` Robert Yang
2014-03-27 20:28 ` Joe MacDonald

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.